ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.screen-tab{
    position: fixed;
    z-index: 100;
    top: 16px;
    left: 16px;
    height: 45px;
}
.data-wrap{
    height: 45px;
    line-height: 40px;
    border-radius: 4px;
    overflow: hidden;
    padding: 0 15px;
    background: #f8fafc;
    box-shadow: 0 0 5px 1px rgba(9,2,4,.1);
    color: #555;
    float: left;
    font-size: 13px;
}
.data-wrap > span.tips{
    font-size: 22px;
    color: #b91414;
    margin: 0 5px;
}
.search-btn{
    float: left;
    width: 45px;
    text-align: center;
    margin-left: 5px;
    height: 45px;
    padding-top: 12px;
    border-radius: 4px;
    overflow: hidden;
    background: #4096fb;
    box-shadow: 0 0 5px 1px rgba(9,2,4,.1);
}

.city-screen-btn{
    float: left;
    position: relative;
    height: 45px;
    line-height: 45px;
    padding: 0 30px 0 40px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 0 5px 1px rgba(9,2,4,.1);
    font-size: 13px;
    cursor: pointer;
}
.city-screen-btn > .xl{
    position: absolute;
    top: 19px;
    right: 10px;
    transition: transform .3s ease;
}
.city-screen-btn > .pic{
    position: absolute;
    top: 15px;
    left: 15px;
}
.city-screen-btn.active > .xl{
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .screen-tab{
        top: 12px;
        left: 12px;
    }
    .data-wrap{
        height: 40px;
        line-height: 36px;
        padding: 0 10px;
        font-size: 12px;
    }
    .data-wrap > .hs{
        display: none;
    }
    .data-wrap > span.tips{
        font-size: 20px;
        margin: 0 3px;
    }
    .search-btn{
        width: 40px;
        height: 40px;
        padding-top: 13px;
    }
    .search-btn > img{
        width: 14px;
    }
    .city-screen-btn{
        height: 40px;
        line-height: 40px;
        padding: 0 24px 0 12px;
        font-size: 12px;
    }
    .city-screen-btn > .xl{
        top: 17px;
        right: 9px;
        width: 8px;
    }
    .city-screen-btn > .pic{
        display: none;
    }
}


/*城市选择*/
.city-screen-main{
    position: fixed;
    z-index: 110;
    width: 370px;
    height: 340px;
    top: 70px;
    background: #ffffff;
    box-shadow: 0 0 5px 1px rgba(9,2,4,.1);
    display: none;
}

.title-con{
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    padding: 0 20px;
    font-size: 13px;
    background: #ffffff;
}
.title-con > img{
    position: absolute;
    width: 14px;
    top: 13px;
    right: 12px;
    cursor: pointer;
}

.city-screen-wrap{
    padding: 14px 20px;
}
.location-city{
    width: 100%;
}
.location-city > a{
    text-decoration: none;
    color: #555555;
}
.city-tab{
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}
.city-tab > li{
    float: left;
    width: 33.33333%;
    text-align: center;
    border: 1px solid #eeeeee;
    border-right-width: 0;
    background: #ffffff;
    height: 30px;
    line-height: 28px;
    cursor: pointer;
    padding: 0 10px;
    overflow: hidden;
}
.city-tab > li:last-child{
    border-right-width: 1px;
}

.city-tab > li.active{
    background: #f9f6f6;
    border-bottom: 1px solid #f9f6f6;
}

.city-list{
    width: 100%;
    height: 190px;
    overflow-y: auto;
    margin-top: 15px;
}

.city-list::-webkit-scrollbar/*整体部分*/
{
    width: 6px;
    height:7px;
}

.city-list::-webkit-scrollbar-track/*滑动轨道*/
{
    /*-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.05);*/
    border-radius: 0;
    background: rgba(0,0,0,0.03);
}

.city-list::-webkit-scrollbar-thumb/*滑块*/
{
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0);
    background: rgba(0,0,0,0.15);
}

.city-list::-webkit-scrollbar-thumb:hover/*滑块效果*/
{
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
    background: rgba(0,0,0,0.1);
}
.city-list li{
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}
.city-list li > a{
    text-decoration: none;
    color: #555555;
}
.city-list li > a:hover{
    text-decoration: underline;
}


.search-main{
    position: fixed;
    z-index: 110;
    top: 70px;
    width: 420px;
    background: #ffffff;
    box-shadow: 0 0 5px 1px rgba(9,2,4,.1);
    display: none;
}

