@CHARSET "UTF-8";
.mask {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	background: rgb(0, 0, 0);
	opacity: 0.5;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.alert {
	position: absolute;
	left: 50%;
	width: 300px;
	height: 160px;
	margin: 0px 0px 0px -150px;
	z-index: 10;
	background-color: white;
	bottom: 0px;
}

.alertTitle {
	height: 10px;
	padding: 15px;
	line-height: 10px;
	font-size: 12px;
	letter-spacing: 2px;
}

.sTitle {
	float: left;
}

.alertClose {
	float: right;
	cursor: pointer;
	transition: all 1s;
}

.alertClose:hover {
	transform: rotate(360deg);
}

.alertContent {
	margin: 30px 0px 0px 30px;
}

.alertSure {
	float: right;
	margin: 10px 30px 0px 0px;
}

.btnSure {
	padding: 10px 20px 10px 20px;
	border: none;
	cursor: pointer;
}