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

/* ── Header / Nav ── */
.site-header {
	background: var(--navy);
}

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

#nav.scrolled {
	position: fixed;
	box-shadow: 0 2px 20px rgba(0, 100, 150, .28);
}

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

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

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

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

.nav-logo-text {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 2px;
	color: var(--white);
	text-transform: uppercase;
}

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

@media (min-width: 1101px) {
	.nav-links {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		flex: none;
		justify-content: center;
	}
}

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

.nav-links a {
	display: block;
	padding: 0 20px;
	height: 68px;
	line-height: 68px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, .92);
	letter-spacing: .8px;
	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: 20px;
	right: 20px;
	height: 2px;
	background: var(--white);
	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(--white);
}

.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: 13px;
		white-space: nowrap;
		color: var(--gray);
	}

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

	.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 rgba(255, 255, 255, .25);
			background: transparent;
			color: var(--white);
			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: 16px;
	flex-shrink: 0;
	margin-left: 20px;
}

/* 桌面内联搜索（胶囊） */
.nav-search-desktop {
	display: block;
}

.nav-search-inline {
	display: flex;
	align-items: center;
	position: relative;
}

.nav-search-inline--desktop {
	width: 200px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, .85);
	border-radius: 999px;
	background: transparent;
	padding: 0 36px 0 16px;
}

.nav-search-inline__input {
	flex: 1;
	min-width: 0;
	height: 100%;
	border: none;
	background: transparent;
	outline: none;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--white);
	padding: 0;
	-webkit-appearance: none;
}

.nav-search-inline--desktop .nav-search-inline__input::placeholder {
	color: rgba(255, 255, 255, .75);
}

.nav-search-inline__submit {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-search-inline__submit img {
	width: 17px;
	height: 17px;
	display: block;
	object-fit: contain;
}

/* 多语言 */
.lang-links {
	display: flex;
	align-items: center;
	gap: 4px;
	border: 1px solid var(--border);
	padding: 3px 4px;
	position: relative;
}

.lang-links--desktop,
.lang-links--drawer.lang-links--icon {
	border: none;
	padding: 0;
	background: none;
}

.lang-links--icon .lang-links__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	line-height: 0;
}

.lang-links__icon {
	width: 34px;
	height: 34px;
	display: block;
	object-fit: contain;
}

.lang-links__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 88px;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 8px 20px rgba(13, 43, 85, .12);
	z-index: 230;
}

.lang-links__menu[hidden] {
	display: none;
}

.lang-links__menu .lang-link {
	display: block;
	padding: 8px 14px;
	border: none;
	color: var(--gray);
	font-size: 12px;
}

.lang-links__menu .lang-link:hover,
.lang-links__menu .lang-link.active {
	background: var(--blue-pale);
	color: var(--navy);
}

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

.lang-link:hover { color: var(--navy); }
.lang-link.active {
	background: var(--blue-light);
	color: var(--blue);
}

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

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

/* 搜索结果页（通用列表） */
.site-search {
	padding: 48px 0 80px;
	background: var(--light, #f5f7fb);
}

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

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

.search-results-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--navy);
	margin: 0;
	line-height: 1.15;
}

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

.search-results-form {
	display: flex;
	gap: 10px;
	max-width: 560px;
	margin-top: 20px;
}

.search-results-form input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 46px;
	padding: 0 16px;
	border: 1px solid var(--border);
	background: #fff;
	font-size: 14px;
	color: var(--navy);
	outline: none;
	transition: border-color .2s;
}

.search-results-form input[type="search"]:focus {
	border-color: var(--blue);
}

.search-results-form button {
	flex-shrink: 0;
	height: 46px;
	padding: 0 22px;
	background: var(--blue);
	color: #fff;
	border: none;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s;
}

.search-results-form button:hover {
	background: var(--navy);
}

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

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

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

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

.search-result-item__link {
	display: flex;
	gap: 20px;
	align-items: stretch;
	padding: 22px 24px;
	text-decoration: none;
	color: inherit;
}

.search-result-item__thumb {
	flex-shrink: 0;
	width: 160px;
	height: 110px;
	overflow: hidden;
	background: var(--light, #f5f7fb);
}

.search-result-item__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.search-result-item:hover .search-result-item__thumb img {
	transform: scale(1.05);
}

.search-result-item__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.search-result-item__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin-bottom: 6px;
}

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

.search-result-date {
	font-size: 12px;
	color: var(--gray);
}

.search-result-item .entry-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 8px;
	color: var(--navy);
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color .2s;
}

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

.search-result-excerpt {
	font-size: 13px;
	line-height: 1.7;
	color: var(--gray);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.search-result-more {
	margin-top: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--blue);
}

.search-no-results {
	padding: 56px 24px;
	text-align: center;
	color: var(--gray);
	background: #fff;
	border: 1px solid var(--border);
}

.search-no-results p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
}

.site-search .site-pager-wrap {
	margin-top: 36px;
}

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

	.search-results-form {
		flex-direction: column;
		max-width: none;
	}

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

	.search-result-item__link {
		flex-direction: column;
		gap: 14px;
		padding: 18px 16px;
	}

	.search-result-item__thumb {
		width: 100%;
		height: 180px;
	}

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

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

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

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

