/*
	寮瑰眰涓讳綋
*/
.pop_mask {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000000;
	background: rgba(0,0,0,0.5);
	z-index: 999999;
}
.pop_mask .pop_body {
	margin: 76px auto;
	padding: 0;
	border-radius: 10px;
	width: 460px;
	background: #fff;
	position: relative;
	overflow: hidden;
}
.pop_cancel_box{
	position: absolute;
	right: 0;
	top: 0;
	height: 30px;
	width: 30px;
}
.pop_cancel{
	padding-top: 10px;
	height: 20px;
	line-height: 20px;
	width: 10px;
	font-size: 20px;
	cursor: pointer;
}
.pop_btn_box {
	margin: 24px auto;
	height: 34px;
	overflow: hidden;
	/*width: fit-content; 鏂板睘鎬у眳涓�*/ 
	text-align: center;
}
.pop_btn {
	display: inline-block;
	border-radius: 15px;
	margin: 0 5px;
	padding: 0 20px;
	min-width: 76px;
	height: 32px;
	line-height: 32px;
	font-size: 14px;
	color: #fff;
	background: #ff4242;
	-webkit- opacity: 0.8;
	-moz- opacity: 0.8;
	-ms- opacity: 0.8;
	-o- opacity: 0.8;
	opacity: 0.8;
	filter: alpha(opacity=80);
	cursor: pointer;
}
.pop_btn:hover {
	-webkit- opacity: 1;
	-moz- opacity: 1;
	-ms- opacity: 1;
	-o- opacity: 1;
	opacity: 1;
	filter: alpha(opacity = 100);
}
/*鑱旂郴鎴戜滑寮瑰眰宸紓*/
.pop_mask .messages_box .messages_title {
	margin: 36px auto;
	line-height: 22px;
	height: 22px;
	font-size: 18px;
	font-weight: 400;
	color: #32363a;
}
.pop_mask .messages_box ul {
	background: #fff !important;
}
.pop_mask .messages_box ul li {
	border: 1px solid #f1f1f1;
	border-radius: 4px;
}
/*鍔ㄧ敾*/
.duang {
	animation-name: duang; 
	animation-duration: 0.8s;
}
@keyframes duang {
	0%	{
		transform: scale(1,1);
	}
	25% {
		transform: scale(0.9,0.9);
	}	
	50% {
		transform: scale(1,1);
	}
	75% {
		transform: scale(0.9,0.9);
	}
	100% {
		transform: scale(1,1);
	}
}