/*
 * 作者:helang
 * 邮箱:helang.love@qq.com
 * jQuery插件库:http://www.jq22.com/mem395541
 * CSDN博客:https://blog.csdn.net/u013350495
 * 微信公众号:web-7258
 */



.containers{
    width: 590px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}
.containers:after{
    content: '';
    display: block;
    clear:both;
}
.containers>div{
    float: left;
}
.containers .logo{
    width: 100%;
    height: 120px;
    margin: 0 auto 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 120px;
}
.containers .input{
    position: relative;
    height: 46px;
    border-top: #ccc solid 1px;
    border-right: none;
    border-bottom: #ccc solid 1px;
    border-left: #ccc solid 1px;
    border-radius: 4px 0 0 4px;
}
.containers .input>input{
    outline: none;
    border: none;
    padding: 0 10px 0 120px;
    margin: 0;
    height: 44px;
    width: 410px;
    color: #333;
    font-size: 16px;
    border-radius: 4px 0 0 4px;
}
.containers .input>input::-webkit-input-placeholder{
    color:#999;
}
.containers .input .picker{
    width: 120px;
    padding:0 10px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    line-height: 44px;
    cursor: pointer;
    color: #999;
    font-size: 16px;
    text-align: center;
    /*background-image: url("../images/down.png");*/
    background-position: 88px center;
    background-repeat: no-repeat;
    user-select: none;
    border:none;
}
.containers .input .picker-list{
    list-style: none;
    padding: 5px 0;
    width: 100px;
    position: absolute;
    left: 0;
    top: 50px;
    margin: 0;
    line-height: 26px;
    font-size: 12px;
    border-radius: 2px;
    box-shadow: 0 1px 5px rgba(0,0,0,.2);
    background-color: #fff;
    display: none;
}
.containers .input .picker-list>li{
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 16px auto;
    text-align: center;
}
.containers .input .picker-list>li:hover{
    background-color: #ebf1f5;
    cursor: pointer;
}
.containers .input .hot-list{
    padding: 10px 0;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50px;
    margin: 0;
    line-height: 32px;
    font-size: 14px;
    border-radius: 2px;
    box-shadow: 0 1px 5px rgba(0,0,0,.2);
    background-color: #fff;
    display: none;
}
.containers .input .hot-list>a{
    display: block;
    color: #333;
    text-decoration: none;
    padding: 0 10px;
    overflow: hidden;
}
.containers .input .hot-list>a:hover{
    background-color: #f3f3f3;
}
.containers .input .hot-list>a>div{
    float: left;
}
.containers .input .hot-list>a>div.number{
    text-align: center;
    width: 40px;
}
.containers .search{
    width: 89px;
    height: 46px;
    background-color: #2c5f9e;
    background-image: url("../images/search.png");
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.searchbg{
    background: url(../images/searchbg.png);
    position: absolute;
    bottom:0;
    width: 100%;
    z-index: 999;
}
.hbg{
    background: #f4f4f9
}
@media(max-width: 480px){
    .containers{
    width: 240px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}
    .containers .input>input {
    outline: none;
    border: none;
    padding: 0 10px 0 80px;
    margin: 0;
    height: 44px;
    width: 200px;
    color: #333;
    font-size: 16px;
    border-radius: 4px 0 0 4px;
}
}