/**
 * selectFilter  --v1.0
 * 
 **/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

.filter-disabled {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.filter-box {
    position: relative;
}

.filter-box select {
    display: none;
}

.filter-text {
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    padding: 0 36px 0 10px;
    background: #fff;
    border: 1px solid #e6e6e6;
}

.filter-text input {
    font-size: 18px;
}

.filter-text .filter-title {
    width: 100%;
    height: 100%;
    line-height: 36px;
    border: 0;
    background-color: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    cursor: pointer;
}

.filter-list {
    display: none;
    width: 100%;
    max-height: 300px;
    background-color: #fff;
    font-size: 14px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    border: 1px solid #e6e6e6;
    overflow: auto;
}

input.filter-title:focus {
    outline: 0;
}

.filter-list li.filter-null a {
    color: #d2d2d2;
}

.filter-list li a {
    display: block;
    padding: 0 10px;
    line-height: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.filter-list li:hover {
    background-color: #f2f2f2;
}

.filter-list li.filter-selected {
    /*background-color: #5FB878;*/
}

.filter-list li.filter-selected a {
    display: block;
    color: #fff;
}

.filter-list li.filter-disabled {
    background-color: #fff;
}

.filter-list li.filter-disabled a {
    display: block;
    color: #d2d2d2;
}
.filter-list li.filter-disabled a:hover{
    color: #d2d2d2;
}

.filter-list li.filter-disabled:hover a {
    cursor: not-allowed !important;
    background-color: #fff;
}

.icon {
    position: absolute;
}

.icon-filter-arrow {
    width: 16px;
    height: 14px;
    background-repeat: no-repeat;
    background-image: url(../images/icon_arrow_down_x2.png);
    background-size: 100%;
    right: 10px;
    top: calc(50% - 7px);
    transition: all .2s;
}

.icon-filter-arrow.filter-show {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.filter-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.filter-list::-webkit-scrollbar-track {
    background: #fff
}

.filter-list::-webkit-scrollbar-thumb {
    background: #CBCBCB;
}
/*添加样式 wm 2019-10-10*/
.filter-list li::before{
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 30px;
    height: 30px;
    background: #e2e2e2;
    margin: 0 10px 0 10px;
    text-align: center;
}
.filter-list li.filter-selected::before{
    content: '×';
    font-size: 33px;
    line-height: 28px;
}
.filter-list li{
    position: relative;
    text-align: left;
}
.filter-list li a {
    display: block;
    color: #fff;
    padding: 10px 10px 10px 56px;
    line-height: inherit;
    font-size: 18px;
}
.filter-list li.filter-selected a {
    color: #333;
}

.filter-list {
    width: 120%;
}
.filter-list {
    top: calc(100% - 1px);
    border: none;
    box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
.filter-text{
    border: none;
}
@media (max-width: 992px) {
    .filter-list {
        width: 100%;
    }
}