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

/* ── Header / Nav（对齐 jingtai 深色玻璃导航） ── */
.site-header {
	position: relative;
	z-index: 1000;
}

#nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 72px;
	background: rgba(11, 11, 15, 0.55);
	backdrop-filter: blur(16px) saturate(1.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding: 0;
	transition: background .3s ease, box-shadow .3s ease;
}

.nav-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#nav.scrolled {
	background: rgba(11, 11, 15, 0.88);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* 仅首页固定置顶；内页随文档流，贴在页面最上方 */
body.home #nav,
body.front-page #nav {
	position: fixed;
}

body:not(.home):not(.front-page) #nav {
	position: relative;
	top: auto;
	background: #1e2127;
	backdrop-filter: none;
	box-shadow: none;
}

body:not(.home):not(.front-page) #nav.scrolled {
	background: #1e2127;
	box-shadow: none;
}

body.home,
body.front-page {
	padding-top: 0;
}

body:not(.home):not(.front-page) {
	padding-top: 0;
}

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

.nav-logo img,
.nav-logo-img,
.custom-logo {
	height: 34px;
	width: auto;
	display: block;
	transition: transform .3s ease;
}

.nav-logo:hover img,
.nav-logo:hover .nav-logo-img,
.nav-logo:hover .custom-logo {
	transform: scale(1.04);
}

.nav-logo-text {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.4px;
	color: #f0f0f4;
	text-transform: uppercase;
}

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

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

.nav-links a {
	display: block;
	padding: 8px 14px;
	height: auto;
	line-height: 1.2;
	font-size: 15px;
	font-weight: 500;
	color: #c8c8d4;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	transition: color .25s ease, transform .2s ease;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.nav-links .sub-menu a {
	text-transform: none;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 14px;
	width: 0;
	height: 2px;
	background: #c69c6d;
	transition: width .3s ease;
	pointer-events: none;
}

.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,
.nav-links .menu-item-has-children:hover > a,
.nav-links .menu-item-has-children:focus-within > a {
	color: #fff;
}