.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	background: none;
	border: 1px solid rgba(255, 255, 255, .55);
	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(--white);
	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 { padding: 0; }
	.nav-inner { height: 80px; padding: 0 20px; }
	body.nav-fixed { padding-top: 80px; }
	.nav-logo img,
	.nav-logo-img { height: 42px; }
	.nav-toggle { display: flex; }
	.nav-right > .nav-search-desktop,
	.nav-right > .lang-links--desktop { 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(--navy);
		z-index: 300;
		padding: 20px 0 24px;
		box-shadow: 4px 0 24px rgba(0, 80, 120, .35);
		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, .22);
		flex-shrink: 0;
	}

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

	.nav-drawer-close:hover {
		border-color: var(--white);
		background: rgba(255, 255, 255, .12);
		color: var(--white);
	}

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

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

	.lang-links--drawer .lang-links__menu {
		right: 0;
		left: auto;
		background: var(--white);
	}

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

	.nav-search-inline--drawer {
		width: 100%;
		height: 40px;
		border: 1px solid rgba(255, 255, 255, .85);
		border-radius: 999px;
		background: transparent;
		padding: 0 40px 0 16px;
	}

	.nav-search-inline--drawer .nav-search-inline__input {
		color: var(--white);
		font-size: 14px;
	}

	.nav-search-inline--drawer .nav-search-inline__input::placeholder {
		color: rgba(255, 255, 255, .75);
	}

	.nav-search-inline--drawer .nav-search-inline__submit {
		right: 10px;
		width: 24px;
		height: 24px;
		background: none;
		border-radius: 0;
	}

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

	.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, .18);
		white-space: normal;
		color: rgba(255, 255, 255, .92);
	}

	.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, .18);
		border-bottom: 1px solid rgba(255, 255, 255, .18);
		background: transparent;
		color: var(--white);
		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, .18);
		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(255, 255, 255, .12);
		color: rgba(255, 255, 255, .88);
	}

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

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

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

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

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

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

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

	.nav-drawer-quote a {
		display: block;
		background: rgba(255, 255, 255, .18);
		color: #fff !important;
		text-align: center;
		font-weight: 700;
		letter-spacing: 1.5px;
		padding: 14px 20px !important;
		border: 1px solid rgba(255, 255, 255, .45) !important;
		height: auto;
		line-height: 1.4;
	}

	.nav-drawer-quote a:hover {
		background: rgba(255, 255, 255, .28);
	}
}

/* ── 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;
	height: 420px;
	overflow: hidden;
	background: #1a1a1a center center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: 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: rgba(0, 0, 0, .28);
	pointer-events: none;
}

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

.breadcrumb-nav {
	display: none !important;
}

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

.banner-desc {
	display: none;
}

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

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

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

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

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

.banner-rule {
	display: none;
}

@media (max-width: 1100px) {
	.banner-content {
		padding: 36px 28px;
	}

	#page-banner {
		height: 360px;
	}
}

@media (max-width: 640px) {
	.banner-content {
		padding: 32px 20px;
	}

	#page-banner {
		height: auto;
		min-height: 240px;
	}

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

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

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

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

/* ── 页尾信息（黑）+ 底部信息（蓝） ── */
.site-footer {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	color: #fff;
}

.site-footer__main {
	background: #1a1a1a;
	padding: 64px 0 56px;
}

.site-footer__shell {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.site-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
}

.site-footer__left {
	flex: 0 1 700px;
	width: 700px;
	max-width: 100%;
	min-width: 0;
}

.site-footer__right {
	flex: 0 1 670px;
	width: 670px;
	max-width: 100%;
	min-width: 0;
}

.site-footer__title {
	margin: 0 0 28px;
	font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
	font-weight: 800;
	font-size: clamp(32px, 3.2vw, 44px);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.1;
}

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

.site-footer__social a,
.site-footer__social span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	transition: opacity .25s ease, transform .25s ease;
}

.site-footer__social a:hover {
	opacity: .85;
	transform: translateY(-2px);
}

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

.site-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__contact li {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 8px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .92);
}

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

.site-footer__contact a {
	color: rgba(255, 255, 255, .92);
	text-decoration: none;
	transition: color .2s ease;
}

.site-footer__contact a:hover {
	color: #fff;
	text-decoration: underline;
}

/* CF7 页尾表单（两字段同在一个 p 内） */
.site-footer__form .wpcf7 {
	margin: 0;
}

.site-footer__form .wpcf7-form {
	margin: 0;
}

.site-footer__form .hidden-fields-container {
	margin: 0;
	padding: 0;
	border: 0;
	min-width: 0;
}

.site-footer__form .ft-form-row,
.site-footer__form .ft-form-row--full,
.site-footer__form .ft-form-row--submit {
	margin: 0 0 12px;
}

.site-footer__form .ft-form-row--submit {
	margin-bottom: 0;
}

.site-footer__form .ft-form-row > p,
.site-footer__form .ft-form-row--full > p,
.site-footer__form .ft-form-row--submit > p {
	margin: 0;
}

.site-footer__form .ft-form-row:not(.ft-form-row--full):not(.ft-form-row--submit) > p {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	align-items: start;
}

.site-footer__form .ft-form-row--full > p,
.site-footer__form .ft-form-row--submit > p {
	display: block;
	width: 100%;
}

.site-footer__form .ft-form-row br,
.site-footer__form .ft-form-row--full br,
.site-footer__form .ft-form-row--submit br {
	display: none;
}

.site-footer__form .ft-form-row label,
.site-footer__form .ft-form-row--full label {
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
}

.site-footer__form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.site-footer__form .wpcf7-form-control {
	width: 100%;
	box-sizing: border-box;
}