.search-con{
    width: 100%;
    padding: 24px 20px;
    overflow: hidden;
}
.search-text-con{
    width: 60%;
    height: 34px;
    padding-right: 14px;
    position: relative;
    float: left;
}
.search-text-con:after{
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    height: 40px;
    width: 1px;
    background: #f5f5f5;
}
.search-text-con > input{
    width: 100%;
    height: 34px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 0 50px 0 10px;
}
.search-text-con > a{
    position: absolute;
    top: 0;
    right: 10px;
    width: 50px;
    height: 34px;
    background: #eeeeee;
    border-radius: 0 34px 34px 0;
    padding-top: 10px;
    text-align: center;
}
.search-text-con > a > img{
    width: 14px;
}

.label-con{
    width: 40%;
    float: left;
    height: 34px;
    padding-left: 10px;
}
.label-con > select{
    width: 100%;
    height: 34px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid #eeeeee;
}

.label-list-wap{
    width: 100%;
    margin-top: 16px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 14px;
    float: left;
    display: none;
}
.label-list-wap > h3{
    font-weight: normal;
    font-size: 13px;
    color: #555555;
    margin: 0;
    height: 30px;
    border-bottom: 1px solid #f5f5f5;
}
.label-list-wap > div{
    width: 100%;
    font-size: 0;
    padding: 14px 0;
}
.label-list-wap > div > a{
    display: inline-block;
    padding: 0 14px;
    height: 34px;
    line-height: 32px;
    border: 1px solid #eeeeee;
    border-radius: 34px;
    text-decoration: none;
    color: #999999;
    font-size: 12px;
    margin-right: 14px;
    margin-bottom: 14px;
}

@media (max-width: 767px) {
    /*城市选择*/
    .city-screen-main{
        width: 100%;
        height: 100%;
        top: 0;
        background: #f9f9f9;
        box-shadow: none;
        z-index: 1000;
        padding-top: 50px;
        overflow-y: auto;
    }

    .title-con{
        height: 50px;
        line-height: 50px;
        text-align: center;
        position: fixed;
        z-index: 1100;
        top: 0;
        left: 0;
    }
    .title-con > img{
        width: 14px;
        top: 18px;
        right: inherit;
        left: 14px;
    }

    .city-screen-wrap{
        padding: 20px 10px;
    }


    .location-city{
        width: 100%;
        height: 38px;
        line-height: 36px;
        background: #ffffff;
        border: 1px solid #eeeeee;
        padding: 0 10px;
    }
    .location-city > a{
        display: block;
    }
    .location-city > a > span{
        color: #70b3ec;
    }


    .city-tab{
        width: 100%;
        overflow: hidden;
        margin-top:20px;
    }
    .city-tab > li{
        border: 0;
        border-bottom: 1px solid #eeeeee;
        background: #f9f9f9;
        height: 38px;
        line-height: 36px;
    }
    .city-tab > li:last-child{
        border-right-width: 0;
    }

    .city-tab > li.active{
        background: #ffffff;
        border: 0;
        border: 1px solid #eeeeee;
        border-bottom: 1px solid #ffffff;
    }

    .city-list{
        height: auto;
        overflow-y: hidden;
        margin-top: 0;
        background: #ffffff;
        border: 1px solid #eeeeee;
        border-top: 0;
        padding: 20px 5px;
    }
    .city-list li{
        float: left;
        width: 25%;
        margin: 0;
        margin-bottom: 14px;
        padding: 0 8px;
    }
    .city-list li > a{
        display: inline-block;
        width: 100%;
        height: 34px;
        line-height: 32px;
        background: #ffffff;
        border: 1px solid #eeeeee;
        text-align: center;
        border-radius: 34px;
        font-size: 12px;
        overflow: hidden;
    }
    .city-list li > a:hover{
        text-decoration: none;
    }



    .search-main{
        width: 100%;
        height: 100%;
        top: 0;
        background: #f9f9f9;
        box-shadow: none;
        z-index: 1000;
        padding-top: 50px;
        overflow-y: auto;
    }

    .search-con{
        padding: 20px 10px;
        overflow: hidden;
    }
    .search-text-con{
        width: 100%;
        height: 34px;
        padding-right: 0;
    }
    .search-text-con:after{
        display: none;
    }
    .search-text-con > input{
        width: 100%;
        height: 34px;
        border-radius: 34px;
        background: #ffffff;
        border: 1px solid #eeeeee;
        padding: 0 50px 0 10px;
    }
    .search-text-con > a{
        right: 0;
    }

    .label-con{
        display: none;
    }
    .label-list-wap{
        display: block;
    }
}









