
.select {
	background-color: #fff;
	border-radius: 5px;
	position: relative;
	width: 100%;
	max-width: 100%;
}

.select.is-active {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.select.is-active .select__icon {
	transform: translateY(-50%) rotate(180deg);
}

.select__header {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 24px;
}
.select__current,
.select__item {
	color: #000;
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
}
.select__current {
	line-height: 24px;
	padding-left: 12px;
	padding-right: 28px;
	user-select: none;

	overflow: hidden;
	text-overflow: ellipsis;
	display: -moz-box;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.select__icon {
	align-items: center;
	display: flex;
	justify-content: center;
	height: 24px;
	position: absolute;
	right: 4px;
	transform: translateY(-50%);
	top: 50%;
	width: 24px;
}

.select__body {
	background-color: #fff;
	border: 1px solid #cccccc;
	border-top: 0;
	display: none;
	left: 0;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 5;
}
.select.is-active .select__body {
	display: block;
}
.select__item {
	cursor: pointer;
	padding: 3px 11px;
}

.select__item:hover {
	background-color: #f2f2f2;
}

@media (max-width: 360px) {
	.select__current,
	.select__item {
		font-size: 16px;
	}
}

.newWrap {
	width: 100%;
	display: block;
	flex: 0 0 100%;
	padding: 0;
	text-align: center;
}