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

/* ── Header / Nav ── */
.site-header {
	position: relative;
	z-index: 200;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: #fff;
}

.header-inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

/* Top bar */
.header-top {
	position: relative;
	background: #f3f3f3;
	min-height: 78px;
	overflow: hidden;
}

.header-top-inner {
	display: flex;
	align-items: center;
	min-height: 78px;
	gap: 24px;
}

.header-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
	margin-right: auto;
}

.header-logo-img,
.header-logo .custom-logo {
	width: 205px;
	height: 39px;
	object-fit: contain;
	display: block;
}

.header-logo-text {
	font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 1px;
}

.header-contacts {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-shrink: 0;
	margin-right: 0;
}

.header-contact {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
}

.header-contact-icon {
	width: 42px;
	height: 42px;
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

.header-contact-text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.header-contact-value {
	font-size: 14px;
	font-weight: 700;
	color: #0f1d32;
}

.header-contact-label {
	font-size: 12px;
	font-weight: 400;
	color: #0f1d32;
	opacity: .75;
}

.header-search-zone {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	align-self: stretch;
	margin-left: 72px;
	padding-left: 40px;
	padding-right: 20px;
}

.header-search-zone::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100vw;
	background: #0f1d32;
	z-index: -1;
	pointer-events: none;
}

.header-search {
	position: relative;
	z-index: 2;
	width: 270px;
	height: 32px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	background: #fff;
	border: none;
}

.header-search-input {
	width: 100%;
	height: 32px;
	border: none;
	outline: none;
	padding: 0 36px 0 12px;
	font-family: inherit;
	font-size: 13px;
	color: #0f1d32;
	background: transparent;
}

.header-search-input::placeholder {
	color: #8a94a6;
}

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

.header-search-submit img {
	width: 15px;
	height: 15px;
	display: block;
}

.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: 3;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--navy);
	transition: transform .25s, opacity .25s;
}

/* Nav bar */
.header-nav {
	background: var(--navy);
	min-height: 48px;
}

.header-nav.scrolled {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1920px;
	z-index: 300;
	box-shadow: 0 2px 16px rgba(1, 64, 153, .25);
}

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

.header-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	gap: 20px;
}

.nav-drawer {
	display: contents;
}

.nav-drawer-head,
.nav-drawer-search {
	display: none;
}

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

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

.nav-links > li > a {
	display: block;
	padding: 0 22px;
	height: 48px;
	line-height: 48px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	letter-spacing: .4px;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s, color .2s;
}

.nav-links > li > a:hover,
.nav-links > li.current-menu-item > a,
.nav-links > li.current-menu-ancestor > a,
.nav-links > li.current_page_item > a {
	background: rgba(255, 255, 255, .12);
}

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

.nav-links .menu-item-has-children > a::before {
	content: '';
	position: absolute;
	right: 12px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid #fff;
	border-bottom: 1.5px solid #fff;
	transform: translateY(-70%) rotate(45deg);
}

.nav-links .menu-item-has-children {
	position: relative;
}

.nav-links .sub-menu {
	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: #fff;
		box-shadow: 0 8px 24px rgba(15, 29, 50, .12);
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity .2s, transform .2s, visibility .2s;
		z-index: 50;
	}

	.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 {
		display: block;
		padding: 12px 18px;
		color: #0f1d32;
		font-size: 13px;
		font-weight: 600;
		text-decoration: none;
		line-height: 1.3;
		background: #fff;
	}

	.nav-links .sub-menu a:hover {
		background: var(--blue-light);
		color: var(--navy);
	}

	.nav-submenu-toggle {
		display: none;
	}
}

.header-social {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

/* 桌面端只保留右侧社媒，隐藏抽屉内那份 */
.header-social--drawer {
	display: none;
}

.header-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	opacity: .95;
	transition: opacity .2s, transform .2s;
}

.header-social-link:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.header-social-link img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	display: block;
	/* 原图为白色，深蓝导航条上直接显示 */
	filter: none;
}

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(15, 29, 50, .45);
	z-index: 310;
	border: none;
	padding: 0;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

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

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

/* 打开菜单时顶栏高于遮罩，右侧汉堡可点；抽屉更高以免搜索被盖住 */
body.nav-menu-open .header-top {
	position: relative;
	z-index: 315;
}

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

@media (max-width: 1200px) {
	.header-contacts {
		gap: 16px;
	}

	.header-contact-value {
		font-size: 13px;
	}

	.nav-links > li > a {
		padding: 0 14px;
	}
}