.nav-links a:hover {
	transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current-menu-ancestor > a::after,
.nav-links .current_page_item > a::after,
.nav-links .menu-item-has-children:hover > a::after,
.nav-links .menu-item-has-children:focus-within > a::after {
	width: calc(100% - 28px);
}

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

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

.nav-links .menu-item-has-children > a::before {
	content: '';
	position: absolute;
	right: 8px;
	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: -16px;
		min-width: 180px;
		background: rgba(26, 26, 34, 0.92);
		backdrop-filter: blur(12px);
		border: 1px solid #2b2b36;
		border-radius: 16px;
		box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7);
		padding: 10px 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
		z-index: 1220;
		/* 消除与父级之间的空隙，避免悬停中断 */
		margin-top: 0;
	}

	.nav-links .sub-menu::before {
		content: '';
		position: absolute;
		top: -12px;
		left: 0;
		right: 0;
		height: 12px;
	}

	.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);
		pointer-events: auto;
	}

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

	.nav-links .sub-menu a {
		height: auto;
		line-height: 1.4;
		padding: 10px 24px;
		font-size: 13px;
		font-weight: 400;
		color: #b0b0c0;
		white-space: nowrap;
		transform: none;
		transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
	}

	.nav-links .sub-menu a:hover {
		background: #282833;
		color: #fff;
		padding-left: 28px;
		transform: none;
	}

	.nav-links .sub-menu a::after {
		left: 24px;
		bottom: 6px;
		width: 0;
		height: 2px;
		background: #c69c6d;
		transform: none;
		transition: width 0.3s ease, left 0.2s ease;
	}

	.nav-links .sub-menu a:hover::after {
		left: 28px;
		width: calc(100% - 52px);
	}

	.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: 100%;
			padding: 0;
			border: none;
			border-left: 1px solid rgba(255, 255, 255, 0.08);
			background: transparent;
			color: #c8c8d4;
			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);
	}

	/* PRODUCTS Mega：嵌套结构 + display:contents 还原桌面双栏 */
	.nav-links .nav-products-mega > .sub-menu.mega-menu,
	.nav-links .sub-menu.mega-menu {
		display: grid;
		grid-template-columns: 220px minmax(300px, 1fr);
		min-width: 640px;
		padding: 12px;
		gap: 0;
		left: -20px;
		background: rgba(26, 26, 34, 0.92);
	}

	.nav-links .mega-item {
		display: contents;
	}

	.nav-links .mega-item-head {
		grid-column: 1;
		display: flex;
		align-items: stretch;
		position: relative;
	}

	.nav-links .mega-item-toggle {
		display: none;
	}

	.nav-links .mega-cat {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		flex: 1;
		padding: 9px 12px !important;
		border-radius: 8px;
		font-size: 13px;
		font-weight: 400;
		color: #b0b0c0;
		text-decoration: none;
		transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
		transform: none !important;
	}

	.nav-links .mega-cat::after {
		display: none !important;
		content: none;
	}

	.nav-links .mega-cat-label {
		position: relative;
		display: inline-block;
	}

	.nav-links .mega-cat-label::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: -3px;
		width: 0;
		height: 2px;
		background: #c69c6d;
		transition: width 0.3s ease;
		pointer-events: none;
	}

	.nav-links .mega-cat-arrow {
		font-size: 14px;
		line-height: 1;
		opacity: 0.4;
		transition: opacity 0.2s ease, transform 0.2s ease;
		position: relative;
		z-index: 1;
		flex-shrink: 0;
	}

	.nav-links .mega-cat:hover,
	.nav-links .mega-cat.active,
	.nav-links .mega-item.is-active .mega-cat {
		background: #282833;
		color: #fff;
		padding-left: 16px !important;
	}

	.nav-links .mega-cat:hover .mega-cat-label::after {
		width: 100%;
	}

	.nav-links .mega-cat:hover .mega-cat-arrow,
	.nav-links .mega-cat.active .mega-cat-arrow,
	.nav-links .mega-item.is-active .mega-cat-arrow {
		opacity: 1;
		transform: translateX(2px);
	}

	.nav-links .mega-panel {
		grid-column: 2;
		grid-row: 1 / span 50;
		display: none !important;
		flex-direction: column;
		align-self: start;
		padding: 4px 0 6px 16px;
		width: 100%;
		border-left: 1px solid #23232e;
		margin-left: 6px;
	}

	.nav-links .mega-panel.active {
		display: flex !important;
		animation: tongyongMegaFade 0.25s ease;
	}

	@keyframes tongyongMegaFade {
		from {
			opacity: 0;
			transform: translateY(4px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.nav-links .mega-panel-title {
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 1.6px;
		text-transform: uppercase;
		color: #c69c6d;
		padding: 4px 16px 10px;
	}

	.nav-links .mega-panel > a {
		padding: 7px 16px !important;
		font-size: 13px;
		color: #b0b0c0;
		border-radius: 8px;
		transform: none !important;
		transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
	}

	.nav-links .mega-panel > a:hover {
		background: #282833;
		color: #fff;
		padding-left: 20px !important;
	}

	.nav-links .mega-panel > a::after {
		display: block;
		left: 16px;
		bottom: 3px;
		width: 0;
		height: 2px;
		background: #c69c6d;
		transform: none;
		transition: width 0.3s ease, left 0.2s ease;
	}

	.nav-links .mega-panel > a:hover::after {
		left: 20px;
		width: calc(100% - 36px);
	}

	.nav-links .mega-panel .mega-view-all {
		color: #c69c6d;
		font-weight: 500;
		margin-top: 4px;
	}
}

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

.lang-links,
.lang-link,
.lang-divider {
	display: none !important;
}

.nav-search-btn {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color .2s, background .2s, color .2s;
	border-radius: 50%;
	padding: 0;
	color: #c8c8d4;
}

.nav-search-btn:hover {
	border-color: rgba(198, 156, 109, 0.45);
	background: rgba(198, 156, 109, 0.12);
	color: #c69c6d;
}
.nav-search-btn svg { stroke: currentColor; }
.nav-search-btn[aria-expanded="true"] {
	border-color: rgba(198, 156, 109, 0.55);
	background: rgba(198, 156, 109, 0.16);
	color: #c69c6d;
}

/* 搜索面板（高于固定导航，全端可弹窗） */
.nav-search-panel {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 100px 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(8, 8, 12, 0.72);
	backdrop-filter: blur(6px);
	border: none;
	padding: 0;
	cursor: pointer;
}

.nav-search-panel__box {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 640px;
	background: #1e2127;
	border: 1px solid #2b2b36;
	border-radius: 16px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
	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 rgba(255, 255, 255, 0.1);
	background: none;
	color: #c8c8d4;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 50%;
	transition: border-color .2s, color .2s, background .2s;
}

.nav-search-panel__close:hover {
	border-color: rgba(198, 156, 109, 0.45);
	color: #c69c6d;
	background: rgba(198, 156, 109, 0.1);
}

.nav-search-panel__label {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #c69c6d;
	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;
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid #2b2b36;
	border-radius: 10px;
	background: rgba(11, 11, 15, 0.7);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: normal;
	color: #f0f0f4;
	outline: none;
	transition: border-color .2s;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.nav-search-panel__input:focus {
	border-color: rgba(198, 156, 109, 0.55);
}

.nav-search-panel__input::placeholder {
	color: #6e6e80;
}

.nav-search-panel__submit {
	flex-shrink: 0;
	height: 48px;
	padding: 0 24px;
	background: rgba(46, 46, 58, 0.9);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 40px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s, border-color .2s;
}

.nav-search-panel__submit:hover {
	background: rgba(198, 156, 109, 0.28);
	border-color: rgba(198, 156, 109, 0.45);
}

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

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

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

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

	.nav-search-panel__input {
		flex: none;
		width: 100%;
		height: 48px;
		min-height: 48px;
		font-size: 16px;
	}

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

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

.search-results-head {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid #e5e5e5;
}

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

.search-results-head .s-title {
	margin: 0;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	line-height: 1.25;
	color: #111;
}

.search-results-count {
	margin: 10px 0 0;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 14px;
	color: #777;
}

.search-results__form {
	margin: 24px 0 0;
	max-width: 560px;
	margin-left: 0;
	margin-right: auto;
}

.search-result-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid #e5e5e5;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.search-result-item {
	padding: 24px 28px;
	border-bottom: 1px solid #e5e5e5;
	transition: background 0.2s ease;
}

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

.search-result-item:hover {
	background: #fafafa;
}

.search-result-type {
	margin: 0 0 8px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #c69c6d;
}

.search-result-item .entry-title {
	margin: 0 0 10px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	line-height: 1.35;
	color: #111;
}

.search-result-item .entry-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.search-result-item .entry-title a:hover {
	color: #c69c6d;
}

.search-result-excerpt {
	margin: 0 0 14px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.search-result-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	height: 36px;
	padding: 0 16px;
	border-radius: 999px;
	background: #2a2a2a;
	color: #fff;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: background 0.2s ease;
}

.search-result-more:hover,
.search-result-more:focus-visible {
	background: #111;
	color: #fff;
}

.search-results__pager {
	padding-top: 36px;
}

.search-results__pager .pagination {
	margin: 0;
}

.search-no-results {
	padding: 48px 24px;
	text-align: center;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	color: #666;
}

.search-no-results p {
	margin: 0 0 24px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

.search-no-results__actions {
	justify-content: center;
}

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

.search-inline-form input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	height: 48px;
	padding: 0 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 15px;
	color: #111;
	outline: none;
	box-sizing: border-box;
}

.search-inline-form input[type="search"]:focus {
	border-color: #c69c6d;
	box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.2);
}

.search-inline-form button {
	flex: 0 0 auto;
	height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: #2a2a2a;
	color: #fff;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	cursor: pointer;
	transition: background 0.2s ease;
}

.search-inline-form button:hover,
.search-inline-form button:focus-visible {
	background: #111;
}

/* 404 页面 */
.site-404 {
	padding: 64px 0 90px;
	background: #f8f8f8;
}

.error-404 {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.error-404__code {
	margin: 0 0 8px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: clamp(72px, 12vw, 120px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -2px;
	color: #c69c6d;
}

.error-404__title {
	margin: 0 0 14px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	line-height: 1.3;
	color: #111;
}

.error-404__desc {
	margin: 0 auto 28px;
	max-width: 520px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #666;
}

.error-404__form {
	margin: 0 auto 28px;
}

.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.error-404__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	height: 44px;
	padding: 0 20px;
	border-radius: 999px;
	background: #2a2a2a;
	color: #fff;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	box-sizing: border-box;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.error-404__btn:hover,
.error-404__btn:focus-visible {
	background: #111;
	color: #fff;
}

.error-404__btn--ghost {
	background: #fff;
	color: #111;
	border: 1px solid #ddd;
}

.error-404__btn--ghost:hover,
.error-404__btn--ghost:focus-visible {
	background: #111;
	border-color: #111;
	color: #fff;
}

@media (max-width: 640px) {
	.site-search {
		padding: 32px 0 56px;
	}

	.search-result-item {
		padding: 20px;
	}

	.search-result-item .entry-title {
		font-size: 18px;
	}

	.search-inline-form {
		flex-direction: column;
	}

	.search-inline-form button {
		width: 100%;
	}

	.site-404 {
		padding: 40px 0 64px;
	}

	.error-404__actions {
		flex-direction: column;
	}

	.error-404__btn {
		width: 100%;
	}
}

.nav-quote {
	background: rgba(46, 46, 58, 0.7);
	color: #f0f0f4;
	padding: 0 22px;
	height: 36px;
	line-height: 36px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.3px;
	text-transform: none;
	text-decoration: none;
	transition: background .25s, border-color .25s, color .25s;
	white-space: nowrap;
	border-radius: 40px;
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-quote:hover {
	background: rgba(63, 63, 82, 0.9);
	border-color: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	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: #c8c8d4;
	transition: transform .25s, opacity .25s;
}

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

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

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(8, 8, 12, 0.6);
	z-index: 1050;
	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: 68px; }
	.nav-inner { padding: 0 16px; }
	.nav-logo img,
	.nav-logo-img,
	.custom-logo { height: 30px; }
	.nav-toggle { display: flex; }
	.nav-right > .nav-quote { display: none; }
	/* 搜索按钮始终显示，点击打开弹窗 */
	.nav-right > .nav-search-btn { display: flex; }

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

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

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

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

	.nav-drawer-close:hover {
		border-color: rgba(198, 156, 109, 0.45);
		color: #c69c6d;
	}

	.nav-drawer-actions {
		display: flex;
		align-items: center;
		gap: 8px;
		flex: 1;
		justify-content: flex-end;
	}

	.lang-links--drawer { display: none; }

	/* 移动端改用顶部搜索弹窗，抽屉内搜索隐藏 */
	.nav-drawer-search {
		display: none;
	}

	.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: 13px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		white-space: normal;
		color: #c8c8d4;
		transform: none;
	}

	.nav-links a:hover,
	.nav-links a.active,
	.nav-links .current-menu-item > a,
	.nav-links .current-menu-ancestor > a {
		color: #fff;
		background: rgba(255, 255, 255, 0.04);
	}

	.nav-links a::after { display: none; }

	/* 有子菜单：链接与展开按钮并排，避免链接盖住按钮 */
	.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 rgba(255, 255, 255, 0.08);
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		background: transparent;
		color: #c8c8d4;
		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.25);
		box-shadow: none;
		border: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		border-radius: 0;
	}

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

	/* 汉堡菜单 PRODUCTS：手风琴，箭头展开在当前一级下方 */
	.nav-links .submenu-open > .sub-menu.mega-menu,
	.nav-links .sub-menu.mega-menu {
		display: none;
		grid-template-columns: none;
		flex-direction: column;
		min-width: 0;
		width: 100%;
		left: auto;
		right: auto;
		padding: 0;
		gap: 0;
		background: rgba(0, 0, 0, 0.22);
		border: none;
		box-shadow: none;
		border-radius: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		position: static;
		margin: 0;
	}

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

	.nav-links .mega-menu::before {
		display: none;
	}

	.nav-links .mega-item {
		display: block;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.nav-links .mega-item-head {
		display: flex;
		align-items: stretch;
		width: 100%;
		grid-column: auto;
	}

	.nav-links .mega-cat,
	.nav-links .sub-menu.mega-menu .mega-cat {
		display: flex;
		align-items: center;
		flex: 1 1 auto;
		min-width: 0;
		width: auto;
		max-width: none;
		box-sizing: border-box;
		padding: 12px 12px 12px 40px !important;
		margin: 0;
		border-radius: 0;
		border-bottom: none;
		font-size: 12px;
		font-weight: 400;
		color: #a8a8b8;
		background: transparent;
		transform: none !important;
	}

	.nav-links .mega-cat::after,
	.nav-links .mega-cat-label::after {
		display: none !important;
		content: none !important;
		width: 0 !important;
	}

	.nav-links .mega-cat-arrow {
		display: none !important;
	}

	.nav-links .mega-cat:hover,
	.nav-links .mega-cat.active,
	.nav-links .mega-item.is-active .mega-cat,
	.nav-links .mega-item.is-open .mega-cat {
		background: rgba(198, 156, 109, 0.1);
		color: #c69c6d;
		padding-left: 40px !important;
	}

	.nav-links .mega-item-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 48px;
		width: 48px;
		min-height: 44px;
		padding: 0;
		border: none;
		border-left: 1px solid rgba(255, 255, 255, 0.08);
		background: transparent;
		color: #c8c8d4;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.nav-links .mega-item-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;
	}

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

	.nav-links .mega-item.is-open > .mega-item-head .mega-item-toggle {
		color: #c69c6d;
	}

	.nav-links .mega-panel {
		display: none !important;
		grid-column: auto;
		grid-row: auto;
		flex-direction: column;
		width: 100%;
		padding: 0;
		margin: 0;
		border: none;
		animation: none;
		background: rgba(0, 0, 0, 0.18);
	}

	.nav-links .mega-item.is-open > .mega-panel {
		display: flex !important;
	}

	.nav-links .mega-panel.active {
		display: none !important;
	}

	.nav-links .mega-item.is-open > .mega-panel.active,
	.nav-links .mega-item.is-open > .mega-panel {
		display: flex !important;
	}

	.nav-links .mega-panel-title {
		display: none;
	}

	.nav-links .mega-panel > a {
		display: block;
		padding: 11px 20px 11px 52px !important;
		margin: 0;
		border-radius: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.04);
		font-size: 12px;
		color: #8e8ea0;
		background: transparent;
		transform: none !important;
	}

	.nav-links .mega-panel > a:hover,
	.nav-links .mega-panel > a:active {
		background: rgba(255, 255, 255, 0.04);
		color: #fff;
		padding-left: 52px !important;
	}

	.nav-links .mega-panel > a::after {
		display: none !important;
		content: none !important;
	}

	.nav-links .mega-panel .mega-view-all {
		color: #c69c6d;
		font-weight: 500;
	}

	.nav-links .sub-menu:not(.mega-menu) a {
		padding: 12px 12px 12px 40px;
		font-size: 12px;
		border-bottom-color: rgba(255, 255, 255, 0.05);
		color: #a8a8b8;
	}

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

	.nav-links .sub-menu .nav-submenu-toggle {
		background: rgba(255, 255, 255, 0.04);
		border-bottom-color: rgba(255, 255, 255, 0.05);
		color: #c8c8d4;
	}

	.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(198, 156, 109, 0.12);
		color: #c69c6d;
		font-weight: 600;
	}

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

	.nav-drawer-quote a {
		display: block;
		background: rgba(46, 46, 58, 0.9);
		color: #fff !important;
		text-align: center;
		font-weight: 500;
		letter-spacing: 0.3px;
		border-radius: 40px;
		border: 1px solid rgba(255, 255, 255, 0.08) !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
		padding: 14px 20px !important;
		height: auto;
		line-height: 1.4;
	}

	.nav-drawer-quote a:hover {
		background: rgba(198, 156, 109, 0.28) !important;
		color: #fff !important;
	}
}

