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

/* ── Header / Nav ── */
.site-header {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

#nav {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	transition: box-shadow .3s;
}

.nav-inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	padding: 25px 40px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

#nav.scrolled {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 2px 20px rgba(26, 35, 50, .08);
}

body.nav-fixed {
	padding-top: 140px;
}

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

.nav-logo img,
.nav-logo-img,
.custom-logo {
	width: 335px;
	height: 100px;
	max-width: 100%;
	object-fit: contain;
	object-position: left center;
	display: block;
}

.nav-logo-text {
	font-family: var(--font-nav);
	font-weight: 500;
	font-size: 22px;
	letter-spacing: 2px;
	color: var(--navy);
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	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 22px;
	height: 68px;
	line-height: 68px;
	font-family: var(--font-nav);
	font-size: 22px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 1.2px;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	transition: color .2s;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 18px;
	left: 22px;
	right: 22px;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transition: transform .25s;
	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 {
	color: var(--navy);
}

.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 {
	transform: scaleX(1);
}

/* 下拉子菜单（桌面悬停 / 移动折叠） */
.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(--white);
		border: 1px solid var(--border);
		box-shadow: 0 8px 24px rgba(13, 43, 85, .1);
		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: 10px 20px;
		font-size: 14px;
		font-weight: 500;
		color: var(--navy);
		white-space: nowrap;
		transition: color .2s, background .2s;
	}

	.nav-links .sub-menu a:hover,
	.nav-links .sub-menu .current-menu-item > a {
		color: var(--accent);
		background: var(--blue-pale);
	}

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

	.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: 68px;
			padding: 0;
			border: none;
			border-left: 1px solid var(--border);
			background: var(--white);
			color: var(--navy);
			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: 18px;
	flex-shrink: 0;
}

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

.nav-search-btn {
	width: 28px;
	height: 28px;
	background: none;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	opacity: .85;
	transition: opacity .2s;
}

.nav-search-btn:hover,
.nav-search-btn[aria-expanded="true"] {
	opacity: 1;
}

.nav-search-btn__icon {
	width: 28px;
	height: 28px;
	display: block;
	object-fit: contain;
}

