/*common*/
body {
    margin: 0;
}
/*字体统一管理 start */
.exo-font-family {
    font-family: Exo-Medium;
}
/*字体统一管理 end */

.web-header-icon a {
    text-decoration: none;
}
.web-header-icon {
    background-color: #1E73BD;
    width: 100%;
}
.header-content {
    display: flex;
}
.header-right {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*pc*/
@media only screen and (min-width: 1025px){
    .web-header-icon {
        height: 38px;
    }
    .header-content {
        width: 1200px;
        margin: auto;
        max-width: 100%;
    }
    .header-content {
        justify-content: space-between;
    }
    .header-right {
        height: 38px;
    }
    .header-left , .header-left a{
        color: #FFFFFF;
        font-size: 12px;
        line-height: 38px;
    }
    .icon-link a {
        width: 20px;
        height: 20px;
        display: inline-block;
        margin-right: 6px;
    }
    .icon-link img{
        vertical-align: top;
        width: 20px;
        height: 20px;
    }
}
/*mobile*/
@media only screen and (max-width: 1024px) {
    .web-header-icon {
        height: 44px;
        position: fixed;
        top: 0;
        z-index: 2;
    }
    .header-content {
        width: 95%;
        margin: auto;
        justify-content: flex-end;
    }
    .header-left {
        display: none;
    }
    .header-right {
        height: 44px;
    }
    .icon-link a {
        width: 24px;
        height: 24px;
        display: inline-block;
        margin-right: 12px;
    }
}
/*特殊尺寸处理*/
@media only screen and (min-width: 750px)and (max-width:1025px){

}