.site-footer__form input.wpcf7-text,
.site-footer__form input.wpcf7-email,
.site-footer__form input.wpcf7-tel,
.site-footer__form textarea.wpcf7-textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 14px 16px;
	border: none;
	border-radius: 0;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	transition: background .2s ease;
}

.site-footer__form textarea.wpcf7-textarea {
	display: block;
	width: 100%;
	height: 96px;
	min-height: 96px;
	max-height: 96px;
	resize: none;
}

.site-footer__form input.wpcf7-text::placeholder,
.site-footer__form input.wpcf7-email::placeholder,
.site-footer__form input.wpcf7-tel::placeholder,
.site-footer__form textarea.wpcf7-textarea::placeholder {
	color: rgba(255, 255, 255, .55);
}

.site-footer__form input.wpcf7-text:focus,
.site-footer__form input.wpcf7-email:focus,
.site-footer__form input.wpcf7-tel:focus,
.site-footer__form textarea.wpcf7-textarea:focus {
	background: rgba(255, 255, 255, .16);
}

.site-footer__form input.wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 140px;
	height: 44px;
	padding: 0 28px;
	border: none;
	border-radius: 0;
	background: #0c51ad;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s ease, transform .25s ease;
}

.site-footer__form input.wpcf7-submit:hover {
	background: #0a4596;
	transform: translateY(-1px);
}

.site-footer__form .wpcf7-spinner {
	margin-left: 10px;
	vertical-align: middle;
}

.site-footer__form .wpcf7-response-output {
	margin: 12px 0 0;
	padding: 8px 12px;
	border-width: 1px;
}

.site-footer__form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.4;
	color: #ff8a8a;
}

.site-footer__form .wpcf7-not-valid {
	border: 1px solid #ff8a8a !important;
}

.site-footer__bar {
	background: #0c51ad;
	padding: 16px 0;
}

.site-footer__bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.site-footer__bottom-text {
	margin: 0;
	flex: 1;
	min-width: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
}

.site-footer__sitemap {
	flex-shrink: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	text-transform: lowercase;
	transition: opacity .2s ease;
}

.site-footer__sitemap:hover {
	opacity: .85;
	text-decoration: underline;
	color: #fff;
}

@media (max-width: 1100px) {
	.site-footer__main {
		padding: 48px 0 40px;
	}

	.site-footer__inner {
		flex-direction: column;
		gap: 36px;
	}

	.site-footer__left,
	.site-footer__right {
		flex: 1 1 auto;
		width: 100%;
	}
}

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

	.site-footer__title {
		margin-bottom: 20px;
	}

	.site-footer__social {
		margin-bottom: 20px;
		gap: 10px;
	}

	.site-footer__form .wpcf7-form > p {
		flex: 1 1 100%;
	}

	.site-footer__form .ft-form-row:not(.ft-form-row--full):not(.ft-form-row--submit) > p {
		grid-template-columns: 1fr;
	}

	.site-footer__bar-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

/* ── 关于我们页 ── */
.about-page {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 28px 0 10px;
	background: #fff;
}

.about-page__shell {
	width: 100%;
}

.about-page__inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.about-page__head {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 20px;
	min-height: clamp(72px, 12vw, 140px);
	padding: 0;
}

.about-page__watermark {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 800;
	font-size: clamp(58px, 9.6vw, 112px);
	line-height: 1;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: transparent;
	background: linear-gradient(
		to bottom,
		rgba(0, 147, 208, .22) 0%,
		rgba(0, 147, 208, .1) 45%,
		rgba(0, 147, 208, 0) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	pointer-events: none;
	white-space: nowrap;
	user-select: none;
}

.about-page__title {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 46px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #1d7fca;
	line-height: 1.15;
}

.about-page__media {
	width: 100%;
	margin: 0 0 18px;
	line-height: 0;
	overflow: hidden;
}

.about-page__media img {
	display: block;
	width: 100%;
	height: auto;
}

.about-page__content {
	width: 100%;
	margin: 0 0 24px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.9;
	color: #333;
}

.about-page__content > *:first-child {
	margin-top: 0;
}

.about-page__content > *:last-child {
	margin-bottom: 0;
}

.about-page__content p {
	margin: 0 0 1em;
}

.about-page__content p:last-child {
	margin-bottom: 0;
}

/* 关于页工厂轮播 */
.about-factory {
	padding: 0 0 30px;
	overflow: visible;
}

.about-factory__inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 56px;
	box-sizing: border-box;
}

.about-factory__slider {
	position: relative;
}

.about-factory__viewport {
	overflow: hidden;
	width: 100%;
}

.about-factory__track {
	display: flex;
	align-items: flex-start;
	transition: transform .45s ease;
	will-change: transform;
}

.about-factory__item {
	flex: 0 0 calc((100% - 48px) / 4);
	width: calc((100% - 48px) / 4);
	max-width: calc((100% - 48px) / 4);
	min-width: 0;
	margin: 0 16px 0 0;
	padding: 0;
	box-sizing: border-box;
	line-height: 0;
	overflow: hidden;
	background: #f3f3f3;
}

.about-factory__item img {
	display: block;
	width: 100%;
	height: auto;
	transform: scale(1);
	transition: transform .5s ease;
}

.about-factory__item:hover img {
	transform: scale(1.05);
}

.about-factory.reveal .about-factory__item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .55s ease, transform .55s ease;
}

.about-factory.reveal.in .about-factory__item {
	opacity: 1;
	transform: translateY(0);
}