@media (max-width: 1100px) {
	.header-search-zone,
	.header-contacts,
	.header-social--desktop {
		display: none;
	}

	.header-top {
		background: #fff;
		border-bottom: 1px solid var(--border);
		overflow: hidden;
	}

	.header-top-inner {
		min-height: 64px;
		justify-content: space-between;
	}

	.header-logo {
		margin-right: 0;
	}

	.header-logo-img,
	.header-logo .custom-logo {
		width: auto;
		height: 32px;
	}

	.nav-toggle {
		display: flex;
	}

	.header-nav,
	.header-nav-inner {
		/* 让抽屉跳出中间层，避免多一层透明覆盖 */
		display: contents;
	}

	.header-nav.scrolled {
		position: static;
		transform: none;
		box-shadow: none;
	}

	body.nav-fixed {
		padding-top: 0;
	}

	.nav-drawer {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		width: min(320px, 88vw);
		height: 100vh;
		height: 100dvh;
		background: #fff;
		z-index: 320;
		padding: 12px 0 20px;
		box-shadow: 4px 0 24px rgba(15, 29, 50, .12);
		transform: translateX(-105%);
		visibility: hidden;
		pointer-events: none;
		transition: none;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.nav-menu-open .nav-drawer {
		transform: translateX(0);
		visibility: visible;
		pointer-events: auto;
		transition: transform .3s ease, visibility 0s;
	}

	/* 关闭时保留滑出动画；缩放窗口时由 JS 加 nav-resize-lock 关闭过渡 */
	body.nav-menu-closing .nav-drawer {
		transform: translateX(-105%);
		visibility: hidden;
		pointer-events: none;
		transition: transform .3s ease, visibility 0s linear .3s;
	}

	body.nav-resize-lock .nav-drawer {
		transition: none !important;
	}

	.nav-drawer-head {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		padding: 0 12px 10px;
		margin-bottom: 0;
		border-bottom: none;
		flex-shrink: 0;
	}

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

	.nav-drawer-search {
		display: block;
		padding: 0 16px 12px;
		margin-bottom: 0;
		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);
		background: #fff;
		font-family: var(--font);
		font-size: 14px;
		color: #0f1d32;
		outline: none;
	}

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

	.nav-drawer-search__input::placeholder {
		color: #8a94a6;
	}

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

	.nav-drawer-search__submit:hover {
		background: #0f1d32;
	}

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

	.header-social--drawer {
		display: flex;
		padding: 16px;
		gap: 16px;
		margin-top: auto;
		border-top: 1px solid var(--border);
	}

	.header-social--drawer .header-social-link img {
		/* 白底抽屉里把白色图标压成深色 */
		filter: brightness(0);
		opacity: .85;
	}

	.nav-links {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		padding: 4px 0 8px;
	}

	.nav-links > li {
		width: 100%;
		border-bottom: 1px solid #eef2f7;
	}

	.nav-links > li > a {
		height: auto;
		line-height: 1.4;
		padding: 14px 20px;
		color: #0f1d32;
		background: none;
	}

	.nav-links > li > a:hover,
	.nav-links > li.current-menu-item > a,
	.nav-links > li.current-menu-ancestor > a {
		background: var(--blue-light);
		color: var(--navy);
	}

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

	.nav-links .menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.nav-links .menu-item-has-children > a {
		flex: 1;
		min-width: 0;
	}

	.nav-links .nav-submenu-toggle {
		width: 44px;
		height: 44px;
		border: none;
		background: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.nav-links .nav-submenu-toggle span {
		display: block;
		width: 10px;
		height: 10px;
		border-right: 2px solid var(--navy);
		border-bottom: 2px solid var(--navy);
		transform: rotate(45deg);
		transition: transform .2s;
	}

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

	.nav-links .sub-menu {
		display: none;
		width: 100%;
		flex-basis: 100%;
		background: #f7f9fc;
		padding: 4px 0 8px;
	}

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

	.nav-links .sub-menu a {
		display: block;
		padding: 10px 20px 10px 32px;
		color: #334155;
		font-size: 13px;
		text-decoration: none;
	}

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

	.nav-drawer-quote a {
		display: block;
		margin: 16px;
		text-align: center;
		background: var(--navy);
		color: #fff !important;
		padding: 12px 16px;
		text-decoration: none;
		font-weight: 700;
	}
}


/* ── Footer ── */
.site-footer {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.site-footer__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.site-footer__main {
	background: var(--blue-pale);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 380px repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 48px);
	padding: clamp(48px, 5vw, 72px) 0 clamp(40px, 4.5vw, 56px);
}

.site-footer__title {
	margin: 0 0 clamp(20px, 2.5vw, 28px);
	font-family: var(--font);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--blue);
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: clamp(18px, 2.2vw, 24px);
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	text-decoration: none;
	transition: opacity .25s ease;
}

.site-footer__social-link:hover {
	opacity: .72;
}

.site-footer__social-link img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
	filter: brightness(0);
}

.site-footer__desc {
	font-size: 14px;
	line-height: 1.75;
	color: #5c6470;
}

.site-footer__desc p {
	margin: 0 0 10px;
}

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

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

.site-footer__links li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__links a {
	display: block;
	padding: 5px 0;
	font-size: 14px;
	line-height: 1.55;
	color: #5c6470;
	text-decoration: none;
	transition: color .2s ease;
}

.site-footer__links a:hover {
	color: var(--blue);
}

.site-footer__links .nav-submenu-toggle,
.site-footer__links .sub-menu {
	display: none !important;
}

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

.site-footer__contact li {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	line-height: 1.65;
	color: #5c6470;
}

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

.site-footer__contact-label {
	color: #5c6470;
}

.site-footer__contact a {
	color: #5c6470;
	text-decoration: none;
	transition: color .2s ease;
}

.site-footer__contact a:hover {
	color: var(--blue);
}

.site-footer__bar {
	background: var(--blue);
	color: #fff;
}

.site-footer__bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 24px;
	padding: 16px 0;
}

.site-footer__copy {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .92);
}

.site-footer__copy p {
	margin: 0;
}

.site-footer__sitemap {
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	text-decoration: none;
	transition: opacity .2s ease;
}

.site-footer__sitemap:hover {
	opacity: .85;
}

@media (max-width: 1399px) {
	.site-footer__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 1100px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__title {
		font-size: clamp(24px, 3.2vw, 32px);
	}
}

@media (max-width: 640px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-top: 40px;
		padding-bottom: 36px;
	}

	.site-footer__title {
		margin-bottom: 16px;
		font-size: 24px;
	}

	.site-footer__bar-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 14px 0;
	}
}

/* ── Page Banner ── */
#page-banner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	height: clamp(320px, 28vw, 420px);
	min-height: 320px;
	overflow: hidden;
	background: var(--navy) center center / cover no-repeat;
}

#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);
}

.banner-main {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1;
	align-items: center;
	width: 100%;
	min-height: 0;
}

.banner-inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.banner-crumb-bar {
	position: relative;
	z-index: 2;
	width: 100%;
	background: rgba(0, 0, 0, .62);
}

.banner-crumb-bar .banner-inner {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0;
	text-transform: none;
}

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

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

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

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

.banner-title {
	margin: 0 0 10px;
	font-family: var(--font);
	font-weight: 700;
	font-size: clamp(36px, 4.2vw, 56px);
	color: #fff;
	letter-spacing: 0;
	line-height: 1.15;
	text-transform: none;
}

.banner-desc {
	margin: 0;
	max-width: 760px;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .88);
}

.page-banner--post .banner-title {
	font-size: clamp(28px, 3.4vw, 46px);
	line-height: 1.2;
	max-width: 920px;
	margin-bottom: 16px;
}

.page-banner--product .banner-title {
	font-size: clamp(32px, 3.8vw, 50px);
	line-height: 1.15;
}

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

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

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

@media (max-width: 1399px) {
	.banner-inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 640px) {
	#page-banner {
		height: auto;
		min-height: 280px;
	}

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

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

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

	.banner-crumb-bar .banner-inner {
		min-height: 40px;
		padding-top: 8px;
		padding-bottom: 8px;
	}

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

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

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

.contact-panel {
	width: 100%;
	overflow: visible;
}

.contact-panel__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: clamp(520px, 42vw, 620px);
	align-items: stretch;
}

.contact-panel__info {
	background: var(--blue);
	color: #fff;
}

.contact-panel__info-inner,
.contact-panel__form-inner {
	width: 100%;
	max-width: 700px;
	padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 56px);
}

.contact-panel__info-inner {
	margin-left: auto;
	margin-right: 0;
}

.contact-panel__form-inner {
	margin-right: auto;
	margin-left: 0;
}

