/*common*/
body {
    margin: 0;
}
/*字体统一管理 start */
.exo-font-family {
    font-family: Exo-Medium;
}
/*字体统一管理 end */

/*pc*/
@media only screen and (min-width: 1025px){
    .logo-search-content {
        display: flex;
        justify-content: space-between;
        width: 1200px;
        margin: auto;
        height: 68px;
        align-items: center;
    }
    .header-input {
        width: 93%;
    }
    .search-icon img {
        width: 22px;
        height: 22px;
    }
}

/*1200以下显示mobile ；mobile设计图尺寸 750px */
/*mobile*/
@media only screen and (max-width: 1024px) {
    .logo-search-content {
        display: none;
    }
}
/*特殊尺寸处理*/
@media only screen and (min-width: 750px)and (max-width:1024px) {

}
/*特殊尺寸处理*/
@media only screen and (max-width:750px){

}
