/* 导航、页脚、内页 Banner */

/* ── Header / Nav（深蓝导航）── */
:root {
	--nav-bg: rgba(11, 31, 58, 0.97);
	--nav-bg-solid: var(--navy);
	--nav-orange: var(--blue);
	--nav-orange-hover: var(--blue-mid);
	--nav-text: rgba(255, 255, 255, 0.80);
	--nav-border: rgba(255, 255, 255, 0.10);
	--nav-height: 68px;
}

/* 全站：取消占位，固定导航叠在顶部（首页 Hero / 内页 Banner 共用同一套 header） */
.site-header {
	height: 0;
	border: 0;
	background: transparent;
	overflow: visible;
}

#nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: var(--nav-height);
	background: var(--nav-bg);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--nav-border);
	padding: 0;
	transition: background .25s, box-shadow .3s;
}

/* 后台登录时 WordPress 顶部黑条（admin-bar）不盖住固定导航 */
body.admin-bar #nav {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar #nav {
		top: 46px;
	}
}

/* 手机端 admin-bar 为 absolute，下滑后会滚走；导航需贴回顶部，避免上方留白 */
@media screen and (max-width: 600px) {
	body.admin-bar #nav.scrolled {
		top: 0;
	}

	body.admin-bar #nav.scrolled .nav-drawer {
		top: 0;
		height: 100vh;
		height: 100dvh;
	}
}

/* 与全站内容区一致：max-width 1450px */
.nav-inner {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 var(--content-pad);
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#nav.scrolled {
	background: var(--nav-bg-solid);
	box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.nav-logo img,
.nav-logo-img,
.custom-logo {
	height: 38px;
	width: auto;
	display: block;
}

.nav-logo-text {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 26px;
	letter-spacing: 0.06em;
	color: #fff;
	text-transform: uppercase;
}

.nav-logo-text span {
	color: var(--nav-orange);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	display: block;
	padding: 0 16px;
	height: var(--nav-height);
	line-height: var(--nav-height);
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--nav-text);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	transition: color .2s;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current-menu-ancestor > a,
.nav-links .current_page_item > a {
	color: var(--nav-orange);
}

/* 下拉子菜单（桌面悬停 / 移动折叠） */
.nav-links .menu-item-has-children {
	position: relative;
}

.nav-links .menu-item-has-children > a {
	padding-right: 28px;
}

.nav-links .menu-item-has-children > a::before {
	content: '';
	position: absolute;
	right: 10px;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	opacity: .55;
	pointer-events: none;
	transition: transform .2s;
}

.nav-links .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links .sub-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 1101px) {
	.nav-links .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 220px;
		background: var(--nav-bg-solid);
		border: 1px solid var(--nav-border);
		box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
		padding: 8px 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity .2s, visibility .2s, transform .2s;
		z-index: 220;
	}

	.nav-links .menu-item-has-children:hover > .sub-menu,
	.nav-links .menu-item-has-children:focus-within > .sub-menu,
	.nav-links .menu-item-has-children.submenu-open > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.nav-links .sub-menu .sub-menu {
		top: 0;
		left: 100%;
	}

	.nav-links .sub-menu a {
		height: auto;
		line-height: 1.4;
		padding: 12px 20px;
		font-size: 13px;
		letter-spacing: 0.08em;
		white-space: nowrap;
		color: var(--nav-text);
	}

	.nav-links .sub-menu a:hover,
	.nav-links .sub-menu .current-menu-item > a {
		color: var(--nav-orange);
		background: rgba(255, 255, 255, 0.04);
	}

	.nav-links .sub-menu .menu-item-has-children > a::before {
		transform: rotate(-45deg);
		margin-top: -2px;
	}

	/* 鼠标设备隐藏展开按钮；触屏宽屏保留按钮供点击展开 */
	@media (hover: hover) and (pointer: fine) {
		.nav-submenu-toggle {
			display: none;
		}
	}

	@media (hover: none) {
		.nav-links .menu-item-has-children > a {
			padding-right: 36px;
		}

		.nav-submenu-toggle {
			display: flex;
			align-items: center;
			justify-content: center;
			position: absolute;
			top: 0;
			right: 0;
			width: 32px;
			height: var(--nav-height);
			padding: 0;
			border: none;
			border-left: 1px solid var(--nav-border);
			background: transparent;
			color: #fff;
			cursor: pointer;
			z-index: 2;
			-webkit-tap-highlight-color: transparent;
		}

		.nav-submenu-toggle span {
			display: block;
			width: 6px;
			height: 6px;
			border-right: 1.5px solid currentColor;
			border-bottom: 1.5px solid currentColor;
			transform: rotate(45deg);
			margin-top: -3px;
			transition: transform .2s;
			pointer-events: none;
		}

		.nav-links .submenu-open > .nav-submenu-toggle span {
			transform: rotate(-135deg);
			margin-top: 1px;
		}
	}

	.nav-links .menu-item-has-children.submenu-open > .sub-menu .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lang-links {
	display: flex;
	align-items: center;
	gap: 4px;
	border: 1px solid var(--nav-border);
	padding: 3px 4px;
}