@media (min-width: 1401px) {
	.contact-panel__form-inner {
		padding-bottom: calc(clamp(40px, 5vw, 72px) + 96px);
	}
}

.contact-panel__info-title,
.contact-panel__form-title {
	margin: 0;
	font-family: var(--font);
	font-size: clamp(34px, 3.6vw, 50px);
	font-weight: 700;
	line-height: 1.15;
}

.contact-panel__info-title {
	color: #fff;
}

.contact-panel__info-rule {
	display: block;
	width: 55px;
	height: 4px;
	margin-top: 18px;
	background: #fff;
}

.contact-panel__list {
	list-style: none;
	margin: clamp(28px, 3.5vw, 40px) 0 0;
	padding: 0;
}

.contact-panel__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.65;
}

.contact-panel__item + .contact-panel__item {
	margin-top: clamp(18px, 2.2vw, 24px);
}

.contact-panel__icon {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	object-fit: contain;
}

.contact-panel__item a,
.contact-panel__item span {
	color: #fff;
	text-decoration: none;
}

.contact-panel__item a:hover {
	opacity: .85;
}

.contact-panel__form {
	background: #eceff3;
}

.contact-panel__form-title {
	color: var(--gray-dark);
}

.contact-panel__form-subtitle {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--gray);
}

.contact-panel__cf7 {
	margin-top: clamp(24px, 3vw, 36px);
}

.contact-panel__cf7 .wpcf7 {
	margin: 0;
}

.contact-panel__cf7 .wpcf7-form {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
	margin: 0;
}

.contact-panel__cf7 .wpcf7-form > p {
	margin: 0;
	min-width: 0;
}

/* CF7 Apps honeypot 会多包一层 <p>，需移出网格，避免字段错位 */
.contact-panel__cf7 .wpcf7-form > p:has(.cf7apps-honeypot-wrap),
.contact-panel__cf7 .wpcf7-form > p:has([data-cf7apps-honeypot]),
.contact-panel__cf7 .wpcf7-form > p:has(.honeypot) {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	pointer-events: none;
}

.contact-panel__cf7 .wpcf7-form > p:has(textarea),
.contact-panel__cf7 .wpcf7-form > p:has(.wpcf7-submit),
.contact-panel__cf7 .wpcf7-form > p.contact-cf7-full {
	grid-column: 1 / -1;
}

.contact-panel__cf7 label {
	display: block;
	margin: 0;
	font-size: 0;
	line-height: 0;
}

.contact-panel__cf7 label br {
	display: none;
}

.contact-panel__cf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
	position: relative;
	font-size: 14px;
	line-height: 1.4;
}

.contact-panel__cf7 .wpcf7-form-control-wrap[data-name="your-name"]::after,
.contact-panel__cf7 .wpcf7-form-control-wrap[data-name="your-tel"]::after {
	content: '*';
	position: absolute;
	top: 50%;
	left: 14px;
	z-index: 2;
	color: #e53935;
	font-size: 14px;
	line-height: 1;
	pointer-events: none;
	transform: translateY(-50%);
}

.contact-panel__cf7 .wpcf7-form-control-wrap[data-name="your-name"] .wpcf7-form-control,
.contact-panel__cf7 .wpcf7-form-control-wrap[data-name="your-tel"] .wpcf7-form-control {
	padding-left: 28px;
}

.contact-panel__cf7 .wpcf7-form-control-wrap[data-name="your-email"] .wpcf7-form-control,
.contact-panel__cf7 .wpcf7-form-control-wrap[data-name="your-address"] .wpcf7-form-control,
.contact-panel__cf7 .wpcf7-form-control-wrap[data-name="your-message"] .wpcf7-form-control {
	padding-left: 28px;
}

.contact-panel__cf7 .wpcf7-form-control {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d8dee8;
	border-radius: 0;
	background: #fff;
	color: var(--gray-dark);
	font-family: var(--font);
	font-size: 14px;
	line-height: 1.4;
	outline: none;
	transition: border-color .2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.contact-panel__cf7 .wpcf7-form-control:focus {
	border-color: var(--blue);
}

.contact-panel__cf7 .wpcf7-form-control::placeholder {
	color: #9aa3af;
}

.contact-panel__cf7 textarea.wpcf7-form-control {
	min-height: 110px;
	height: 110px;
	max-height: 180px;
	resize: vertical;
}

.contact-panel__cf7 .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 246px;
	height: 46px;
	min-width: 246px;
	padding: 0;
	border: none;
	border-radius: 0;
	background: var(--blue);
	color: #fff;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease;
	box-sizing: border-box;
}

.contact-panel__cf7 .wpcf7-submit:hover {
	background: var(--blue-mid);
}

.contact-panel__cf7 .wpcf7-spinner {
	display: none !important;
}

.contact-panel__cf7 .wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: 12px;
	color: #d64545;
}

.contact-panel__cf7 .wpcf7-response-output {
	grid-column: 1 / -1;
	margin: 4px 0 0;
	padding: 10px 12px;
	border: 1px solid #d8dee8;
	font-size: 13px;
}

.contact-map {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding-bottom: clamp(40px, 4vw, 64px);
	background: #fff;
	overflow: visible;
}

.contact-map__inner {
	width: 100%;
	max-width: 1400px;
	margin: -72px auto 0;
	padding: 0;
	overflow: visible;
}

.contact-map__frame {
	position: relative;
	z-index: 2;
	border: 24px solid #fff;
	background: #fff;
	overflow: visible;
}

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

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

.contact-map__frame .wp-block-embed,
.contact-map__frame .wp-block-html,
.contact-map__frame .wp-block-image {
	margin: 0;
	width: 100%;
}

.contact-map__frame .wp-block-embed__wrapper {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	min-height: 420px;
	overflow: visible;
	padding: 0 !important;
}

.contact-map__frame .wp-block-embed__wrapper::before {
	display: none !important;
	padding: 0 !important;
}

.contact-map__frame iframe,
.contact-map__frame img,
.contact-map__frame .wp-block-embed__wrapper iframe {
	display: block;
	width: 100%;
	height: 420px;
	min-height: 420px;
	border: 0;
}

.contact-map__frame .wp-block-embed__wrapper iframe {
	position: relative;
	top: auto;
	left: auto;
}

@media (max-width: 1399px) {
	.contact-map__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 1400px) {
	.contact-map {
		padding-top: clamp(24px, 4vw, 40px);
	}

	.contact-map__inner {
		margin-top: 0;
	}
}

@media (max-width: 1100px) {
	.contact-panel__grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.contact-panel__info-inner,
	.contact-panel__form-inner {
		max-width: none;
		margin: 0 auto;
	}

	.contact-panel__form-inner {
		padding-bottom: clamp(40px, 5vw, 72px);
	}
}

