* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	color: #fff;
	line-height: 1.6;
	padding-top: 50px;
}



.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	max-width: 780px;
	margin: 0 auto;

	height: 58px;

	background: #ffffff;

	display: flex;
	align-items: center;
	justify-content: space-around;

	z-index: 9999;

	/* 底部分割线（金色） */
	border-bottom: 1px solid rgba(244, 210, 107, 0.7);

	/* 立体阴影（核心高级感） */
	box-shadow:
		0 2px 8px rgba(0, 0, 0, 0.06),
		0 10px 25px rgba(0, 0, 0, 0.05);

	/* 轻微玻璃感（支持的浏览器更高级） */
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

/* =========================
   导航链接
========================= */
.topbar a {
	color: #333;
	font-size: 13px;
	text-decoration: none;

	display: flex;
	flex-direction: column;
	align-items: center;

	gap: 2px;

	padding: 6px 10px;
	border-radius: 10px;

	transition: all 0.2s ease;
	position: relative;
}

/* icon */
.topbar a i {
	font-size: 16px;
}

/* hover效果 */
.topbar a:hover {
	background: rgba(244, 210, 107, 0.12);
	color: #f4d26b;
	transform: translateY(-1px);
}

/* 当前激活 */
.topbar a.active {
	background: rgba(244, 210, 107, 0.18);
	color: #f4d26b;
	font-weight: 600;
}

/* =========================
   点击反馈（按压感）
========================= */
.topbar a:active {
	transform: scale(0.96);
}

/* =========================
   移动端优化
========================= */
@media (max-width: 480px) {

	.topbar {
		height: 52px;
	}

	.topbar a {
		font-size: 11px;
		padding: 4px 6px;
	}

	.topbar a i {
		font-size: 14px;
	}
}


/* loading */
/* loading */
.loading{
	display:block;
	max-width:780px;
	margin:15px auto;
	padding:0 16px;
}

.bar{
	width:100%;
	height:8px;
	background:#222;
	border-radius:999px;
	overflow:hidden;
}

.bar span{
	display:block;
	height:100%;
	width:0%;
	background:#f4d26b;
	transition:width .2s;
}
/* iframe */
.frame-wrap {
	display: non1e;
	max-width: 780px;
	margin: 10px auto;
	padding: 0 0px;
}

iframe {
	width: 100%;
	border: none;
	background: #fff;
	display: block;
}

.container{
    max-width:780px;
    margin:5px auto;
	padding: 0px 0px;
	color: #000;
	gap: 6px;
}

.section{
    padding:10px 0px; 
    border:1px solid #e6e6e6;
    background:#fff;
    border-radius:12px;
	
}

.section:first-of-type{
	padding:10px 10px;
	margin-top:5px;
	margin-bottom:8px;
	background-color:#bdfcba;
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:8px;
}

.section:first-of-type h2{
	color:#000;
	font-size:20px;
	margin:0;
	line-height:1.3;
	white-space:nowrap;
}

.sub-title{
	font-size:14px;
	color:#555;
	line-height:1.5;
	flex:1;
	min-width:220px;
}


/* 连续排列间距控制 */
.section + .section{
    margin-top:5px;
}

.footer {
	text-align: center;
	padding: 10px 16px;
	color: #777;
	font-size: 16px;
}