/* 搜索面板 */
.nav-search-panel {
	position: fixed;
	inset: 0;
	z-index: 400;
	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(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: 0;
}

.search-page {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 56px 0 88px;
	background: #fff;
	box-sizing: border-box;
}

.search-page__inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.search-page__head {
	margin-bottom: 40px;
	text-align: center;
}

.search-page__title {
	margin: 0 0 12px;
	font-family: var(--font-nav);
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.25;
	color: #061f36;
}

.search-page__count {
	margin: 0 0 28px;
	font-family: var(--font-nav);
	font-size: 15px;
	color: #666;
}

.search-page__form {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 560px;
	margin: 0 auto;
}

.search-page__form input[type="search"] {
	flex: 1;
	height: 50px;
	padding: 0 18px;
	border: 1px solid #d9d9d9;
	border-radius: 999px;
	background: #fff;
	font-family: var(--font-nav);
	font-size: 15px;
	color: #333;
	outline: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.search-page__form input[type="search"]:focus {
	border-color: #cda651;
	box-shadow: 0 0 0 3px rgba(205, 166, 81, .16);
}

.search-page__form button {
	flex-shrink: 0;
	height: 50px;
	padding: 0 28px;
	border: none;
	border-radius: 999px;
	background: #cda651;
	color: #fff;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s ease;
}

.search-page__form button:hover {
	background: #b8943f;
}

.search-page__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.search-page__item {
	margin: 0;
}

.search-page__card {
	display: flex;
	align-items: stretch;
	gap: 24px;
	padding: 18px;
	border: 1px solid #e8e8e8;
	background: #fff;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
	transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.search-page__card:hover {
	border-color: #cda651;
	box-shadow: 0 10px 24px rgba(6, 31, 54, .08);
	transform: translateY(-2px);
}

.search-page__media {
	flex: 0 0 160px;
	width: 160px;
	height: 120px;
	overflow: hidden;
	background: #f3f3f3;
	line-height: 0;
}

.search-page__media img,
.search-page__media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.search-page__media-placeholder {
	background: linear-gradient(135deg, #eef1f4 0%, #dde3ea 100%);
}

.search-page__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	padding: 4px 8px 4px 0;
}

.search-page__type {
	font-family: var(--font-nav);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #cda651;
}

.search-page__name {
	font-family: var(--font-nav);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #061f36;
	transition: color .25s ease;
}

.search-page__card:hover .search-page__name {
	color: #cda651;
}

.search-page__excerpt {
	font-family: var(--font-nav);
	font-size: 14px;
	line-height: 1.65;
	color: #666;
}

.search-page__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 4px;
	width: 128px;
	height: 28px;
	border-radius: 999px;
	background: #061f36;
	font-family: var(--font-nav);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .3px;
	text-transform: uppercase;
	color: #fff;
	transition: background .3s ease;
}

.search-page__card:hover .search-page__more {
	background: #cda651;
}

.search-page__pager {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.search-page__empty {
	padding: 48px 20px;
	text-align: center;
}

.search-page__empty-text {
	margin: 0 0 24px;
	font-family: var(--font-nav);
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}

.search-page__empty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 46px;
	padding: 0 28px;
	border-radius: 999px;
	background: #cda651;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	transition: background .25s ease;
}

.search-page__empty-btn:hover {
	background: #b8943f;
	color: #fff;
}

/* 404 页面 */
.site-404 {
	padding: 0;
}

.error-404 {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 72px 0 96px;
	background: #fff;
	box-sizing: border-box;
}

.error-404__inner {
	max-width: 720px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
	text-align: center;
}

.error-404__code {
	margin: 0 0 8px;
	font-family: var(--font-nav);
	font-size: clamp(84px, 14vw, 140px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 4px;
	color: #cda651;
	opacity: .9;
}

.error-404__title {
	margin: 0 0 16px;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: #061f36;
}

.error-404__desc {
	margin: 0 auto 32px;
	max-width: 520px;
	font-family: var(--font-nav);
	font-size: 16px;
	line-height: 1.7;
	color: #666;
}

.error-404__search {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 520px;
	margin: 0 auto 32px;
}

.error-404__search input[type="search"] {
	flex: 1;
	height: 50px;
	padding: 0 18px;
	border: 1px solid #d9d9d9;
	border-radius: 999px;
	background: #fff;
	font-family: var(--font-nav);
	font-size: 15px;
	color: #333;
	outline: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.error-404__search input[type="search"]:focus {
	border-color: #cda651;
	box-shadow: 0 0 0 3px rgba(205, 166, 81, .16);
}

.error-404__search button {
	flex-shrink: 0;
	height: 50px;
	padding: 0 26px;
	border: none;
	border-radius: 999px;
	background: #061f36;
	color: #fff;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s ease;
}

.error-404__search button:hover {
	background: #cda651;
}

.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: 148px;
	height: 46px;
	padding: 0 22px;
	border-radius: 999px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .4px;
	text-decoration: none;
	text-transform: uppercase;
	box-sizing: border-box;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.error-404__btn--gold {
	background: #cda651;
	color: #fff;
}

.error-404__btn--gold:hover {
	background: #b8943f;
	color: #fff;
}

.error-404__btn--navy {
	background: #061f36;
	color: #fff;
}

.error-404__btn--navy:hover {
	background: #0a2d4d;
	color: #fff;
}

.error-404__btn--outline {
	background: transparent;
	border: 1.5px solid #061f36;
	color: #061f36;
}

.error-404__btn--outline:hover {
	border-color: #cda651;
	color: #cda651;
}

@media (max-width: 768px) {
	.search-page,
	.error-404 {
		padding: 40px 0 64px;
	}

	.search-page__inner,
	.error-404__inner {
		padding: 0 20px;
	}

	.search-page__form,
	.error-404__search {
		flex-direction: column;
		align-items: stretch;
	}

	.search-page__form button,
	.error-404__search button {
		width: 100%;
	}

	.search-page__card {
		flex-direction: column;
		gap: 14px;
	}

	.search-page__media {
		width: 100%;
		flex-basis: auto;
		height: 180px;
	}

	.search-page__name {
		font-size: 18px;
	}

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

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

.nav-quote {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 40px;
	padding: 0 12px;
	background: var(--navy);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-family: var(--font-nav);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background .2s, color .2s;
	white-space: nowrap;
}

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

/* 留言弹窗 */
.quote-modal {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s, visibility .25s;
}

body.quote-modal-open .quote-modal {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

.quote-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 35, 50, .55);
	border: none;
	padding: 0;
	cursor: pointer;
}

.quote-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	max-height: calc(100vh - 48px);
	overflow: auto;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(26, 35, 50, .22);
	padding: 36px 32px 28px;
	transform: translateY(12px) scale(.98);
	transition: transform .25s ease;
}

body.quote-modal-open .quote-modal__dialog {
	transform: translateY(0) scale(1);
}

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

.quote-modal__close:hover {
	border-color: var(--accent);
	color: var(--accent);
	background: var(--blue-pale);
}

.quote-modal__head {
	margin-bottom: 24px;
	padding-right: 36px;
}

.quote-modal__eyebrow {
	font-family: var(--font-nav);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 8px;
}

.quote-modal__title {
	font-family: var(--font-nav);
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--navy);
	line-height: 1.2;
	margin: 0 0 8px;
}

.quote-modal__body .wpcf7 {
	margin: 0;
}

.quote-modal__body .wpcf7-form {
	margin: 0;
}

.quote-form {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.quote-form__row {
	width: 100%;
}

.quote-form__row--half {
	width: calc(50% - 8px);
}

.quote-form__row label {
	display: block;
	font-family: var(--font-nav);
	font-size: 13px;
	font-weight: 500;
	color: var(--navy);
	margin-bottom: 0;
	letter-spacing: .3px;
}

.quote-form__row .wpcf7-form-control-wrap {
	display: block;
}

.quote-form__row input.wpcf7-form-control,
.quote-form__row textarea.wpcf7-form-control {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: #fafafa;
	font-family: var(--font-nav);
	font-size: 14px;
	color: var(--gray-dark);
	outline: none;
	transition: border-color .2s, background .2s, box-shadow .2s;
	-webkit-appearance: none;
}

.quote-form__row input.wpcf7-form-control {
	height: 44px;
	padding: 0 14px;
}

.quote-form__row textarea.wpcf7-form-control {
	min-height: 55px;
	height: 55px;
	padding: 10px 14px;
	resize: vertical;
}

.quote-form__row input.wpcf7-form-control:focus,
.quote-form__row textarea.wpcf7-form-control:focus {
	border-color: var(--accent);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(205, 166, 81, .18);
}

.quote-form__submit {
	width: 100%;
	margin-top: 8px;
}

.quote-form__submit input.wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 44px;
	padding: 0 28px;
	border: none;
	border-radius: 10px;
	background: var(--navy);
	color: #fff;
	font-family: var(--font-nav);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s;
}

.quote-form__submit input.wpcf7-submit:hover {
	background: var(--accent);
}

.quote-modal__body .wpcf7-not-valid-tip {
	font-size: 12px;
	margin-top: 6px;
}

.quote-modal__body .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 13px;
}

body.quote-modal-open {
	overflow: hidden;
}

@media (max-width: 640px) {
	.quote-modal__dialog {
		padding: 28px 20px 22px;
	}

	.quote-form__row--half {
		width: 100%;
	}

	.quote-form__submit input.wpcf7-submit {
		width: 100%;
	}
}

.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	background: none;
	border: 1px solid var(--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: var(--navy);
	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(13, 43, 85, .45);
	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-inner { padding: 16px 20px 12px; }
	body.nav-fixed { padding-top: 84px; }
	.nav-logo img,
	.nav-logo-img,
	.custom-logo {
		width: auto;
		max-width: 220px;
		height: 56px;
	}
	.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(--white);
		z-index: 300;
		padding: 20px 0 24px;
		box-shadow: 4px 0 24px rgba(13, 43, 85, .12);
		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: flex-end;
		gap: 10px;
		padding: 0 16px 14px;
		margin-bottom: 6px;
		border-bottom: 1px solid var(--border);
		flex-shrink: 0;
	}

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

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

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

	.nav-drawer-search {
		display: block;
		padding: 0 16px 14px;
		margin-bottom: 6px;
		border-bottom: 1px solid var(--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(--border);
		font-family: 'Inter', sans-serif;
		font-size: 14px;
		color: var(--gray-dark);
		background: var(--white);
		outline: none;
		transition: border-color .2s;
		-webkit-appearance: none;
	}

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

	.nav-drawer-search__input::placeholder {
		color: var(--gray-light);
	}

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

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

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

	.nav-links {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		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 var(--border);
		white-space: normal;
	}

	.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 var(--border);
		border-bottom: 1px solid var(--border);
		background: var(--white);
		color: var(--navy);
		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: var(--blue-pale);
		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: rgba(0, 0, 0, .06);
	}

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

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

	.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: var(--blue-pale);
		color: var(--blue);
		font-weight: 700;
	}

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

	.nav-drawer-quote button,
	.nav-drawer-quote a {
		display: block;
		width: 100%;
		background: var(--navy);
		color: #fff !important;
		text-align: center;
		font-family: var(--font-nav);
		font-size: 13px;
		font-weight: 500;
		letter-spacing: 1.5px;
		text-transform: uppercase;
		padding: 14px 20px !important;
		border: none !important;
		border-radius: 10px;
		height: auto;
		line-height: 1.4;
		cursor: pointer;
	}

	.nav-drawer-quote button:hover,
	.nav-drawer-quote a:hover { background: var(--accent); }
}

