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

/* ── Header / Nav ── */
#nav {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	width: 100%;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	height: 100px;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 max(20px, calc((100% - 1200px) / 2));
	box-sizing: border-box;
	font-family: var(--font-nav);
	transition: box-shadow .3s;
}

#nav.scrolled {
	position: fixed;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 2px 20px rgba(13, 43, 85, .08);
}

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 {
	width: 100px;
	height: 72px;
	object-fit: contain;
	display: block;
}

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

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

.nav-links a {
	display: block;
	padding: 0 18px;
	height: 68px;
	line-height: 68px;
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: 600;
	color: #222;
	letter-spacing: .4px;
	text-decoration: none;
	position: relative;
	transition: color .2s;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 18px;
	right: 18px;
	height: 2px;
	background: var(--navy);
	transform: scaleX(0);
	transition: transform .25s;
	pointer-events: none;
}

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

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current-menu-ancestor > a::after,
.nav-links .current_page_item > a::after {
	transform: scaleX(1);
}

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

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

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

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

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

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

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

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

	.nav-links .sub-menu a {
		height: auto;
		line-height: 1.4;
		padding: 10px 20px;
		font-size: 13px;
		white-space: nowrap;
	}

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

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

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

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

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

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

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

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

.nav-right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

/* 桌面胶囊搜索 */
.nav-search-inline {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 150px;
	height: 36px;
	padding: 0 12px 0 14px;
	border: 1px solid #d0d0d0;
	border-radius: 999px;
	background: var(--white);
	box-sizing: border-box;
	transition: border-color .2s;
}

.nav-search-inline:focus-within {
	border-color: var(--navy);
}

.nav-search-inline__input {
	flex: 1;
	min-width: 0;
	height: 100%;
	border: none;
	outline: none;
	background: transparent;
	font-family: var(--font-nav);
	font-size: 14px;
	color: var(--gray-dark);
	-webkit-appearance: none;
}

.nav-search-inline__input::placeholder {
	color: #b0b0b0;
}

.nav-search-inline__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	flex-shrink: 0;
}

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

/* 语言切换图标 */
.nav-lang-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 0;
	text-decoration: none;
	transition: opacity .2s;
}

.nav-lang-btn:hover {
	opacity: .8;
}

.nav-lang-btn img {
	width: 26px;
	height: 28px;
	display: block;
	object-fit: contain;
}

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

.lang-link {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	font-family: var(--font-nav);
	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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.utility-page,
.entry-page {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 0 80px;
	box-sizing: border-box;
}

.utility-page__title,
.entry-page__title {
	margin: 0 0 16px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	color: #222;
}

.utility-page__text {
	margin: 0;
	max-width: 640px;
	font-family: var(--font-nav);
	font-size: 15px;
	line-height: 1.8;
	color: #888;
}

.utility-page__actions {
	margin-top: 28px;
}

.utility-page__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 44px;
	padding: 0 22px;
	background: var(--navy);
	color: #fff;
	font-family: var(--font-nav);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-decoration: none;
	text-transform: uppercase;
}

.utility-page__btn:hover,
.utility-page__btn:focus-visible {
	opacity: .9;
}

.entry-page__content {
	font-family: var(--font-nav);
	font-size: 15px;
	line-height: 1.8;
	color: #555;
}

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

@media (max-width: 1200px) {
	.utility-page,
	.entry-page {
		padding: 32px 20px 56px;
	}
}

.nav-quote {
	background: var(--blue);
	color: #fff;
	padding: 0 22px;
	height: 36px;
	line-height: 36px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .2s;
	white-space: nowrap;
}

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

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

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

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

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

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(13, 43, 85, .45);
	z-index: 250;
	opacity: 0;
	transition: opacity .3s;
	border: none;
	padding: 0;
	cursor: pointer;
}

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

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

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

@media (max-width: 1100px) {
	#nav {
		padding: 0 20px;
		height: 80px;
	}
	body.nav-fixed { padding-top: 80px; }
	.nav-logo img,
	.nav-logo-img,
	.custom-logo {
		width: 72px;
		height: 52px;
	}
	.nav-toggle { display: flex; }
	.nav-right > .nav-search-inline,
	.nav-right > .nav-lang-btn { display: none; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.nav-drawer-search__submit img {
		width: 13px;
		height: 14px;
		display: block;
		object-fit: contain;
		filter: brightness(0) invert(1);
	}

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

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

	.nav-links a {
		height: auto;
		line-height: 1.4;
		padding: 15px 28px;
		font-size: 13px;
		border-bottom: 1px solid var(--border);
		white-space: normal;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.nav-drawer-quote a {
		display: block;
		background: var(--blue);
		color: #fff !important;
		text-align: center;
		font-weight: 700;
		letter-spacing: 1.5px;
		padding: 14px 20px !important;
		border: none !important;
		height: auto;
		line-height: 1.4;
	}

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

/* ── Footer ── */
.site-footer,
#footer.site-footer {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: var(--navy);
	color: #fff;
	font-family: var(--font-nav);
	box-sizing: border-box;
}

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

.site-footer__inner--main,
.site-footer__inner--bottom {
	padding-top: 0;
}

.site-footer__rule {
	display: block;
	width: 100%;
	max-width: 1920px;
	margin: 0;
	padding: 0;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, .55);
	box-sizing: border-box;
}

.site-footer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	padding-bottom: 28px;
}

.site-footer__logo {
	display: block;
	line-height: 0;
	flex-shrink: 0;
}

.site-footer__logo img {
	display: block;
	width: 173px;
	height: 103px;
	object-fit: contain;
}

.site-footer__follow {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.site-footer__follow-label {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #fff;
	white-space: nowrap;
}

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

.site-footer__social-item {
	margin: 0;
	padding: 0;
	line-height: 0;
}

.site-footer__social-link {
	display: inline-block;
	line-height: 0;
}

.site-footer__social-link img {
	display: block;
	width: 25px;
	height: 25px;
}

.site-footer__main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	padding: 48px 0 36px;
	box-sizing: border-box;
}

.site-footer__col--nav {
	flex: 0 0 200px;
	width: 200px;
}

.site-footer__col--form {
	flex: 0 0 404px;
	width: 404px;
	max-width: 100%;
}

.site-footer__col--contact {
	flex: 0 0 480px;
	width: 480px;
	max-width: 100%;
}

.site-footer__heading {
	margin: 0 0 18px;
	font-family: var(--font-nav);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #fff;
}

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

.site-footer__nav-item {
	margin: 0;
	padding: 0;
}

.site-footer__nav a {
	display: block;
	padding: 8px 0;
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	text-decoration: none;
	transition: opacity .2s;
}

.site-footer__nav a:hover {
	opacity: .85;
}

/* Footer CF7 */
.site-footer__cf7 .wpcf7 {
	margin: 0;
}

.site-footer__cf7 .wpcf7 form.footer-message-form {
	margin: 0;
}

.site-footer__cf7 .footer-message-form .ft-field {
	margin: 0 0 12px;
}