.about-factory.reveal.in .about-factory__item:nth-child(1) { transition-delay: 0s; }
.about-factory.reveal.in .about-factory__item:nth-child(2) { transition-delay: .08s; }
.about-factory.reveal.in .about-factory__item:nth-child(3) { transition-delay: .16s; }
.about-factory.reveal.in .about-factory__item:nth-child(4) { transition-delay: .24s; }
.about-factory.reveal.in .about-factory__item:nth-child(5) { transition-delay: .32s; }
.about-factory.reveal.in .about-factory__item:nth-child(6) { transition-delay: .4s; }
.about-factory.reveal.in .about-factory__item:nth-child(7) { transition-delay: .48s; }
.about-factory.reveal.in .about-factory__item:nth-child(8) { transition-delay: .56s; }

.about-factory.reveal .about-factory__btn {
	opacity: 0;
	transition: opacity .45s ease .2s, transform .25s ease;
}

.about-factory.reveal.in .about-factory__btn {
	opacity: 1;
}

.about-factory__btn {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-factory__btn span {
	display: block;
	width: 14px;
	height: 14px;
	border-style: solid;
	border-color: #0c51ad;
	border-width: 0 0 2.5px 2.5px;
	box-sizing: border-box;
	transition: border-color .25s ease;
}

.about-factory__btn--prev {
	left: -44px;
}

.about-factory__btn--prev span {
	transform: rotate(45deg);
	margin-left: 4px;
}

.about-factory__btn--next {
	right: -44px;
}

.about-factory__btn--next span {
	transform: rotate(-135deg);
	margin-right: 4px;
}

.about-factory__btn:hover {
	opacity: .75;
}

.about-factory.reveal.in .about-factory__btn--prev:hover,
.about-factory__btn--prev:hover {
	transform: translateY(-50%) translateX(-2px);
}

.about-factory.reveal.in .about-factory__btn--next:hover,
.about-factory__btn--next:hover {
	transform: translateY(-50%) translateX(2px);
}

@media (max-width: 1100px) {
	.about-page {
		padding: 22px 0 8px;
	}

	.about-page__head {
		margin-bottom: 14px;
	}

	.about-page__watermark {
		font-size: clamp(45px, 11.2vw, 77px);
	}

	.about-page__media {
		margin-bottom: 14px;
	}

	.about-page__content {
		margin-bottom: 18px;
	}

	.about-factory {
		padding-bottom: 24px;
	}

	.about-factory__inner {
		padding: 0 48px;
	}

	.about-factory__item {
		flex-basis: calc((100% - 16px) / 2);
		width: calc((100% - 16px) / 2);
		max-width: calc((100% - 16px) / 2);
	}

	.about-factory__btn--prev {
		left: -36px;
	}

	.about-factory__btn--next {
		right: -36px;
	}
}

@media (max-width: 640px) {
	.about-page {
		padding: 18px 0 6px;
	}

	.about-page__head {
		margin-bottom: 11px;
		min-height: clamp(56px, 18vw, 88px);
	}

	.about-page__watermark {
		font-size: clamp(38px, 12.8vw, 58px);
		letter-spacing: 2px;
	}

	.about-page__title {
		font-size: 36px;
	}

	.about-page__media {
		margin-bottom: 11px;
	}

	.about-page__content {
		margin-bottom: 14px;
		font-size: 14px;
		line-height: 1.75;
	}

	.about-factory {
		padding-bottom: 20px;
	}

	.about-factory__inner {
		padding: 0 40px;
	}

	.about-factory__item {
		flex-basis: 100%;
		width: 100%;
		max-width: 100%;
	}

	.about-factory__btn--prev {
		left: -28px;
	}

	.about-factory__btn--next {
		right: -28px;
	}
}

/* ── 关于我们 · 展会板块 ── */
.about-show {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 10px 0 36px;
	background: #fff;
}

.about-show__inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.about-show__head {
	margin-bottom: 20px;
}

.about-show__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.about-show__item {
	margin: 0;
	overflow: hidden;
	border-radius: 28px;
	background: #f3f3f3;
	line-height: 0;
	aspect-ratio: 4 / 3;
}

.about-show__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .45s ease;
}

.about-show__item:hover img {
	transform: scale(1.05);
}

@media (max-width: 1100px) {
	.about-show {
		padding: 8px 0 28px;
	}

	.about-show__head {
		margin-bottom: 14px;
	}

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

	.about-show__item {
		border-radius: 22px;
	}
}

@media (max-width: 640px) {
	.about-show {
		padding: 6px 0 22px;
	}

	.about-show__head {
		margin-bottom: 11px;
	}

	.about-show__grid {
		grid-template-columns: 1fr;
		gap: 14px;
		max-width: 480px;
		margin: 0 auto;
	}

	.about-show__item {
		border-radius: 18px;
	}
}

/* ── 关于我们 · 商店展示 ── */
.about-off {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 10px 0 36px;
	background: #fff;
}

.about-off__inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.about-off__head {
	margin-bottom: 20px;
}

.about-off__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.about-off__item {
	margin: 0;
	overflow: hidden;
	border-radius: 28px;
	background: #f3f3f3;
	line-height: 0;
	aspect-ratio: 4 / 3;
}

.about-off__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .45s ease;
}

.about-off__item:hover img {
	transform: scale(1.05);
}

