/* 弹窗背景层 */
.modal-background {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10001;
	justify-content: center;
	align-items: center;
}

/* 弹窗容器 */
.modal-container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	width: 350px;
	max-width: 90%;
	overflow: hidden;
	animation: popup 0.3s ease-out;
}

/* 弹窗标题栏 */
.modal-header {
	background-color: #00aa7f;
	color: white;
	font-size: 18px;
	font-weight: bold;
	position: relative;
}

#modalTitle{
	margin-left: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
}

/* 弹窗内容区域 */
.modal-content {
	padding: 20px;
	line-height: 1.5;
	color: #333;
}

/* 关闭按钮 */
.close-btn {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	font-size: 24px;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s;
}

.close-btn:hover {
	color: white;
}

/* 弹窗动画 */
@keyframes popup {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}