﻿.select_container_nw {
	position: relative;
	width: 180px;
	font-size: 12px;
	font-family: "微软雅黑";
	/*font-weight: 300;*/
	letter-spacing: 1px;
	display: inline-block;
	background: #EAF6FE;
}

.select_main {
	position: relative;
	width: inherit;
	/*border: 1px solid #b7d7ff;*/
	height: 28px;
	cursor: pointer;
}

.select_content {
	display: block;
	padding: 6px 0px 6px 10px;
	overflow: hidden;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
}

.select_content::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 40px;
	border-radius: 0 2px 2px 0;
	/*box-shadow: inset -55px 0 25px -20px #fff;*/
}

.select_input {
	padding-left: 10px;
	padding-right: 32px;
	font-size: 15px;
	overflow: hidden;
	outline: none;
	height: 25px;
	border: none;
	border-bottom: 1px solid #00bb9c;
	background: url('/images/Search.png') no-repeat fixed top;
	z-index: 1;
}

.search_svg {
	position: absolute;
	top: 2px;
	right: 3px;
	z-index: 2;
}

.select_arrow,
.select_arrow_after {
	content: '';
	position: absolute;
	right: 6px;
	top: 38%;
	border: 8px solid transparent;
	border-top: 8px solid #108CEE;
	z-index: 2;
	-webkit-transform-origin: 50% 20%;
	-moz-transform-origin: 50% 20%;
	-ms-transform-origin: 50% 20%;
	transform-origin: 50% 20%;
	transition: all 150ms ease-in-out;
	cursor: pointer;
}

.select_arrow_after {
	cursor: pointer;
	margin-top: -1px;
	right: 6px;
	border-top-color: #EAF6FE;
}

.select_list {
    position: absolute;
    left: 0px;
    top: 100%;
    width: inherit;
    /* border: 1px solid #b7d7ff; */
    border-top: none;
    background-color: #fff;
    overflow: hidden;
    display: none;
    /* box-shadow: 1px 1px 1px 1px; */
    box-shadow: 2px 5px 8px rgba(0,0,0,0.2);
    border-left: 1px solid #eaf6fe;
    border-right: 1px solid #eaf6fe;
    border-bottom: 1px solid #eaf6fe;
}

.select_list> .select_list_body ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.select_list> .select_list_body ul li {
	padding-top: 4px;
	padding-bottom: 4px;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	overflow: hidden;
	text-indent: 10px;
	color: #333 !important;
}

.select_list> .select_list_body ul li:hover {
	background-color: #b7d7ff;
	color: #fff!important;
}

.cast_rotate {
	transform-origin: 50% 20%;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.select_list_body {
	max-height: 200px;
	overflow: hidden;
}

.list_current {
	display: none;
}

.no_result {
	display: none;
	text-align: center;
	color: #b7d7ff;
}