@media (max-width: 1100px) {
	.about-off {
		padding: 8px 0 28px;
	}

	.about-off__head {
		margin-bottom: 14px;
	}

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

	.about-off__item {
		border-radius: 22px;
	}
}

@media (max-width: 640px) {
	.about-off {
		padding: 6px 0 22px;
	}

	.about-off__head {
		margin-bottom: 11px;
	}

	.about-off__grid {
		grid-template-columns: 1fr;
		gap: 14px;
		max-width: 480px;
		margin: 0 auto;
	}

	.about-off__item {
		border-radius: 18px;
	}
}

/* ── 关于我们 · 团队板块 ── */
.about-team {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 10px 0 36px;
	background: #fff;
}

.about-team__inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.about-team__head {
	margin-bottom: 20px;
}

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

.about-team__item {
	margin: 0;
	overflow: hidden;
	background: #f3f3f3;
	line-height: 0;
	aspect-ratio: 4 / 3;
}

.about-team__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .45s ease;
}

.about-team__item:hover img {
	transform: scale(1.05);
}

@media (max-width: 1100px) {
	.about-team {
		padding: 8px 0 28px;
	}

	.about-team__head {
		margin-bottom: 14px;
	}

	.about-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.about-team {
		padding: 6px 0 22px;
	}

	.about-team__head {
		margin-bottom: 11px;
	}

	.about-team__grid {
		grid-template-columns: 1fr;
		gap: 12px;
		max-width: 480px;
		margin: 0 auto;
	}
}

/* ── 页尾服务联系板块 ── */
.footer-service {
	position: relative;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	min-height: 458px;
	aspect-ratio: 1920 / 458;
	background: #0a3a6e center center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.footer-service__shell {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-service__inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 48px 40px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 18px;
}

.footer-service__title {
	margin: 0;
	font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 3.6vw, 48px);
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.2;
}

.footer-service__subtitle {
	margin: 0;
	max-width: 820px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(14px, 1.2vw, 18px);
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, .95);
}

.footer-service__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 168px;
	height: 48px;
	margin-top: 10px;
	padding: 0 32px;
	border-radius: 999px;
	background: linear-gradient(180deg, #1e6ae5 0%, #003192 100%);
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: filter .25s ease, transform .25s ease, box-shadow .25s ease;
}

.footer-service__btn:hover {
	filter: brightness(1.06);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 49, 146, .28);
	color: #fff;
}

@media (max-width: 1100px) {
	.footer-service {
		min-height: 360px;
		aspect-ratio: auto;
	}

	.footer-service__inner {
		padding: 40px 28px;
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.footer-service {
		min-height: 300px;
	}

	.footer-service__inner {
		padding: 36px 20px;
		gap: 12px;
	}

	.footer-service__btn {
		width: 100%;
		max-width: 280px;
		min-width: 0;
	}
}

/* ── 右侧浮动通讯栏 ── */
.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;
	}
}

/* ── 联系我们页 ── */
.contact-page {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 48px 0 0;
	background: #fff;
}

.contact-page__shell {
	width: 100%;
}

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

.contact-page__head {
	margin: 0 0 28px;
}

.contact-page__title {
	margin: 0;
	font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
	font-weight: 800;
	font-size: clamp(36px, 4vw, 48px);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #0a3d7a;
	line-height: 1.1;
}

.contact-page__grid {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 40px;
}

.contact-page__main {
	flex: 0 1 670px;
	width: 670px;
	max-width: 100%;
	min-width: 0;
}

.contact-page__form {
	width: 100%;
	min-width: 0;
}

.contact-page__info {
	flex: 0 1 670px;
	width: 670px;
	max-width: 100%;
	min-width: 0;
	display: flex;
	align-items: center;
	padding: 28px 24px;
	background: #d7deef;
	box-sizing: border-box;
}

.contact-page__info-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

.contact-page__info-left {
	flex: 1 1 auto;
	min-width: 0;
}

.contact-page__info-title {
	margin: 0 0 22px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.3;
	color: #1a2a4a;
}

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

.contact-page__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.contact-page__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	line-height: 0;
}

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

.contact-page__text {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 6px;
	padding-top: 4px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #334155;
	min-width: 0;
}

.contact-page__label {
	flex-shrink: 0;
	font-weight: 700;
	color: #1a2a4a;
}

.contact-page__text a {
	color: #334155;
	text-decoration: none;
	word-break: break-all;
	transition: color .2s ease;
}

.contact-page__text a:hover {
	color: #0c51ad;
	text-decoration: underline;
}

.contact-page__qr {
	flex-shrink: 0;
	width: 188px;
	height: 188px;
	background: #fff;
	line-height: 0;
}

.contact-page__qr img {
	display: block;
	width: 188px;
	height: 188px;
	object-fit: contain;
}

/* 联系页表单：复用页尾 CF7 结构，覆盖输入框颜色 */
.contact-page__form .wpcf7 {
	margin: 0;
}

.contact-page__form .wpcf7-form {
	margin: 0;
}

.contact-page__form .hidden-fields-container {
	margin: 0;
	padding: 0;
	border: 0;
	min-width: 0;
}

.contact-page__form .ft-form-row,
.contact-page__form .ft-form-row--full,
.contact-page__form .ft-form-row--submit {
	margin: 0 0 14px;
}

.contact-page__form .ft-form-row--submit {
	margin-bottom: 0;
}

.contact-page__form .ft-form-row > p,
.contact-page__form .ft-form-row--full > p,
.contact-page__form .ft-form-row--submit > p {
	margin: 0;
}

