.es-select {
	position: relative;
	input {
		background: rgba(0, 0, 0, 0);
	}
}
.es-select-input {
	min-width: 224px;
	min-height: 34px;
	display: flex;
	background: #ffffff;
	box-sizing: border-box;
	border-radius: 4px;
	border: 1px solid #e6e6e6;
	padding: 4px 12px;
	box-shadow: 0px 0px 0px rgba(20, 141, 210, 0.12);
	flex-wrap: wrap;
	cursor: pointer;
	&.is-disabled {
		background: #e4e5ec;
		cursor: not-allowed;
		border: 1px solid #c9cad4;
	}
	&.is-focus,
	&:hover {
		border-color: #148dd2;
	}
	&__selected__placeholder {
		cursor: pointer;
		&.is-disabled {
			cursor: not-allowed;
		}
	}
	&__seleced-value-list {
		display: inline-block;
		font-size: 14px;
		margin-right: 18px;
		margin-top: -6px;
		margin-left: -6px;
		&__value {
			box-sizing: border-box;
			border-color: transparent;
			background-color: #f0f2f5;
			color: #909399;
			height: 24px;
			padding: 0 8px;
			line-height: 24px;
			display: inline-block;
			font-size: 12px;
			white-space: nowrap;
			border-radius: 4px;
			margin-left: 6px;
			margin-top: 6px;
		}
		.el-icon-close {
			border-radius: 50%;
			text-align: center;
			position: relative;
			cursor: pointer;
			font-size: 12px;
			height: 16px;
			width: 16px;
			line-height: 16px;
			vertical-align: middle;
			&:hover {
				color: #148dd2;
			}
		}
	}
	input {
		flex: 1;
		display: inline-block;
		font-family: PingFang SC;
		font-size: 14px;
		padding: 0;
		height: 24px;
		line-height: 24px;
		outline: none;
		border: 0;
		margin-right: 18px;
	}
	&__icon {
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 0;
		display: flex;
		padding-right: 12px;
		cursor: pointer;
		z-index: 1;
		&.is-disabled {
			cursor: not-allowed;
		}
		i {
			align-self: center;
			transform: rotate(180deg);
			transition: all 0.5s;
			&.is-reverse {
				transform: rotate(0deg);
			}
		}
	}
}
.es-select-panel {
	min-height: 182px;
	max-height: 264px;
	padding: 4px 0;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	z-index: 2;
	width: 100%;
	background: #ffffff;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 2px 8px rgba(0, 0, 0, 0.07);
	border-radius: 4px;
	overflow: auto;
	.no-data {
		display: block;
		width: 100%;
		height: 36px;
		text-align: center;
		line-height: 36px;
		color: #999;
	}
	&__item {
		height: 32px;
		font-family: Helvetica Neue;
		font-style: normal;
		font-weight: normal;
		font-size: 14px;
		line-height: 32px;
		color: #515c70;
		overflow: hidden; //超出的文本隐藏
		text-overflow: ellipsis; //溢出用省略号显示
		white-space: nowrap; //溢出不换
		flex-wrap: nowrap;
		padding-left: 16px;
		cursor: pointer;
		&:hover {
			background: #f5f6f9;
			border-radius: 1px;
		}

		&.is-selected {
			color: #148dd2;
		}

		&.is-disabled {
			cursor: not-allowed;
			color: #a3a9b3;
		}
	}
}