.lang-link {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--nav-text);
	text-decoration: none;
	transition: color .2s, background .2s;
	white-space: nowrap;
}

.lang-link:hover { color: var(--nav-orange); }
.lang-link.active {
	background: rgba(255, 106, 0, 0.15);
	color: var(--nav-orange);
}

.lang-link img.flag {
	width: 20px;
	height: 14px;
	object-fit: cover;
	display: block;
	border: 1px solid rgba(255, 255, 255, .15);
}

.lang-divider {
	width: 1px;
	height: 16px;
	background: var(--nav-border);
	flex-shrink: 0;
}

.nav-search-btn {
	width: 36px;
	height: 36px;
	background: none;
	border: 1px solid var(--nav-border);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color .2s, background .2s;
	border-radius: 0;
	padding: 0;
}

.nav-search-btn:hover { border-color: var(--nav-orange); }
.nav-search-btn svg { stroke: var(--nav-text); }
.nav-search-btn:hover svg { stroke: var(--nav-orange); }
.nav-search-btn[aria-expanded="true"] {
	border-color: var(--nav-orange);
	background: rgba(255, 106, 0, 0.12);
}

/* 搜索面板 */
.nav-search-panel {
	position: fixed;
	inset: 0;
	z-index: 400;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 80px 20px 40px;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s, visibility .25s;
}

body.nav-search-open .nav-search-panel {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

.nav-search-panel__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(13, 43, 85, .55);
	border: none;
	padding: 0;
	cursor: pointer;
}

.nav-search-panel__box {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 640px;
	background: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 16px 48px rgba(13, 43, 85, .18);
	padding: 28px 28px 24px;
	transform: translateY(-12px);
	transition: transform .25s ease;
}

body.nav-search-open .nav-search-panel__box {
	transform: translateY(0);
}

.nav-search-panel__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 1px solid var(--border);
	background: none;
	color: var(--navy);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: border-color .2s, color .2s;
}

.nav-search-panel__close:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.nav-search-panel__label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 16px;
}

.nav-search-panel__form {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.nav-search-panel__input {
	flex: 1;
	min-width: 0;
	height: 48px;
	padding: 0 16px;
	border: 1px solid var(--border);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--gray-dark);
	outline: none;
	transition: border-color .2s;
	-webkit-appearance: none;
}

.nav-search-panel__input:focus {
	border-color: var(--blue);
}

.nav-search-panel__input::placeholder {
	color: var(--gray-light);
}

.nav-search-panel__submit {
	flex-shrink: 0;
	height: 48px;
	padding: 0 24px;
	background: var(--blue);
	color: #fff;
	border: none;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s;
}

.nav-search-panel__submit:hover {
	background: var(--navy);
}

body.nav-search-open {
	overflow: hidden;
}

@media (max-width: 640px) {
	.nav-search-panel {
		padding-top: 88px;
		align-items: stretch;
	}

	.nav-search-panel__box {
		max-width: none;
		margin: 0 4px;
	}

	.nav-search-panel__form {
		flex-direction: column;
	}

	.nav-search-panel__submit {
		width: 100%;
	}
}

/* 搜索结果页 */
.site-search {
	padding: 48px 0 80px;
}

.search-results-head {
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.search-results-head .s-tag {
	margin-bottom: 8px;
}

.search-results-count {
	font-size: 14px;
	color: var(--gray);
	margin-top: 8px;
}

.search-result-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--border);
}

.search-result-item {
	padding: 22px 24px;
	border-bottom: 1px solid var(--border);
	transition: background .2s;
}

.search-result-item:last-child {
	border-bottom: none;
}

.search-result-item:hover {
	background: var(--blue-pale);
}

.search-result-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 6px;
}

.search-result-item .entry-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.search-result-item .entry-title a {
	color: var(--navy);
	text-decoration: none;
	transition: color .2s;
}

.search-result-item .entry-title a:hover {
	color: var(--blue);
}