.contact-page__form .ft-form-row:not(.ft-form-row--full):not(.ft-form-row--submit) > p {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	align-items: start;
}

.contact-page__form .ft-form-row--full > p,
.contact-page__form .ft-form-row--submit > p {
	display: block;
	width: 100%;
}

.contact-page__form .ft-form-row br,
.contact-page__form .ft-form-row--full br,
.contact-page__form .ft-form-row--submit br {
	display: none;
}

.contact-page__form .ft-form-row label,
.contact-page__form .ft-form-row--full label {
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
}

.contact-page__form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.contact-page__form .wpcf7-form-control {
	width: 100%;
	box-sizing: border-box;
}

.contact-page__form input.wpcf7-text,
.contact-page__form input.wpcf7-email,
.contact-page__form input.wpcf7-tel,
.contact-page__form textarea.wpcf7-textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 14px 16px;
	border: none;
	border-radius: 0;
	background: #d7deef;
	color: #2d3a55;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	transition: background .2s ease;
}

.contact-page__form textarea.wpcf7-textarea {
	display: block;
	width: 100%;
	height: 80px;
	min-height: 80px;
	max-height: 120px;
	resize: vertical;
}

.contact-page__form input.wpcf7-text::placeholder,
.contact-page__form input.wpcf7-email::placeholder,
.contact-page__form input.wpcf7-tel::placeholder,
.contact-page__form textarea.wpcf7-textarea::placeholder {
	color: #6b7c9a;
}

.contact-page__form input.wpcf7-text:focus,
.contact-page__form input.wpcf7-email:focus,
.contact-page__form input.wpcf7-tel:focus,
.contact-page__form textarea.wpcf7-textarea:focus {
	background: #c9d3ea;
}

.contact-page__form input.wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 140px;
	height: 44px;
	padding: 0 28px;
	border: none;
	border-radius: 0;
	background: #0c51ad;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s ease, transform .25s ease;
}

.contact-page__form input.wpcf7-submit:hover {
	background: #0a4596;
	transform: translateY(-1px);
}

.contact-page__form .wpcf7-spinner {
	margin-left: 10px;
	vertical-align: middle;
}

.contact-page__form .wpcf7-response-output {
	margin: 12px 0 0;
	padding: 8px 12px;
	border-width: 1px;
}

.contact-page__form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.4;
	color: #c0392b;
}

.contact-page__form .wpcf7-not-valid {
	border: 1px solid #c0392b !important;
}

.contact-page__map {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 40px 48px;
	box-sizing: border-box;
	overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #333;
}

.contact-page__map > *:first-child {
	margin-top: 0;
}

.contact-page__map > *:last-child {
	margin-bottom: 0;
}

.contact-page__map img,
.contact-page__map iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	border: 0;
}

.contact-page__map iframe {
	min-height: 420px;
	height: 480px;
}

.contact-page__map p {
	margin: 0 0 12px;
	line-height: 1.7;
}

.contact-page__map p:last-child {
	margin-bottom: 0;
}

.contact-page__map p:has(> img:only-child),
.contact-page__map p:has(> iframe:only-child) {
	margin: 0;
	line-height: 0;
}

@media (max-width: 1100px) {
	.contact-page {
		padding-top: 36px;
	}

	.contact-page__inner {
		padding: 0 28px 40px;
	}

	.contact-page__map {
		padding: 0 28px 40px;
	}

	.contact-page__grid {
		flex-direction: column;
		gap: 28px;
	}

	.contact-page__form,
	.contact-page__info,
	.contact-page__main {
		flex: 1 1 auto;
		width: 100%;
	}

	.contact-page__map iframe {
		min-height: 360px;
		height: 400px;
	}
}

@media (max-width: 640px) {
	.contact-page {
		padding-top: 28px;
	}

	.contact-page__inner {
		padding: 0 20px 32px;
	}

	.contact-page__map {
		padding: 0 20px 32px;
	}

	.contact-page__head {
		margin-bottom: 20px;
	}

	.contact-page__info {
		padding: 22px 18px;
	}

	.contact-page__info-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-page__form .ft-form-row:not(.ft-form-row--full):not(.ft-form-row--submit) > p {
		grid-template-columns: 1fr;
	}

	.contact-page__qr {
		width: 160px;
		height: 160px;
	}

	.contact-page__qr img {
		width: 160px;
		height: 160px;
	}

	.contact-page__map iframe {
		min-height: 280px;
		height: 320px;
	}
}

/* ── 新闻列表页 ── */
.news-list {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 0 20px;
	background: #e4eaf2;
	box-sizing: border-box;
}

.news-list__empty {
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 40px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #64748b;
}

.news-list__item {
	position: relative;
	margin: 0 0 24px;
	background: transparent;
}

.news-list__item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	z-index: 0;
	width: 1400px;
	max-width: 100%;
	transform: translateX(-50%);
	background: #fff;
	transition: width .4s ease;
	pointer-events: none;
}

.news-list__item:hover::before,
.news-list__item:focus-within::before {
	width: 1920px;
}

.news-list__inner {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.news-list__link {
	display: flex;
	align-items: stretch;
	gap: 36px;
	padding: 40px;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
}

.news-list__media {
	flex: 0 0 340px;
	width: 340px;
	max-width: 100%;
	min-width: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #d7deef;
	line-height: 0;
}

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

.news-list__item:hover .news-list__media img {
	transform: scale(1.04);
}

.news-list__media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d7deef 0%, #c5d0e4 100%);
}

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

