.es-mask__global {
	position: fixed;
	height: 100%;
	overflow: auto;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 2000;
	background-color: rgba(0, 0, 0, 0.5);
}
.es-modal {
	width: 30%;
	background: #ffffff;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.06), 0 7px 18px 0 rgba(0, 0, 0, 0.1);
	padding: 0 16px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	left: 0;
	margin: auto;
	display: flex;
	flex-direction: column;
	z-index: 2001;
	&__header {
		height: 56px;
		line-height: 56px;
		&__icon-close {
			position: absolute;
			cursor: pointer;
			color: #909399;
			top: 16px;
			right: 16px;
			&:hover {
				color: #409eff;
			}
		}
	}
	&__content {
		flex: 1;
	}
	&__footer {
		justify-items: end;
		width: 100%;
		box-sizing: border-box;
		padding-top: 12px;
		height: 56px;
		line-height: 44px;
		&__cancel,
		&__confirm {
			float: right;
		}
		&__cancel {
			margin-right: 8px;
		}
	}
	&__fullscreen {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		transform: unset;
		width: unset;
	}
}
