/* 全局样式 */
[v-cloak] {
	display: none;
}

/* 顶部导航栏主题色 */
:root {
	--nav-blue-1: #1C4C9D;
	--nav-blue-2: #2C64AE;
	--nav-blue-3: #4783C3;
}

/* 核心新增：强制富文本所有字体替换 */
/* 覆盖富文本常见容器（可根据实际富文本容器类名补充） */
.richtext,
.rich-text,
.content,
.article,
p,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
li,
a,
td,
th,
label,
input,
textarea,
section,
article,
aside,
header,
footer,
nav,
main,
figure,
figcaption {
	font-family: Misans, Misan-regular !important;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	font-family: Misans, Misan-regular !important;
	/* overflow-x: hidden; */
}

i {
	font: normal normal normal 14px / 1 FontAwesome !important;
}

p * {
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

/* margin-top + 遮罩层叠修正（避免 z-index:-1 导致 banner 下灰条） */
.hero {
	margin-top: 90px !important;
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.hero::before {
	z-index: 0;
	pointer-events: none;
}

.hero>.hero-content {
	position: relative;
	z-index: 1;
}

/* 内页 Banner：与 agentPartners.html .agent-hero 统一（高度策略、蓝遮罩、底部白色波浪、白字层级） */
body:not(.page-home) .hero {
	min-height: clamp(280px, 52vh, 600px);
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0;
	/* 横向铺满容器宽度，高度随比例延伸（100% auto）；!important 统一压过后加载的 cover/contain */
	background-color: #003782 !important;
	background-size: 100% auto !important;
	background-repeat: no-repeat !important;
	background-position: center top !important;
	color: #fff;
}

/* body:not(.page-home) .hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 55, 130, 0.25);
	pointer-events: none;
	z-index: 0;
} */

body:not(.page-home) .hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: clamp(28px, 4.5vw, 64px);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 2;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath d='M0,48 C240,118 480,132 720,92 C960,52 1200,8 1440,24 L1440,140 L0,140 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

body:not(.page-home) .hero>.hero-content {
	padding: 3rem 1.5rem;
	text-align: center;
}

body:not(.page-home) .hero .hero-content h1 {
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.25;
	margin-bottom: 0.5rem;
	color: #fff;
}

body:not(.page-home) .hero .hero-content h2 {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.4;
	opacity: 0.95;
	color: #fff;
	margin-bottom: 0;
}

/* Banner 下方第一块内容：白底与波浪层同色 */
body:not(.page-home) .hero+* {
	background-color: #fff;
}

::-webkit-scrollbar {
	height: 0;
	width: 6px;
	background: #666666;
}

::-webkit-scrollbar-button {
	height: 0;
	width: 5px;
	background: #666666;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(0, 55, 130, 1);
	box-shadow: inset 1px 1px 0 rgba(0, 55, 130, 1), inset 0 -1px 0 rgba(0, 55, 130, 1);
}

body {
	line-height: 1.5;
	font-family: 'MiSans', 'Helvetica Neue', Arial, sans-serif;
}

/* 顶部导航栏 */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--nav-blue-1);
	box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
	z-index: 100;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
	/* transition: all 0.3s ease; */
}

/* 首页首屏：导航透明覆盖 Banner（仅首页；滚动后恢复原样式） */
.page-home header:not(.scrolled) {
	background: transparent;
	box-shadow: none;
}

.page-home header:not(.scrolled) nav {
	background: transparent;
}

.page-home header:not(.scrolled) .nav-links li {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
}

.page-home header:not(.scrolled) .nav-links a {
	color: rgba(255, 255, 255, 0.95);
}

.page-home header:not(.scrolled) .nav-links li:hover {
	background-color: #1C4C9D;
	color: #fff;
	border-radius: var(--nav-pill-radius, 0.75rem);
}