.search-result-excerpt {
	font-size: 13px;
	line-height: 1.7;
	color: var(--gray);
}

.search-no-results {
	padding: 40px 0;
	text-align: center;
	color: var(--gray);
}

.search-no-results p {
	margin-bottom: 16px;
}

.search-inline-form {
	display: flex;
	gap: 10px;
	max-width: 480px;
	margin: 0 auto;
}

.search-inline-form input[type="search"] {
	flex: 1;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--border);
	font-size: 14px;
}

.search-inline-form button {
	height: 44px;
	padding: 0 20px;
	background: var(--blue);
	color: #fff;
	border: none;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}

.nav-quote {
	background: var(--nav-orange);
	color: #fff;
	padding: 0 20px;
	height: 38px;
	line-height: 38px;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .2s;
	white-space: nowrap;
}

.nav-quote:hover {
	background: var(--nav-orange-hover);
	color: #fff;
}

.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	background: none;
	border: 1px solid var(--nav-border);
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: #fff;
	transition: transform .25s, opacity .25s;
}

body.nav-menu-open { overflow: hidden; }
body.nav-menu-open #nav { z-index: 310; }

.nav-drawer { display: contents; }
.nav-drawer-head { display: none; }

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(6, 15, 30, .55);
	z-index: 250;
	opacity: 0;
	transition: opacity .3s;
	border: none;
	padding: 0;
	cursor: pointer;
}

body.nav-menu-open .nav-overlay {
	display: block;
	opacity: 1;
}

.nav-drawer-quote { display: none; }

/* 抽屉内搜索（桌面隐藏，移动端展示） */
.nav-drawer-search {
	display: none;
}

