
/*带搜索的下拉框 - 开始*/
.ySearchSelect{
	height: 26px;
	position: relative;
	
}
.ySearchSelect i.layui-edge{
    z-index: 1;
}
.ySearchSelect i.select{
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-moz--transform: rotate(180deg);
    transform: rotate(180deg); 
    margin-top: -8px;
}
.ySearchSelect .layui-input{
	line-height: 24px;
	position: relative;
	z-index: 1;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../../images/jiantou.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.ySearchSelect .input-text{
    line-height:26px;
    position: absolute;
    top: 26px;
    left: 1px;
    z-index: 3;
    display: none;
 
}
.ySearchSelect .input-text input{
	width: 98%;
	margin-left: 1%;
	height: 26px;
	line-height: 24px;
	background-image: url(../../images/chosen.png);
	background-repeat: no-repeat;
	background-position: right center;
	z-index: 0;
	background-color: #FFFFFF;
}
.ySearchSelect .input-text .iconfont{
	line-height: 26px;
	color: #999;
	position: absolute;
	top: 0px;
	right: 4%;
	z-index: 2;
}
.ySearchSelect ul{
	display: none;
	width: 100%;
	max-height: 228px;
	position: relative;
	top: 0px;
	z-index: 2;
	background-color: #fff;
	border: 1px solid #95B8E7;
	border-top: 0;
	margin-top: -1px;
	padding: 5px 0;
	padding-top:26px;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.ySearchSelect ul li{
	width: 100%;
	height: 26px;
    line-height: 26px;
    padding: 0 10px;
    cursor: pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ySearchSelect ul li.active{
	background-color: #009688 !important;
	color: #FFF;
}
.ySearchSelect ul p{
	width: 100%;
	height: 26px;
    line-height: 26px;
    text-align: center;
    padding: 0 10px;
    color: #999;
    cursor: pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ySearchSelect ul li.on{
	display: block;
}
.ySearchSelect ul li.hide{
	display: none;
}
.ySearchSelect ul li:hover{
	background-color: #f0f0f0;
}
/*带搜索的下拉框 - 结束*/