/* ── Page Banner（对齐设计稿：左标题 / 右面包屑） ── */
#page-banner {
	position: relative;
	height: 360px;
	overflow: hidden;
	background: #0b0b0f center center / cover no-repeat;
	display: flex;
	align-items: center;
}

#page-banner .banner-bg {
	position: absolute;
	inset: 0;
	background: inherit;
	background-size: cover;
	background-position: center;
	transform: scale(1);
	transition: transform 8s ease;
}

#page-banner .banner-bg.zoomed {
	transform: scale(1.06);
}

#page-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(8, 8, 12, 0.72) 0%,
		rgba(8, 8, 12, 0.45) 45%,
		rgba(8, 8, 12, 0.35) 100%
	);
}

.banner-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.banner-content__main {
	flex: 1 1 auto;
	min-width: 0;
}

.banner-title {
	font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
	font-weight: 700;
	font-size: clamp(36px, 4.5vw, 56px);
	color: #fff;
	letter-spacing: -0.5px;
	line-height: 1.3;
	margin: 0;
	overflow: visible;
	padding-bottom: 0.06em;
}

.banner-desc {
	margin: 14px 0 0;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.2px;
	max-width: 560px;
	line-height: 1.6;
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex: 0 0 auto;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.2px;
	text-transform: none;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, 0.75);
	text-align: right;
}

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

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