.site-footer__cf7 .footer-message-form .ft-field p {
	margin: 0;
}

.site-footer__cf7 .footer-message-form .wpcf7-form-control-wrap {
	display: block;
}

.site-footer__cf7 .footer-message-form .wpcf7-form-control.ft-input,
.site-footer__cf7 .footer-message-form .wpcf7-form-control.ft-textarea {
	display: block;
	width: 100%;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, .85);
	border-radius: 6px;
	background: rgba(255, 255, 255, .18);
	box-sizing: border-box;
	font-family: var(--font-nav);
	font-size: 14px;
	color: #fff;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.site-footer__cf7 .footer-message-form .wpcf7-form-control.ft-input {
	height: 42px;
}

.site-footer__cf7 .footer-message-form .wpcf7-form-control.ft-textarea {
	height: 96px;
	padding: 10px 14px;
	resize: vertical;
	line-height: 1.5;
}

.site-footer__cf7 .footer-message-form .wpcf7-form-control.ft-input::placeholder,
.site-footer__cf7 .footer-message-form .wpcf7-form-control.ft-textarea::placeholder {
	color: rgba(255, 255, 255, .9);
}

.site-footer__cf7 .footer-message-form .wpcf7-form-control.ft-input:focus,
.site-footer__cf7 .footer-message-form .wpcf7-form-control.ft-textarea:focus {
	border-color: #fff;
	background: rgba(255, 255, 255, .25);
}

.site-footer__cf7 .footer-message-form .wpcf7-submit.ft-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	min-width: 140px;
	height: 40px;
	padding: 0;
	margin-top: 4px;
	border: 1px solid rgba(255, 255, 255, .85);
	border-radius: 6px;
	background: rgba(255, 255, 255, .18);
	color: #fff;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s, color .2s;
}

.site-footer__cf7 .footer-message-form .wpcf7-submit.ft-submit:hover {
	background: rgba(255, 255, 255, .28);
	color: #fff;
}

.site-footer__cf7 .wpcf7-not-valid-tip {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #ffe0c2;
}

.site-footer__cf7 .wpcf7-response-output {
	margin: 12px 0 0;
	padding: 8px 10px;
	font-size: 13px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, .35);
	color: #fff;
}

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

.site-footer__contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px;
}

.site-footer__contact-item:last-child {
	margin-bottom: 0;
}

.site-footer__contact-icon {
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	line-height: 0;
}

.site-footer__contact-icon img {
	display: block;
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.site-footer__contact-text {
	flex: 1;
	min-width: 0;
	font-size: 16px;
	line-height: 1.55;
	color: #fff;
	text-decoration: none;
	word-break: break-word;
}

a.site-footer__contact-text:hover {
	opacity: .85;
}

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

.site-footer__bottom-info {
	font-size: 13px;
	line-height: 1.5;
	color: #fff;
}

.site-footer__bottom-info p {
	margin: 0;
}

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

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

.site-footer__sitemap {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}

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

@media (max-width: 1100px) {
	.site-footer__main {
		flex-wrap: wrap;
		gap: 32px;
	}

	.site-footer__col--nav {
		flex: 0 0 200px;
	}

	.site-footer__col--form,
	.site-footer__col--contact {
		flex: 1 1 320px;
		width: auto;
	}
}

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

	.site-footer__top {
		flex-direction: column;
		align-items: flex-start;
		padding-bottom: 24px;
	}

	.site-footer__logo img {
		width: 140px;
		height: auto;
	}

	.site-footer__main {
		flex-direction: column;
		gap: 28px;
		padding-bottom: 28px;
	}

	.site-footer__col--nav,
	.site-footer__col--form,
	.site-footer__col--contact {
		flex: 1 1 auto;
		width: 100%;
	}

	.site-footer__heading {
		margin-bottom: 14px;
	}
}

/* ── 内页面包屑（替代原海报） ── */
.page-breadcrumb {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
}

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

.breadcrumb-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-family: var(--font-nav);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: #000;
	flex-wrap: wrap;
}

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

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

.breadcrumb-nav .sep {
	color: #000;
	font-size: 18px;
}

.breadcrumb-nav .current {
	color: #000;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 640px) {
	.page-breadcrumb__inner {
		padding: 14px 16px;
	}

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

	.breadcrumb-nav .sep {
		font-size: 16px;
	}
}

/* ── 关于我们 ── */
.about-intro {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 33px 0 53px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

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

.about-intro__head {
	text-align: center;
	margin-bottom: 40px;
}

.about-intro__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.about-intro__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #888;
}

.about-intro__body {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.about-intro__media {
	flex: 0 0 720px;
	width: 720px;
	max-width: 100%;
	overflow: hidden;
}

.about-intro__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.about-intro__content {
	flex: 0 0 460px;
	width: 460px;
	max-width: 100%;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: #333;
	box-sizing: border-box;
}

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

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

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

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

@media (max-width: 1200px) {
	.about-intro {
		padding: 27px 20px 43px;
	}

	.about-intro__body {
		flex-wrap: wrap;
	}

	.about-intro__media,
	.about-intro__content {
		flex: 1 1 100%;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.about-intro {
		padding: 19px 16px 32px;
	}

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

	.about-intro__title {
		font-size: 26px;
	}

	.about-intro__subtitle {
		font-size: 14px;
	}
}

/* ── 关于我们 · 信息展示 ── */
.about-basic {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 13px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

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

.about-basic__head {
	text-align: center;
	margin-bottom: 40px;
}

.about-basic__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.about-basic__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #888;
}

.about-basic__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 40px;
	row-gap: 48px;
}

.about-basic__item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.about-basic__media {
	flex: 0 0 300px;
	width: 300px;
	max-width: 100%;
	overflow: hidden;
}

.about-basic__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.about-basic__text {
	flex: 0 0 280px;
	width: 280px;
	max-width: 100%;
	box-sizing: border-box;
}

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

.about-basic__desc {
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}

.about-basic__desc p {
	margin: 0 0 .75em;
}

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

.about-basic__desc ol,
.about-basic__desc ul {
	margin: 0 0 .75em;
	padding-left: 1.2em;
}

.about-basic__desc li {
	margin: 0 0 .35em;
}

@media (max-width: 1200px) {
	.about-basic {
		padding: 11px 20px 43px;
	}

	.about-basic__grid {
		column-gap: 28px;
		row-gap: 36px;
	}

	.about-basic__item {
		gap: 16px;
	}

	.about-basic__media {
		flex: 0 0 260px;
		width: 260px;
	}

	.about-basic__text {
		flex: 1 1 auto;
		width: auto;
	}
}

@media (max-width: 900px) {
	.about-basic__grid {
		grid-template-columns: 1fr;
		row-gap: 32px;
	}

	.about-basic__media {
		flex: 0 0 300px;
		width: 300px;
	}

	.about-basic__text {
		flex: 0 0 280px;
		width: 280px;
	}
}

@media (max-width: 640px) {
	.about-basic {
		padding: 8px 16px 32px;
	}

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

	.about-basic__title {
		font-size: 26px;
	}

	.about-basic__item {
		flex-direction: column;
		gap: 14px;
	}

	.about-basic__media,
	.about-basic__text {
		flex: 1 1 auto;
		width: 100%;
	}

	.about-basic__name {
		font-size: 20px;
	}
}

/* ── 关于我们 · 工厂展示 ── */
.about-factory {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 13px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

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

.about-factory__head {
	text-align: center;
	margin-bottom: 40px;
}

.about-factory__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.about-factory__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #888;
}

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

.about-factory__item {
	opacity: 1;
	transform: translateY(0);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .07s);
}