.page-home header:not(.scrolled) .nav-links li.contact-btn {
	background-color: #1C4C9D;
	border: none;
	opacity: 1;
	box-shadow: none;
}

.page-home header:not(.scrolled) .nav-links li.contact-btn:hover {
	background-color: #1C4C9D;
	opacity: 1;
	color: #fff;
}

.page-home header:not(.scrolled) .contact-btn a {
	color: rgba(255, 255, 255, 0.95) !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.page-home header:not(.scrolled) .mobile-menu-btn {
	color: rgba(255, 255, 255, 0.95);
}

.page-home header:not(.scrolled) .mobile-menu-btn:hover {
	background: rgba(255, 255, 255, 0.12);
}

.page-home header:not(.scrolled) .mobile-menu-btn:active {
	background: rgba(255, 255, 255, 0.18);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 14px;
	padding: 0.5rem 3.3125rem;
	padding-left: 34px;
	font-size: 12px;
}

.logo-section {
	display: flex;
	align-items: center;
}

.logo-text {
	color: #fff;
	margin: 0 1rem;
}

.header-img {
	width: 26px;
	height: 24px;
}

.top-links {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.top-links span,
.top-links a {
	font-size: 12px;
	color: #fff;
}

/* 主导航 */
nav {
	width: 100%;
	background: #fff;
}

/* 主导航布局 */
.nav-wrapper {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	column-gap: 16px;
	/* height: 60px; */
	/* overflow: hidden; */
}

.img-a {
	max-height: 60px;
	min-width: 100px;
	margin: 0 auto 0 0;
	padding-left: 34px
}

.nav-logo-link {
	grid-column: 1;
	display: flex;
	align-items: center;
	/* 空 <a> 只有背景图：grid 第一列 auto 时可能被算成 0 宽，logo 会“消失” */
	min-width: 140px;
	max-width: 160px;
	flex-shrink: 0;
	height: 60px;
	background: url('https://schoolweb-1373706109.cos.accelerate.myqcloud.com/uploads/20250829/cbd2892c0a335219871fd81987ba1c5d.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 34px;
	margin-top: 2px;
}

.nav-logo {
	width: 100%;
	max-height: 60px;
	height: auto;
	margin: 0 auto;
}

/*@media (max-width: 1440px) {*/

.nav-logo {
	max-height: 3.75rem;
}

/*}*/

.nav-menu-container {
	grid-column: 2;
	width: 100%;
	height: 100%;
}

.mobile-menu-btn {
	grid-column: 3;
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0.5rem;
	background: transparent;
	color: #292c57;
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1;
	transition: background-color 0.2s ease, color 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:hover {
	background: rgba(28, 76, 157, 0.08);
}

.mobile-menu-btn:active {
	background: rgba(28, 76, 157, 0.12);
}

.mobile-menu-btn:focus {
	outline: none;
}

.mobile-menu-btn:focus-visible {
	outline: 2px solid #444baf;
	outline-offset: 2px;
}

.contact-btn {
	background-color: var(--nav-blue-1);
	color: #fff;
	padding: 0;
	transition: background-color 0.25s ease, color 0.25s ease;
	box-shadow: none;
	border: none;
}

.contact-btn a {
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 13px;
	font-weight: 600;
	color: #fff !important;
}

.contact-btn:active {
	background-color: var(--nav-blue-2);
}

@media (prefers-reduced-motion: reduce) {
	.contact-btn {
		transition: none;
	}

	.contact-btn:hover,
	.contact-btn:active,
	.nav-links li.contact-btn:hover,
	.nav-links li.contact-btn:active {
		transform: none;
	}
}

.contact-btn img {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	opacity: 0.95;
}

/* =============================================== */
/* 一级导航圆角（略大，子菜单圆角与其一致） */
:root {
	--nav-pill-radius: 0.75rem;
}

/* 主导航基础样式 */
.nav-links {
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: end;
	width: 100%;
}

.nav-links li {
	flex-basis: auto;
	flex-shrink: 1;
	position: relative;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	height: 100%;
	padding: 0 1.25rem;
	font-size: 13px;
	font-weight: 600;
	color: #292C57;
	cursor: pointer;
	text-align: center;
	flex-shrink: 0;
	transition: color 0.3s, background-color 0.3s;
	justify-content: center;
	white-space: nowrap;
	min-width: 8.75rem;
	margin: 0 0.1875rem;
	border-radius: var(--nav-pill-radius);
}

.nav-links li:hover {
	/* 一级菜单：严格使用 --nav-blue-1 */
	background-color: #1C4C9D;
	color: white;
	border-radius: var(--nav-pill-radius);
}

/* Contact：与主导航同一视觉语言（深蓝块 + 同级圆角与高度） */
.nav-links li.contact-btn {
	min-width: auto;
	width: auto;
	height: 100%;
	align-self: stretch;
	margin: 0 0.1875rem;
	padding: 0 1.25rem;
	gap: 0.5rem;
	border-radius: var(--nav-pill-radius);
	flex-shrink: 0;
	background-color: var(--nav-blue-1);
	color: #fff;
}

.nav-links li.contact-btn:hover {
	background-color: var(--nav-blue-2);
	color: #fff;
}

.nav-links li.contact-btn:active {
	background-color: var(--nav-blue-2);
}

.nav-links a {
	color: inherit;
	font-weight: inherit;
}

.nav-links .news:hover a {
	color: white;
}

/* 二级菜单通用样式 */
.submenu {
	position: absolute;
	/* 视觉上保留与一级菜单的间隙 */
	top: calc(100% + 4px);
	left: 0;
	/* 至少与一级项同宽，内容更长时自动撑开，避免文案被截断 */
	width: max-content;
	min-width: 100%;
	max-width: min(92vw, 26rem);
	box-sizing: border-box;
	box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.16);
	display: none;
	z-index: 100;
	/* 二级菜单：严格使用 --nav-blue-2 */
	background: #2C64AE;
	/* opacity: 0.98;s */
	color: white;
	font-size: 13px;
	border-radius: 8px;
	/* 不可 hidden：三级侧栏在父级外侧，会被裁掉 */
	overflow: visible;
	padding: 6px 6px;
}

/* 隐形“纵向桥”：承接从一级菜单划入二级菜单的鼠标轨迹 */
.submenu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -12px;
	height: 12px;
	background: transparent;
	pointer-events: auto;
}

/* 三级菜单样式 */
.submenu-level3 {
	position: absolute;
	/* 相对含三级的二级 li：不要制造“硬缝隙”，用自身 padding/阴影形成视觉间距 */
	left: 100%;
	top: 0;
	margin-left: 4px;
	/* 三级菜单：严格使用 --nav-blue-3 */
	background: #4783C3;
	/* opacity: 0.95; */
	font-size: 13px;
	border-radius: 16px;
	box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.16);
	padding: 6px 6px;
	box-sizing: border-box;
	min-width: 12rem;
	width: max-content;
	max-width: min(90vw, 22rem);
	z-index: 110;
	overflow: visible;
}

/* 隐形“桥”：承接从二级项划入三级的鼠标，避免经过空白丢 hover */
.submenu-level3::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	/* 加宽“桥”：允许鼠标斜向/快速移动 */
	left: -18px;
	width: 18px;
	background: transparent;
	pointer-events: auto;
}

