div,
ul,
li {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    padding: 0;
}

.select2 {
    position: relative;
    width: 100%;
    /* min-width: 150px; */
    height: 32px;
    border: 1px solid #cdcdcd;
    cursor: pointer;
    box-sizing: border-box;
}

.select2:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    content: '';
    background: url(/vcommon/theme/supplier/img/sidebar_down_arrow.png) no-repeat;
    width: 16px;
    height: 16px;
    margin-top: -7px;
   
}
.ischecked:after{
    background: url(/vcommon/theme/supplier/img/arrow_top.png) no-repeat ;
    background-size: 16px 16px;
    background-position: center;
}

.select2 .select_text {
    padding: 0 10px 0 10px;
    height: 30px;
    line-height: 30px;
}

.select_ul {
    display: none;
    position: absolute;
    top: 31px;
    left: -1px;
    /* width: 100%; */
    min-width: 100%;
    right: -1px;
    /* border: 1px solid #D4D4D4; */
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    background: #fff;
    z-index: 1;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

.select_ul li {
    line-height: 30px;
    text-indent: 10px;
}

/* .select_ul li:hover {
    color: #fff;
    background: #6AA7EA;
} */

.select_ul li:hover {
    color: #003399;   
    background: rgba(6, 65, 152, 0.08);
    opacity: 0.99;
}
.select_ul li.cur {
    color: #003399;
    background: rgba(6, 65, 152, 0.08);
    opacity: 0.99;
}
.placeholder{
    color:#aaa;
}
.ischecked{
    border: 1px solid #003399;
}