.breadcrumb-nav .sep {
	color: rgba(255, 255, 255, 0.4);
	font-size: 13px;
}

.breadcrumb-nav .current {
	color: #fff;
	max-width: 280px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.page-banner--post .banner-title {
	font-size: clamp(28px, 3.4vw, 44px);
	letter-spacing: -0.3px;
	line-height: 1.35;
	max-width: 720px;
}

/* 视频列表页专用海报 */
#page-banner.page-banner--video-list {
	height: auto;
	min-height: 420px;
	align-items: center;
	padding: 56px 0;
}

#page-banner.page-banner--video-list::before {
	background: linear-gradient(
		90deg,
		rgba(6, 18, 40, 0.78) 0%,
		rgba(8, 24, 52, 0.62) 48%,
		rgba(10, 28, 56, 0.5) 100%
	);
}

.page-banner--video-list .banner-content {
	max-width: 1470px;
	padding: 0 40px;
	align-items: flex-start;
}

.page-banner--video-list .banner-content__main {
	width: 100%;
}

.banner-video-head {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 14px 20px;
	margin: 0 0 18px;
}

.page-banner--video-list .banner-title--video {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1.3;
	text-transform: uppercase;
	margin: 0;
	overflow: visible;
	padding-bottom: 0.06em;
}

