.search{
    width:250px;
    height:44px;
    margin:100px auto;
    background-color: white;
}
.citySelect{
    /*height:42px;*/
    position: relative;
    cursor: pointer;
    /*padding-left: 15px;*/

}
.cityName{
    display: block;
    padding-top: 10px;
    padding-left: 10px;
    width:70px;
    font-size: 13px;
    overflow: hidden;
    cursor: pointer;
}
.iconDown{
    width:16px;
    height:16px;
    position:absolute;
    top:15px;
    right:7px;
    background-image: url("../images/icons.png");
    background-repeat: no-repeat;
    background-position: 0 -2044px;
    cursor:pointer;
    display: inline-block;
}
.dropUl{
    list-style: none;
    height:300px;
    overflow-y: scroll;
    padding:0;
    box-shadow: 0px 0px 1px #ccc;
}
.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;   
}
.dropProvUl li{
    width: 100%;
    height:37px;
    text-align:center;
    /*padding-left: 20px;*/
    color:#9fa3b0;
    line-height: 37px;
    background-color: white;
    cursor: pointer;
}
.dropProvUl li:hover{
    background-color: #f1f3f6;
}
.dropCityUl{
    
    background-color:white;
}
.dropCityUl li{
    width: 100%;
    height:37px;
    text-align:center;
    /*padding-left: 20px;*/
    color:#9fa3b0;
    line-height: 37px;
    cursor: pointer;
}
.dropCityUl li:hover{
   background-color:#f1f3f6;
}
.dropDown{
    width: 100%;
    position: absolute;
    z-index:1000;
}
.dropDown div{
    background: #fff;
    width:50%;
    height:300px;
    float: left;
    display: none;
}