* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	width: 100%;
	height: 100%;
	background: #f0f2f5;
	font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 统一宽度容器，与内部网站宽度对齐 */
.page-container {
	max-width: 520px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	background: #fff;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ========== 顶部温馨提示栏 ========== */
.notice-header {
	background: #ffffff;
	flex-shrink: 0;
	width: 100%;
	border-bottom: 1px solid #f0f0f0;
}

.notice-top {
	padding: 12px 14px;
}

.notice-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

/* 左侧盾牌认证标识 - 新款样式 */
.notice-brand {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	background: #ffffff;
	border: 1px solid #d6e4ff;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}
.notice-brand::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #1890ff, #40a9ff);
}
.brand-icon {
	width: 18px;
	height: 18px;
	fill: #1890ff;
	flex-shrink: 0;
}
.brand-text {
	color: #1677ff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.5px;
}

.notice-btn-group {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.btn-guide {
	background: linear-gradient(135deg, #1890ff, #40a9ff);
	color: #ffffff;
	border: none;
	border-radius: 20px;
	padding: 7px 16px;
	font-size: 13px;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(24, 144, 255, 0.25);
	transition: all 0.2s ease;
}
.btn-guide:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.btn-service {
	background: linear-gradient(135deg, #52c41a, #73d13d);
	color: #ffffff;
	border: none;
	border-radius: 20px;
	padding: 7px 16px;
	font-size: 13px;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(82, 196, 26, 0.25);
	transition: all 0.2s ease;
}
.btn-service:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.notice-marquee {
	display: flex;
	align-items: center;
	background: #f0f7ff;
	padding: 9px 14px;
	font-size: 13px;
	color: #1677ff;
	overflow: hidden;
	border-left: 3px solid #1890ff;
}

.horn-icon {
	width: 16px;
	height: 16px;
	margin-right: 8px;
	flex-shrink: 0;
	fill: #1890ff;
}

.marquee-text {
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
}

.marquee-text span {
	display: inline-block;
	padding-left: 100%;
	animation: marquee 22s linear infinite;
}

/* 滚动动画 */
@keyframes marquee {
0% {
	transform: translateX(0);
}
100% {
	transform: translateX(-100%);
}
}

/* ========== iframe 嵌入区域 ========== */
.iframe-container {
	flex: 1;
	width: 100%;
	overflow: hidden;
}

iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

/* ========== 通用弹窗样式 ========== */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}
.modal-overlay.active {
	display: flex;
}
.modal-content {
	position: relative;
	width: 100%;
	max-width: 420px;
	background: #ffffff;
	border-radius: 12px;
	animation: modalFadeIn 0.25s ease;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
}
@keyframes modalFadeIn {
from { opacity: 0; transform: scale(0.9); }
to { opacity: 1; transform: scale(1); }
}
.modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #f0f0f0;
	border: none;
	font-size: 18px;
	color: #666;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	z-index: 10;
}
.modal-close:hover {
	background: #e0e0e0;
}

/* ========== 客服二维码弹窗 ========== */
.qr-wrapper {
	background: #1890ff;
	border-radius: 8px;
	padding: 20px 20px 24px;
	text-align: center;
	margin: 20px;
}
.qr-title {
	color: #ffffff;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 16px;
}
.qr-code-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 16px;
	display: inline-block;
}
.qr-placeholder {
	width: 220px;
	height: 220px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 14px;
	border-radius: 8px;
}

/* ========== 选卡指南弹窗 ========== */
.guide-body {
	padding: 24px 20px 20px;
	overflow-y: auto;
	color: #333;
	line-height: 1.7;
	font-size: 14px;
}
.guide-body h3 {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 16px;
	color: #1890ff;
}
.guide-intro {
	margin-bottom: 16px;
	color: #555;
}
.guide-item {
	margin-bottom: 14px;
}
.guide-item .question {
	font-weight: 600;
	color: #222;
	margin-bottom: 4px;
}
.guide-item .answer {
	color: #555;
	padding-left: 1.2em;
}
/* 红色重点文字 */
.text-red {
	color: #cf1322;
	font-weight: 500;
}
.guide-final {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px dashed #e8e8e8;
	color: #555;
}
.guide-final p {
	margin-bottom: 10px;
}
.guide-tip {
	margin-top: 12px;
	padding: 10px 12px;
	background: #fff1f0;
	border-radius: 6px;
	color: #cf1322;
	font-size: 13px;
	font-weight: 500;
}
/* 我已知晓按钮 */
.btn-known {
	display: block;
	width: 100%;
	margin-top: 12px;
	padding: 10px 0;
	background: linear-gradient(135deg, #1890ff, #40a9ff);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: opacity 0.2s ease;
}
.btn-known:hover {
	opacity: 0.9;
}