.banner-subtitle {
	margin: 0;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.95);
}

.banner-video-subtitles {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 36px;
}

.banner-video-subtitles li {
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.45;
	color: #fff;
}

.banner-video-descs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px 24px;
}

.banner-video-descs__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
}

.banner-video-descs__item:last-child:nth-child(4n + 1) {
	grid-column: 1 / -1;
}

.banner-video-descs__icon {
	flex: 0 0 20px;
	width: 20px;
	height: 18px;
	margin-top: 2px;
	object-fit: contain;
}

.banner-video-descs__text {
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #fff;
}

@media (max-width: 1100px) {
	.page-banner--video-list .banner-content {
		padding: 0 28px;
	}

	.banner-video-descs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.banner-video-descs__item:last-child:nth-child(4n + 1) {
		grid-column: auto;
	}

	.banner-video-descs__item:last-child:nth-child(2n + 1) {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	#page-banner.page-banner--video-list {
		padding: 40px 0;
		min-height: 0;
	}

	.page-banner--video-list .banner-content {
		padding: 0 20px;
	}

	.banner-video-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		margin-bottom: 14px;
	}

	.page-banner--video-list .banner-title--video {
		font-size: 28px;
	}

	.banner-subtitle {
		font-size: 16px;
	}

	.banner-video-subtitles {
		flex-direction: column;
		gap: 6px;
		margin-bottom: 20px;
	}

	.banner-video-subtitles li {
		font-size: 16px;
	}

	.banner-video-descs {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.banner-video-descs__item:last-child:nth-child(2n + 1) {
		grid-column: auto;
	}

	.banner-video-descs__text {
		font-size: 15px;
	}
}