.news-list__title {
	margin: 0 0 12px;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: clamp(18px, 1.6vw, 24px);
	line-height: 1.35;
	color: #1a1a1a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color .3s ease;
}

.news-list__item:hover .news-list__title,
.news-list__item:focus-within .news-list__title {
	color: #0c51ad;
}

.news-list__date {
	display: block;
	margin: 0 0 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #2b7dd4;
}

.news-list__excerpt {
	margin: 0 0 22px;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #6b7280;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}

.news-list__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	min-width: 132px;
	height: 40px;
	padding: 0 20px;
	background: #0c51ad;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	transition: background .25s ease, transform .25s ease;
}

.news-list__item:hover .news-list__more {
	background: #0a4596;
}

@media (max-width: 1100px) {
	.news-list {
		padding: 28px 0 12px;
	}

	.news-list__item {
		margin-bottom: 18px;
	}

	.news-list__link {
		gap: 24px;
		padding: 28px;
	}
}

@media (max-width: 640px) {
	.news-list {
		padding: 20px 0 8px;
	}

	.news-list__item {
		margin-bottom: 14px;
	}

	.news-list__link {
		flex-direction: column;
		gap: 16px;
		padding: 20px;
	}

	.news-list__media {
		flex: 0 0 auto;
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.news-list__title {
		white-space: normal;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}

	.news-list__excerpt {
		margin-bottom: 16px;
	}
}

/* ── 新闻详情页 ── */
.news-detail {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 48px 0 20px;
	background: #fff;
	box-sizing: border-box;
}

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

.news-detail__head {
	margin: 0 0 28px;
	text-align: center;
}

.news-detail__title {
	margin: 0 0 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1.35;
	color: #1a1a1a;
}

.news-detail__date {
	display: block;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #2b7dd4;
}

.news-detail__content {
	margin: 0 0 36px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.9;
	color: #333;
}

.news-detail__content > *:first-child {
	margin-top: 0;
}

.news-detail__content > *:last-child {
	margin-bottom: 0;
}

.news-detail__content p {
	margin: 0 0 1em;
}

.news-detail__content p:last-child {
	margin-bottom: 0;
}

.news-detail__content img,
.news-detail__content iframe {
	max-width: 100%;
	height: auto;
}

.news-detail__gallery {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.news-detail__gallery-item {
	margin: 0;
	padding: 0;
	overflow: hidden;
	line-height: 0;
	background: #e8eef5;
}

.news-detail__gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform .45s ease;
}

.news-detail__gallery-item:hover img {
	transform: scale(1.04);
}

@media (max-width: 1100px) {
	.news-detail {
		padding-top: 36px;
	}

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

	.news-detail__gallery {
		gap: 12px;
	}
}

@media (max-width: 640px) {
	.news-detail {
		padding-top: 28px;
	}

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

	.news-detail__head {
		margin-bottom: 20px;
	}

	.news-detail__content {
		margin-bottom: 24px;
	}

	.news-detail__gallery {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* ── 产品列表页 ── */
.prod-list {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 0 48px;
	background: #e8eef5;
	box-sizing: border-box;
}

.prod-list__inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	gap: 28px;
}

.prod-cat-nav {
	flex: 0 0 330px;
	width: 330px;
	max-width: 100%;
	background: transparent;
	box-sizing: border-box;
}

.prod-cat-nav__head {
	padding: 12px 20px;
	background: #09339b;
	color: #fff;
	font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1.15;
}

.prod-cat-nav__list {
	list-style: none;
	margin: 0;
	padding: 8px 0 12px;
}

.prod-cat-nav__item {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e8eef5;
}

.prod-cat-nav__item:last-child {
	border-bottom: none;
}

.prod-cat-nav__row {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 16px 0 20px;
}

.prod-cat-nav__link {
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #2d3748;
	text-decoration: none;
	transition: color .2s ease;
}

.prod-cat-nav__link:hover,
.prod-cat-nav__item.is-active > .prod-cat-nav__row > .prod-cat-nav__link,
.prod-cat-nav__item.is-current > .prod-cat-nav__row > .prod-cat-nav__link {
	color: #2b7dd4;
}

.prod-cat-nav__toggle {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #64748b;
}

.prod-cat-nav__arrow {
	display: block;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(-45deg);
	transition: transform .25s ease;
}

.prod-cat-nav__item.is-open > .prod-cat-nav__row .prod-cat-nav__arrow {
	transform: rotate(45deg);
}

.prod-cat-nav__sub {
	list-style: none;
	margin: 0;
	padding: 0 16px 10px 32px;
}

.prod-cat-nav__sub[hidden] {
	display: none;
}

.prod-cat-nav__sub-item {
	margin: 0;
	padding: 0;
}

.prod-cat-nav__sub-link {
	display: block;
	padding: 8px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.45;
	color: #64748b;
	text-decoration: none;
	transition: color .2s ease;
}

.prod-cat-nav__sub-link:hover,
.prod-cat-nav__sub-item.is-active .prod-cat-nav__sub-link,
.prod-cat-nav__sub-item.is-current .prod-cat-nav__sub-link {
	color: #2b7dd4;
}

.prod-list__main {
	flex: 1 1 auto;
	min-width: 0;
}

.prod-list__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.prod-list__empty {
	margin: 0;
	padding: 48px 20px;
	background: transparent;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #64748b;
}

.prod-card {
	margin: 0;
	background: transparent;
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease;
}

.prod-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(13, 43, 85, .12);
}

.prod-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.prod-card__media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: transparent;
	overflow: hidden;
}

