.el-uselect {
	display: inline-block;
	position: relative;
	min-width: 96px;
	width: auto;
	height: 36px;
	font-size: 14px;
	line-height: 20px;
	padding: 8px;
	border: 1px solid transparent;
	background: #f4f4f4;
	color: #565656;
}

.el-uselect.focus {
	border-color: #26a1c0;
	background: #ffffff;
}

.el-uselect .el-uselect-value {
	position: relative;
	display: block;
	width: 100%;
}

.el-uselect .el-uselect-value::after {
	position: absolute;
	z-index: 3;
	content: '';
	height: 8px;
	width: 8px;
	right: 0;
	top: 50%;
	margin-top: -4px;
	background: transparent;
	border-top: 8px solid #777777;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}

.el-uselect .el-uselect-dropdown {
	display: none;
	position: absolute;
	z-index: 5;
	height: 0;
	min-width: 0;
	width: 100%;
	top: 100%;
	left: -1px;
	margin-top: -2px;
	background: #ffffff;
	border-radius: 0 0 3px 3px;
	border: 1px solid #26a1c0;
	border-top: none;
	transform-style: flat;
	transform-origin: top;
	animation: none;
	-webkit-animation: none;
	visibility: hidden;
}

.el-uselect.focus .el-uselect-dropdown {
	display: block;
	height: auto;
	visibility: visible;
	animation: 0.4s showing ease-in;
	-webkit-animation: 0.4s showing ease-in;
}

.el-uselect .el-uselect-dropdown .el-uselect-search {
	display: block;
	width: 100%;
	padding: 5px;
}

.el-uselect .el-uselect-dropdown .el-uselect-search input {
	display: block;
	width: 100%;
	height: 32px;
	box-shadow: none;
	outline: none !important;
	font-size: 12px;
	padding: 6px 8px;
	box-shadow: none;
	border: 1px solid #f4f4f4;
	background: transparent;
	color: #565656;
}

.el-uselect .el-uselect-dropdown .el-uselect-search input:focus {
	background: #ffffff;
	border-color: transparent;
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.15);
}

.el-uselect .el-uselect-dropdown .el-uselect-options {
	display: block;
	width: 100%;
	padding: 5px;
}

.el-uselect .el-uselect-dropdown .el-uselect-options a {
	display: block;
	width: 100%;
	font-size: 12px;
	padding: 6px 8px;
	color: #777777;
	text-decoration: none;
}
.el-uselect .el-uselect-dropdown .el-uselect-options a:hover{
	color: #393939;
	background: #f4f4f4;
}
.el-uselect-color {
    display: inline-block;
    content: ' ';
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
	border: 1px solid #efefef;
}
.el-uselect-mask{
	position: absolute;
    content: " ";
    z-index: 2;
    background: transparent;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}