.about-factory.reveal-ready .about-factory__item {
	opacity: 0;
	transform: translateY(28px);
}

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

.about-factory__card {
	display: block;
}

.about-factory__media {
	overflow: hidden;
	border: 1px solid #d2d2d2;
	background: #f5f5f5;
	box-sizing: border-box;
}

.about-factory__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform .45s ease;
}

.about-factory__card:hover .about-factory__img {
	transform: scale(1.06);
}

.about-factory__name {
	margin: 12px 0 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #333;
}

@media (max-width: 1200px) {
	.about-factory {
		padding: 11px 20px 43px;
	}

	.about-factory__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px 16px;
	}
}

@media (max-width: 640px) {
	.about-factory {
		padding: 8px 16px 32px;
	}

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

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

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

	.about-factory__name {
		margin-top: 8px;
		font-size: 13px;
	}
}

/* ── 关于我们 · 证书板块 ── */
.about-cert {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 13px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

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

.about-cert__head {
	text-align: center;
	margin-bottom: 40px;
}

.about-cert__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.about-cert__subtitle {
	margin: 0 auto;
	max-width: 920px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #888;
}

.about-cert__media {
	width: 100%;
}

.about-cert__img {
	display: block;
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	opacity: 1;
	transform: translateY(0);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .08s);
}

.about-cert__img + .about-cert__img {
	margin-top: 24px;
}

.about-cert.reveal-ready .about-cert__img {
	opacity: 0;
	transform: translateY(24px);
}

.about-cert.is-inview .about-cert__img {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1200px) {
	.about-cert {
		padding: 11px 20px 43px;
	}
}

@media (max-width: 640px) {
	.about-cert {
		padding: 8px 16px 32px;
	}

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

	.about-cert__title {
		font-size: 26px;
	}
}

/* ── 关于我们 · 知名客户 ── */
.about-famous {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 13px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

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

.about-famous__head {
	text-align: center;
	margin-bottom: 40px;
}

.about-famous__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.about-famous__subtitle {
	margin: 0 auto;
	max-width: 920px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #888;
}

.about-famous__media {
	width: 100%;
}

.about-famous__img {
	display: block;
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	border-radius: 10px;
	opacity: 1;
	transform: translateY(0);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .08s);
}

.about-famous__img + .about-famous__img {
	margin-top: 24px;
}

.about-famous.reveal-ready .about-famous__img {
	opacity: 0;
	transform: translateY(24px);
}

.about-famous.is-inview .about-famous__img {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1200px) {
	.about-famous {
		padding: 11px 20px 43px;
	}
}

@media (max-width: 640px) {
	.about-famous {
		padding: 8px 16px 32px;
	}

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

	.about-famous__title {
		font-size: 26px;
	}

	.about-famous__img {
		border-radius: 8px;
	}
}

/* ── 关于我们 · 销售团队 ── */
.about-sales {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 13px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

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

.about-sales__head {
	text-align: center;
	margin-bottom: 32px;
}

.about-sales__title {
	margin: 0 0 12px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.about-sales__subtitle {
	margin: 0 auto;
	max-width: 960px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}

.about-sales__subtitle p {
	margin: 0 0 .5em;
}

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

.about-sales__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.about-sales__item {
	opacity: 1;
	transform: translateY(0);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .07s);
}

.about-sales.reveal-ready .about-sales__item {
	opacity: 0;
	transform: translateY(24px);
}

.about-sales.is-inview .about-sales__item {
	opacity: 1;
	transform: translateY(0);
}

.about-sales__media {
	overflow: hidden;
	background: #f5f5f5;
}

.about-sales__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform .45s ease;
}

.about-sales__item:hover .about-sales__img {
	transform: scale(1.04);
}

@media (max-width: 1200px) {
	.about-sales {
		padding: 11px 20px 43px;
	}
}

