/*html body{
    background-color: rgba(16, 14, 4, 0.03);
}*/
.search{
    /*width:250px;
    height:44px;
    margin:100px auto;
    background-color: white;*/
}
.citySelect{
    width:300px;
    height:37px;
    position: relative;
    cursor: pointer;
    border: 1px solid #dddddd;
    border-radius: 2px
    /*padding-left: 15px;*/

}
.cityName{
    display: block;
    /*padding-top: 10px;*/
    padding-left: 9px;
    color:#555;
    width:250px;
    /*font-size: 14px;*/
    display: inline-block;
    height: 33px;
    line-height: 33px;
    overflow: hidden;
    cursor: pointer;
}
.iconDown{
    width:33px;
    height:33px;
    position:absolute;
    top:0px;
    right:10px;
    background-image: url("../images/list_icon.png");
    background-repeat: no-repeat;
    /*background-position: 0 -2044px;*/
    cursor:pointer;
    display: inline-block;
}
.dropUl{
    list-style: none;
    height:300px;
    overflow: scroll;
    padding:0;
}
.dropUl::-webkit-scrollbar {/*滚动条整体样式*/
    width: 5px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 0;
}
.dropUl::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
    background: #d1d4db;
}
.dropUl::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: none;
    border-radius: 0px;
    /*background: #EDEDED;*/
}
.dropProv, .dropCity{
    box-shadow: 0 6px 12px 0 rgba(0,0,0,.15);
}

.dropProvUl li{
    width: 120px;
    height:50px;
    padding-left: 20px;
    color:#666;
    line-height: 50px;
    background-color: #f1f3f6;
    cursor: pointer;
}
.dropProvUl li:hover{
    background-color: rgba(31, 180, 254, 1);
}
.dropCityUl{
    margin-left: 5px;
    background-color:#f1f3f6;
}
.dropCityUl li{
    width: 120px;
    height:50px;
    padding-left: 20px;
    color:#666;
    line-height: 50px;
    cursor: pointer;

}
.dropCityUl li:hover{
   background-color:rgba(31,180,254,0.7);
}
.dropDown{
    position: absolute;
    top:40px;
    left:48.6%;
}
.dropDown div{
    width:120px;
    height:300px;
    float: left;
    display: none;
}
@media screen and (max-width: 700px) {
    .dropDown{
     top:75px;
     left:0;       
    }
    .citySelect{
        width:100%;
    }
}