@media (max-width: 640px) {
	.contact-panel__cf7 .wpcf7-form {
		grid-template-columns: 1fr;
	}

	.contact-map__frame .wp-block-embed__wrapper {
		min-height: 280px;
	}

	.contact-map__frame iframe,
	.contact-map__frame .wp-block-embed__wrapper iframe {
		height: 280px;
		min-height: 280px;
	}
}

/* ── 新闻列表 ── */
.news-list-section {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 5vw, 80px);
	background: #fff;
	overflow: hidden;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: clamp(28px, 3.2vw, 40px);
}

.news-list__empty {
	margin: 0 auto;
	padding: 40px 16px;
	max-width: 1400px;
	font-size: 16px;
	color: var(--gray);
	text-align: center;
}

.news-list-section__pager {
	width: 100%;
	max-width: 1400px;
	margin: clamp(36px, 4vw, 52px) auto 0;
	padding: 0;
}

.news-card {
	margin: 0;
}

.news-card__link {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(0, 1400px) minmax(0, 1fr);
	align-items: stretch;
	width: 100%;
	min-height: 240px;
	text-decoration: none;
	color: inherit;
}

.news-card__bleed {
	position: relative;
	min-width: 0;
	overflow: hidden;
	background: transparent;
}

.news-card__bleed::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--blue);
	transform: scaleX(0);
	transition: transform .45s cubic-bezier(.25, .1, .25, 1);
	pointer-events: none;
}

.news-card__bleed--left::before {
	transform-origin: right center;
}

.news-card__bleed--right::before {
	transform-origin: left center;
}

.news-card__bleed--left {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
}

.news-card__side {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.news-card__side--left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 0 0 180px;
	width: 180px;
	padding: 24px 16px;
	text-align: center;
}

.news-card__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	position: relative;
	z-index: 1;
}

.news-card__day {
	font-family: var(--font);
	font-size: clamp(42px, 4vw, 56px);
	font-weight: 700;
	line-height: 1;
	color: #0f1d32;
	transition: color .45s ease;
}

.news-card__ym {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: #0f1d32;
	transition: color .45s ease;
}

.news-card__logo {
	position: absolute;
	left: 14px;
	bottom: 14px;
	z-index: 0;
	width: min(130px, 78%);
	height: auto;
	opacity: 0;
	pointer-events: none;
	filter: brightness(0) invert(1);
	transition: opacity .35s ease;
}

.news-card__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 356px;
	gap: 24px;
	width: 100%;
	max-width: 1400px;
	min-width: 0;
	padding: 24px;
	box-sizing: border-box;
	background: #eceff3;
	overflow: hidden;
}

.news-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	max-width: 820px;
	min-width: 0;
	margin-left: 26px;
	padding: 0;
	box-sizing: border-box;
}

.news-card__title {
	width: 100%;
	margin: 0;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(15, 29, 50, .18);
	font-family: var(--font);
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 700;
	line-height: 1.35;
	color: #0f1d32;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	box-sizing: border-box;
}

.news-card__excerpt {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.7;
	color: #6b7280;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-card__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	min-width: 118px;
	height: 36px;
	padding: 0 18px;
	border: 1px solid #5c6470;
	border-radius: 6px;
	background: transparent;
	color: #0f1d32;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	transition: color .3s ease, border-color .3s ease, background .3s ease;
}

.news-card__media {
	position: relative;
	width: 356px;
	min-height: 240px;
	overflow: hidden;
	background: #d7dde6;
}

.news-card__media img,
.news-card__media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 240px;
	object-fit: cover;
	object-position: center;
	transition: transform .55s ease;
}

.news-card__media-placeholder {
	background: linear-gradient(135deg, #d7dde6 0%, #c5ceda 100%);
}

@media (hover: hover) and (pointer: fine) {
	.news-card__link:hover .news-card__bleed::before,
	.news-card__link:focus-visible .news-card__bleed::before {
		transform: scaleX(1);
	}

	.news-card__link:hover .news-card__day,
	.news-card__link:focus-visible .news-card__day,
	.news-card__link:hover .news-card__ym,
	.news-card__link:focus-visible .news-card__ym {
		color: #fff;
	}

	.news-card__link:hover .news-card__logo,
	.news-card__link:focus-visible .news-card__logo {
		opacity: .28;
	}

	.news-card__link:hover .news-card__more,
	.news-card__link:focus-visible .news-card__more {
		background: transparent;
		border-color: var(--blue);
		color: var(--blue);
	}

	.news-card__link:hover .news-card__media img,
	.news-card__link:focus-visible .news-card__media img {
		transform: scale(1.04);
	}
}

@media (max-width: 1399px) {
	.news-list-section__pager {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}

	.news-card__link {
		grid-template-columns: 180px minmax(0, 1fr) 0;
		padding-right: clamp(16px, 3vw, 40px);
	}

	.news-card__bleed--left {
		justify-content: stretch;
	}

	.news-card__side--left {
		width: 100%;
		flex: 1 1 auto;
	}

	.news-card__main {
		max-width: none;
		grid-template-columns: minmax(0, 1fr) clamp(220px, 28vw, 356px);
	}

	.news-card__media {
		width: clamp(220px, 28vw, 356px);
	}
}

@media (max-width: 1100px) {
	.news-card__bleed--right {
		display: none;
	}

	.news-card__link {
		grid-template-columns: 140px minmax(0, 1fr);
		margin: 0 clamp(16px, 3vw, 40px);
		padding-right: 0;
		width: auto;
		min-height: 0;
	}

	.news-card__side--left {
		width: 140px;
		flex: 0 0 140px;
	}

	.news-card__main {
		grid-template-columns: minmax(0, 1.1fr) minmax(180px, .9fr);
	}

	.news-card__media {
		width: auto;
	}

	.news-card__media,
	.news-card__media img,
	.news-card__media-placeholder {
		min-height: 200px;
	}

	.news-card__day {
		font-size: 40px;
	}
}

@media (max-width: 640px) {
	.news-card__link {
		grid-template-columns: 1fr;
		margin: 0 16px;
	}

	.news-card__side--left {
		width: auto;
		flex: none;
		min-height: 96px;
		padding: 18px 16px;
	}

	.news-card__logo {
		left: 16px;
		bottom: 12px;
		width: 96px;
	}

	.news-card__main {
		grid-template-columns: 1fr;
	}

	.news-card__media {
		width: 100%;
	}

	.news-card__media,
	.news-card__media img,
	.news-card__media-placeholder {
		min-height: 200px;
		aspect-ratio: 16 / 10;
	}

	.news-card__day {
		font-size: 36px;
	}

	.news-card__content {
		margin-left: 0;
		max-width: none;
		padding: 0;
	}

	.news-card__excerpt {
		-webkit-line-clamp: 4;
	}
}

/* ── 新闻详情 ── */
.news-detail {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: #fff;
}

.news-detail__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 5vw, 80px);
}