@media (max-width: 900px) {
	.about-sales__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 640px) {
	.about-sales {
		padding: 8px 16px 32px;
	}

	.about-sales__head {
		margin-bottom: 24px;
	}

	.about-sales__title {
		font-size: 26px;
	}

	.about-sales__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/* ── 关于我们 · 设计团队 ── */
.about-des {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 13px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

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

.about-des__head {
	text-align: center;
	margin-bottom: 32px;
}

.about-des__title {
	margin: 0 0 12px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.about-des__subtitle {
	margin: 0 auto;
	max-width: 960px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}

.about-des__subtitle p {
	margin: 0 0 .5em;
}

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

.about-des__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.about-des__item {
	opacity: 1;
	transform: translateY(0);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .07s);
}

.about-des.reveal-ready .about-des__item {
	opacity: 0;
	transform: translateY(24px);
}

.about-des.is-inview .about-des__item {
	opacity: 1;
	transform: translateY(0);
}

.about-des__media {
	overflow: hidden;
	background: #f5f5f5;
}

.about-des__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform .45s ease;
}

.about-des__item:hover .about-des__img {
	transform: scale(1.04);
}

@media (max-width: 1200px) {
	.about-des {
		padding: 11px 20px 43px;
	}
}

@media (max-width: 900px) {
	.about-des__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 640px) {
	.about-des {
		padding: 8px 16px 32px;
	}

	.about-des__head {
		margin-bottom: 24px;
	}

	.about-des__title {
		font-size: 26px;
	}

	.about-des__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/* ── 关于我们 · 质量展示 ── */
.about-qua {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 13px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

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

.about-qua__head {
	text-align: center;
	margin-bottom: 32px;
}

.about-qua__title {
	margin: 0 0 12px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.about-qua__subtitle {
	margin: 0 auto;
	max-width: 960px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}

.about-qua__subtitle p {
	margin: 0 0 .5em;
}

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

.about-qua__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.about-qua__item {
	opacity: 1;
	transform: translateY(0);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .07s);
}

.about-qua.reveal-ready .about-qua__item {
	opacity: 0;
	transform: translateY(24px);
}

.about-qua.is-inview .about-qua__item {
	opacity: 1;
	transform: translateY(0);
}

.about-qua__media {
	overflow: hidden;
	background: #f5f5f5;
}

.about-qua__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform .45s ease;
}

.about-qua__item:hover .about-qua__img {
	transform: scale(1.04);
}

@media (max-width: 1200px) {
	.about-qua {
		padding: 11px 20px 43px;
	}
}

@media (max-width: 900px) {
	.about-qua__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 640px) {
	.about-qua {
		padding: 8px 16px 32px;
	}

	.about-qua__head {
		margin-bottom: 24px;
	}

	.about-qua__title {
		font-size: 26px;
	}

	.about-qua__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/* ── 关于我们 · 生产流程 ── */
.about-lc {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 13px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

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

.about-lc__head {
	text-align: center;
	margin-bottom: 32px;
}

.about-lc__title {
	margin: 0 0 12px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.about-lc__subtitle {
	margin: 0 auto;
	max-width: 960px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}

.about-lc__subtitle p {
	margin: 0 0 .5em;
}

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

.about-lc__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.about-lc__item {
	opacity: 1;
	transform: translateY(0);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .07s);
}

.about-lc.reveal-ready .about-lc__item {
	opacity: 0;
	transform: translateY(24px);
}

.about-lc.is-inview .about-lc__item {
	opacity: 1;
	transform: translateY(0);
}

.about-lc__media {
	overflow: hidden;
	background: #f5f5f5;
}

.about-lc__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform .45s ease;
}

.about-lc__item:hover .about-lc__img {
	transform: scale(1.04);
}

.about-lc__caption {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 0;
	font-family: var(--font-nav);
	line-height: 1.35;
	color: #222;
}

.about-lc__num {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: .5px;
}

.about-lc__name {
	font-size: 16px;
	font-weight: 400;
}

@media (max-width: 1200px) {
	.about-lc {
		padding: 11px 20px 43px;
	}
}

@media (max-width: 900px) {
	.about-lc__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 640px) {
	.about-lc {
		padding: 8px 16px 32px;
	}

	.about-lc__head {
		margin-bottom: 24px;
	}

	.about-lc__title {
		font-size: 26px;
	}

	.about-lc__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.about-lc__num {
		font-size: 22px;
	}

	.about-lc__name {
		font-size: 15px;
	}
}

/* ── 关于我们 · 展会展示 ── */
.about-exh {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 13px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

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

.about-exh__head {
	text-align: center;
	margin-bottom: 40px;
}

.about-exh__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.about-exh__subtitle {
	margin: 0 auto;
	max-width: 920px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #888;
}

.about-exh__subtitle p {
	margin: 0 0 .5em;
}

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

.about-exh__media {
	width: 100%;
}

.about-exh__img {
	display: block;
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	opacity: 1;
	transform: translateY(0);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .08s);
}

.about-exh__img + .about-exh__img {
	margin-top: 24px;
}

.about-exh.reveal-ready .about-exh__img {
	opacity: 0;
	transform: translateY(24px);
}

.about-exh.is-inview .about-exh__img {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1200px) {
	.about-exh {
		padding: 11px 20px 43px;
	}
}

@media (max-width: 640px) {
	.about-exh {
		padding: 8px 16px 32px;
	}

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

	.about-exh__title {
		font-size: 26px;
	}
}

/* ── 新闻列表 ── */
.news-list {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
	overflow: hidden;
}

.news-list,
.news-list .pagination .page-numbers a,
.news-list .pagination .page-numbers span {
	font-family: var(--font-nav);
}

.news-list__head {
	max-width: 1200px;
	margin: 0 auto 40px;
	padding: 0;
	text-align: center;
	box-sizing: border-box;
}

.news-list__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.news-list__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #888;
}

.news-list__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.news-list__item {
	position: relative;
	width: 100%;
}

.news-list__item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: min(1200px, 100%);
	transform: translateX(-50%);
	background: #f2f2f2;
	z-index: 0;
	pointer-events: none;
	transition: width .45s cubic-bezier(.25, .46, .45, .94);
}

.news-list__item:hover::before,
.news-list__item:focus-within::before {
	width: 100%;
}

.news-list__card {
	position: relative;
	z-index: 1;
	margin: 0;
}

.news-list__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 0;
	display: flex;
	align-items: center;
	gap: 32px;
	box-sizing: border-box;
}

.news-list__date {
	flex: 0 0 150px;
	width: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--navy);
	line-height: 1;
}

.news-list__day {
	font-family: var(--font-nav);
	font-size: 52px;
	font-weight: 700;
	letter-spacing: -1px;
}

.news-list__ym {
	margin-top: 8px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .3px;
	white-space: nowrap;
}

.news-list__media {
	flex: 0 0 320px;
	width: 320px;
	height: 192px;
	overflow: hidden;
	background: #e8e8e8;
	text-decoration: none;
}

.news-list__img,
.news-list__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-list__placeholder {
	background: #e0e0e0;
}

.news-list__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.news-list__name {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: #222;
}

.news-list__name a {
	color: inherit;
	text-decoration: none;
	transition: color .2s;
}

.news-list__name a:hover,
.news-list__name a:focus-visible {
	color: var(--navy);
}

.news-list__excerpt {
	margin: 0 0 16px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #888;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	overflow: hidden;
}

.news-list__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	height: 40px;
	padding: 0 22px;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font-family: var(--font-nav);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .25s;
}

.news-list__more:hover,
.news-list__more:focus-visible {
	background: var(--blue-mid);
	color: #fff;
}

.news-list__pager {
	padding-top: 40px;
}

.news-list .pagination .page-numbers .prev,
.news-list .pagination .page-numbers .next {
	min-width: 40px;
	width: 40px;
	padding: 0;
	font-size: 16px;
	letter-spacing: 0;
	text-transform: none;
}

.news-list__empty {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	text-align: center;
	color: #888;
	font-size: 14px;
}

