<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * 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 0.3rem 0 0.2rem;
	/*background: #fff;
	border: 1px solid #e6e6e6;*/
}

.filter-text input {
	font-size: 0.14rem;
}

.filter-text .filter-title {
	width: 100%;
	height: 0.36rem;
	line-height: 0.36rem;
	border: 0;
	/*1119*/
	outline: none;
	background-color: transparent;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0;
	cursor: pointer;
	font-size: 0.15rem;
}

.filter-list {
	display: none;
	width: 100%;
	max-height: 3rem;
	background-color: #fff;
	font-size: 0.15rem;
	position: absolute;
	top: 0.64rem;
	left: 0;
	z-index: 99;
	/*border: 1px solid #e6e6e6;*/
	overflow: auto;
	box-shadow: 0px 0.03rem 0.1rem rgba(14,14,14,0.66);
	/*831适配其它浏览器*/
	-moz-box-shadow: 0px 0.03rem 0.1rem rgba(14,14,14,0.66);
	-webkit-box-shadow: 0px 0.03rem 0.1rem rgba(14,14,14,0.66);
	border-radius: 4px;
	text-align: center;
}

.filter-list li.filter-null a {
	color: #d2d2d2;
}

.filter-list li a {
	display: block;
	padding: 0 0.18rem;
	line-height: 0.4rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
    color: #000000;
}

.filter-list li:hover {
	background-color: #f2f2f2;
}

.filter-list li.filter-selected {
	background-color: #2b6ec9;
}

.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: 0.08rem;
	height: 0.08rem;
	background-repeat: no-repeat;
    background-image: url(http://iptrans.cnpat.com.cn:90/img/icon_arrow_down_x2.png);
    background-size: 100%;
    right: 0.1rem;
    top: 42%;
    transition: all .2s;
}

.icon-filter-arrow.filter-show {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.filter-list::-webkit-scrollbar {
	width: 0.04rem;
	height: 0.04rem;
}

.filter-list::-webkit-scrollbar-track {
	background: #fff 
}

.filter-list::-webkit-scrollbar-thumb {
	background: #CBCBCB;
}</pre></body></html>