.filter-disabled {
	-moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.filter-box {
    position: relative;
	width: 240px;margin-left: 40px;
}
.filter-box:first-child{margin-left: 0;}
.filter-box select {
	display: none;
}
.filter-box input{color: #62656a;}
.filter-text {
	height: 100%;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	padding: 0 30px 0 10px;
	background: #fff;
	border: 1px solid #cfd0d1;
	border-radius: 3px;
}

.filter-text input {
	font-size: 14px;
}

.filter-text .filter-title {
	width: 100%;
	height: 36px;
	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: 42px;
	left: 0;
	z-index: 3;
	border: 1px solid #e6e6e6;
	overflow: auto;
}

.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: #d2d2d2;
}

.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-filter-arrow {
	width: 6px;
	height: 6px;
    right: 0;
    top: 50%;margin-top: -3px;
    transition: all .2s;position: absolute;
}

.icon-filter-arrow:after{content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid #bbbbbb;
    border-bottom: 1px solid #bbbbbb;
    transform: rotate(45deg) translate(-50%,-50%)}

.filter-list::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.filter-list::-webkit-scrollbar-track {
	background: #fff 
}

.filter-list::-webkit-scrollbar-thumb {
	background: #cbcbcb;
}
@media only screen and (max-width: 1200px){
	.filter-box{width: 180px;margin-left: 20px;}
}
@media only screen and (max-width: 765px){
	.filter-box{width: 100%;}
	.filter-box:first-child{width: 100%;margin-bottom: 0.5rem;}
	.filter-box:nth-child(2){margin-left: 0;}
	.filter-text input{font-size: 13px;}
}