.page-banner--product .banner-title {
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.3;
}

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

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

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

@media (max-width: 1100px) {
	#page-banner {
		height: 300px;
	}

	.banner-content {
		padding-left: 28px;
		padding-right: 28px;
		gap: 28px;
	}
}

@media (max-width: 768px) {
	#page-banner {
		height: auto;
		min-height: 220px;
		align-items: flex-end;
	}

	.banner-content {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-end;
		gap: 16px;
		padding: 72px 20px 36px;
	}

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

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

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

	.breadcrumb-nav {
		justify-content: flex-start;
		text-align: left;
		order: -1;
		font-size: 13px;
	}

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

/* ── 公司板块页面导航（简介 / 工厂 / 视频） ── */
.company-subnav {
	background: #fff;
	border-bottom: 1px solid #e8e8ee;
}

.company-subnav__inner {
	max-width: 1470px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
}

.company-subnav__list {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.company-subnav__item {
	list-style: none;
	margin: 0;
	padding: 0;
}

.company-subnav__link {
	display: flex;
	align-items: center;
	min-height: 56px;
	padding: 14px 28px;
	font-family: 'Segoe UI', system-ui, sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	text-decoration: none;
	color: #1a1a26;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.company-subnav__link:hover {
	color: #c69c6d;
}

.company-subnav__link.is-active {
	color: #c69c6d;
	border-left-color: #c5d8f0;
	border-right-color: #c5d8f0;
	background: rgba(43, 125, 212, 0.04);
}

@media (max-width: 1100px) {
	.company-subnav__inner {
		padding: 0 28px;
	}

	.company-subnav__link {
		padding: 14px 20px;
		letter-spacing: 1px;
	}
}

@media (max-width: 640px) {
	.company-subnav__inner {
		padding: 0 20px;
	}

	.company-subnav__list {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.company-subnav__list::-webkit-scrollbar {
		display: none;
	}

	.company-subnav__link {
		min-height: 48px;
		padding: 12px 16px;
		white-space: nowrap;
	}
}

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

.pagination,
.navigation.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
}

.pagination .page-numbers,
.navigation.pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	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 {
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1.5px solid var(--border);
	background: var(--white);
	color: var(--gray);
	font-size: 13px;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	transition: all .25s;
	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: var(--blue);
	color: var(--blue);
}

.pagination .page-numbers .current,
.navigation.pagination span.page-numbers.current {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}

.pagination .page-numbers .prev,
.pagination .page-numbers .next,
.navigation.pagination .prev,
.navigation.pagination .next {
	width: auto;
	padding: 0 16px;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.pagination .page-numbers .dots {
	border: none;
	background: transparent;
	color: var(--gray-light);
}

.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__inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	transition: transform 0.35s ease;
	will-change: transform;
}

/* 收起：向右滑出，仅留左侧箭头贴边 */
.float-contact.is-collapsed .float-contact__inner {
	transform: translateX(calc(100% - 22px));
}

.float-contact__toggle {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 56px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 8px 0 0 8px;
	background: #c69c6d;
	box-shadow: -2px 4px 14px rgba(198, 156, 109, 0.35);
	cursor: pointer;
	color: #fff;
	transition: background 0.2s ease;
}

.float-contact__toggle:hover,
.float-contact__toggle:focus-visible {
	background: #b88958;
}

.float-contact__toggle-arrow {
	display: block;
	width: 7px;
	height: 7px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg); /* › 指向右：可收起 */
	transition: transform 0.25s ease;
	margin-left: -2px;
}

