/*初始化*/
*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    -webkit-tap-highlight-color:transparent;
}
body{
    background: #efefef;
}
.clearfix:after {
    content: " ";
    display: block;;
    line-height: 0;
    height: 0;
    visibility: hidden;
    clear: both;
}
/*媒体查询 做移动端适配*/
@media only screen and (max-width: 1080px), only screen and (max-device-width: 1080px) {
    html,
    body {
        font-size: 288px;
    }
}
@media only screen and (max-width: 960px), only screen and (max-device-width: 960px) {
    html,
    body {
        font-size: 256px;
    }
}
@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {
    html,
    body {
        font-size: 213.3333px;
    }
}
@media only screen and (max-width: 720px), only screen and (max-device-width: 720px) {
    html,
    body {
        font-size: 192px;
    }
}
@media only screen and (max-width: 640px), only screen and (max-device-width: 640px) {
    html,
    body {
        font-size: 170.6667px;
    }
}
@media only screen and (max-width: 600px), only screen and (max-device-width: 600px) {
    html,
    body {
        font-size: 160px;
    }
}
@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {
    html,
    body {
        font-size: 144px;
    }
}
@media only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
    html,
    body {
        font-size: 128px;
    }
}
@media only screen and (max-width: 414px), only screen and (max-device-width: 414px) {
    html,
    body {
        font-size: 110.4px;
    }
}
@media only screen and (max-width: 400px), only screen and (max-device-width: 400px) {
    html,
    body {
        font-size: 106.6667px;
    }
}
@media only screen and (max-width: 375px), only screen and (max-device-width: 375px) {
    html,
    body {
        font-size: 100px;
    }
}
@media only screen and (max-width: 360px), only screen and (max-device-width: 360px) {
    html,
    body {
        font-size: 96px;
    }
}
@media only screen and (max-width: 320px), only screen and (max-device-width: 320px) {
    html,
    body {
        font-size: 85.3333px;
    }
}
@media only screen and (max-width: 240px), only screen and (max-device-width: 240px) {
    html,
    body {
        font-size: 64px;
    }
}
/*搜索头部*/
header{
    width: 100%;
    height: .52rem;
    background: #efefef;
}
header .search_box{
    /*width: 3rem;*/
    /*margin: .1rem 0 0 .13rem;*/
    /*float: left;*/
    height: .3rem;
    background: #fff;
    border-radius: 25px;
    border: 1px solid #c7c7c7;
    margin: 0 0 0 .13rem;
    position: relative;
    flex: 1;
    width: auto;
    font-size: 0;
}
header .search_box .search_icon{
    width: .12rem;
    height: .14rem;
    position: absolute;
    left: .13rem;
    top: 50%;
    transform: translate(0,-50%);
    z-index: 1;
}
header .search_box input{
    /*width: 2.3rem;*/
    /*height: .18rem;*/
    /* border-left: 1px solid #afafaf; */
    /*border-radius: 0px;*/
    /*position: absolute;*/
    /*left: .32rem;*/
    /*top: 50%;*/
    /*transform: translate(0,-50%);*/
    /*padding-left: 5px;*/
    width: 100%;
    height: 100%;
    border-radius: 25px;
    box-sizing: border-box;
    padding-left: 35px;
    border: none;
    outline: none;
    font-size: .12rem;
}
header a{
    font-size: .16rem;
    color: #2e2e2e;
    float: right;
    display: inline-block;
    width: .55rem;
    height: 100%;
    line-height: .52rem;
    text-align: center;
    border: none;
    background: #efefef;
}
header .search_del{
    width: .14rem;
    height: .14rem;
    position: absolute;
    right: .14rem;
    top: 50%;
    transform: translate(0,-50%);
    display: none;
}