/* 王治尧 04/01 */
.selectBox{
    width: 360px;
    height: 36px;
    line-height: 36px;
    background: #f72323;
}
.inputCase{
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.inputCase input.imitationSelect{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    display: block;
    text-indent: 20px;
    cursor: default;
}
.inputCase i.fa{
    position: absolute;
    right: 10px;
    top: 10px;
    /* color: #007AFF; */
}
.selectUl{
    display: none;
    background: #fff;
    position: relative;
    z-index: 100;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    max-height: 217px;
    overflow-y: scroll;
}
.selectUl li{
    height: 36px;
    line-height: 36px;
    list-style: none;
    text-indent: 20px;
    font-size: 14px;
    color: #404040;
    /* border-bottom: 1px solid #ccc; */
    transition: all .5s ease 0s;

}
.selectUl li:hover{
    color: #0379D3;
    background:rgba(248,249,252,1);
}
.selectUl li:last-child{
    border-bottom: 0 none;
}