.float-contact.is-collapsed .float-contact__toggle-arrow {
	transform: rotate(135deg); /* ‹ 指向左：可展开 */
	margin-left: 2px;
}

.float-contact__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	width: 104px;
}

.float-contact__head {
	position: relative;
	z-index: 1;
	width: 84px;
	padding: 12px 8px 18px;
	background: #fff;
	border-radius: 42px 42px 14px 14px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
	text-align: center;
	box-sizing: border-box;
}

.float-contact__avatar {
	display: block;
	width: 48px;
	height: 48px;
	margin: 0 auto;
	border-radius: 50%;
	object-fit: cover;
}

.float-contact__badge {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 104px;
	min-height: 36px;
	margin: -12px 0 -12px;
	padding: 8px 12px;
	border-radius: 6px;
	background: #c69c6d;
	color: #fff;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.6px;
	box-sizing: border-box;
	box-shadow: 0 4px 14px rgba(198, 156, 109, 0.35);
}

.float-contact__body {
	position: relative;
	z-index: 1;
	list-style: none;
	margin: 0;
	padding: 28px 8px 16px;
	width: 84px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	box-sizing: border-box;
}

.float-contact__item {
	position: relative;
	width: 100%;
}

.float-contact__item:hover,
.float-contact__item:focus-within {
	z-index: 3;
}

.float-contact__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	text-decoration: none;
	cursor: pointer;
}

a.float-contact__link:hover,
a.float-contact__link:focus-visible {
	color: #111;
}

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

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

.float-contact__label {
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: #111;
	text-align: center;
}

.float-contact__pop {
	position: absolute;
	right: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%) translateX(6px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 5;
}

/* 桥接图标与弹层间隙，鼠标可移入弹层 */
.float-contact__pop::after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 100%;
	min-height: 72px;
}

.float-contact__item:hover .float-contact__pop,
.float-contact__item:focus-within .float-contact__pop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(-50%) translateX(0);
}