@media (max-width: 1240px) {
	.news-list__head {
		padding: 0 20px;
	}

	.news-list__inner {
		padding: 20px;
		gap: 20px;
	}

	.news-list__media {
		flex: 0 0 260px;
		width: 260px;
		height: 156px;
	}

	.news-list__day {
		font-size: 42px;
	}
}

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

	.news-list__inner {
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.news-list__date {
		flex: 0 0 auto;
		width: auto;
		flex-direction: row;
		align-items: baseline;
		gap: 10px;
	}

	.news-list__day {
		font-size: 32px;
	}

	.news-list__ym {
		margin-top: 0;
		font-size: 13px;
	}

	.news-list__media {
		flex: 1 1 100%;
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 10;
	}

	.news-list__body {
		flex: 1 1 100%;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.news-list__head {
		margin-bottom: 28px;
		padding: 0 16px;
	}

	.news-list__title {
		font-size: 26px;
	}

	.news-list__inner {
		padding: 16px;
		gap: 16px;
	}

	.news-list__name {
		font-size: 16px;
	}

	.news-list__excerpt {
		font-size: 13px;
		-webkit-line-clamp: 4;
		line-clamp: 4;
	}

	.news-list__pager {
		padding-top: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.news-list__item::before {
		transition: none;
	}
}

/* ── 新闻详情 ── */
.news-detail {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 0 60px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

.news-detail,
.news-detail__content,
.news-detail__content * {
	font-family: var(--font-nav) !important;
}

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

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

.news-detail__title {
	margin: 0 0 12px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.news-detail__date {
	display: block;
	margin: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--navy);
}

.news-detail__content {
	margin: 0 0 40px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.9;
	color: #333;
	text-align: center;
}

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

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

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

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

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

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

.news-detail__gallery-item {
	margin: 0;
	overflow: hidden;
	background: #f5f5f5;
}

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

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

@media (max-width: 1200px) {
	.news-detail {
		padding: 32px 20px 48px;
	}

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

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

@media (max-width: 640px) {
	.news-detail {
		padding: 24px 16px 40px;
	}

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

	.news-detail__title {
		font-size: 24px;
	}

	.news-detail__content {
		margin-bottom: 28px;
		font-size: 13px;
	}

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

@media (prefers-reduced-motion: reduce) {
	.news-detail__gallery-img {
		transition: none;
	}
}

/* ── Order 下单页 ── */
.order-page {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 0 70px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

.order-page,
.order-page * {
	font-family: var(--font-nav);
}

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

.order-page__head {
	text-align: center;
	margin-bottom: 36px;
}

.order-page__title {
	margin: 0 0 12px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.3;
	color: #222;
}

.order-page__subtitle {
	margin: 0 auto;
	max-width: 820px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #666;
}

.order-page__form {
	margin-bottom: 56px;
}

.order-page__form .wpcf7 {
	margin: 0;
}

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

.order-form__row {
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
}

.order-form__row--4 {
	grid-template-columns: repeat(4, 1fr);
}

.order-form__row--3 {
	grid-template-columns: 1fr 1fr 2fr;
}

.order-form__field {
	min-width: 0;
}

.order-form__field p,
.order-form__actions p {
	margin: 0;
}

.order-form__field br {
	display: none;
}

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

.order-form .wpcf7-form-control.order-input,
.order-form .wpcf7-form-control.order-select,
.order-form .wpcf7-form-control.order-textarea {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 18px;
	border: none;
	border-radius: 8px;
	background: #b1b1b1;
	box-sizing: border-box;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	outline: none;
	transition: background .2s, box-shadow .2s;
	-webkit-appearance: none;
	appearance: none;
}

.order-form .wpcf7-form-control.order-input::placeholder,
.order-form .wpcf7-form-control.order-textarea::placeholder {
	color: rgba(255, 255, 255, .92);
	opacity: 1;
}

.order-form .wpcf7-form-control.order-input:focus,
.order-form .wpcf7-form-control.order-select:focus,
.order-form .wpcf7-form-control.order-textarea:focus {
	background: #a3a3a3;
	box-shadow: 0 0 0 2px rgba(254, 126, 3, .35);
}

.order-form .wpcf7-form-control.order-select {
	padding-right: 40px;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1.1 1.2L6 6.1l4.9-4.9 1.1 1.1L6 8.3.0 2.3z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-color: #b1b1b1;
}

.order-form .wpcf7-form-control.order-select option {
	color: #222;
	background: #fff;
}

.order-form .wpcf7-form-control.order-textarea {
	height: 140px;
	padding: 16px 18px;
	line-height: 1.55;
	resize: vertical;
}

.order-form__actions {
	margin-top: 8px;
	text-align: center;
}

.order-form .wpcf7-submit.order-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 44px;
	padding: 0 32px;
	border: none;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .4px;
	cursor: pointer;
	transition: background .25s;
}

.order-form .wpcf7-submit.order-submit:hover {
	background: var(--blue-mid);
}

.order-page__form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #d63638;
}

.order-page__form .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 10px 14px;
	font-size: 13px;
	border-radius: 6px;
}

.order-page__steps-title {
	margin: 0 0 24px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.35;
	color: #222;
}

.order-page__steps-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.order-page__step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.order-page__step-num {
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 36px;
	text-align: center;
}

.order-page__step-desc {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 6px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}

.order-page__step-desc > *:first-child {
	margin-top: 0;
}

.order-page__step-desc > *:last-child {
	margin-bottom: 0;
}

.order-page__step-desc p {
	margin: 0 0 .55em;
}

.order-page__step-desc p:last-child {
	margin-bottom: 0;
}

.order-page__step-desc .pay-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 36px;
	margin: 8px 0 0;
	padding: 0;
	list-style: none;
}

.order-page__step-desc .pay-list li {
	margin: 0;
	font-size: 16px;
	color: #333;
}

@media (max-width: 1200px) {
	.order-page {
		padding: 32px 20px 56px;
	}
}

@media (max-width: 900px) {
	.order-form__row--4,
	.order-form__row--3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.order-page__title {
		font-size: 28px;
	}

	.order-page__steps-title {
		font-size: 28px;
	}
}

@media (max-width: 640px) {
	.order-page {
		padding: 24px 16px 44px;
	}

	.order-page__head {
		margin-bottom: 24px;
	}

	.order-page__title {
		font-size: 24px;
	}

	.order-page__form {
		margin-bottom: 40px;
	}

	.order-form__row--4,
	.order-form__row--3 {
		grid-template-columns: 1fr;
	}

	.order-form .wpcf7-form-control.order-textarea {
		height: 160px;
	}

	.order-page__step-desc .pay-list {
		flex-direction: column;
		gap: 4px;
	}
}

/* ── 联系我们 ── */
.contact-page {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 0 70px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

.contact-page,
.contact-page * {
	font-family: var(--font-nav);
}

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

.contact-page__editor {
	width: 100%;
	max-width: 1200px;
	margin: 40px auto 0;
}

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

.contact-page__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}

.contact-page__item--reverse {
	flex-direction: row-reverse;
}

.contact-page__text {
	flex: 1 1 0;
	min-width: 0;
	max-width: 520px;
}

.contact-page__name {
	margin: 0 0 18px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	color: #222;
}

.contact-page__desc {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
	color: #444;
}

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

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

.contact-page__desc p {
	margin: 0 0 .85em;
}

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

.contact-page__desc a {
	color: inherit;
	text-decoration: none;
	transition: color .2s;
}

.contact-page__desc a:hover,
.contact-page__desc a:focus-visible {
	color: var(--navy);
}

.contact-page__desc img {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 8px;
	vertical-align: middle;
	object-fit: contain;
}

.contact-page__desc ul,
.contact-page__desc ol {
	margin: 0 0 .85em;
	padding-left: 1.2em;
}

.contact-page__desc li {
	margin: 0 0 .35em;
}

.contact-page__media {
	flex: 0 0 560px;
	width: 560px;
	max-width: 100%;
	overflow: hidden;
	background: #f5f5f5;
}

.contact-page__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

@media (max-width: 1200px) {
	.contact-page {
		padding: 32px 20px 56px;
	}

	.contact-page__item {
		gap: 28px;
	}

	.contact-page__media {
		flex: 0 0 46%;
		width: 46%;
	}

	.contact-page__text {
		max-width: none;
	}
}

@media (max-width: 900px) {
	.contact-page__list {
		gap: 44px;
	}

	.contact-page__item,
	.contact-page__item--reverse {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
	}

	.contact-page__media {
		flex: 1 1 auto;
		width: 100%;
		order: -1;
	}

	.contact-page__name {
		font-size: 26px;
	}
}

@media (max-width: 640px) {
	.contact-page {
		padding: 24px 16px 44px;
	}

	.contact-page__list {
		gap: 36px;
	}

	.contact-page__name {
		font-size: 22px;
		margin-bottom: 14px;
	}

	.contact-page__desc {
		font-size: 14px;
	}
}

/* ── 定制页面 · 步骤 ── */
.customize-steps {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 0 70px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

.customize-steps,
.customize-steps * {
	font-family: var(--font-nav);
}

.customize-steps--bottom {
	padding-top: 0;
}

.customize-steps__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.customize-steps__head {
	text-align: center;
	margin-bottom: 48px;
}

.customize-steps__title {
	margin: 0 0 12px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.3;
	color: #222;
}

.customize-steps__subtitle {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #888;
}

.customize-steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.customize-steps__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 57px;
}

.customize-steps__item--reverse {
	flex-direction: row-reverse;
}

.customize-steps__media {
	flex: 0 0 485px;
	width: 485px;
	max-width: 100%;
	overflow: hidden;
	background: #f5f5f5;
}

.customize-steps__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.customize-steps__text {
	flex: 0 0 658px;
	width: 658px;
	max-width: 100%;
	box-sizing: border-box;
}

.customize-steps__name {
	margin: 0 0 14px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	color: #222;
}

.customize-steps__desc {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: #555;
}

.customize-steps__desc > *:first-child {
	margin-top: 0;
}

.customize-steps__desc > *:last-child {
	margin-bottom: 0;
}

.customize-steps__desc p {
	margin: 0 0 1em;
}

.customize-steps__desc p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1200px) {
	.customize-steps {
		padding: 32px 20px 56px;
	}

	.customize-steps__item {
		gap: 28px;
	}

	.customize-steps__media {
		flex: 0 0 40%;
		width: 40%;
	}

	.customize-steps__text {
		flex: 1 1 0;
		width: auto;
	}
}

@media (max-width: 900px) {
	.customize-steps__head {
		margin-bottom: 32px;
	}

	.customize-steps__title {
		font-size: 26px;
	}

	.customize-steps__list {
		gap: 36px;
	}

	.customize-steps__item,
	.customize-steps__item--reverse {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
	}

	.customize-steps__media,
	.customize-steps__text {
		flex: 1 1 auto;
		width: 100%;
	}

	.customize-steps__name {
		font-size: 20px;
	}
}

@media (max-width: 640px) {
	.customize-steps {
		padding: 24px 16px 44px;
	}

	.customize-steps__title {
		font-size: 22px;
	}
}

/* ── 定制页面 · 材料选项 ── */
.customize-center {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 0 70px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

.customize-center,
.customize-center * {
	font-family: var(--font-nav);
}

.customize-center__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

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

.customize-center__item {
	min-width: 0;
}

.customize-center__media {
	overflow: hidden;
	background: #f5f5f5;
	aspect-ratio: 1 / 1;
}

.customize-center__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.customize-center__desc {
	margin-top: 14px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #555;
}

.customize-center__desc > *:first-child {
	margin-top: 0;
}

.customize-center__desc > *:last-child {
	margin-bottom: 0;
}

.customize-center__desc p {
	margin: 0 0 .7em;
}

.customize-center__desc p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1200px) {
	.customize-center {
		padding: 0 20px 56px;
	}
}

@media (max-width: 900px) {
	.customize-center__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 16px;
	}
}