.news-detail__header {
	text-align: center;
}

.news-detail__title {
	margin: 0;
	font-family: var(--font);
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 700;
	line-height: 1.3;
	color: #0f1d32;
}

.news-detail__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px 0;
	margin-top: 18px;
	font-size: 13px;
	line-height: 1.5;
	color: #8a94a6;
}

.news-detail__meta-item {
	padding: 0 12px;
}

.news-detail__meta-sep {
	display: inline-block;
	width: 1px;
	height: 12px;
	background: #d0d5dd;
}

.news-detail__rule {
	display: block;
	width: 100%;
	height: 1px;
	margin: 28px 0 0;
	background: #e5e8ee;
}

.news-detail__content {
	margin-top: clamp(28px, 3.5vw, 40px);
	font-size: 15px;
	line-height: 1.85;
	color: #0f1d32;
}

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

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

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

.news-detail__content img,
.news-detail__content .aligncenter,
.news-detail__content .wp-caption {
	display: block;
	max-width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.news-detail__content .aligncenter {
	margin-top: 0;
	margin-bottom: 1.25em;
}

.news-detail__content .wp-caption-text {
	margin-top: 8px;
	font-size: 13px;
	color: #8a94a6;
	text-align: center;
}

.news-detail__gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: clamp(36px, 4vw, 48px);
}

.news-detail__gallery-item {
	margin: 0;
	overflow: hidden;
	background: #eceff3;
	aspect-ratio: 4 / 3;
}

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

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

.news-detail__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: clamp(40px, 5vw, 56px);
}

.news-detail__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 198px;
	height: 44px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: 0;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	box-sizing: border-box;
	transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}

.news-detail__nav-btn--prev {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.news-detail__nav-btn--prev:hover {
	background: var(--blue-mid);
	border-color: var(--blue-mid);
	color: #fff;
}

.news-detail__nav-btn--next {
	background: #fff;
	border-color: #c5ceda;
	color: #5c6470;
}

.news-detail__nav-btn--next:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.news-detail__nav-btn.is-disabled {
	opacity: .45;
	pointer-events: none;
	cursor: default;
}

@media (max-width: 1399px) {
	.news-detail__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 992px) {
	.news-detail__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.news-detail__title {
		font-size: clamp(24px, 7vw, 30px);
	}

	.news-detail__meta {
		flex-direction: column;
		gap: 8px;
	}

	.news-detail__meta-sep {
		display: none;
	}

	.news-detail__meta-item {
		padding: 0;
	}

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

	.news-detail__nav {
		flex-direction: column;
		width: 100%;
	}

	.news-detail__nav-btn {
		width: 100%;
		min-width: 0;
	}
}

/* ── 关于我们：公司简介 ── */
.about-profile {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 70px 0 80px;
	background: #fff;
}

.about-profile__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.about-profile__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
	gap: clamp(28px, 3.2vw, 56px);
	align-items: start;
}

.about-profile__media {
	position: relative;
	width: 100%;
	min-width: 0;
	overflow: visible;
}

.about-profile__viewport {
	position: relative;
	width: 100%;
	aspect-ratio: 760 / 520;
	overflow: hidden;
	background: #f3f5f8;
}

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

.about-profile__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .45s ease, visibility .45s ease;
}

.about-profile__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.about-profile__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.about-profile__nav {
	position: absolute;
	right: 0;
	bottom: 100%;
	z-index: 3;
	display: flex;
	gap: 0;
}

.about-profile__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	background: #111;
	color: #fff;
	font-size: 18px;
	font-family: var(--font);
	line-height: 1;
	cursor: pointer;
	transition: background .25s ease, opacity .25s ease;
}

.about-profile__nav-btn--next {
	background: var(--blue);
}

.about-profile__nav-btn:hover,
.about-profile__nav-btn:focus {
	opacity: .86;
	outline: none;
}

.about-profile__content {
	min-width: 0;
	padding-top: 0;
}

.about-profile__title {
	margin: 0;
	font-family: var(--font);
	font-size: 46px;
	font-weight: 700;
	line-height: 1.15;
	color: #111;
	letter-spacing: 0;
}

.about-profile__line {
	display: block;
	width: 72px;
	height: 4px;
	margin-top: 16px;
	background: var(--blue);
}

.about-profile__desc {
	margin-top: 22px;
	max-height: 426px;
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 10px;
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.75;
	color: #222;
	scrollbar-width: thin;
	scrollbar-color: #c9cdd3 transparent;
}

.about-profile__desc::-webkit-scrollbar {
	width: 4px;
}

.about-profile__desc::-webkit-scrollbar-track {
	background: transparent;
}

.about-profile__desc::-webkit-scrollbar-thumb {
	background: #c9cdd3;
	border-radius: 4px;
}

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

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

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

@media (max-width: 1399px) {
	.about-profile__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 992px) {
	.about-profile__layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.about-profile__title {
		font-size: clamp(32px, 5vw, 40px);
	}

	.about-profile__desc {
		max-height: 360px;
	}
}

@media (max-width: 640px) {
	.about-profile {
		padding: 60px 0 80px;
	}

	.about-profile__viewport {
		aspect-ratio: 4 / 3;
	}

	.about-profile__nav-btn {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}

	.about-profile__title {
		font-size: 28px;
	}

	.about-profile__desc {
		max-height: 300px;
		font-size: 14px;
	}
}

/* ── 关于我们：公司数值 ── */
.about-stats {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(48px, 5.5vw, 88px) 0 0;
	background: #fff;
}

.about-stats__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.about-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 48px);
	align-items: start;
}

.about-stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 0;
}

.about-stats__head {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	max-width: 100%;
}

.about-stats__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 42px;
	height: 42px;
}

.about-stats__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.about-stats__value {
	margin: 0;
	font-family: var(--font);
	font-size: clamp(36px, 3.6vw, 52px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: var(--navy);
	white-space: nowrap;
}

.about-stats__number,
.about-stats__plus {
	display: inline;
}

.about-stats__label {
	margin: 14px 0 0;
	max-width: 220px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	color: #4b5563;
}

@media (max-width: 1399px) {
	.about-stats__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 992px) {
	.about-stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 24px;
	}

	.about-stats__value {
		font-size: clamp(32px, 6vw, 44px);
	}
}

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

	.about-stats__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.about-stats__label {
		margin-top: 10px;
		max-width: none;
	}
}

