/* 遮罩层样式 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	display: none;
}

/* 弹出层样式 */
.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	width: 300px;
	background-color: white;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	border-radius: 10px;
}
/* 显示弹出层和遮罩层的类 */
.overlay.show {
	display: block;
}
.popup.show {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}
/* 弹出层内容样式 */
.popup p {
	font-weight: bold;
	font-size: 18px;
	text-align: center;
}
.popup span {
	display: block;
	margin-top: 20px;
	text-indent: 20px;
	word-wrap: break-word;
	white-space: normal;
}
/* 关闭按钮样式 */
.close-popup-btn {
	text-align: center;
	padding: 10px 30px;
	color: white;
	background-color: #FF6316;
	font-weight: bold;
	font-size: 18px;
	border: none;
	border-radius: 30px;
	display: block;
	margin: 20px auto 0;
}