/* ── 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(0, 147, 208, .85);
}

.footer-body {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 64px;
}

.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 ── */
#page-banner {
	position: relative;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	overflow: hidden;
	background: #061f36;
}

#page-banner .banner-media {
	display: block;
	width: 100%;
	line-height: 0;
}

#page-banner .banner-media__img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

#page-banner .banner-media__img.zoomed {
	transform: scale(1.04);
	transition: transform 8s ease;
}

#page-banner::before {
	content: none;
	display: none;
}

.banner-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	max-width: 1650px;
	margin: 0 auto;
	padding: 40px;
	box-sizing: border-box;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.page-banner--no-image {
	min-height: 280px;
}

.page-banner--no-image .banner-content {
	position: relative;
	min-height: 280px;
}

.banner-title {
	margin: 0 0 16px;
	font-family: var(--font-nav);
	font-weight: 700;
	font-size: 54px;
	color: #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 1.15;
}

.banner-desc {
	margin: 0 auto;
	max-width: 900px;
	font-family: var(--font-nav);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(255, 255, 255, .92);
	letter-spacing: .3px;
}

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

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

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

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

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

.page-breadcrumb {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: #cda651;
}

.page-breadcrumb__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
	min-height: 52px;
	display: flex;
	align-items: center;
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	flex-wrap: wrap;
	line-height: 1.3;
}

.breadcrumb-nav a {
	color: #fff;
	text-decoration: none;
	transition: opacity .2s;
}

.breadcrumb-nav a:hover {
	opacity: .8;
}

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

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

@media (max-width: 1100px) {
	.banner-content,
	.page-breadcrumb__inner {
		padding-left: 28px;
		padding-right: 28px;
	}

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

@media (max-width: 640px) {
	.banner-content,
	.page-breadcrumb__inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.page-banner--no-image,
	.page-banner--no-image .banner-content {
		min-height: 220px;
	}

	.banner-title {
		font-size: clamp(28px, 8vw, 40px);
		letter-spacing: 1px;
	}

	.banner-desc {
		font-size: 15px;
	}

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

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

	.page-breadcrumb__inner {
		min-height: 46px;
	}

	.breadcrumb-nav {
		font-size: 12px;
	}

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

/* ── 内页分页 / 上下篇 ── */
.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: #cda651;
	color: #cda651;
}

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

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

.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__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(0, 147, 208, .25);
}

.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(0, 147, 208, .25);
}

.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;
	display: flex;
	align-items: center;
	padding: 0 4px 0 18px;
	background: var(--blue);
	white-space: nowrap;
	max-width: 0;
	opacity: 0;
	overflow: hidden;
	font-style: italic;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: .2px;
	pointer-events: none;
	transition:
		max-width .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 {
	max-width: 280px;
	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;
		padding-left: 14px;
	}

	.float-contact__link:hover .float-contact__text,
	.float-contact__link:focus-visible .float-contact__text {
		max-width: 220px;
	}
}

/* ── 页尾信息条 ── */
.site-bar {
	width: 100%;
	background: #000;
	color: #fff;
}

.site-bar__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 12px 40px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-bar__copy {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
}

.site-bar__copy a {
	color: #fff;
	text-decoration: none;
}

.site-bar__copy a:hover {
	text-decoration: underline;
}

.site-bar__sitemap {
	flex-shrink: 0;
	font-family: var(--font-nav);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
	text-decoration: none;
	transition: opacity .25s ease;
}

.site-bar__sitemap:hover {
	opacity: .75;
}

@media (max-width: 768px) {
	.site-bar__inner {
		padding: 12px 20px;
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
}

/* ── 公司简介视频 ── */
.about-video {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 56px 0 72px;
	background: #fff;
}

.about-video__inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.about-video__player {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #2a2a2a;
	aspect-ratio: 16 / 9;
}

.about-video__el,
.about-video__cover {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	background: #2a2a2a;
}

.about-video__el {
	position: absolute;
	inset: 0;
}

.about-video__player.is-playing .about-video__play {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.about-video__play {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: opacity .25s, visibility .25s;
}

.about-video__play-icon {
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 36px 0 36px 60px;
	border-color: transparent transparent transparent #fff;
	margin-left: 8px;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
	transition: transform .25s ease;
}

.about-video__play:hover .about-video__play-icon {
	transform: scale(1.08);
}

@media (max-width: 768px) {
	.about-video {
		padding: 36px 0 48px;
	}

	.about-video__inner {
		padding: 0 20px;
	}

	.about-video__play-icon {
		border-width: 28px 0 28px 46px;
	}
}

/* ── 关于我们团队展示（首页 / 公司简介共用） ── */
.home-about {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 72px 0 88px;
	background: #fbf8f1;
}

.home-about__inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.home-about__head {
	text-align: center;
	margin-bottom: 48px;
}

.home-about__logo {
	margin: 0 auto 28px;
	max-width: 280px;
}

.home-about__logo img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

.home-about__title {
	margin: 0;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #061f36;
	line-height: 1.2;
}

.home-about__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px 28px;
	align-items: stretch;
}

.home-about__item {
	margin: 0;
	display: flex;
}

.home-about__card {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background: #fff;
	cursor: default;
}

a.home-about__card {
	cursor: pointer;
}

.home-about__media {
	display: block;
	width: 100%;
	line-height: 0;
	overflow: hidden;
	background: #e8e4dc;
	flex: 0 0 auto;
}

.home-about__media img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	transition: transform .5s ease;
}

.home-about__card:hover .home-about__media img {
	transform: scale(1.04);
}

.home-about__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 auto;
	padding: 28px 22px 36px;
	text-align: center;
	box-sizing: border-box;
}

.home-about__name {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 20px;
	padding: 10px 36px;
	min-height: 48px;
	border-radius: 10px;
	background: #061f36;
	font-family: var(--font-nav);
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
	transition: background-color .35s ease;
}

.home-about__card:hover .home-about__name {
	background: #cda651;
}

.home-about__desc {
	display: block;
	margin: 0;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}

