@CHARSET "UTF-8";
/*外面边框的样式*/
.selectpick_div {
	background-color: #FFFFFF;
	font-size: 16px;
	font-weight: 500;
	border: solid 1px #CFCFCF;
	line-height: 30px;
	text-align:center;
	padding:0 10px;
	overflow: hidden;
	cursor: pointer;
	overflow: hidden;
	z-index: 9060;
}

.selectpick_icon {
	float: right;
	background: url(y_select2.png) no-repeat center;
	margin-left: 10px;
	height: 30px;
	width: 9px;
	cursor: pointer;
}

.selectpick_div:hover {
	background-color: #F5F5F5;
	border: solid 1px #ccc;
}

.selectpick_div:active {
	-moz-box-shadow: 0 0 3px #0099CC;
	-webkit-box-shadow: 0 0 3px #0099CC;
	box-shadow: 0 0 3px #0099CC;
	border: solid 1px #0099CC;
}
/*下拉框的主体*/
.selectpick_options {
	border: solid 1px #CFCFCF;
	border-bottom: none;
	position: absolute;
	z-index: 9060;
	font-size: 16px;
	
	display:none;
	width:97%;
}

.selectpick_options ul {
	list-style: none;
	height: auto;
	margin: 0px;
	padding: 0px;
	z-index: 9060;
	font-size: 16px;
}

.selectpick_options ul li {
	border-bottom: solid 1px #CFCFCF;
	padding-left: 10px;
	display: block;
	font-size: 16px;
	z-index: 9060;
	background-color: #fff; height:30px; line-height:30px
}
.selectpick_options li:hover{
	background-color:#eff3f6;

}
.selectpick_options ul li.selectpick_options_selected {
	background-color:#eff3f6;
	
	z-index: 9060;
}
/*设置为disabled的时候*/
.selectpick_no_select {
	cursor: default;
	color: #9a9898;
	background-color: #F5F5F5;
}
/*设置下拉框的不透明度*/
.select_hide {
	display:none;
	-moz-opacity: 0;
	opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity =0);
}
/*其他*/
.selectpick_options li{cursor:pointer;}
.selectpick_options li label{cursor:pointer;}

.selectpick_div_box{margin:0 5px;display:inline-block; *zoom:1; *display:inline;position:relative;}

@media screen and (max-width:992px){ 
.selectpick_div {border:0; font-size:26px; background:none; font-weight: normal;}
.selectpick_icon {
	background: url(y_select1.png) no-repeat center;
	margin-left: 20px;
	width: 25px;
}
.selectpick_options{margin-top:10px !important;}
.selectpick_div:hover{border:0; background:none}
.selectpick_options ul li{height:46px; line-height:46px; font-size:26px; background:}
}