/* ====== 弹窗样式【局部作用域，不污染全局页面】 ====== */
.pop-xsmanhua-wrap {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.78);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
}
.pop-xsmanhua-wrap .tip-box {
	width: 100%;
	max-width: 400px;
	background: #fff;
	border-radius: 12px;
	padding: 28px 20px;
	text-align: center;
}
.pop-xsmanhua-wrap .tip-box h3 {
	font-size: 19px;
	color: #222;
	margin-bottom: 14px;
}
.pop-xsmanhua-wrap .tip-box p {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	margin: 6px 0;
}
.pop-xsmanhua-wrap .site-link {
	display: block;
	margin: 16px auto;
	padding: 12px 16px;
	background: #ff5000;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
}
.pop-xsmanhua-wrap .close-btn {
	width: 100%;
	padding: 11px;
	border: 1px solid #ddd;
	background: #f7f7f7;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}
.pop-xsmanhua-wrap .count-text {
	color: #f23030;
	margin-top: 12px;
	font-size: 14px;
}
body.lock-scroll {
	overflow: hidden !important;
}