@media (max-width: 1100px) {
	.home-about {
		padding: 56px 0 64px;
	}

	.home-about__inner {
		padding: 0 28px;
	}

	.home-about__grid {
		gap: 28px 20px;
	}

	.home-about__name {
		font-size: clamp(20px, 2.4vw, 30px);
		padding: 8px 24px;
	}
}

@media (max-width: 768px) {
	.home-about {
		padding: 40px 0 48px;
	}

	.home-about__inner {
		padding: 0 20px;
	}

	.home-about__head {
		margin-bottom: 32px;
	}

	.home-about__logo {
		max-width: 200px;
		margin-bottom: 20px;
	}

	.home-about__title {
		font-size: 24px;
	}

	.home-about__grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
		gap: 28px;
	}

	.home-about__name {
		font-size: 22px;
	}

	.home-about__desc {
		font-size: 15px;
	}
}

/* ── 公司简介工厂展示 ── */
.about-workshop {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 56px 0 80px;
	background: #fff;
}

.about-workshop__inner {
	max-width: 1920px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.about-workshop__head {
	text-align: center;
	margin-bottom: 40px;
	padding: 0 40px;
}

.about-workshop__title {
	margin: 0;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #061f36;
	line-height: 1.2;
}

.about-workshop__slider {
	position: relative;
	width: 100%;
}

.about-workshop__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.about-workshop__viewport::before,
.about-workshop__viewport::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 20%;
	pointer-events: none;
	background: rgba(0, 0, 0, .45);
}

.about-workshop__viewport::before {
	left: 0;
}

.about-workshop__viewport::after {
	right: 0;
}

.about-workshop__track {
	display: flex;
	align-items: flex-start;
	width: 100%;
	will-change: transform;
	transition: transform .45s ease;
}

.about-workshop__slide {
	flex: 0 0 20%;
	width: 20%;
	min-width: 20%;
	max-width: 20%;
	padding: 0 6px;
	box-sizing: border-box;
	overflow: hidden;
	line-height: 0;
}

.about-workshop__slide img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	transition: transform .45s ease;
}

.about-workshop__slide:hover img {
	transform: scale(1.04);
}

.about-workshop__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	width: 41px;
	height: 44px;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	line-height: 0;
}

.about-workshop__arrow img {
	display: block;
	width: 41px;
	height: 44px;
	object-fit: contain;
}

.about-workshop__arrow--prev {
	left: calc(10% + 28px);
}

.about-workshop__arrow--next {
	right: calc(10% + 28px);
}

.about-workshop__arrow:hover {
	opacity: .85;
}

@media (max-width: 1200px) {
	.about-workshop__slide {
		flex-basis: 25%;
		width: 25%;
		min-width: 25%;
		max-width: 25%;
	}

	.about-workshop__viewport::before,
	.about-workshop__viewport::after {
		width: 25%;
	}

	.about-workshop__arrow--prev {
		left: calc(12.5% + 20px);
	}

	.about-workshop__arrow--next {
		right: calc(12.5% + 20px);
	}
}

@media (max-width: 900px) {
	.about-workshop {
		padding: 40px 0 56px;
	}

	.about-workshop__head {
		margin-bottom: 28px;
		padding: 0 28px;
	}

	.about-workshop__slide {
		flex-basis: 33.333%;
		width: 33.333%;
		min-width: 33.333%;
		max-width: 33.333%;
		padding: 0 5px;
	}

	.about-workshop__viewport::before,
	.about-workshop__viewport::after {
		width: 33.333%;
	}

	.about-workshop__arrow--prev {
		left: calc(16.666% + 12px);
	}

	.about-workshop__arrow--next {
		right: calc(16.666% + 12px);
	}
}

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

	.about-workshop__title {
		font-size: 24px;
	}

	.about-workshop__viewport::before,
	.about-workshop__viewport::after {
		display: none;
	}

	.about-workshop__slide {
		flex-basis: 50%;
		width: 50%;
		min-width: 50%;
		max-width: 50%;
		padding: 0 5px;
	}

	.about-workshop__arrow {
		width: 32px;
		height: 34px;
	}

	.about-workshop__arrow img {
		width: 32px;
		height: 34px;
	}

	.about-workshop__arrow--prev {
		left: 12px;
	}

	.about-workshop__arrow--next {
		right: 12px;
	}
}

/* ── 公司简介企业优势 ── */
.about-why {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 64px 0 88px;
	background: #fff;
}

.about-why__inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.about-why__head {
	text-align: center;
	margin-bottom: 48px;
}

.about-why__title {
	margin: 0;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #061f36;
	line-height: 1.2;
}

.about-why__board {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 0;
	border: 1px solid #e5e5e5;
}

