/*common*/
body {
    margin: 0;
}
/*字体统一管理 start */
.exo-font-family {
    font-family: Helvetica;
}
/*字体统一管理 end */

.web-header-icon a {
    text-decoration: none;
}
.web-header-icon {
    background-color: var(--color);
    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 a{
        display: flex;
        align-items: center;
        color: #FFFFFF;
        font-size: 12px;
        line-height: 38px;
    }
    .header-left .icon-svg{
        margin-right: 6px;
        font-size: 20px;
    }
    .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: 0.44rem;
        position: fixed;
        display: flex;
        top: 0;
        z-index: 10;
    }
    .header-content {
        width: 100%;
        margin: 0 0.3rem;
        justify-content: space-between;
        align-items: center;
    }
    .search-mobile-btn{
        font-size: 0.3rem;
        height: 0.3rem;
        color: #fff;
    }
    .header-left {
        display: none;
    }
    .header-right {
        width: auto;
    }
    .icon-link{
        display: flex;
        height: 100%;
    }
    .icon-link a {
        width: 0.24rem;
        height: 0.24rem;
        display: inline-block;
        margin-right: 0.07rem;
    }
    .icon-link a img{
        width: 100%;
        height: 100%;
    }
}
/*特殊尺寸处理*/
@media only screen and (min-width: 750px)and (max-width:1025px){

}