.prod-card__media img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform .45s ease;
}

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

.prod-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #eef3f9 0%, #d7deef 100%);
}

.prod-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 16px 14px 18px;
	background: #09339b;
	text-align: center;
	transition: background .3s ease;
}

.prod-card:hover .prod-card__body {
	background: #0c51ad;
}

.prod-card__name {
	display: block;
	width: 100%;
	font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: clamp(16px, 1.4vw, 20px);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.prod-card__sub {
	display: block;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: rgba(255, 255, 255, .88);
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

.prod-list__pager .pagination {
	padding: 0;
}

@media (max-width: 1100px) {
	.prod-list {
		padding: 28px 0 36px;
	}

	.prod-list__inner {
		flex-direction: column;
		padding: 0 28px;
		gap: 20px;
	}

	.prod-cat-nav {
		flex: 1 1 auto;
		width: 100%;
	}

	.prod-list__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}
}

@media (max-width: 640px) {
	.prod-list {
		padding: 20px 0 28px;
	}

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

	.prod-list__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.prod-list__pager {
		margin-top: 24px;
	}
}

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

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

.prod-detail__main {
	flex: 1 1 auto;
	min-width: 0;
}

.prod-detail__hero {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	margin-bottom: 40px;
}

.prod-detail__gallery {
	flex: 0 0 470px;
	width: 470px;
	max-width: 100%;
	min-width: 0;
}

.prod-detail__stage {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #fff;
	overflow: hidden;
	line-height: 0;
}

.prod-detail__main-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.prod-detail__thumbs-wrap {
	position: relative;
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.prod-detail__thumbs-viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.prod-detail__thumbs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
	will-change: transform;
	transition: transform .35s ease;
}

.prod-detail__thumb {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.prod-detail__thumbs-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #09339b;
	opacity: .75;
	transition: opacity .2s ease;
}

.prod-detail__thumbs-btn:hover,
.prod-detail__thumbs-btn:focus-visible {
	opacity: 1;
}

.prod-detail__thumbs-btn span {
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.prod-detail__thumbs-btn--prev span {
	transform: rotate(135deg);
}

.prod-detail__thumbs-btn--next span {
	transform: rotate(-45deg);
}

.prod-detail__thumbs-wrap.is-static .prod-detail__thumbs-btn {
	visibility: hidden;
	pointer-events: none;
}

.prod-detail__thumb-btn {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0;
	padding: 0;
	border: 2px solid transparent;
	background: #fff;
	overflow: hidden;
	cursor: pointer;
	line-height: 0;
	transition: border-color .2s ease;
}

.prod-detail__thumb.is-active .prod-detail__thumb-btn,
.prod-detail__thumb-btn:hover,
.prod-detail__thumb-btn:focus-visible {
	border-color: #09339b;
}

.prod-detail__thumb-btn img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.prod-detail__info {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 8px;
}

.prod-detail__title {
	margin: 0 0 16px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: clamp(22px, 2.2vw, 28px);
	line-height: 1.3;
	color: #1a1a1a;
}

.prod-detail__excerpt {
	margin: 0 0 24px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.8;
	color: #64748b;
}

.prod-detail__excerpt > *:first-child {
	margin-top: 0;
}

.prod-detail__excerpt > *:last-child {
	margin-bottom: 0;
}

.prod-detail__excerpt p {
	margin: 0 0 1em;
}

.prod-detail__excerpt p:last-child {
	margin-bottom: 0;
}

.prod-detail__inquiry {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 44px;
	padding: 0 28px;
	background: #09339b;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .25s ease, transform .25s ease;
}

.prod-detail__inquiry:hover {
	background: #0c51ad;
	color: #fff;
	transform: translateY(-1px);
}

.prod-detail__section-title {
	margin: 0 0 18px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.3;
	color: #1a1a1a;
}

.prod-detail__specs {
	margin-bottom: 40px;
}

.prod-detail__specs-body {
	padding: 24px 28px;
	background: #d7deef;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.8;
	color: #334155;
}

.prod-detail__specs-body > *:first-child {
	margin-top: 0;
}

.prod-detail__specs-body > *:last-child {
	margin-bottom: 0;
}

.prod-detail__specs-body p {
	margin: 0 0 1em;
}

.prod-detail__specs-body p:last-child {
	margin-bottom: 0;
}

.prod-detail__specs-body img {
	max-width: 100%;
	height: auto;
}

.prod-detail__related {
	margin-bottom: 28px;
}

.prod-detail__related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.prod-detail__pager {
	margin: 0 0 20px;
}

.prod-detail__pager .article-pager {
	background: var(--border);
}

@media (max-width: 1100px) {
	.prod-detail {
		padding: 28px 0 12px;
	}

	.prod-detail__inner {
		flex-direction: column;
		padding: 0 28px;
		gap: 20px;
	}

	.prod-detail__hero {
		flex-direction: column;
		gap: 24px;
	}

	.prod-detail__gallery {
		flex: 1 1 auto;
		width: 100%;
		max-width: 470px;
	}

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

@media (max-width: 640px) {
	.prod-detail {
		padding: 20px 0 8px;
	}

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

	.prod-detail__gallery {
		max-width: none;
	}

	.prod-detail__thumbs {
		gap: 8px;
	}

	.prod-detail__specs-body {
		padding: 18px 16px;
	}

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