@media (max-width: 1100px) {
	#nav { height: var(--nav-height); }
	.nav-inner { padding: 0 20px; }
	.site-header { height: 0; }
	.nav-logo img,
	.nav-logo-img { height: 34px; }
	.nav-toggle { display: flex; }
	.nav-right > .nav-search-btn,
	.nav-right > .nav-quote { display: none; }

	.nav-drawer {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		width: min(320px, 88vw);
		height: 100vh;
		height: 100dvh;
		background: var(--nav-bg-solid);
		z-index: 300;
		padding: 20px 0 24px;
		box-shadow: 4px 0 28px rgba(0, 0, 0, .4);
		transform: translateX(-100%);
		transition: transform .3s ease;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.admin-bar .nav-drawer {
		top: 32px;
		height: calc(100vh - 32px);
		height: calc(100dvh - 32px);
	}

	@media screen and (max-width: 782px) {
		body.admin-bar .nav-drawer {
			top: 46px;
			height: calc(100vh - 46px);
			height: calc(100dvh - 46px);
		}
	}

	body.nav-menu-open .nav-drawer { transform: translateX(0); }

	.nav-drawer-head {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 10px;
		padding: 0 16px 14px;
		margin-bottom: 6px;
		border-bottom: 1px solid var(--nav-border);
		flex-shrink: 0;
	}

	.nav-drawer-close {
		width: 36px;
		height: 36px;
		flex-shrink: 0;
		border: 1px solid var(--nav-border);
		background: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		padding: 0;
		transition: border-color .2s, color .2s;
	}

	.nav-drawer-close:hover { border-color: var(--nav-orange); color: var(--nav-orange); }

	.nav-drawer-search {
		display: block;
		padding: 0 16px 14px;
		margin-bottom: 6px;
		border-bottom: 1px solid var(--nav-border);
		flex-shrink: 0;
	}

	.nav-drawer-search__form {
		display: flex;
		gap: 8px;
		align-items: stretch;
	}

	.nav-drawer-search__input {
		flex: 1;
		min-width: 0;
		height: 40px;
		padding: 0 12px;
		border: 1px solid var(--nav-border);
		font-family: 'Inter', sans-serif;
		font-size: 14px;
		color: #fff;
		background: rgba(255, 255, 255, 0.06);
		outline: none;
		transition: border-color .2s;
		-webkit-appearance: none;
	}

	.nav-drawer-search__input:focus {
		border-color: var(--nav-orange);
	}

	.nav-drawer-search__input::placeholder {
		color: rgba(255, 255, 255, 0.4);
	}

	.nav-drawer-search__submit {
		flex-shrink: 0;
		width: 40px;
		height: 40px;
		padding: 0;
		background: var(--nav-orange);
		color: #fff;
		border: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background .2s;
	}

	.nav-drawer-search__submit:hover {
		background: var(--nav-orange-hover);
	}

	.nav-drawer-search__submit svg {
		stroke: currentColor;
	}

	.nav-links {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		position: static;
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
		box-shadow: none;
		transform: none;
		overflow: visible;
		flex: 1;
		gap: 0;
	}

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

	.nav-links a {
		height: auto;
		line-height: 1.4;
		padding: 15px 28px;
		font-size: 14px;
		letter-spacing: 0.1em;
		border-bottom: 1px solid var(--nav-border);
		white-space: normal;
		color: var(--nav-text);
	}

	.nav-links a:hover {
		color: var(--nav-orange);
	}

	/* 有子菜单：链接与展开按钮并排，避免链接盖住按钮 */
	.nav-links .menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
	}

	.nav-links .menu-item-has-children > a {
		flex: 1 1 calc(100% - 48px);
		min-width: 0;
		width: calc(100% - 48px);
		max-width: calc(100% - 48px);
		padding-right: 12px;
		box-sizing: border-box;
	}

	.nav-links .menu-item-has-children > a::before {
		display: none;
	}

	.nav-submenu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		flex: 0 0 48px;
		width: 48px;
		min-height: 48px;
		height: auto;
		align-self: stretch;
		padding: 0;
		border: none;
		border-left: 1px solid var(--nav-border);
		border-bottom: 1px solid var(--nav-border);
		background: transparent;
		color: #fff;
		cursor: pointer;
		z-index: 2;
		-webkit-tap-highlight-color: transparent;
	}

	.nav-submenu-toggle span {
		display: block;
		width: 7px;
		height: 7px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg);
		margin-top: -3px;
		transition: transform .2s;
		pointer-events: none;
	}

	.nav-links .submenu-open > .nav-submenu-toggle span {
		transform: rotate(-135deg);
		margin-top: 2px;
	}

	.nav-links .menu-item-has-children > .sub-menu {
		flex: 0 0 100%;
		width: 100%;
	}

	.nav-links .sub-menu {
		display: none;
		position: static;
		width: 100%;
		min-width: 0;
		background: rgba(0, 0, 0, 0.22);
		box-shadow: none;
		border: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.nav-links .submenu-open > .sub-menu {
		display: block;
	}

	.nav-links .sub-menu a {
		padding: 12px 12px 12px 40px;
		font-size: 12px;
		border-bottom-color: var(--nav-border);
		color: rgba(255, 255, 255, 0.7);
	}

	.nav-links .sub-menu .menu-item-has-children > a {
		padding-left: 40px;
	}

	.nav-links .sub-menu .nav-submenu-toggle {
		background: rgba(0, 0, 0, 0.15);
		border-bottom-color: var(--nav-border);
		color: rgba(255, 255, 255, 0.8);
	}

	.nav-links .sub-menu .sub-menu a {
		padding-left: 52px;
	}

	.nav-links .sub-menu .sub-menu .menu-item-has-children > a {
		padding-left: 52px;
	}

	.nav-links a.active,
	.nav-links .current-menu-item > a,
	.nav-links .current-menu-ancestor > a,
	.nav-links .current_page_item > a {
		background: rgba(255, 106, 0, 0.12);
		color: var(--nav-orange);
		font-weight: 700;
	}

	.nav-drawer-quote {
		display: list-item;
		margin-top: 8px;
		padding: 0 28px;
	}

	.nav-drawer-quote a {
		display: block;
		background: var(--nav-orange);
		color: #fff !important;
		text-align: center;
		font-family: 'Barlow Condensed', sans-serif;
		font-weight: 700;
		letter-spacing: 0.1em;
		padding: 14px 20px !important;
		border: none !important;
		height: auto;
		line-height: 1.4;
	}

	.nav-drawer-quote a:hover { background: var(--nav-orange-hover); }
}

/* ── Footer ── */
#footer {
	position: relative;
	background: var(--navy) center center / cover no-repeat;
	color: #fff;
	border-top: 3px solid var(--blue);
}

#footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(11, 31, 58, .92);
}

.footer-body {
	position: relative;
	z-index: 1;
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 var(--content-pad);
	box-sizing: border-box;
}

.footer-top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 28px 0 22px;
	border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.f-logo-name {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 3px;
	color: #fff;
	text-transform: uppercase;
	line-height: 1;
}

.f-logo-sub {
	font-size: 9px;
	color: rgba(255, 255, 255, .28);
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-top: 2px;
}

.f-certs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.f-cert {
	border: 1px solid rgba(255, 255, 255, .54);
	padding: 4px 10px;
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .58);
	letter-spacing: 1.5px;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.4fr 1.8fr;
	gap: 0;
	padding: 64px 0 52px;
	border-bottom: 1px solid rgba(255, 255, 255, .52);
}