/* 二级项如果带三级，给右侧增加“缓冲 hover 区”，避免离开 li 瞬间丢失 hover */
.submenu li:has(> .submenu-level3) {
	padding-right: 22px;
}

/* 无 :has 支持时兜底：三级 ul 本身就是 li 的子元素，扩大其桥宽度也足够稳定 */

/* 鼠标悬停时显示子菜单 */
.nav-links li:hover>.submenu,
.submenu li:hover>.submenu-level3 {
	display: block !important;
}

.submenu li a {
	display: block;
	width: 100%;
}

/* ============================================================================== */
/* 关键兜底：避免内页 CSS 里旧版 .submenu 样式覆盖导致三级悬浮“断触发” */
/* 说明：部分页面（如 business/graduate/first）自带旧导航样式，加载顺序靠后会覆盖这里。
   因此对“定位/显示/桥接”相关属性做更高优先级 + !important 的统一约束。 */
nav .nav-links>li>.submenu {
	position: absolute !important;
	top: calc(100% + 4px) !important;
	left: 0 !important;
	display: none !important;
	z-index: 100 !important;
	overflow: visible !important;
}

nav .nav-links .submenu.submenu-level3 {
	position: absolute !important;
	top: 0 !important;
	left: 100% !important;
	margin-left: 4px !important;
	display: none !important;
	z-index: 110 !important;
	overflow: visible !important;
}