.about-why__item {
	padding: 32px 56px;
	box-sizing: border-box;
	min-height: 148px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-why__item--tl,
.about-why__item--bl {
	text-align: left;
	align-items: flex-start;
	border-right: 1px solid #e5e5e5;
}

.about-why__item--tr,
.about-why__item--br {
	text-align: right;
	align-items: flex-end;
}

.about-why__item--tl,
.about-why__item--tr {
	border-bottom: 1px solid #e5e5e5;
}

.about-why__item-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.about-why__item--tr .about-why__item-head,
.about-why__item--br .about-why__item-head {
	flex-direction: row-reverse;
}

.about-why__icon {
	display: block;
	width: 50px;
	height: 50px;
	flex-shrink: 0;
}

.about-why__icon img {
	display: block;
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.about-why__name {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #cda651;
	line-height: 1.3;
}

.about-why__desc {
	margin: 0;
	max-width: 360px;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #333333;
}

.about-why__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 222px;
	height: 222px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: none;
	border-radius: 0;
	background: transparent;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.about-why__logo img {
	display: block;
	width: 222px;
	height: 222px;
	object-fit: contain;
}

@media (max-width: 900px) {
	.about-why {
		padding: 48px 0 64px;
	}

	.about-why__inner {
		padding: 0 28px;
	}

	.about-why__item {
		padding: 24px 28px;
		min-height: 120px;
	}

	.about-why__logo {
		width: 160px;
		height: 160px;
	}

	.about-why__logo img {
		width: 160px;
		height: 160px;
	}

	.about-why__name {
		font-size: 18px;
	}
}

@media (max-width: 640px) {
	.about-why {
		padding: 40px 0 48px;
	}

	.about-why__inner {
		padding: 0 20px;
	}

	.about-why__head {
		margin-bottom: 28px;
	}

	.about-why__title {
		font-size: 24px;
	}

	.about-why__board {
		display: flex;
		flex-direction: column;
		border: none;
	}

	.about-why__item,
	.about-why__item--tl,
	.about-why__item--tr,
	.about-why__item--bl,
	.about-why__item--br {
		text-align: center;
		align-items: center;
		border: 1px solid #e5e5e5;
		border-bottom: none;
		padding: 20px 20px;
		min-height: 0;
	}

	.about-why__item--tl { order: 1; }
	.about-why__item--tr { order: 2; }
	.about-why__item--bl { order: 4; }
	.about-why__item--br { order: 5; border-bottom: 1px solid #e5e5e5; }

	.about-why__item-head,
	.about-why__item--tr .about-why__item-head,
	.about-why__item--br .about-why__item-head {
		flex-direction: column;
		justify-content: center;
	}

	.about-why__desc {
		max-width: none;
	}

	.about-why__logo {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 140px;
		height: 140px;
		margin: 16px auto;
		order: 3;
	}

	.about-why__logo img {
		width: 140px;
		height: 140px;
	}
}

/* ── 内页底部联系表单 ── */
.page-lx-contact {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 72px 0 80px;
	background: #fdfcf8;
	box-sizing: border-box;
}

.page-lx-contact__inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.page-lx-contact__head {
	text-align: center;
	margin-bottom: 48px;
}

.page-lx-contact__title {
	margin: 0 0 16px;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #333333;
	line-height: 1.2;
}

.page-lx-contact__subtitle {
	margin: 0 auto;
	max-width: 820px;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #333333;
}

.page-lx-contact__form .wpcf7 {
	margin: 0;
}

.page-lx-contact__form .wpcf7-form {
	margin: 0;
}

.page-lx-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 48px;
	align-items: start;
}

.page-lx-form__col {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.page-lx-form__pill {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0 26px;
	box-sizing: border-box;
	border: 1px solid #d9d9d9;
	border-radius: 50px;
	background: transparent;
	transition: border-color .2s, box-shadow .2s;
}

.page-lx-form__pill:focus-within {
	border-color: #cda651;
	box-shadow: 0 0 0 3px rgba(205, 166, 81, .16);
}

/* CF7 会包一层 <p> 并在 label 后插 <br> */
.page-lx-form__pill > p {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.page-lx-form__pill br {
	display: none;
}

.page-lx-form__label {
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: 400;
	line-height: 60px;
	color: #666;
	white-space: nowrap;
	cursor: text;
}

.page-lx-form__req {
	color: #e53935;
	margin-right: 2px;
}

.page-lx-form__pill .wpcf7-form-control-wrap {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	height: 100%;
}

.page-lx-form__pill input.wpcf7-form-control,
.page-lx-form__pill textarea.wpcf7-form-control,
.page-lx-form__pill .page-lx-form__input {
	display: block;
	width: 100%;
	height: 58px;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none;
	outline: none;
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: 400;
	line-height: 58px;
	color: #333333;
	-webkit-appearance: none;
	appearance: none;
}

.page-lx-form__pill textarea.wpcf7-form-control {
	resize: none;
	padding: 0;
	line-height: 58px;
}

.page-lx-form__submit {
	margin: 0;
}

.page-lx-form__submit > p {
	margin: 0;
	display: flex;
	align-items: center;
}

.page-lx-form__submit input.wpcf7-submit,
.page-lx-form__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	height: 60px;
	padding: 0 40px;
	border: none;
	border-radius: 50px;
	background: #cda651;
	color: #fff;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .5px;
	line-height: 1;
	cursor: pointer;
	transition: background .25s ease, opacity .25s ease;
	-webkit-appearance: none;
	appearance: none;
}

.page-lx-form__submit input.wpcf7-submit:hover,
.page-lx-form__btn:hover {
	background: #b8943f;
}

.page-lx-contact__form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	padding-left: 26px;
	font-size: 12px;
	color: #e53935;
}

.page-lx-contact__form .wpcf7-response-output {
	margin: 24px 0 0;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
}

.page-lx-contact__form .wpcf7 form.invalid .wpcf7-response-output,
.page-lx-contact__form .wpcf7 form.unaccepted .wpcf7-response-output,
.page-lx-contact__form .wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #e53935;
}

.page-lx-contact__form .wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
}

@media (max-width: 900px) {
	.page-lx-contact {
		padding: 56px 0 64px;
	}

	.page-lx-contact__inner {
		padding: 0 28px;
	}

	.page-lx-form {
		gap: 18px 28px;
	}
}

@media (max-width: 640px) {
	.page-lx-contact {
		padding: 44px 0 52px;
	}

	.page-lx-contact__inner {
		padding: 0 20px;
	}

	.page-lx-contact__head {
		margin-bottom: 32px;
	}

	.page-lx-contact__title {
		font-size: 26px;
		margin-bottom: 12px;
	}

	.page-lx-contact__subtitle {
		font-size: 14px;
	}

	.page-lx-form {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.page-lx-form__col {
		gap: 16px;
	}

	.page-lx-form__pill {
		padding: 0 18px;
	}

	.page-lx-form__submit input.wpcf7-submit,
	.page-lx-form__btn {
		width: 100%;
		min-width: 0;
	}
}

/* ── 内页底部页脚信息 ── */
.page-site-footer {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 72px 0 80px;
	background-color: #061f36;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	color: #fff;
	box-sizing: border-box;
}

.page-site-footer__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.page-site-footer__brand {
	width: 400px;
	flex-shrink: 0;
}

.page-site-footer__logo {
	display: inline-block;
	max-width: 100%;
	line-height: 0;
}

.page-site-footer__logo img {
	display: block;
	width: 345px;
	max-width: 100%;
	height: 105px;
	object-fit: contain;
}

.page-site-footer__desc {
	margin: 22px 0 0;
	font-family: var(--font-nav);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
}

.page-site-footer__social {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.page-site-footer__social a,
.page-site-footer__social span {
	display: block;
	width: 34px;
	height: 34px;
	line-height: 0;
	transition: opacity .25s ease;
}

.page-site-footer__social a:hover {
	opacity: .75;
}

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

.page-site-footer__col--nav {
	width: 180px;
	flex-shrink: 0;
}

.page-site-footer__col--product {
	width: 270px;
	flex-shrink: 0;
}

.page-site-footer__col--contact {
	width: 296px;
	flex-shrink: 0;
}

.page-site-footer__heading {
	margin: 0 0 22px;
	padding: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, .55);
	display: inline-block;
	min-width: 0;
}

.page-site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-site-footer__list li + li {
	margin-top: 14px;
}

.page-site-footer__col--nav .page-site-footer__list li + li {
	margin-top: 19px;
}

.page-site-footer__list a {
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
	text-decoration: none;
	transition: opacity .25s ease;
}

.page-site-footer__list a:hover {
	opacity: .75;
}

.page-site-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-site-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #fff;
}