.f-col {
	padding: 28px 48px 28px 0;
	border-right: 1px solid rgba(255, 255, 255, .44);
}

.f-col:last-child {
	border-right: none;
	padding-right: 0;
	padding-left: 48px;
}

.f-col:nth-child(2) { padding-left: 32px; }
.f-col:nth-child(3) { padding-left: 48px; }

.f-col-logo {
	width: 200px;
	height: auto;
	margin-bottom: 18px;
	filter: brightness(0) invert(1);
}

.f-col-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 3px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.f-brand-desc {
	font-size: 12px;
	color: rgba(255, 255, 255, .85);
	line-height: 1.8;
}

.f-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
}

.f-links li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.f-links a {
	font-size: 12px;
	color: rgba(255, 255, 255, .9);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 0;
	transition: color .2s;
	text-transform: capitalize;
}

.f-links a::before {
	content: '›';
	color: #fff;
	flex-shrink: 0;
	font-size: 14px;
}

.f-links a:hover { color: #fff; }

.f-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.f-c-icon {
	color: var(--blue-mid);
	font-size: 13px;
	flex: 0 0 16px;
	margin-top: 1px;
	line-height: 1.5;
}

.f-c-label {
	font-size: 9px;
	font-weight: 700;
	color: #21dd7f;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1px;
}

.f-c-val {
	font-size: 11.5px;
	color: rgba(255, 255, 255, .9);
	line-height: 1.55;
}

.f-c-val a {
	color: rgba(255, 255, 255, .9);
	text-decoration: none;
}

.f-c-val a:hover { color: #fff; }

.inq-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 2px;
	color: #fff;
	margin-bottom: 2px;
}

.inq-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, .8);
	margin-bottom: 14px;
}

.inq-row {
	margin-bottom: 8px;
}

.inq-field {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	color: #fff;
	padding: 9px 12px;
	font-size: 11.5px;
	font-family: 'Inter', sans-serif;
	outline: none;
	transition: border-color .2s;
	width: 100%;
	box-sizing: border-box;
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
}

.inq-field:focus { border-color: var(--blue-mid); }
.inq-field::placeholder { color: rgba(255, 255, 255, .83); }

.inq-btn {
	background: var(--blue);
	color: #fff;
	border: none;
	padding: 9px 20px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	transition: background .2s;
	white-space: nowrap;
	flex-shrink: 0;
	border-radius: 0;
	line-height: normal;
	height: auto;
}

.inq-btn:hover { background: var(--blue-mid); }

/* Footer CF7 — 适配 CF7 将多个字段包在同一 <p> 内的结构 */
.f-col-inquiry .wpcf7 {
	margin: 0;
}

.f-col-inquiry .wpcf7 form.footer-inquiry-form {
	margin: 0;
}

.f-col-inquiry .hidden-fields-container {
	margin: 0;
	padding: 0;
	border: 0;
	min-width: 0;
}

.f-col-inquiry .inq-row,
.f-col-inquiry .inq-send-row {
	display: block;
}

.f-col-inquiry .inq-row {
	margin-bottom: 8px;
}

.f-col-inquiry .inq-row p,
.f-col-inquiry .inq-send-row p {
	margin: 0;
}