nav .nav-links li:hover>.submenu {
	display: block !important;
}

nav .nav-links .submenu li:hover>.submenu-level3 {
	display: block !important;
}

/* 二级“纵向桥”与三级“横向桥”必须存在，避免鼠标经过缝隙时丢 hover */
nav .nav-links>li>.submenu::before {
	content: "" !important;
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	top: -12px !important;
	height: 12px !important;
	background: transparent !important;
	pointer-events: auto !important;
}

nav .nav-links .submenu.submenu-level3::before {
	content: "" !important;
	position: absolute !important;
	top: 0 !important;
	bottom: 0 !important;
	left: -18px !important;
	width: 18px !important;
	background: transparent !important;
	pointer-events: auto !important;
}

/* 二级菜单项样式（取消顶白线，避免与一级圆角衔接处出现弧段/毛边） */
.submenu li {
	position: relative;
	padding: 8px 10px;
	transition: background 0.3s;
	text-align: left;
	border-top: none;
	border-bottom: none;
	color: white !important;
	justify-content: start;
	border-radius: 12px;
	margin: 3px 0;
	/* background: rgba(255, 255, 255, 0.16); */
}

.submenu li:last-child {
	margin-bottom: 0;
}

/* 二级菜单（仅第二层）hover：白底 */
.nav-links > li > .submenu > li:hover {
	/* 二级项激活态与三级色保持一致 */
	/* background: #4783C3 !important; */
	background: #fff !important;
}

/* 三级菜单项 hover 单独高亮（避免与三级面板底色一致看不出来） */
.submenu-level3 li:hover {
	background: #2C64AE !important;
}

/* 三级选中时：强制白字 */
.submenu-level3 li:hover>a,
.submenu-level3 li:hover>a:visited {
	color: #fff !important;
}

/* 二级菜单（仅第二层）hover：深蓝字 */
.nav-links > li > .submenu > li:hover > a {
	color: #292C57 !important;
}

.submenu a {
	font-size: 13px;
	color: white;
	display: block;
	font-weight: 600;
	white-space: normal;
	word-break: break-word;
}

/* 子菜单默认白字；悬浮到具体子项时再变蓝字（由上面规则负责） */

/* 响应式适配（移动端优化） */
@media (max-width: 1200px) {

	.submenu,
	.submenu-level3 {
		position: static;
		display: none !important;
		margin-left: 1.5rem;
	}

	.mobile-nav .submenu,
	.mobile-nav .submenu-level3 {
		display: block !important;
	}

	.nav-links,
	.contact-btn {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
		margin-right: 1.875rem;
	}

	.nav-logo-link {
		margin-left: 20px;
	}


	.nav-wrapper {
		height: auto;
		justify-content: space-between;
	}

}

