/**
 * 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 20px 0 15px;
	background:  url(../img/icon/iconWzBg_01.png) no-repeat 20px center;
}

.filter-text input {
	font-size: 16px;
}

.filter-text .filter-title {
	width: 100%;
	height: 40px;
	color: #555;
	line-height: 40px;
	border: 0;
	background-color: transparent;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0;
	cursor: pointer;
}
.filter-text .filter-title:focus {
	border: none;
	box-shadow: none;
}
.filter-list {
	display: none;
	background-color: #f8f8f8;
	font-size: 14px;
	position: absolute;
	top: 41px;
	left: -1px;
	z-index: 99;
	border: 1px solid #dcdcdc;
	border-top: 1px solid #fafafa;
}
.filter-list::before {
	position: absolute;
	left: 55px;
	top: -11px;
	content: ' ';
	width: 19px;
	height: 11px;
	background: url(../../img/bg/searDqBg_01.png) no-repeat;
}
.filter-list li{
	float: left;
	margin: 4px 0 0 0;
	width: 106px;
	height: 30px;
	line-height: 30px;
}
.filter-list li.filter-null a {
	color: #d2d2d2;
}

.filter-list li a {
	display: inline-block;
	padding: 0 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
}

.filter-list li:hover {
	background-color: #f2f2f2;
}

.filter-list li.filter-selected {
	background-color: #b1b1b1;
}

.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:hover a {
	cursor: not-allowed!important;
	background-color: #fff;
}

.icon {
	position: absolute;
}

.icon-filter-arrow {
	width: 11px;
	height: 6px;
	background-repeat: no-repeat;
	background-image: url(../img/icon/icon_arrow_down_x2.png);
    background-size: 100%;
    right: 10px;
    top: 18px;
    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;
}