.f-col-inquiry .inq-row p {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.f-col-inquiry .inq-send-row p {
	display: flex;
	align-items: stretch;
	gap: 8px;
}

.f-col-inquiry .inq-row br,
.f-col-inquiry .inq-send-row br {
	display: none;
}

.f-col-inquiry .wpcf7-form-control-wrap {
	display: block;
	min-width: 0;
}

.f-col-inquiry .inq-send-row .wpcf7-form-control-wrap {
	flex: 1;
}

.f-col-inquiry .wpcf7-form-control.inq-field {
	width: 100%;
}

.f-col-inquiry input.wpcf7-submit.inq-btn {
	width: auto;
	min-width: 0;
}

.f-col-inquiry .wpcf7-spinner {
	display: none !important;
}

.f-col-inquiry .wpcf7-response-output {
	margin: 10px 0 0;
	padding: 8px 12px;
	font-size: 11px;
	border: 1px solid rgba(255, 255, 255, .2);
	color: #fff;
	background: rgba(0, 0, 0, .15);
}

.f-col-inquiry .wpcf7-not-valid-tip {
	font-size: 10px;
	margin-top: 4px;
	color: #ffb4b4;
}

.f-col-inquiry .wpcf7 form .wpcf7-not-valid {
	border-color: #ffb4b4;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 14px 0;
}

.f-copy {
	font-size: 11px;
	color: rgba(255, 255, 255, .685);
}

.f-beian {
	margin-left: 8px;
}

.f-soc {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.f-soc a {
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, .07);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	color: rgba(255, 255, 255, .685);
	text-decoration: none;
	transition: all .2s;
	overflow: hidden;
}

.f-soc a img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.f-soc a:hover {
	background: var(--blue);
	color: #fff;
}

.f-soc-icon {
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, .07);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.f-soc-icon img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

@media (max-width: 1400px) {
	.footer-body { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 1100px) {
	.footer-body { padding-left: 28px; padding-right: 28px; }
	.footer-main { grid-template-columns: 1fr 1fr; }
	.f-col:nth-child(3) { padding-left: 0; }
	.f-col:last-child {
		padding-left: 0;
		border-right: none;
		grid-column: 1 / -1;
		border-top: 1px solid rgba(255, 255, 255, .47);
		padding-top: 20px;
	}
}

@media (max-width: 640px) {
	.footer-main { grid-template-columns: 1fr; }
	.f-col {
		border-right: none;
		padding-right: 0;
		padding-left: 0 !important;
	}
	.inq-row p,
	.f-col-inquiry .inq-row p {
		grid-template-columns: 1fr;
	}

	.inq-send-row p,
	.f-col-inquiry .inq-send-row p {
		flex-direction: column;
	}
}

/* ── Page Banner（静态 about 内页 Banner 风格，全站共用） ── */
#page-banner {
	position: relative;
	/* 高度含导航区，背景延伸到导航下方；不加 padding-top，避免文案被顶偏下 */
	height: calc(40vh + var(--nav-height));
	min-height: calc(320px + var(--nav-height));
	margin-top: 0;
	padding: 0;
	box-sizing: border-box;
	overflow: hidden;
	background: #0B1F3A center center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

body.admin-bar #page-banner {
	height: calc(40vh + var(--nav-height) + 32px);
	min-height: calc(320px + var(--nav-height) + 32px);
}

#page-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.45);
	pointer-events: none;
}

.banner-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 var(--content-pad);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 16px;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-nav a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color .2s;
}

.breadcrumb-nav a:hover {
	color: #FF6A00;
}

.breadcrumb-nav .sep {
	color: #FF6A00;
	font-size: 13px;
	line-height: 1;
}

.breadcrumb-nav .current {
	color: rgba(255, 255, 255, 0.55);
	max-width: 480px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.banner-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: clamp(36px, 5vw, 64px);
	color: #fff;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.05;
	margin: 0;
}

.banner-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 1px;
	margin-top: 12px;
}

.page-banner--post .banner-title {
	font-size: clamp(28px, 3.4vw, 46px);
	letter-spacing: 1px;
	line-height: 1.15;
	max-width: 920px;
	text-transform: none;
}

.page-banner--product .banner-title {
	font-size: clamp(36px, 4.5vw, 56px);
	letter-spacing: 2px;
	line-height: 1.1;
}

.banner-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.bm-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.7);
}

.bm-item svg {
	flex-shrink: 0;
}

@media screen and (max-width: 782px) {
	body.admin-bar #page-banner {
		height: calc(32vh + var(--nav-height) + 46px);
		min-height: calc(240px + var(--nav-height) + 46px);
	}
}

@media (max-width: 768px) {
	#page-banner {
		height: calc(32vh + var(--nav-height));
		min-height: calc(240px + var(--nav-height));
	}

	.banner-title {
		font-size: clamp(32px, 8vw, 48px);
	}

	.page-banner--post .banner-title {
		font-size: clamp(24px, 6.5vw, 36px);
	}

	.page-banner--product .banner-title {
		font-size: clamp(28px, 7vw, 40px);
	}

	.breadcrumb-nav .current {
		max-width: 200px;
	}
}

/* ── 内页分页 / 上下篇 ── */
.site-pager-wrap {
	padding-top: 40px;
	padding-bottom: 60px;
}

/* ── 404 ── */
.site-404__panel {
	padding: 72px 0 96px;
	text-align: center;
}

.site-404__code {
	margin: 0 0 8px;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(64px, 12vw, 96px);
	font-weight: 800;
	line-height: 1;
	color: #FF6A00;
}

.site-404__title {
	margin: 0 0 12px;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	text-transform: uppercase;
	color: #0B1F3A;
}

.site-404__text {
	margin: 0 auto 28px;
	max-width: 480px;
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #6B7280;
}