@media (max-width: 768px) {
	.header-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.top-links {
		gap: 8px 12px;
	}

	.nav-logo-link {
		margin-left: 16px;
		max-width: 140px;
		height: 54px;
	}

	.mobile-menu-btn {
		margin-right: 12px;
	}

	.nav-links li {
		min-width: 100%;
	}

	.line {
		height: 80px !important;
	}

	.footer-row,
	.footer-bottom {
		font-size: 12px !important;
		padding: 1rem 2rem !important;
		display: flex !important;
		flex-direction: column !important;
	}

	.footer-logo-box {
		flex-direction: unset !important;
	}

	.footer-col {
		min-width: 33%;
	}

	.footer-logo {
		display: none;
		/* width: 120px !important; */
		/* height: 30px !important; */
	}

	.footer-top {
		padding: 0 !important;
	}

	.footer-col h4 {
		font-size: 18px !important;
	}

	.footer2 {
		padding: 0 !important;
	}

	.img1 {
		width: 50% !important;
		margin-left: 0 !important;
	}
}

@media (min-width: 1201px) {
	.mobile-nav-container {
		display: none;
	}
}

/* ============================================================================== */
/* New Footer */
.site-footer {
	background: #0a3d88;
	color: #fff;
	/* 页脚整体基准：约 12px，随视口在 11px–12px 间微调 */
	font-size: clamp(11px, 0.65vw + 9.7px, 12px);
}

.site-footer-main {
	/* max-width: 1500px; */
	margin: 0 auto;
	padding: 22px 170px 14px 70px;
}

.site-footer-main {
	display: grid;
	grid-template-columns: minmax(520px, 1fr) minmax(220px, 320px);
	column-gap: clamp(14px, 2vw, 34px);
	align-items: start;
}

/* About Us + 社交图标与左侧联系区底边对齐 */
.site-footer-main>.site-footer-links {
	align-self: end;
}