.page-site-footer__contact li + li {
	margin-top: 19px;
}

.page-site-footer__label {
	flex-shrink: 0;
	color: #fff;
}

.page-site-footer__contact a {
	color: #fff;
	text-decoration: none;
	word-break: break-word;
	transition: opacity .25s ease;
}

.page-site-footer__contact a:hover {
	opacity: .75;
}

.page-site-footer__contact span:not(.page-site-footer__label) {
	word-break: break-word;
}

@media (max-width: 1200px) {
	.page-site-footer__inner {
		flex-wrap: wrap;
		gap: 40px 32px;
	}

	.page-site-footer__brand {
		width: 100%;
		max-width: 400px;
	}

	.page-site-footer__col--nav,
	.page-site-footer__col--product,
	.page-site-footer__col--contact {
		width: auto;
		min-width: 180px;
		flex: 1 1 180px;
	}
}

@media (max-width: 768px) {
	.page-site-footer {
		padding: 48px 0 56px;
	}

	.page-site-footer__inner {
		padding: 0 20px;
		flex-direction: column;
		gap: 36px;
	}

	.page-site-footer__brand,
	.page-site-footer__col--nav,
	.page-site-footer__col--product,
	.page-site-footer__col--contact {
		width: 100%;
		max-width: none;
	}

	.page-site-footer__desc {
		font-size: 18px;
	}

	.page-site-footer__heading {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.page-site-footer__list a,
	.page-site-footer__contact li {
		font-size: 15px;
	}
}

/* ── 案例 / 文章列表卡片（首页案例 + 新闻列表共用） ── */
.home-cases {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 72px 0 88px;
	background: #fff;
}

.home-cases__inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.home-cases__head {
	text-align: center;
	margin-bottom: 48px;
}

.home-cases__title {
	margin: 0 0 12px;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #061f36;
	line-height: 1.2;
}

.home-cases__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #cda651;
	line-height: 1.4;
}

.home-cases__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 24px;
}

.home-cases__item {
	margin: 0;
}

.home-cases__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	background: #fff;
}

.home-cases__media {
	display: block;
	width: 100%;
	overflow: hidden;
	background: #e8e4dc;
	line-height: 0;
	flex: 0 0 auto;
}

.home-cases__media img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	vertical-align: top;
	transition: transform .5s ease;
}

.home-cases__card:hover .home-cases__media img {
	transform: scale(1.06);
}

.home-cases__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	gap: 16px;
	padding: 28px 20px 30px;
	background: #061f36;
	text-align: center;
	transition: background-color .35s ease;
}

.home-cases__name {
	display: block;
	font-family: var(--font-nav);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: #fff;
}

.home-cases__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 128px;
	height: 26px;
	border-radius: 999px;
	background: #cda651;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .3px;
	text-transform: uppercase;
	color: #fff;
	transition: background-color .35s ease;
}

.home-cases__card:hover .home-cases__body {
	background: #cda651;
}

.home-cases__card:hover .home-cases__more {
	background: #061f36;
}

.news-list__pager {
	margin-top: 48px;
}

.news-list__empty {
	margin: 0;
	text-align: center;
	font-family: var(--font-nav);
	font-size: 16px;
	color: #666;
}

@media (max-width: 1100px) {
	.home-cases {
		padding: 56px 0 64px;
	}

	.home-cases__inner {
		padding: 0 28px;
	}

	.home-cases__grid {
		gap: 22px 18px;
	}

	.home-cases__body {
		padding: 22px 16px 24px;
		gap: 14px;
	}
}

@media (max-width: 768px) {
	.home-cases {
		padding: 40px 0 48px;
	}

	.home-cases__inner {
		padding: 0 20px;
	}

	.home-cases__head {
		margin-bottom: 32px;
	}

	.home-cases__title {
		font-size: 24px;
	}

	.home-cases__subtitle {
		font-size: 13px;
		letter-spacing: 1px;
	}

	.home-cases__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.home-cases__name {
		font-size: 16px;
	}

	.news-list__pager {
		margin-top: 36px;
	}
}

@media (max-width: 480px) {
	.home-cases__grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}
}

/* ── 文章详情 ── */
.post-detail {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 64px 0 88px;
	background: #fff;
	box-sizing: border-box;
}

.post-detail__inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.post-detail__head {
	margin-bottom: 36px;
}

.post-detail__title {
	margin: 0 0 18px;
	font-family: var(--font-nav);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #061f36;
}

.post-detail__line {
	display: block;
	width: 100px;
	height: 9px;
	background: #cda651;
}

.post-detail__intro {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 70px;
	margin-bottom: 48px;
}

.post-detail__content {
	width: 720px;
	max-width: 100%;
	flex: 1 1 auto;
	min-width: 0;
}

.post-detail__thumb {
	width: 410px;
	max-width: 100%;
	flex: 0 0 410px;
	margin: 0;
	line-height: 0;
}

.post-detail__thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.post-detail__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 48px;
}

.post-detail__gallery-item {
	margin: 0;
	line-height: 0;
	overflow: hidden;
	background: #f0f0f0;
}

.post-detail__gallery-item img {
	display: block;
	width: 100%;
	height: auto;
}

.post-detail__desc {
	margin-bottom: 56px;
}

.post-detail__content.entry-content,
.post-detail__desc.entry-content {
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	color: #333;
}

.post-detail__content.entry-content > *:first-child,
.post-detail__desc.entry-content > *:first-child {
	margin-top: 0;
}

.post-detail__content.entry-content > *:last-child,
.post-detail__desc.entry-content > *:last-child {
	margin-bottom: 0;
}

.post-detail__content.entry-content p,
.post-detail__desc.entry-content p {
	margin: 0 0 1.1em;
}

.post-detail__desc.entry-content a {
	color: #cda651;
}

.post-detail__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.post-detail__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 168px;
	height: 48px;
	padding: 0 28px;
	border: none;
	border-radius: 4px;
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	box-sizing: border-box;
	transition: opacity .25s ease, background .25s ease;
}

.post-detail__nav-btn--prev {
	background: #cda651;
}

.post-detail__nav-btn--next {
	background: #061f36;
}

.post-detail__nav-btn:hover {
	opacity: .88;
	color: #fff;
}

.post-detail__nav-btn.is-disabled {
	opacity: .4;
	pointer-events: none;
}

@media (max-width: 1100px) {
	.post-detail__intro {
		gap: 36px;
	}

	.post-detail__content {
		width: auto;
	}

	.post-detail__thumb {
		width: 340px;
		flex-basis: 340px;
	}
}