/* ── 关于我们：工厂展示 ── */
.about-factory {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(48px, 5.5vw, 88px) 0;
	background: #f5f6f8;
}

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

.about-factory__header {
	margin: 0 0 clamp(28px, 3.5vw, 44px);
	text-align: center;
}

.about-factory__title {
	margin: 0;
	font-family: var(--font);
	font-size: clamp(32px, 3.4vw, 46px);
	font-weight: 700;
	line-height: 1.2;
	color: #111;
}

.about-factory__line {
	display: block;
	width: 72px;
	height: 4px;
	margin: 16px auto 0;
	background: var(--blue);
}

.about-factory__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.about-factory__item {
	position: relative;
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e8eaee;
}

.about-factory__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: transform .55s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
}

.about-factory__cross {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.about-factory__cross::before,
.about-factory__cross::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	background: rgba(255, 255, 255, .42);
	transform: translate(-50%, -50%);
	opacity: 0;
	pointer-events: none;
}

.about-factory__cross::before {
	width: 0;
	height: 0;
}

.about-factory__cross::after {
	width: 0;
	height: 0;
}

.about-factory__item:hover .about-factory__img {
	transform: scale(1.12);
}

.about-factory__item:hover .about-factory__cross::before {
	animation: about-factory-cross-x .85s ease-out forwards;
}

.about-factory__item:hover .about-factory__cross::after {
	animation: about-factory-cross-y .85s ease-out forwards;
}

@keyframes about-factory-cross-x {
	0% {
		width: 0;
		height: 8px;
		opacity: 0;
	}
	20% {
		opacity: .9;
	}
	55% {
		width: 100%;
		height: 56px;
		opacity: .55;
	}
	100% {
		width: 100%;
		height: 100%;
		opacity: 0;
	}
}

@keyframes about-factory-cross-y {
	0% {
		width: 8px;
		height: 0;
		opacity: 0;
	}
	20% {
		opacity: .9;
	}
	55% {
		width: 56px;
		height: 100%;
		opacity: .55;
	}
	100% {
		width: 100%;
		height: 100%;
		opacity: 0;
	}
}

@media (max-width: 1399px) {
	.about-factory__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 992px) {
	.about-factory__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}
}

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

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

	.about-factory__title {
		font-size: 28px;
	}
}

/* ── 关于我们：证书展示 ── */
.about-certs {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(48px, 5.5vw, 88px) 0;
	background: #fff;
}

.about-certs__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.about-certs__header {
	margin: 0 0 clamp(28px, 3.5vw, 44px);
	text-align: center;
}

.about-certs__title {
	margin: 0;
	font-family: var(--font);
	font-size: clamp(32px, 3.4vw, 46px);
	font-weight: 700;
	line-height: 1.2;
	color: #111;
}

.about-certs__line {
	display: block;
	width: 72px;
	height: 4px;
	margin: 16px auto 0;
	background: var(--blue);
}

.about-certs__slider {
	position: relative;
	width: 100%;
	padding: 0 48px;
}

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

.about-certs__track {
	display: flex;
	gap: 24px;
	transition: transform .45s ease;
	will-change: transform;
}

.about-certs__item {
	flex: 0 0 calc((100% - 72px) / 4);
	margin: 0;
	min-width: 0;
}

.about-certs__thumb {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	background: transparent;
	cursor: zoom-in;
	line-height: 0;
}

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

.about-certs__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 64px;
	padding: 0;
	border: none;
	color: #fff;
	font-size: 20px;
	font-family: var(--font);
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: opacity .25s ease;
}

.about-certs__nav--prev {
	left: 0;
	background: #111;
}

.about-certs__nav--next {
	right: 0;
	background: var(--blue);
}

.about-certs__nav:hover,
.about-certs__nav:focus {
	opacity: .86;
	outline: none;
}

.about-certs-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, .72);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}

.about-certs-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.about-certs-lightbox__img {
	display: block;
	max-width: min(920px, 92vw);
	max-height: 88vh;
	width: auto;
	height: auto;
	object-fit: contain;
	box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
	transform: scale(.94);
	transition: transform .3s ease;
}

.about-certs-lightbox.is-open .about-certs-lightbox__img {
	transform: scale(1);
}

.about-certs-lightbox__close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

body.about-certs-lightbox-open {
	overflow: hidden;
}

@media (max-width: 1399px) {
	.about-certs__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 992px) {
	.about-certs__item {
		flex: 0 0 calc((100% - 24px) / 2);
	}

	.about-certs__track {
		gap: 24px;
	}
}

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

	.about-certs__title {
		font-size: 28px;
	}

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

	.about-certs__item {
		flex: 0 0 100%;
	}

	.about-certs__nav {
		width: 36px;
		height: 56px;
		font-size: 18px;
	}
}

/* ── 产品详情 ── */
.product-detail {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 5vw, 80px);
	background: #fff;
}

.product-detail__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.product-detail__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(28px, 3.5vw, 56px);
	align-items: start;
}

.product-detail__gallery {
	min-width: 0;
}

.product-detail__main {
	width: 100%;
	border: 1px solid #e6e6e6;
	background: #fff;
	line-height: 0;
	overflow: hidden;
}

.product-detail__main-img {
	display: block;
	width: 100%;
	height: auto;
}

.product-detail__thumbs {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
}

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

.product-detail__thumbs-track {
	display: flex;
	gap: 12px;
	transition: transform .35s ease;
	will-change: transform;
}

.product-detail__thumb {
	flex: 0 0 calc((100% - 36px) / 4);
	display: block;
	padding: 0;
	border: 1px solid #e6e6e6;
	background: #fff;
	line-height: 0;
	cursor: pointer;
	overflow: hidden;
	transition: border-color .25s ease;
}

.product-detail__thumb.is-active,
.product-detail__thumb:hover {
	border-color: var(--blue);
}

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

.product-detail__thumbs-nav {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	background: transparent;
	color: #9aa3af;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: color .22s ease;
}

.product-detail__thumbs-nav:hover,
.product-detail__thumbs-nav:focus {
	color: var(--blue);
	outline: none;
}

.product-detail__content {
	min-width: 0;
	padding-top: 4px;
}

.product-detail__title {
	margin: 0;
	font-family: var(--font);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.25;
	color: #333;
}

.product-detail__rule {
	display: block;
	width: 100%;
	height: 1px;
	margin-top: 16px;
	background: #e5e7eb;
}