.site-footer-left {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.site-footer-left-top {
	display: grid;
	grid-template-columns: minmax(140px, 220px) minmax(320px, 1fr);
	column-gap: clamp(14px, 2vw, 30px);
	align-items: center;
}

.site-footer-col {
	min-width: 0;
}

.site-footer-cert {
	display: flex;
	flex-direction: column;
	/* gap: 4px; */
	align-self: center;
}

.site-footer-edutrust {
	width: clamp(96px, 10vw, 138px);
	height: auto;
	margin-bottom: 0;
	display: block;
}

.site-footer-cert p,
.site-footer-contact p {
	font-size: 1em;
	line-height: 1.5;
	color: rgba(238, 245, 255, 0.95);
}

.site-footer-contact {
	align-self: end;
}

.site-footer-meta p {
	margin: 0 0 2px;
}

.site-footer-org {
	font-weight: 600;
	color: #fff !important;
	margin-bottom: 4px;
}

.site-footer-contact-list {
	margin-top: 10px;
	min-height: 0;
	padding: 4px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
}

.site-footer-contact-list p {
	margin: 0 0 6px;
	font-size: 1em;
	line-height: 1.5;
	color: rgba(246, 250, 255, 0.96);
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.site-footer-contact-list p>i:first-child {
	flex-shrink: 0;
	margin-top: 0.2em;
	line-height: 1;
}

.site-footer-contact-list p:last-child {
	margin-bottom: 0;
}

/* 两行电话：第二行用不可见前缀占位，使号码与第一行「+ 号码」纵向对齐 */
.site-footer-phone-stack {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0 0 6px;
	width: 100%;
}

.site-footer-phone-stack:last-child {
	margin-bottom: 0;
}

.site-footer-phone-row {
	display: grid;
	grid-template-columns: auto max-content 1fr;
	/* 前缀与正文顶对齐；图标与网格行底部对齐（多行地址/电话时与末行对齐） */
	align-items: start;
	column-gap: 8px;
	color: rgba(246, 250, 255, 0.96);
	font-size: 1em;
	line-height: 1.5;
}

.site-footer-phone-row>.fa {
	flex-shrink: 0;
	align-self: start;
	line-height: 1;
	margin-top: 3px;
}

.site-footer-phone-icon--ghost {
	visibility: hidden;
	user-select: none;
	pointer-events: none;
}

.site-footer-phone-prefix {
	white-space: nowrap;
}

.site-footer-phone-prefix--ghost {
	visibility: hidden;
	user-select: none;
	pointer-events: none;
}

.site-footer-phone-value {
	min-width: 0;
	word-break: break-word;
}

.site-footer-gap {
	margin-top: 0;
}

.site-footer-contact p i {
	font-size: 1em;
}

.site-footer-links h4 {
	font-size: 1em;
	line-height: 1.06;
	margin: 0 0 12px;
	font-weight: 700;
	color: #fff;
}

.site-footer-links ul {
	margin: 0 0 14px;
	padding: 0;
}

.site-footer-links ul li {
	margin-bottom: 10px;
}

.site-footer-links ul li a {
	color: rgba(240, 246, 255, 0.95);
	font-size: 1em;
	line-height: 1.25;
	transition: color 0.2s ease;
}

.site-footer-links ul li a:hover {
	color: #fff;
}

.site-footer-social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.site-footer-social a {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	transition: background-color 0.2s ease;
}

.site-footer-social a:hover {
	background: rgba(255, 255, 255, 0.22);
}

.site-footer-social i {
	font-size: 1em;
}

.site-footer-icon-svg {
	width: 18px;
	height: 18px;
}

.site-footer-social-xhs .site-footer-icon-svg {
	width: 20px;
	height: 20px;
}

.site-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	padding: 10px 170px 14px 70px;
	text-align: center;
}

.site-footer-bottom p {
	font-size: 1em;
	line-height: 1.5;
	color: rgba(236, 243, 255, 0.95);
}

@media (max-width: 1024px) {
	.site-footer-main {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.site-footer-left-top {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

@media (max-width: 768px) {
	.site-footer-main {
		padding: 20px 16px 12px;
	}

	.site-footer-phone-row {
		grid-template-columns: 14px max-content 1fr;
		column-gap: 8px;
		align-items: start;
	}

	.site-footer-phone-row>.fa {
		font-size: 14px;
		margin-top: 4px;
	}

	.site-footer-bottom {
		padding: 12px 16px 16px;
		text-align: center;
	}

	.site-footer-bottom p {
		margin: 0 auto 6px;
		max-width: none;
		font-size: 15px;
		line-height: 1.45;
		word-break: normal;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.site-footer-bottom p:last-child {
		margin-bottom: 0;
	}
}

/* ============================================================================== */
/* 基础样式 */
.footer {
	font-size: 0.875rem;
	line-height: 1.5;
}

.bg-blue {
	background: #003782;
	color: #fff;
}


/* 上半部分布局 */
.footer-top {
	padding: 2.5rem 0;
}

.footer-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 7.5rem;
	font-size: 16px;
}

.footer2 {
	padding-left: 35%;
	/* margin-top: 30.5%; */
}

.footer-col .img1 {
	width: 40%;
	margin-left: -21px;
}

.footer-col h4 {
	margin-bottom: 0.9375rem;
	font-size: 18px;
	font-weight: 700;
}

.footer-col p {
	/* text-decoration: underline; */
	cursor: pointer;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li a {
	color: #fff;
	/* text-decoration: underline; */
	transition: color 0.3s;
}

.footer-col li {
	margin-bottom: 25px;
}

.footer-margin {
	margin-bottom: 30px;
}

.footer-logo {
	width: 210px;
	height: 60px;
	margin-top: 1.25rem;
}

.footer-logo-box {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 与我联系 - 社媒图标 */
.footer-social h4 {
	margin-bottom: 0.9375rem;
}

.footer-social-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.footer-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	transition: color 0.3s, background 0.3s, border-color 0.3s;
}

.footer-social-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.2);
	border-color: #fff;
}

.footer-social-link i {
	font-size: 18px;
}

.footer-social-link .footer-icon-svg {
	width: 20px;
	height: 20px;
}

.footer-social-douyin .footer-icon-svg {
	width: 22px;
	height: 22px;
}

/* 下半部分布局 */
.footer-bottom {
	padding: 2rem 7.5rem;
	border-top: 0.0625rem solid #e5e5e5;
}

.container1 {
	text-align: center;
	margin: 0 auto;
}

.container1 p {
	/* text-align: center; */
	color: rgba(0, 55, 130, 1);
	font-size: 16px;
	margin-top: 10px;
}

.footer-img {
	max-width: 263px;
	max-height: 120px;
}

/* 响应式适配 */
@media (max-width: 992px) {
	.footer-col {
		margin-bottom: 1.875rem;
	}

	.footer-logo {
		margin: 0 auto;
	}

	body {
		overflow-x: hidden;
	}

	.partner-item img {
		max-width: 50px;
		max-height: 50px;
	}

	.container1 {
		width: 100%;
	}

	.footer-img {
		width: 180px;
		height: 120px;
	}
}

/* 移动端面包屑导航（内页为默认；首页见 .page-home） */
.breadcrumb {
	display: flex;
	align-items: center;
	padding: 14px 20px;
	background: linear-gradient(180deg, rgba(28, 76, 157, 0.07) 0%, rgba(28, 76, 157, 0.03) 100%);
	border-bottom: 1px solid rgba(28, 76, 157, 0.1);
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.breadcrumb-item {
	cursor: pointer;
	color: var(--nav-blue-1);
	font-size: 14px;
	font-weight: 600;
	margin-right: 6px;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.breadcrumb-item:hover {
	color: var(--nav-blue-2);
}

.breadcrumb-separator {
	margin: 0 6px;
	color: rgba(28, 76, 157, 0.35);
	font-size: 12px;
	font-weight: 500;
}

.breadcrumb-item:last-child {
	color: rgba(28, 76, 157, 0.45);
	cursor: default;
}

.breadcrumb-item:last-child:hover {
	color: rgba(28, 76, 157, 0.45);
}

/* 移动端导航容器（内页默认） */
.mobile-nav-container {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 55%, #eef2f8 100%);
	box-shadow: 0 12px 40px rgba(28, 76, 157, 0.14);
	z-index: 100;
	max-height: calc(100vh - 130px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

/* 移动端菜单项样式（内页：卡片式行） */
.mobile-nav {
	margin: 0;
	padding: 12px 12px 20px;
}

.mobile-menu-item {
	list-style: none;
	border-bottom: none;
	margin-bottom: 10px;
	border-radius: var(--nav-pill-radius, 0.75rem);
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(28, 76, 157, 0.09);
	box-shadow: 0 2px 8px rgba(28, 76, 157, 0.06);
}

.mobile-menu-item:last-child {
	margin-bottom: 0;
}

.menu-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 18px;
	color: var(--nav-blue-1);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-title:hover {
	background: linear-gradient(90deg, rgba(28, 76, 157, 0.08) 0%, rgba(28, 76, 157, 0.02) 100%);
}

.menu-title:active {
	background: linear-gradient(90deg, rgba(28, 76, 157, 0.11) 0%, rgba(28, 76, 157, 0.04) 100%);
}

.menu-title i {
	color: rgba(28, 76, 157, 0.38);
	font-size: 1.1em;
}

/* 首页：抽屉与顶栏透明 Banner 统一，深蓝渐变 + 浅色字 */
.page-home .mobile-nav-container {
	background: linear-gradient(180deg, rgba(28, 76, 157, 0.92) 0%, rgba(44, 100, 174, 0.78) 45%, rgba(71, 131, 195, 0.55) 100%);
	box-shadow: 0 16px 48px rgba(0, 20, 60, 0.35);
	color: rgba(255, 255, 255, 0.95);
}

.page-home .breadcrumb {
	background: rgba(0, 0, 0, 0.14);
	border-bottom-color: rgba(255, 255, 255, 0.18);
}

.page-home .breadcrumb-item {
	color: rgba(255, 255, 255, 0.95);
}

.page-home .breadcrumb-item:hover {
	color: #fff;
}

.page-home .breadcrumb-separator,
.page-home .breadcrumb-item:last-child {
	color: rgba(255, 255, 255, 0.55);
}

.page-home .breadcrumb-item:last-child:hover {
	color: rgba(255, 255, 255, 0.55);
}

.page-home .mobile-nav {
	padding: 12px 12px 20px;
}

.page-home .mobile-menu-item {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.page-home .menu-title {
	color: rgba(255, 255, 255, 0.96);
}

.page-home .menu-title:hover {
	background: rgba(255, 255, 255, 0.12);
}

.page-home .menu-title:active {
	background: rgba(255, 255, 255, 0.18);
}

.page-home .menu-title i {
	color: rgba(255, 255, 255, 0.7);
}

.page-home .mobile-nav-container a {
	color: rgba(255, 255, 255, 0.96) !important;
}

.page-home .mobile-nav-container .mobile-menu-item [style*="#003782"] {
	color: rgba(255, 255, 255, 0.96) !important;
}

/* 研学公共样式 */
.title {
	padding: 60px 120px;
	line-height: 1.5;
}

.title h1 {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0px;
	color: rgba(0, 55, 130, 1);
	text-align: center;
}

.title h3 {
	font-size: 24px;
	color: rgba(0, 55, 130, 1);
	text-align: center;
}

.web {
	display: none;
}

.h5 {
	display: block;
}

/* .program-title {
	font-size: 16px !important;
} */

/* 全页面 自适应统一调整 */
@media (max-width: 768px) {
	body:not(.page-home) .hero {
		min-height: clamp(240px, 42vh, 480px);
		max-height: 70vh;
		margin-top: 80px !important;
		background-size: cover !important;
		background-position: center center !important;
	}

	body:not(.page-home) .hero .hero-content h1 {
		font-size: 1.75rem;
	}

	body:not(.page-home) .hero .hero-content h2 {
		font-size: 1rem;
	}

	.hero {
		max-height: 50vh;
		max-width: 100%;
		/* 小屏幕限制高度 */
	}

	.hero-content h1 {
		font-size: 26px;
	}

	.hero-content h2 {
		font-size: 20px;
	}

	.title {
		padding: 30px;
		padding-bottom: 0;
	}

	.title h1,
	.title h2,
	.program-title2 {
		font-size: 26px;
	}

	.program-section {
		padding: 40px 30px 60px 30px;
	}

	.program-section .program-title,
	.toggle-icon {
		font-size: 18px;
	}

	.logo-section {
		display: none;
	}

	.header-container {
		justify-content: end;
	}

	.h5 {
		display: none !important;
	}

	.web {
		display: block !important;
	}

	.footer-img {
		display: flex;
		margin: 0 auto;
		/* justify-content: center; */
	}
}


.mr-4 {
	margin-right: 10px;
}

.ml-4 {
	margin-left: 10px;
	cursor: pointer;
}


.arrow-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.arrow {
	font-size: 50px;
	color: #FFC107;
	/* 主黄色 */
	margin: 5px 0;
	transition: color 0.3s ease;
}

.arrow:nth-child(2) {
	color: #FFD666;
	/* 稍浅的黄色 */
}

.arrow:nth-child(3) {
	color: #FFF2CC;
	/* 最浅的黄色 */
}

/* 非首页：顶栏与内页 hero 背景之间的公用过渡带（首页不含 inner-banner-strip） */
.site-inner-banner-chrome {
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--nstc-gold, #e4b52e) 0%, #003782 100%);
	pointer-events: none;
	flex-shrink: 0;
}