@media (max-width: 900px) {
	.post-detail {
		padding: 48px 0 64px;
	}

	.post-detail__inner {
		padding: 0 28px;
	}

	.post-detail__title {
		font-size: 36px;
	}

	.post-detail__intro {
		flex-direction: column;
		gap: 28px;
		margin-bottom: 36px;
	}

	.post-detail__thumb {
		width: 100%;
		flex: none;
		max-width: 520px;
	}

	.post-detail__gallery {
		margin-bottom: 36px;
	}
}

@media (max-width: 640px) {
	.post-detail {
		padding: 40px 0 52px;
	}

	.post-detail__inner {
		padding: 0 20px;
	}

	.post-detail__title {
		font-size: 28px;
	}

	.post-detail__line {
		width: 72px;
		height: 7px;
	}

	.post-detail__gallery {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.post-detail__desc {
		margin-bottom: 40px;
	}

	.post-detail__nav-btn {
		min-width: 0;
		flex: 1 1 140px;
	}
}

/* ── 产品列表 / 分类列表 ── */
.prod-archive {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 56px 0 80px;
	background: #fff;
	box-sizing: border-box;
}

.prod-archive__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.prod-archive__side {
	width: 360px;
	flex-shrink: 0;
}

.prod-archive__main {
	width: 1000px;
	max-width: 100%;
	flex: 1 1 auto;
	min-width: 0;
}

/* 分类侧栏 */
.prod-cat__title {
	margin: 0 0 10px;
	padding: 18px 22px;
	background: #061f36;
	font-family: var(--font-nav);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #fff;
}

.prod-cat__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.prod-cat__item {
	margin: 0;
	border-bottom: 1px solid #fff;
}

.prod-cat__row {
	display: flex;
	align-items: stretch;
	min-height: 52px;
	background: #f7f3ea;
	transition: background-color .3s ease;
}

.prod-cat__item.is-active > .prod-cat__row {
	background: #cda651;
}

.prod-cat__link {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	padding: 14px 12px 14px 22px;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
	text-transform: uppercase;
	color: #333;
	transition: color .3s ease;
}

.prod-cat__item.is-active > .prod-cat__row .prod-cat__link {
	color: #fff;
}

.prod-cat__toggle,
.prod-cat__icon {
	flex: 0 0 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	color: #cda651;
}

.prod-cat__toggle {
	cursor: pointer;
}

.prod-cat__icon {
	pointer-events: none;
}

.prod-cat__arrow {
	display: block;
	width: 10px;
	height: 12px;
	color: #cda651;
	transition: transform .3s ease, color .3s ease;
}

.prod-cat__item.is-active > .prod-cat__row .prod-cat__arrow {
	color: #fff;
}

.prod-cat__item.has-children.is-open > .prod-cat__row .prod-cat__arrow {
	transform: rotate(90deg);
}

.prod-cat__sub {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	background: #faf8f4;
	transition: max-height .35s ease;
}

.prod-cat__item.is-open > .prod-cat__sub {
	max-height: 640px;
}

.prod-cat__sub-item {
	border-top: 1px solid #efeae2;
	background: #faf8f4;
}

.prod-cat__sub-link {
	display: block;
	padding: 12px 22px 12px 34px;
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	color: #555;
	background: #faf8f4;
	transition: color .25s ease, background-color .25s ease, padding-left .25s ease;
}

.prod-cat__sub-link:hover {
	color: #cda651;
	background: #f3efe6;
	padding-left: 40px;
}

.prod-cat__sub-item.is-active .prod-cat__sub-link {
	color: #cda651;
	font-weight: 600;
	background: #f3efe6;
}

/* 产品卡片 */
.prod-archive__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.prod-archive__item {
	margin: 0;
}

.prod-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #e5e5e5;
	background: #fff;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.prod-card:hover {
	border-color: #cda651;
	box-shadow: 0 12px 28px rgba(6, 31, 54, .1);
	transform: translateY(-4px);
}

.prod-card__media {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f3f3f3;
	line-height: 0;
}

.prod-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.prod-card:hover .prod-card__media img {
	transform: scale(1.06);
}

.prod-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 22px 16px 26px;
	text-align: center;
	flex: 1 1 auto;
}

.prod-card__name {
	display: block;
	font-family: var(--font-nav);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
	color: #061f36;
	transition: color .3s ease;
}

.prod-card:hover .prod-card__name {
	color: #cda651;
}

.prod-card__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 136px;
	height: 32px;
	border-radius: 999px;
	background: #061f36;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .3px;
	text-transform: uppercase;
	color: #fff;
	transition: background-color .35s ease, transform .35s ease;
}

.prod-card:hover .prod-card__more {
	background: #cda651;
	transform: scale(1.04);
}

.prod-archive__pager {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.prod-archive__empty {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 16px;
	color: #666;
}

@media (max-width: 1200px) {
	.prod-archive__inner {
		gap: 28px;
	}

	.prod-archive__side {
		width: 300px;
	}

	.prod-cat__title {
		font-size: 24px;
		padding: 16px 18px;
		margin-bottom: 10px;
	}

	.prod-archive__grid {
		gap: 18px;
	}
}

@media (max-width: 980px) {
	.prod-archive__inner {
		flex-direction: column;
		padding: 0 28px;
	}

	.prod-archive__side,
	.prod-archive__main {
		width: 100%;
	}

	.prod-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.prod-archive {
		padding: 40px 0 56px;
	}

	.prod-archive__inner {
		padding: 0 20px;
	}

	.prod-archive__grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}

	.prod-cat__title {
		font-size: 22px;
		margin-bottom: 10px;
	}
}

/* ── 产品详情 ── */
.prod-detail {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 56px 0 88px;
	background: #fff;
	box-sizing: border-box;
}

.prod-detail__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
}

.prod-detail__media {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex: 0 0 auto;
}

.prod-detail__thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 140px;
	flex-shrink: 0;
}

.prod-detail__thumb {
	position: relative;
	display: block;
	width: 140px;
	height: 140px;
	margin: 0;
	padding: 0;
	border: 2px solid transparent;
	background: #f3f3f3;
	cursor: pointer;
	overflow: hidden;
	line-height: 0;
	box-sizing: border-box;
	transition: border-color .25s ease, opacity .25s ease;
}

.prod-detail__thumb.is-active {
	border-color: #cda651;
}

.prod-detail__thumb:hover {
	opacity: .92;
}

.prod-detail__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.prod-detail__thumb-play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	margin: 0;
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent #fff;
	transform: translate(-35%, -50%);
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
	pointer-events: none;
	z-index: 1;
}

.prod-detail__thumb--video::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .28);
	pointer-events: none;
}

