@charset "utf-8";

/* CSS Document */


/*下拉选择框开始*/
.SelectControls {
	width: 100%;
	height: 36px;
	background-color: rgba(72,131,255,.3);
	position: relative;
	cursor: pointer;
	z-index: 1;
}

.SelectControls .Selected {
	border: rgba(72,131,255,.3) 1px solid;
	height: 34px;
	display: block;
	padding: 0 10px;
	font-size: 14px;
	line-height: 34px;
	position: relative;
	z-index: 2;
	color:#fff;
}

.SelectControls .icon-arrow {
	width: 12px;
	height: 7px;
	display: block;
	position: absolute;
	z-index: 1;
	right: 10px;
	top: 50%;
	margin-top: -4px;
	background: url(../images/SelectControlsArrow.png) no-repeat left top;
	transition: all 0.5s;
}

.SelectControls.active .icon-arrow {
	background-position: 0px -7px;
	transform: rotate(0deg);
}

.SelectControls ul {
	position: absolute;
	left: 0;
	top: 36px;
	border: #4884ff 1px solid;
	border-top: none;
	max-height: 180px;
	overflow: hidden;
	overflow-y: auto;
	background: #4884ff;
	display: none;
	transition: all 0.5s;
	color:#fff;
}

.SelectControls.active ul {
	display: block;
	box-shadow: 0px 1px 10px rgba(0,0,0,.15);
}

.SelectControls ul li {
	height: 32px;
	line-height: 32px;
	font-size: 12px;
	color: #fff;
	padding: 0 10px;
}

.SelectControls ul li:hover {
	background: #eee;
	color: #ff4539;
}


.SelectControls2 {
	width: 240px;
	height: 40px;
}

.SelectControls2 .Selected {
	height: 38px;
	line-height: 38px;
	font-size: 14px;
}

.SelectControls2 ul {
	max-height: 160px;
	top: 40px;
}

.SelectControls2 ul li {
	height: 40px;
	line-height: 40px;
	font-size: 14px;
}

.SelectControls2 ul li:hover {
	background: #ff4539;
	color: #fff;
}

/*下拉选择框结束*/