body {
    font-family: "微软雅黑", Calibri, Arial, sans-serif;
    margin: 0;
}

a img {
    border: 0;
}

a:link, a:visited {
    color: blue; /* #538ccd */
    text-decoration: none;
}

a:hover, a:active {
    color: red;
    text-decoration: underline;
}

a:link.colorLink {
    color: #3E74B0;
    text-decoration: none;
}

a:visited.colorLink {
    color: #3E74B0;
    text-decoration: none;
}

a:hover.colorLink, a:active.colorLink {
    color: red;
    text-decoration: underline;
}

.hCenter {
    text-align: center;
}

.vCenter {
    vertical-align: middle;
}

.hLeft {
    text-align: left;
}

.hRight {
    text-align: right;
}

.fRight {
    float: right;
}

.flex-center {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

.flex-v-center {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-justify {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-box {
    display: -webkit-flex;
    display: flex;
}

.fixed {
    position: fixed;
    top: 0;
}

.color-cyan {
    color: #1296db;
}

.color-green {
    color: Green;
}

.color-grey {
    color: grey;
}

.small {
    font-size: small;
}

.x-small {
    font-size: x-small;
}

.f12 {
    font-size: 12px;
}

.boldF {
    font-weight: bold;
}

.monoF {
    font-family: Consolas, "Courier New", monospace;
}

.dot {
    display:inline-block;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.highlight {
    color: coral;
}

.red-Bg {
    background-color: orangered;
}

.yellow-Bg {
    background-color: gold;
}

.green-Bg {
    background-color: limegreen;
}

.blue-Bg {
    background-color: #E0ECFF;
}

.silver-Bg {
    background-color: #F4F4F4;
}

.preWrap {
    white-space: pre-wrap;
}

.noWrap {
    white-space: nowrap;
}

.full-width {
    width: 99%;
    min-width: 1339px;
    margin: auto;
}