.product-detail__desc {
	margin-top: 20px;
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.75;
	color: #444;
}

.product-detail__desc > *:first-child {
	margin-top: 0;
}

.product-detail__desc > *:last-child {
	margin-bottom: 0;
}

.product-detail__desc p {
	margin: 0 0 1em;
}

.product-detail__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	height: 48px;
	margin-top: 28px;
	padding: 0 28px;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.product-detail__cta:hover {
	background: var(--blue-mid);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(1, 64, 153, .22);
}

.product-detail__blocks {
	margin-top: clamp(40px, 5vw, 64px);
}

.product-block {
	padding: clamp(28px, 3.5vw, 40px) 0;
	border-top: 1px solid #e5e7eb;
}

.product-block:last-child {
	padding-bottom: 0;
}

.product-block__title {
	margin: 0 0 16px;
	font-family: var(--font);
	font-size: clamp(20px, 2.2vw, 24px);
	font-weight: 700;
	line-height: 1.3;
	color: #111;
}

.product-block__body {
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.75;
	color: #444;
}

.product-block__body > *:first-child {
	margin-top: 0;
}

.product-block__body > *:last-child {
	margin-bottom: 0;
}

.product-block__body p {
	margin: 0 0 1em;
}

.product-block__body ol,
.product-block__body ul {
	margin: 0 0 1em;
	padding-left: 1.25em;
}

.product-block__body li + li {
	margin-top: .45em;
}

.product-block__cases {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 22px;
}

.product-block__case {
	margin: 0;
	overflow: hidden;
	background: #f7f8fa;
	line-height: 0;
}

.product-block__case img {
	display: block;
	width: 100%;
	height: auto;
}

.product-block__body--profile table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.product-block__body--profile table td,
.product-block__body--profile table th {
	padding: 12px 14px;
	border: 1px solid #d7dbe2;
	text-align: left;
	vertical-align: middle;
	word-break: break-word;
}

.product-block__body--profile table th {
	font-weight: 600;
	background: #f8f9fb;
}

@media (max-width: 1399px) {
	.product-detail__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 992px) {
	.product-detail__layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.product-detail__thumb {
		flex: 0 0 calc((100% - 24px) / 3);
	}

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

@media (max-width: 640px) {
	.product-detail {
		padding: 32px 0 48px;
	}

	.product-detail__title {
		font-size: 26px;
	}

	.product-detail__cta {
		width: 100%;
		min-width: 0;
	}

	.product-detail__thumb {
		flex: 0 0 calc((100% - 12px) / 2);
	}

	.product-block__cases {
		grid-template-columns: 1fr;
	}

	.product-block__body--profile table,
	.product-block__body--profile tbody,
	.product-block__body--profile tr,
	.product-block__body--profile td {
		display: block;
		width: 100%;
	}

	.product-block__body--profile tr {
		margin-bottom: 10px;
	}
}

.product-detail__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: clamp(40px, 5vw, 56px);
}

.product-detail__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 198px;
	height: 44px;
	padding: 0 28px;
	border: 1px solid transparent;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	box-sizing: border-box;
	transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}

.product-detail__nav-btn--prev {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.product-detail__nav-btn--prev:hover {
	background: var(--blue-mid);
	border-color: var(--blue-mid);
	color: #fff;
}

.product-detail__nav-btn--next {
	background: #fff;
	border-color: #c5ceda;
	color: #5c6470;
}

.product-detail__nav-btn--next:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.product-detail__nav-btn.is-disabled {
	opacity: .45;
	pointer-events: none;
	cursor: default;
}

.product-related {
	margin-top: clamp(48px, 5vw, 72px);
}

.product-related__header {
	margin: 0 0 clamp(28px, 3.5vw, 40px);
	text-align: center;
}

.product-related__title {
	margin: 0;
	font-family: var(--font);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.2;
	color: #111;
}

.product-related__line {
	display: block;
	width: 72px;
	height: 4px;
	margin: 14px auto 0;
	background: var(--blue);
}

.product-related__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.product-related__item {
	margin: 0;
}

.product-related__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.product-related__media {
	display: block;
	width: 100%;
	border: 1px solid #e6e6e6;
	background: #fff;
	line-height: 0;
	overflow: hidden;
}

.product-related__img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .35s ease;
}

.product-related__link:hover .product-related__img {
	transform: scale(1.04);
}

.product-related__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #eef2f7 0%, #d9e2ef 100%);
}

@media (max-width: 992px) {
	.product-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.product-detail__nav {
		flex-direction: column;
		width: 100%;
	}

	.product-detail__nav-btn {
		width: 100%;
		min-width: 0;
	}

	.product-related__grid {
		grid-template-columns: 1fr;
	}
}

/* ── 产品列表 / 分类 ── */
.product-archive {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 5vw, 80px);
	background: #fff;
}

.product-archive__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.product-archive__layout {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.product-archive__aside {
	width: 320px;
	max-width: 100%;
}

.product-archive__main {
	min-width: 0;
}

.product-archive__pager {
	margin-top: clamp(32px, 4vw, 48px);
}

.product-nav {
	width: 100%;
	background: var(--navy);
}

.product-nav__list,
.product-nav__sub {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-nav__item + .product-nav__item {
	border-top: 1px solid rgba(255, 255, 255, .28);
}

.product-nav__row {
	display: flex;
	align-items: stretch;
	min-height: 52px;
}

.product-nav__link {
	flex: 1;
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 14px 20px;
	color: #fff;
	text-decoration: none;
	transition: background .22s ease;
}

.product-nav__item.has-children .product-nav__link {
	padding-right: 8px;
}

.product-nav__link:hover,
.product-nav__item.is-active > .product-nav__row .product-nav__link {
	background: rgba(255, 255, 255, .08);
}

.product-nav__label {
	font-family: var(--font);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: #fff;
}

.product-nav__toggle {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	align-self: stretch;
	border: none;
	background: transparent;
	color: #fff;
	cursor: pointer;
	padding: 0;
}

.product-nav__arrow {
	display: inline-block;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	transition: transform .25s ease;
}

.product-nav__item.has-children.is-open > .product-nav__row .product-nav__toggle .product-nav__arrow {
	transform: rotate(90deg);
}

.product-nav__sub {
	background: rgba(0, 0, 0, .16);
}

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

.product-nav__sub-link {
	display: block;
	padding: 12px 20px 12px 32px;
	color: rgba(255, 255, 255, .9);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	transition: background .22s ease, color .22s ease;
}

.product-nav__sub-link:hover,
.product-nav__sub-item.is-active .product-nav__sub-link {
	background: rgba(255, 255, 255, .1);
	color: #fff;
}

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

.product-list__empty {
	margin: 0;
	padding: 40px 0;
	font-size: 16px;
	color: var(--gray);
	text-align: center;
}

.product-card {
	margin: 0;
}

.product-card__link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.product-card__media {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
	border: 1px solid #e6e6e6;
	background: #f7f8fa;
	line-height: 0;
}

.product-card__img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .35s ease;
}

.product-card:hover .product-card__img {
	transform: scale(1.04);
}

.product-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #eef2f7 0%, #d9e2ef 100%);
}