.prod-detail__stage {
	position: relative;
	width: 580px;
	height: 580px;
	flex-shrink: 0;
	background: #f3f3f3;
	overflow: hidden;
}

.prod-detail__stage-image,
.prod-detail__stage-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.prod-detail__stage-image img,
.prod-detail__stage-video .prod-detail__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.prod-detail__stage-video .prod-detail__video {
	background: #000;
}

.prod-detail__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 72px;
	height: 72px;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(6, 31, 54, .72);
	cursor: pointer;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s ease, transform .25s ease;
}

.prod-detail__play:hover {
	background: #cda651;
	transform: translate(-50%, -50%) scale(1.06);
}

.prod-detail__play-icon {
	display: block;
	width: 0;
	height: 0;
	margin-left: 4px;
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent #fff;
}

.prod-detail__stage-video.is-playing .prod-detail__play {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.prod-detail__info {
	width: 600px;
	max-width: 100%;
	flex: 0 0 600px;
	min-width: 0;
}

.prod-detail__head {
	margin-bottom: 22px;
}

.prod-detail__title {
	margin: 0 0 16px;
	font-family: var(--font-nav);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
	color: #061f36;
}

.prod-detail__line {
	display: block;
	width: 110px;
	height: 4px;
	background: #cda651;
}

.prod-detail__content.entry-content {
	margin-bottom: 24px;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}

.prod-detail__content.entry-content > *:first-child {
	margin-top: 0;
}

.prod-detail__content.entry-content > *:last-child {
	margin-bottom: 0;
}

.prod-detail__content.entry-content p {
	margin: 0 0 1em;
}

.prod-detail__id {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 36px;
	padding: 10px 22px;
	border-radius: 999px;
	background: #061f36;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	color: #fff;
}

.prod-detail__id-label,
.prod-detail__id-value {
	color: #fff;
}

.prod-detail__keys-title {
	margin: 0 0 16px;
	font-family: var(--font-nav);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #cda651;
	line-height: 1.3;
}

.prod-detail__keys-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
}

.prod-detail__keys-item {
	margin: 0;
	padding: 14px 16px;
	background: #f5f5f5;
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
	color: #333;
	box-sizing: border-box;
}

@media (max-width: 1280px) {
	.prod-detail__inner {
		gap: 32px;
	}

	.prod-detail__info {
		width: auto;
		flex: 1 1 420px;
	}

	.prod-detail__stage {
		width: 480px;
		height: 480px;
	}
}

@media (max-width: 1100px) {
	.prod-detail__inner {
		flex-direction: column;
		padding: 0 28px;
	}

	.prod-detail__media {
		width: 100%;
		justify-content: center;
	}

	.prod-detail__info {
		width: 100%;
		flex: none;
	}

	.prod-detail__title {
		font-size: 36px;
	}
}

@media (max-width: 760px) {
	.prod-detail {
		padding: 40px 0 56px;
	}

	.prod-detail__inner {
		padding: 0 20px;
	}

	.prod-detail__media {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.prod-detail__thumbs {
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
		gap: 10px;
	}

	.prod-detail__thumb {
		width: 72px;
		height: 72px;
	}

	.prod-detail__stage {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.prod-detail__title {
		font-size: 28px;
	}

	.prod-detail__keys-list {
		grid-template-columns: 1fr;
	}
}

/* ── 产品介绍 ── */
.prod-intro {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 56px 0 80px;
	background: #fff;
	box-sizing: border-box;
}

.prod-intro__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.prod-intro__title {
	margin: 0 0 36px;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	color: #061f36;
	line-height: 1.2;
}

.prod-intro__content.entry-content {
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	color: #333;
}

.prod-intro__content.entry-content > *:first-child {
	margin-top: 0;
}

.prod-intro__content.entry-content > *:last-child {
	margin-bottom: 0;
}

.prod-intro__content.entry-content p {
	margin: 0 0 1.1em;
}

.prod-intro__content.entry-content img {
	display: block;
	max-width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.prod-intro {
		padding: 40px 0 56px;
	}

	.prod-intro__inner {
		padding: 0 20px;
	}

	.prod-intro__title {
		margin-bottom: 24px;
		font-size: 24px;
	}
}

/* ── 相关产品 ── */
.prod-related {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 24px 0 88px;
	background: #fff;
	box-sizing: border-box;
}

.prod-related__inner {
	max-width: 1520px;
	margin: 0 auto;
	width: 100%;
	padding: 0 24px;
	box-sizing: border-box;
}

.prod-related__title {
	margin: 0 0 40px;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	color: #061f36;
	line-height: 1.2;
}

.prod-related__slider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.prod-related__viewport {
	width: 100%;
	max-width: 1400px;
	overflow: hidden;
}

.prod-related__track {
	display: flex;
	align-items: stretch;
	gap: 24px;
	will-change: transform;
}

.prod-related__slide {
	flex: 0 0 calc((100% - 72px) / 4);
	min-width: 0;
	box-sizing: border-box;
}

.prod-related__card {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: transform .3s ease;
}

.prod-related__card:hover {
	transform: translateY(-4px);
}

.prod-related__media {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f3f3f3;
	line-height: 0;
}

.prod-related__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.prod-related__card:hover .prod-related__media img {
	transform: scale(1.05);
}

.prod-related__name {
	display: block;
	margin-top: 16px;
	font-family: var(--font-nav);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
	color: #061f36;
	transition: color .3s ease;
}

.prod-related__card:hover .prod-related__name {
	color: #cda651;
}

.prod-related__arrow {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	line-height: 0;
	transition: opacity .25s ease, transform .25s ease;
}

.prod-related__arrow img {
	display: block;
	width: 32px;
	height: 35px;
	object-fit: contain;
}

.prod-related__arrow:hover {
	opacity: .75;
	transform: scale(1.06);
}

@media (max-width: 1100px) {
	.prod-related__slide {
		flex-basis: calc((100% - 24px) / 2);
	}
}

@media (max-width: 768px) {
	.prod-related {
		padding: 16px 0 56px;
	}

	.prod-related__inner {
		padding: 0 16px;
	}

	.prod-related__title {
		margin-bottom: 28px;
		font-size: 24px;
	}

	.prod-related__slider {
		gap: 8px;
	}

	.prod-related__slide {
		flex-basis: calc((100% - 16px) / 2);
	}

	.prod-related__name {
		font-size: 15px;
		margin-top: 12px;
	}

	.prod-related__arrow {
		width: 28px;
		height: 28px;
	}

	.prod-related__arrow img {
		width: 22px;
		height: 24px;
	}
}

@media (max-width: 480px) {
	.prod-related__slide {
		flex-basis: 100%;
	}
}