.float-contact__pop--qr {
	padding: 8px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.float-contact__pop--qr img {
	display: block;
	width: 100px;
	height: 100px;
	object-fit: contain;
}

.float-contact__pop--text {
	display: flex;
	align-items: center;
	max-width: 260px;
	padding: 10px 14px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
	color: #111;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	white-space: nowrap;
}

.float-contact__top {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	width: 56px;
	height: 56px;
	margin: 14px 0 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #c69c6d;
	box-shadow: 0 6px 18px rgba(198, 156, 109, 0.35);
	cursor: pointer;
	color: #fff;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.float-contact__top:hover,
.float-contact__top:focus-visible {
	background: #b88958;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(198, 156, 109, 0.45);
}

.float-contact__top img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.float-contact__top-text {
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.4px;
	color: #fff;
	text-transform: uppercase;
}

@media (max-width: 640px) {
	.float-contact {
		right: 0;
	}

	.float-contact__panel {
		width: 92px;
	}

	.float-contact__toggle {
		width: 20px;
		height: 48px;
	}

	.float-contact.is-collapsed .float-contact__inner {
		transform: translateX(calc(100% - 20px));
	}

	.float-contact__head {
		width: 72px;
		padding: 10px 6px 16px;
		border-radius: 36px 36px 12px 12px;
	}

	.float-contact__avatar {
		width: 42px;
		height: 42px;
	}

	.float-contact__badge {
		width: 92px;
		min-height: 32px;
		margin: -10px 0 -10px;
		padding: 6px 10px;
		font-size: 13px;
	}

	.float-contact__body {
		width: 72px;
		padding: 24px 6px 14px;
		gap: 14px;
		border-radius: 12px;
	}

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

	.float-contact__label {
		font-size: 12px;
	}

	.float-contact__pop--qr img {
		width: 88px;
		height: 88px;
	}

	.float-contact__pop--text {
		max-width: 200px;
		font-size: 12px;
		padding: 8px 10px;
	}
}

/* ── Site Footer（jingtai 深色页脚） ── */
.site-footer {
	background: #060608;
	padding: 70px 0 30px;
	border-top: 1px solid #1a1a24;
	color: #8a8aa0;
}

.site-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 48px;
	margin-bottom: 48px;
}

.site-footer__heading {
	color: #e8e8f0;
	font-weight: 600;
	margin: 0 0 20px;
	font-size: 15px;
	letter-spacing: 0.3px;
}

.site-footer__text {
	font-size: 14px;
	color: #8a8aa0;
	line-height: 2;
	margin: 0;
}

.site-footer__text--address {
	margin-top: 16px;
}

.site-footer__text--address strong {
	color: #c8c8d4;
	font-weight: 600;
	margin-right: 6px;
}

.site-footer__nav {
	display: flex;
	flex-direction: column;
}

.site-footer__nav a,
.site-footer__contacts a {
	font-size: 14px;
	color: #8a8aa0;
	line-height: 2;
	text-decoration: none;
	transition: color 0.25s ease, transform 0.2s ease;
}

.site-footer__nav a {
	display: block;
}

.site-footer__nav a:hover,
.site-footer__contacts a:hover {
	color: #d0d0e8;
	transform: translateX(4px);
}

.site-footer__col--links {
	padding-left: 40px;
}

.site-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-size: 14px;
	line-height: 2;
	color: #8a8aa0;
}

.site-footer__contact-icon {
	width: 22px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #8a8aa0;
	margin-top: 6px;
}

.site-footer__bottom {
	border-top: 1px solid #181822;
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.site-footer__copy {
	margin: 0;
	font-size: 13px;
	color: #5a5a70;
}

.site-footer__meta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.site-footer__socials {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.site-footer__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	transition: transform 0.3s ease, opacity 0.25s ease;
}

.site-footer__social:hover {
	transform: translateY(-3px) scale(1.08);
	opacity: 0.9;
}

.site-footer__social img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	display: block;
}

.site-footer__sitemap {
	font-size: 13px;
	color: #6a6a82;
	text-decoration: none;
	transition: color 0.25s ease;
	white-space: nowrap;
}

.site-footer__sitemap:hover {
	color: #c8c8e0;
}

@media (max-width: 992px) {
	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.site-footer__col--links {
		padding-left: 0;
	}

	.site-footer__col--about {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.site-footer {
		padding: 50px 0 24px;
	}

	.site-footer__inner {
		padding: 0 20px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-bottom: 32px;
	}

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

	.site-footer__meta {
		width: 100%;
		justify-content: space-between;
	}
}