.product-card__title {
	display: block;
	margin-top: 12px;
	padding: 0 4px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--gray-dark);
	text-align: center;
	transition: color .25s ease;
}

.product-card:hover .product-card__title {
	color: var(--blue);
}

@media (max-width: 1399px) {
	.product-archive__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 1100px) {
	.product-archive__layout {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: 22px;
	}

	.product-archive__aside {
		width: 280px;
	}

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

@media (max-width: 860px) {
	.product-archive__layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.product-archive__aside {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.product-archive {
		padding: 32px 0 48px;
	}

	.product-nav__label {
		font-size: 16px;
	}

	.product-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* ── 案例列表 ── */
.project-list-section {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 5vw, 80px);
	background: #fff;
}

.project-list-section__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.project-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.project-list__empty {
	margin: 0;
	padding: 40px 0;
	font-size: 16px;
	color: var(--gray);
	text-align: center;
}

.project-list-section__pager {
	margin-top: clamp(36px, 4vw, 52px);
}

.project-card {
	margin: 0;
	background: #fff;
	border: 1px solid #e6e6e6;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.project-card:hover {
	border-color: var(--blue);
	box-shadow: 0 8px 24px rgba(1, 64, 153, .08);
}

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

.project-card__media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f3f5f8;
}

.project-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.project-card:hover .project-card__img {
	transform: scale(1.04);
}

.project-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #eef2f7 0%, #d9e2ef 100%);
}

.project-card__body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	padding: 18px 16px;
	background: #fff;
	text-align: center;
}

.project-card__title {
	display: block;
	font-family: var(--font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--gray-dark);
	transition: color .25s ease;
}

.project-card:hover .project-card__title {
	color: var(--blue);
}

@media (max-width: 1399px) {
	.project-list-section__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 1200px) {
	.project-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (max-width: 992px) {
	.project-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (max-width: 640px) {
	.project-list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.project-card__body {
		min-height: 64px;
		padding: 16px 14px;
	}
}

/* ── 搜索结果 ── */
.search-results {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 5vw, 80px);
	background: #fff;
}

.search-results__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.search-results__header {
	margin-bottom: clamp(28px, 4vw, 40px);
}

.search-results__title {
	margin: 0;
	font-family: var(--font);
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.25;
	color: #111;
}

.search-results__meta {
	margin: 10px 0 0;
	font-size: 15px;
	color: var(--gray);
}

.search-results__form {
	display: flex;
	gap: 10px;
	margin-top: 22px;
	max-width: 640px;
}

.search-results__form input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 46px;
	padding: 0 14px;
	border: 1px solid #d0d7e2;
	font-family: var(--font);
	font-size: 15px;
}

.search-results__form button {
	flex-shrink: 0;
	height: 46px;
	padding: 0 22px;
	border: none;
	background: var(--navy);
	color: #fff;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.search-results__list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.search-results__item {
	padding: 22px 24px;
	border: 1px solid #e6e6e6;
	background: #fff;
}

.search-results__type {
	display: inline-block;
	margin-bottom: 8px;
	padding: 3px 10px;
	background: var(--blue-pale);
	color: var(--navy);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .4px;
	text-transform: uppercase;
}

.search-results__item-title {
	margin: 0;
	font-family: var(--font);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
}

.search-results__item-title a {
	color: #111;
	text-decoration: none;
}

.search-results__item-title a:hover {
	color: var(--blue);
}

.search-results__excerpt {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.7;
	color: #555;
}

.search-results__more {
	display: inline-block;
	margin-top: 12px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.search-results__pager {
	margin-top: clamp(28px, 4vw, 40px);
}

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

.search-results__home {
	display: inline-flex;
	margin-top: 18px;
	padding: 12px 24px;
	background: var(--navy);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

/* ── 404 ── */
.error-404 {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(48px, 6vw, 96px) 0;
	background: #fff;
	text-align: center;
}

.error-404__inner {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	padding: 0 clamp(16px, 3vw, 40px);
}

.error-404__code {
	margin: 0;
	font-family: var(--font);
	font-size: clamp(72px, 12vw, 120px);
	font-weight: 800;
	line-height: 1;
	color: var(--blue-light);
}

.error-404__title {
	margin: 12px 0 0;
	font-family: var(--font);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	color: #111;
}

.error-404__desc {
	margin: 14px 0 0;
	font-size: 16px;
	line-height: 1.7;
	color: #666;
}

.error-404__form {
	display: flex;
	gap: 10px;
	margin: 28px auto 0;
	max-width: 520px;
}

.error-404__form input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 46px;
	padding: 0 14px;
	border: 1px solid #d0d7e2;
	font-family: var(--font);
	font-size: 15px;
}

.error-404__form button {
	flex-shrink: 0;
	height: 46px;
	padding: 0 20px;
	border: none;
	background: var(--navy);
	color: #fff;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.error-404__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 44px;
	padding: 0 22px;
	border: 1px solid #c5ceda;
	background: #fff;
	color: #444;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.error-404__btn--primary {
	border-color: var(--navy);
	background: var(--navy);
	color: #fff;
}

.error-404__btn:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.error-404__btn--primary:hover {
	background: var(--blue-mid);
	border-color: var(--blue-mid);
	color: #fff;
}

/* ── 默认页面内容 ── */
.page-content {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(40px, 5vw, 72px) 0;
	background: #fff;
}

.page-content__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.page-content__body {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.75;
	color: #333;
}

.page-content__body > *:first-child {
	margin-top: 0;
}

.page-content__body > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 1399px) {
	.search-results__inner,
	.page-content__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 640px) {
	.search-results__form,
	.error-404__form {
		flex-direction: column;
	}

	.search-results__form button,
	.error-404__form button {
		width: 100%;
	}

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

/* ── 内页分页 / 上下篇 ── */
.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: var(--font);
	transition: all .25s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-sizing: border-box;
}

.pagination .page-numbers a:hover,
.pagination .page-numbers a:focus,
.navigation.pagination a.page-numbers:hover {
	border-color: var(--blue);
	color: var(--blue);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.float-contact__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;
	}
}