.site-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin: 0;
}

.site-404__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 48px;
	padding: 0 22px;
	box-sizing: border-box;
	background: #FF6A00;
	color: #fff;
	text-decoration: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	transition: background .2s, color .2s, border-color .2s;
}

.site-404__btn:hover {
	background: #E05A00;
	color: #fff;
}

.site-404__btn--outline {
	background: #fff;
	border: 1px solid #ddd;
	color: #4b5563;
}

.site-404__btn--outline:hover {
	border-color: #FF6A00;
	color: #FF6A00;
	background: #fff;
}

.pagination,
.navigation.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	width: 100%;
	text-align: center;
}

.pagination .page-numbers,
.navigation.pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 auto;
	padding: 0;
}

.pagination .page-numbers li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pagination .page-numbers a,
.pagination .page-numbers span,
.navigation.pagination .page-numbers {
	width: 36px;
	min-width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid #ddd;
	background: #fff;
	color: #9CA3AF;
	font-size: 14px;
	font-weight: 400;
	font-family: Arial, sans-serif;
	line-height: 1;
	transition: border-color .2s, color .2s, background .2s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-sizing: border-box;
}

.pagination .page-numbers a:hover,
.pagination .page-numbers a:focus,
.navigation.pagination a.page-numbers:hover {
	border-color: #FF6A00;
	color: #FF6A00;
}

.pagination .page-numbers .current,
.navigation.pagination span.page-numbers.current {
	background: #FF6A00;
	border-color: #FF6A00;
	color: #fff;
}

.pagination .page-numbers .prev,
.pagination .page-numbers .next,
.navigation.pagination .prev,
.navigation.pagination .next {
	width: 36px;
	min-width: 36px;
	padding: 0;
	font-size: 14px;
	letter-spacing: 0;
	text-transform: none;
}

.pagination .page-numbers .dots {
	border-color: transparent;
	background: transparent;
	color: #9CA3AF;
}

.article-pager {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--border);
}

.pager-link {
	background: var(--white);
	padding: 22px 26px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: background .2s;
}

.pager-link:hover {
	background: var(--blue-pale);
	text-decoration: none;
}

.pager-link.next {
	text-align: right;
	align-items: flex-end;
}

.pager-dir {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--blue);
}

.pager-title {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
}

.pager-link.is-empty {
	pointer-events: none;
	opacity: .45;
}

@media (max-width: 640px) {
	.article-pager {
		grid-template-columns: 1fr;
	}

	.pager-link.next {
		text-align: left;
		align-items: flex-start;
	}
}

/* ── 右侧浮动通讯栏 ── */
.float-contact {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 900;
}

.float-contact__list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 52px;
	box-shadow: -4px 4px 24px rgba(0, 80, 130, .18);
}

.float-contact__item {
	position: relative;
	width: 52px;
}

.float-contact__item:hover {
	z-index: 2;
}

.float-contact__item + .float-contact__item {
	border-top: 1px solid rgba(255, 255, 255, .22);
}

.float-contact__link,
.float-contact__btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--navy);
	color: #fff;
	text-decoration: none;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background .4s ease, box-shadow .4s ease;
}

.float-contact__link:hover,
.float-contact__link:focus-visible {
	background: var(--blue);
	box-shadow: -6px 0 16px rgba(255, 106, 0, .28);
}

.float-contact__item--top .float-contact__btn:hover,
.float-contact__item--top .float-contact__btn:focus-visible {
	background: var(--blue);
	box-shadow: -6px 0 16px rgba(255, 106, 0, .28);
}