@media (max-width: 640px) {
	.customize-center {
		padding: 0 16px 44px;
	}

	.customize-center__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.customize-center__desc {
		font-size: 13px;
	}
}

/* ── 定制页面 · 设计资源 ── */
.customize-resource {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 20px 0 0;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

.customize-resource,
.customize-resource * {
	font-family: var(--font-nav);
}

.customize-resource__inner,
.customize-resource__row-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.customize-resource__head {
	text-align: center;
	margin-bottom: 40px;
}

.customize-resource__title {
	margin: 0 0 12px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.3;
	color: #222;
}

.customize-resource__subtitle {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #888;
}

.customize-resource__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.customize-resource__row {
	width: 100%;
	background: #fff;
	box-sizing: border-box;
}

.customize-resource__row:nth-child(odd) {
	background: #f4f4f4;
}

.customize-resource__row-inner {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 40px 0;
}

.customize-resource__label {
	flex: 0 0 176px;
	width: 176px;
	box-sizing: border-box;
}

.customize-resource__num {
	display: block;
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 1px;
	color: var(--navy);
}

.customize-resource__name {
	margin: 10px 0 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #555;
}

.customize-resource__gallery {
	flex: 0 0 1010px;
	width: 1010px;
	max-width: 100%;
	position: relative;
	box-sizing: border-box;
}

.customize-resource__gallery--carousel {
	padding: 0 28px;
}

.customize-resource__viewport {
	width: 100%;
	overflow: hidden;
	container-type: inline-size;
}

.customize-resource__track {
	list-style: none;
	margin: 0;
	padding: 0;
}

.customize-resource__gallery--static .customize-resource__track {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.customize-resource__gallery--carousel .customize-resource__track {
	display: flex;
	gap: 14px;
	transition: transform .4s ease;
	will-change: transform;
}

.customize-resource__item {
	min-width: 0;
}

.customize-resource__gallery--carousel .customize-resource__item {
	flex: 0 0 calc((100cqi - 42px) / 4);
	width: calc((100cqi - 42px) / 4);
}

.customize-resource__media {
	overflow: hidden;
	background: #eaeaea;
	aspect-ratio: 1 / 1;
}

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

.customize-resource__item:hover .customize-resource__img {
	transform: scale(1.06);
}

.customize-resource__caption {
	margin: 12px 0 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #333;
}

.customize-resource__nav {
	position: absolute;
	z-index: 2;
	top: 36%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	background: transparent;
	color: #b0b0b0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color .2s;
}

.customize-resource__nav:hover,
.customize-resource__nav:focus-visible {
	color: #888;
}

.customize-resource__nav:disabled {
	opacity: .35;
	cursor: default;
	pointer-events: none;
}

.customize-resource__nav--prev {
	left: 0;
}

.customize-resource__nav--next {
	right: 0;
}

@media (max-width: 1200px) {
	.customize-resource {
		padding: 16px 0 0;
	}

	.customize-resource__inner,
	.customize-resource__row-inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.customize-resource__row-inner {
		gap: 16px;
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.customize-resource__label {
		flex: 0 0 140px;
		width: 140px;
	}

	.customize-resource__gallery {
		flex: 1 1 0;
		width: auto;
	}

	.customize-resource__num {
		font-size: 40px;
	}
}

@media (max-width: 900px) {
	.customize-resource__head {
		margin-bottom: 28px;
	}

	.customize-resource__title {
		font-size: 26px;
	}

	.customize-resource__row-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.customize-resource__label {
		flex: 1 1 auto;
		width: 100%;
		display: flex;
		align-items: baseline;
		gap: 12px;
	}

	.customize-resource__name {
		margin: 0;
	}

	.customize-resource__gallery--static .customize-resource__track {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.customize-resource__gallery--carousel {
		padding: 0 24px;
	}

	.customize-resource__gallery--carousel .customize-resource__item {
		flex-basis: calc((100cqi - 28px) / 3);
		width: calc((100cqi - 28px) / 3);
	}
}

@media (max-width: 640px) {
	.customize-resource {
		padding: 12px 0 0;
	}

	.customize-resource__inner,
	.customize-resource__row-inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.customize-resource__title {
		font-size: 22px;
	}

	.customize-resource__num {
		font-size: 32px;
	}

	.customize-resource__name {
		font-size: 15px;
	}

	.customize-resource__gallery--static .customize-resource__track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.customize-resource__gallery--carousel {
		padding: 0 22px;
	}

	.customize-resource__gallery--carousel .customize-resource__item {
		flex-basis: calc((100cqi - 14px) / 2);
		width: calc((100cqi - 14px) / 2);
	}

	.customize-resource__caption {
		margin-top: 8px;
		font-size: 13px;
	}
}

/* ── 下载列表 ── */
.download-list {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 0 70px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

.download-list,
.download-list * {
	font-family: var(--font-nav);
}

.download-list__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.download-list__head {
	text-align: left;
	margin-bottom: 36px;
}

.download-list__title {
	margin: 0 0 12px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	color: #222;
}

.download-list__subtitle {
	margin: 0;
	max-width: 1200px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: #888;
}

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

.download-list__card {
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: 140px;
	padding: 16px 28px;
	background: #f4f4f4;
	border-radius: 10px;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.download-list__card:focus-visible {
	outline: 2px solid var(--navy);
	outline-offset: 2px;
}

.download-list__icon {
	flex: 0 0 97px;
	width: 97px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.download-list__icon img {
	display: block;
	width: 97px;
	height: 108px;
	object-fit: contain;
}

.download-list__body {
	flex: 1 1 auto;
	min-width: 0;
}

.download-list__name {
	display: block;
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #222;
	transition: color .2s;
}

.download-list__card:hover .download-list__name,
.download-list__card:focus-visible .download-list__name {
	color: var(--navy);
}

.download-list__desc {
	display: -webkit-box;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #777;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.download-list__btn {
	flex: 0 0 49px;
	width: 49px;
	height: 49px;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform .2s, opacity .2s;
}

.download-list__btn img {
	display: block;
	width: 49px;
	height: 49px;
	object-fit: contain;
}

.download-list__card:hover .download-list__btn,
.download-list__card:focus-visible .download-list__btn {
	opacity: .88;
	transform: translateY(1px);
}

.download-list__pager {
	margin-top: 40px;
}

.download-list .pagination .page-numbers .prev,
.download-list .pagination .page-numbers .next {
	min-width: 40px;
	width: 40px;
	padding: 0;
	font-size: 16px;
	letter-spacing: 0;
	text-transform: none;
}

.download-list__empty {
	margin: 0;
	text-align: center;
	font-size: 14px;
	color: #888;
}

@media (max-width: 1200px) {
	.download-list {
		padding: 32px 20px 56px;
	}
}

@media (max-width: 640px) {
	.download-list {
		padding: 24px 16px 44px;
	}

	.download-list__title {
		font-size: 26px;
	}

	.download-list__card {
		gap: 14px;
		padding: 16px 16px;
	}

	.download-list__name {
		font-size: 17px;
	}

	.download-list__btn {
		flex: 0 0 49px;
		width: 49px;
		height: 49px;
	}
}

/* ── 产品列表 / 分类列表 ── */
.products-catalog {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 0 70px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

.products-catalog,
.products-catalog * {
	font-family: var(--font-nav);
}

.products-catalog__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	gap: 34px;
	box-sizing: border-box;
}

.products-nav {
	flex: 0 0 190px;
	width: 190px;
}

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

.products-nav__item + .products-nav__item {
	border-top: 1px solid #eee;
}

.products-nav__row {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 48px;
}

.products-nav__link {
	flex: 1 1 auto;
	min-width: 0;
	color: #222;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	transition: color .2s;
}

.products-nav__link:hover,
.products-nav__link:focus-visible {
	color: var(--navy);
}

.products-nav__item.is-current > .products-nav__row .products-nav__link,
.products-nav__link.is-current {
	color: var(--navy);
	font-weight: 700;
}

.products-nav__item.is-current-parent > .products-nav__row .products-nav__link {
	color: #222;
	font-weight: 700;
}

.products-nav__toggle {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	background: transparent;
	color: #999;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color .2s, transform .2s;
}

.products-nav__toggle:hover,
.products-nav__toggle:focus-visible {
	color: var(--navy);
}

.products-nav__toggle svg {
	display: block;
	transition: transform .25s ease;
}

.products-nav__item.is-open > .products-nav__row .products-nav__toggle svg {
	transform: rotate(90deg);
}

.products-nav__sub {
	display: none;
	padding: 0 0 12px 12px;
}

.products-nav__item.is-open > .products-nav__sub {
	display: block;
}

.products-nav__sub-item {
	margin: 0;
}

.products-nav__sub-link {
	display: block;
	padding: 7px 0;
	color: #888;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	transition: color .2s;
}

.products-nav__sub-link:hover,
.products-nav__sub-link:focus-visible {
	color: var(--navy);
}

.products-nav__sub-link.is-current,
.products-nav__sub-item.is-current .products-nav__sub-link {
	color: var(--navy);
	font-weight: 600;
}

.products-catalog__main {
	flex: 0 0 976px;
	width: 976px;
	max-width: 100%;
	min-width: 0;
}

.products-catalog__head {
	margin-bottom: 28px;
}

.products-catalog__title {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.25;
	color: #222;
}

.products-catalog__desc {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: #777;
}

.products-catalog__desc > *:first-child {
	margin-top: 0;
}

.products-catalog__desc > *:last-child {
	margin-bottom: 0;
}

.products-catalog__desc p {
	margin: 0 0 1em;
}

.products-catalog__desc p:last-child {
	margin-bottom: 0;
}

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

.products-catalog__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 12px;
	background: #f4f4f4;
	border-radius: 6px;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
	transition: transform .25s ease, box-shadow .25s ease;
}

.products-catalog__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
}

.products-catalog__media {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.products-catalog__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform .4s ease;
}

.products-catalog__card:hover .products-catalog__img {
	transform: scale(1.04);
}

.products-catalog__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 12px;
	min-height: 32px;
}

.products-catalog__name {
	flex: 1;
	min-width: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	color: #222;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.products-catalog__more {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.products-catalog__pager {
	margin-top: 40px;
}

.products-catalog .pagination .page-numbers .prev,
.products-catalog .pagination .page-numbers .next {
	min-width: 40px;
	width: 40px;
	padding: 0;
	font-size: 16px;
	letter-spacing: 0;
	text-transform: none;
}

.products-catalog__empty {
	margin: 0;
	font-size: 14px;
	color: #888;
}

@media (max-width: 1200px) {
	.products-catalog {
		padding: 32px 20px 56px;
	}

	.products-catalog__inner {
		gap: 24px;
	}

	.products-catalog__main {
		flex: 1 1 auto;
		width: auto;
	}

	.products-catalog__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}
}

@media (max-width: 900px) {
	.products-catalog__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
	}

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

	.products-catalog__main {
		width: 100%;
	}

	.products-catalog__title {
		font-size: 26px;
	}

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

@media (max-width: 640px) {
	.products-catalog {
		padding: 24px 16px 44px;
	}

	.products-catalog__title {
		font-size: 22px;
	}

	.products-catalog__grid {
		gap: 12px;
	}

	.products-catalog__pager {
		margin-top: 28px;
	}
}

/* ── 产品详情 ── */
.product-detail {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 0 70px;
	background: #fff;
	box-sizing: border-box;
	font-family: var(--font-nav);
}

.product-detail,
.product-detail * {
	font-family: var(--font-nav);
}

.product-detail__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	gap: 34px;
	box-sizing: border-box;
}

.product-detail__main {
	flex: 0 0 976px;
	width: 976px;
	max-width: 100%;
	min-width: 0;
}

.product-detail__showcase {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 48px;
}

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

.product-gallery__thumbs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 80px;
}

.product-gallery__thumb {
	position: relative;
	display: block;
	width: 80px;
	height: 80px;
	padding: 0;
	border: 1px solid transparent;
	background: #f4f4f4;
	cursor: pointer;
	overflow: hidden;
	box-sizing: border-box;
	transition: border-color .2s;
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible {
	border-color: var(--navy);
}

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

.product-gallery__stage {
	position: relative;
	width: 410px;
	height: 410px;
	max-width: 100%;
	background: #f4f4f4;
	overflow: hidden;
}

.product-gallery__image,
.product-gallery__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	background: #f4f4f4;
}

.product-gallery__play {
	position: absolute;
	inset: 0;
	margin: auto;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.product-gallery__play--sm {
	width: 28px;
	height: 28px;
	pointer-events: none;
}

.product-gallery__play--lg {
	width: 72px;
	height: 72px;
	z-index: 2;
}

.product-gallery__play span,
.product-gallery__play--sm::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 14px;
	border-color: transparent transparent transparent #fff;
	margin-left: 3px;
}

.product-gallery__play--lg span {
	border-width: 12px 0 12px 20px;
	margin-left: 4px;
}

.product-gallery__play--lg::before {
	display: none;
}

.product-gallery__thumb .product-gallery__play--sm {
	inset: 0;
}

.product-gallery.is-playing .product-gallery__play--lg {
	display: none;
}

.product-detail__info {
	flex: 0 0 420px;
	width: 420px;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.product-detail__name {
	margin: 0 0 16px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	color: #222;
}

.product-detail__content {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: #666;
}

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

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

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

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

.product-detail__inquiry {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 28px;
	min-width: 180px;
	height: 46px;
	padding: 0 28px;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .5px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s, transform .2s;
}

.product-detail__inquiry:hover,
.product-detail__inquiry:focus-visible {
	background: var(--blue-mid);
	color: #fff;
}

.product-detail__section-title {
	margin: 0 0 8px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: #222;
}

.product-detail__section-sub {
	margin: 0 0 22px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: #888;
}

.product-params {
	margin-bottom: 48px;
}

.product-params__body {
	font-size: 14px;
	line-height: 1.8;
	color: #555;
}

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

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

.product-params__body table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1em;
}

.product-params__body th,
.product-params__body td {
	padding: 10px 12px;
	border: 1px solid #e5e5e5;
	text-align: left;
	vertical-align: top;
}

.product-params__body img {
	max-width: 100%;
	height: auto;
}

.product-related__gallery {
	position: relative;
	width: 100%;
}

.product-related__gallery--carousel {
	display: block;
	padding: 0;
	overflow: visible;
}

.product-related__viewport {
	width: 100%;
	overflow: hidden;
	container-type: inline-size;
}

.product-related__track {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-related__gallery--static .product-related__track {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.product-related__gallery--carousel .product-related__track {
	display: flex;
	gap: 14px;
	transition: transform .4s ease;
	will-change: transform;
}

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

.product-related__gallery--carousel .product-related__item {
	flex: 0 0 calc((100cqi - 42px) / 4);
	width: calc((100cqi - 42px) / 4);
}

.product-related__nav {
	position: absolute;
	z-index: 2;
	top: 36%;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	background: transparent;
	color: #b0b0b0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color .2s;
}

.product-related__nav:hover,
.product-related__nav:focus-visible {
	color: #888;
}

.product-related__nav:disabled {
	opacity: .35;
	cursor: default;
	pointer-events: none;
}

.product-related__nav--prev {
	left: 0;
	transform: translate(-100%, -50%);
	margin-left: -8px;
}

.product-related__nav--next {
	right: 0;
	transform: translate(100%, -50%);
	margin-right: -8px;
}

@media (max-width: 1200px) {
	.product-detail {
		padding: 32px 20px 56px;
	}

	.product-detail__inner {
		gap: 24px;
	}

	.product-detail__main {
		flex: 1 1 auto;
		width: auto;
	}

	.product-detail__showcase {
		flex-wrap: wrap;
	}

	.product-detail__info {
		flex: 1 1 100%;
		width: 100%;
	}
}

@media (max-width: 900px) {
	.product-detail__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
	}

	.product-detail__main {
		width: 100%;
	}

	.product-gallery {
		width: 100%;
	}

	.product-gallery__stage {
		flex: 1 1 auto;
		width: auto;
		aspect-ratio: 1 / 1;
		height: auto;
	}

	.product-detail__section-title {
		font-size: 28px;
	}

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

	.product-related__gallery--carousel .product-related__item {
		flex-basis: calc((100cqi - 14px) / 2);
		width: calc((100cqi - 14px) / 2);
	}

	.product-related__nav--prev,
	.product-related__nav--next {
		transform: translateY(-50%);
		margin: 0;
	}

	.product-related__nav--prev {
		left: 6px;
	}

	.product-related__nav--next {
		right: 6px;
	}
}

@media (max-width: 640px) {
	.product-detail {
		padding: 24px 16px 44px;
	}

	.product-detail__showcase {
		flex-direction: column;
		gap: 16px;
	}

	.product-gallery {
		flex-direction: column-reverse;
		width: 100%;
	}

	.product-gallery__thumbs {
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
	}

	.product-gallery__stage {
		width: 100%;
	}

	.product-detail__name {
		font-size: 22px;
	}
}

/* ── 内页分页 / 上下篇 ── */
.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 a.page-numbers,
.pagination span.page-numbers,
.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 a.page-numbers span,
.pagination span.page-numbers span {
	border: 0;
	min-width: 0;
	height: auto;
	padding: 0;
	margin: 0;
	background: transparent;
	display: inline;
	font: inherit;
	color: inherit;
	line-height: 1;
}

.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,
.pagination span.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;
	}
}
