.j_select {
	margin: 0;
	padding: 0;
	cursor: pointer;
	position: relative;
	background: #fff;
	display: inline-block;
	width: 150px !important;
	margin-right: 20px;
}

.j_select .current_select {
	margin: 0;
	padding: 0;
	height: 25px;
	line-height: 25px;
	text-indent: 1em;
	border: 1px solid #ccc;
	/* box-shadow: 1px 1px 2px #ccc; */
	outline: none;
}

.j_select .current_select .select_icon {
	margin: 0;
	padding: 0;
	position: absolute;
	right: 5px;
	top: 4px;
}

.j_select ul {
	margin: 0;
	padding: 0;
	border: 1px solid #eee;
	border-radius: 2px;
	display: none;
	box-shadow: 1px 1px 2px #ccc;
	background: #fff;
	position: absolute;
	width: calc(100% - 2px) !important;
	max-height: 302px;
	overflow: auto;
	outline: none;
	z-index: 99 !important;
}

.j_select ul li {
	margin: 0;
	padding: 0;
	line-height: 25px;
	text-indent: 1em;
	list-style: none;
}

.j_select ul li:hover {
	background: #235F94;
	color: #fff;
	cursor: default;
}

.j_select ul li.current_item {
	background: #235F94;
	color: #fff;
	cursor: default;
}