.float-contact__icon {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.float-contact__icon img {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.float-contact__text {
	position: absolute;
	right: 52px;
	top: 0;
	height: 52px;
	width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-sizing: border-box;
	background: var(--blue);
	white-space: nowrap;
	opacity: 0;
	overflow: hidden;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: .2px;
	text-align: center;
	pointer-events: none;
	transition:
		width .6s cubic-bezier(.25, .46, .45, .94),
		padding .6s cubic-bezier(.25, .46, .45, .94),
		opacity .45s ease .15s;
}

.float-contact__link:hover .float-contact__text,
.float-contact__link:focus-visible .float-contact__text {
	width: 265px;
	padding: 0 12px;
	opacity: 1;
}

@media (max-width: 640px) {
	.float-contact__list {
		width: 48px;
	}

	.float-contact__item {
		width: 48px;
	}

	.float-contact__link,
	.float-contact__btn {
		width: 48px;
		height: 48px;
	}

	.float-contact__icon {
		width: 48px;
		height: 48px;
	}

	.float-contact__icon img {
		width: 28px;
		height: 28px;
	}

	.float-contact__text {
		right: 48px;
		height: 48px;
		font-size: 13px;
	}

	.float-contact__link:hover .float-contact__text,
	.float-contact__link:focus-visible .float-contact__text {
		width: 265px;
		padding: 0 12px;
	}
}

/* ── 全站共用页脚（KINGTOP 静态页风格） ── */
.site-footer {
	margin-top: 0;
	color: #fff;
}

.site-footer__inner {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 var(--content-pad);
	box-sizing: border-box;
}

/* 橙色 CTA：仅内页 */
.footer-cta {
	background: #FF6A00;
	padding: 36px 0;
}

.footer-cta .site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.footer-cta__title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(26px, 3.2vw, 40px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	line-height: 1.15;
	margin: 0 0 8px;
}

.footer-cta__sub {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.5;
	margin: 0;
}

.footer-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	background: #0B1F3A;
	color: #fff;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 28px;
	transition: background-color .25s ease, transform .25s ease;
}

.footer-cta__btn:hover,
.footer-cta__btn:focus-visible {
	background: #06101f;
	color: #fff;
	transform: translateY(-1px);
}

.footer-cta__btn span {
	font-size: 18px;
	line-height: 1;
}

/* 深色主页脚 */
.site-footer .footer-block {
	background: #060F1E;
	padding: 56px 0 0;
}

.site-footer .footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 28px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer .footer-brand__logo {
	display: inline-block;
	margin-bottom: 14px;
	text-decoration: none;
}

.site-footer .footer-brand__logo img {
	height: 48px;
	width: auto;
	display: block;
}

.site-footer .footer-brand__desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.7;
	max-width: 260px;
	margin: 0;
}

.site-footer .footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.site-footer .footer-social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background .2s, border-color .2s;
}

.site-footer .footer-social a:hover {
	background: #FF6A00;
	border-color: #FF6A00;
}

.site-footer .footer-social a img {
	width: 15px;
	height: 15px;
	object-fit: contain;
	display: block;
	opacity: 0.75;
	transition: opacity .2s;
}

.site-footer .footer-social a:hover img {
	opacity: 1;
}

.site-footer .footer-col h4 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #FF6A00;
	margin: 0 0 16px;
}

.site-footer .footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-footer .footer-col ul li a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.50);
	text-decoration: none;
	transition: color .2s;
}

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

.site-footer .footer-contact-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-footer .footer-contact-info a,
.site-footer .footer-contact-info span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.50);
	text-decoration: none;
	line-height: 1.55;
	transition: color .2s;
}

.site-footer .footer-contact-info a:hover {
	color: #fff;
}

.site-footer .footer-contact-info__address {
	margin-top: 4px;
	line-height: 1.6;
	max-width: 240px;
}

.site-footer .footer-bottom {
	padding: 18px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.site-footer .footer-bottom__left {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.site-footer .footer-bottom__right {
	margin-left: auto;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.site-footer .footer-bottom__right p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.25);
	margin: 0;
}

.site-footer .footer-bottom p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.25);
	margin: 0;
}

.site-footer .footer-sitemap-link {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: color .2s;
}

.site-footer .footer-sitemap-link:hover,
.site-footer .footer-sitemap-link:focus-visible {
	color: #FF6A00;
}

/* HTML Sitemap 页 */
.site-page-sitemap .sitemap-panel {
	padding: calc(48px + var(--nav-height)) 0 72px;
	background: #fff;
}

.site-page-sitemap .sitemap-intro {
	margin: 0 0 36px;
	max-width: 760px;
	font-size: 15px;
	line-height: 1.7;
	color: #5a5a5a;
}

.site-page-sitemap .sitemap-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px 40px;
}

.site-page-sitemap .sitemap-section__title {
	margin: 0 0 14px;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #0B1F3A;
}

.site-page-sitemap .sitemap-section__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-page-sitemap .sitemap-section__list a {
	font-size: 14px;
	line-height: 1.5;
	color: #334155;
	text-decoration: none;
	transition: color .2s;
}

.site-page-sitemap .sitemap-section__list a:hover {
	color: #FF6A00;
}

.site-page-sitemap .sitemap-empty {
	color: #6B7280;
}

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

	.site-page-sitemap .sitemap-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.footer-cta {
		padding: 28px 0;
	}

	.footer-cta .site-footer__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer .footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.site-footer .footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer .footer-bottom__right {
		margin-left: 0;
	}

	.site-page-sitemap .sitemap-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

