
.alertBox {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, .4);
	z-index: 9999999;
}

.alertBox .conts {
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	text-align: center;
	border-radius: 5px;
	width: 35rem;
	padding: 40px 0;
	transform: translate(-50%, -50%)
}

@media screen and (max-width: 414px) {
	.alertBox .conts {
		width: 80%;
	}
}

.alertBox .conts .title {
	text-align: center;
	line-height: 50px;
	font-size: 20px;
	font-weight: 600;
	color: #575757;
}

.alertBox .conts .imgBox {
	width: 5rem;
	height: 5rem;
	margin: 0 auto;
	display: block;
}

.alertBox .conts .info {
	color: #545454;
	font-size: 2rem;
	padding: 2rem 20px;
}

.alertBox .conts .btnBox {
	width: 20rem;
	height: 3rem;
	line-height: 3rem;
	text-align: center;
	margin: 20px auto 0;
}

.alertBox .conts .ascertain {
	display: inline-block;
	margin: 0 5px;
	cursor: pointer;
	background: #3085d6;
	color: #fff;
	width: 10rem;
	border-radius: 5px;
	font-size: 1.5rem;
}

.alertBox .conts .cancel {
	display: inline-block;
	margin: 0 5px;
	cursor: pointer;
	background: rgb(170, 170, 170);
	color: #fff;
	width: 10rem;
	border-radius: 5px;
}