/* ===== public/static/header/static/css/fonts.css ===== */
/* Blinker 200/300/700 + Play 700 — latin subset for header/hero template */

@font-face {
	font-family: "Blinker";
	font-style: normal;
	font-weight: 200;
	font-display: swap;
	src: url(/static/header/static/font/cIf4MaFatEE-VTaP_OGAdGYmnQ.woff2) format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Blinker";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url(/static/header/static/font/cIf4MaFatEE-VTaP_IWDdGYmnQ.woff2) format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Blinker";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(/static/header/static/font/cIf4MaFatEE-VTaP_JWEdGYmnQ.woff2) format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Play";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(/static/header/static/font/6ae84K2oVqwItm4TCpAy2g.woff2) format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ===== public/static/header/static/css/site-body-utilities.css ===== */
/**
 * Minimal body utilities — replaces full tailwind.css in shell bundle.
 * Only classes referenced by BaseLayout.astro.
 */
.font-body {
	font-family: Blinker, ui-sans-serif, system-ui, sans-serif;
}

.antialiased {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.overflow-x-hidden {
	overflow-x: hidden;
}

.text-slate-600 {
	color: rgb(71 85 105);
}


/* ===== public/static/site/css/site-shell-solar.css ===== */
/**
 * Solar site shell — floating contact, scroll-to-top, inquiry/wechat modals.
 * Replaces legacy site.css + site-header-overrides.css in the shell bundle.
 */
:root {
	--pp-nav-accent: #1d5198;
}

/* Back to top + quick contact */
.floating-actions {
	position: fixed;
	right: 24px;
	top: 60%;
	bottom: auto;
	transform: translateY(-50%);
	z-index: 100001;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.floating-actions__social.social-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.floating-actions__social.social-icon a.floating-actions__link,
.floating-actions__social.social-icon button.floating-actions__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 5px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.floating-actions__social.social-icon a.floating-actions__link:hover,
.floating-actions__social.social-icon button.floating-actions__link:hover {
	background-color: #fcbe00;
	color: #222;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
	transform: translateY(-1px);
}

.floating-actions__social.social-icon .wechat {
	background-color: #07c160;
}

.floating-actions__social.social-icon .rss {
	background-color: #f26522;
}

.floating-actions__glyph {
	display: block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.floating-actions .scroll-to-top {
	position: static;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
}

.floating-actions.is-scrolled .scroll-to-top {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.scroll-to-top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--pp-nav-accent, #1d5198);
	color: #fff;
	box-shadow: 0 4px 16px rgba(29, 81, 152, 0.35);
	cursor: pointer;
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease,
		transform 0.25s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.scroll-to-top:not(.floating-actions .scroll-to-top) {
	position: fixed;
	right: 24px;
	bottom: 28px;
	z-index: 100001;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
}

.scroll-to-top.is-visible,
.scroll-to-top:not(.floating-actions .scroll-to-top).is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.scroll-to-top:hover {
	background: #295692;
	box-shadow: 0 6px 20px rgba(29, 81, 152, 0.45);
}

.scroll-to-top:focus-visible {
	outline: 2px solid var(--pp-nav-accent, #1d5198);
	outline-offset: 3px;
}

.scroll-to-top__icon {
	display: block;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	color: #fff;
}

@media (max-width: 767px) {
	.floating-actions {
		right: 16px;
		gap: 8px;
	}

	.floating-actions__social.social-icon a.floating-actions__link,
	.floating-actions .scroll-to-top,
	.scroll-to-top:not(.floating-actions .scroll-to-top) {
		width: 40px;
		height: 40px;
	}

	.scroll-to-top:not(.floating-actions .scroll-to-top) {
		right: 16px;
		bottom: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.scroll-to-top,
	.floating-actions__social.social-icon a.floating-actions__link {
		transition: none;
	}
}

/* WeChat QR modal */
body.site-wechat-modal-open {
	overflow: hidden;
}

.site-wechat-modal {
	position: fixed;
	inset: 0;
	z-index: 100002;
	display: grid;
	place-items: center;
	padding: 24px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.site-wechat-modal.is-open {
	pointer-events: auto;
	opacity: 1;
}

.site-wechat-modal__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(15, 23, 42, 0.55);
	cursor: pointer;
}

.site-wechat-modal__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 360px);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 20px 20px 18px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
}

.site-wechat-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.site-wechat-modal__head h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #1e3a5f;
}

.site-wechat-modal__close {
	border: 1px solid #dde3ea;
	background: #f8fafc;
	color: #64748b;
	border-radius: 5px;
	min-height: 32px;
	padding: 0 12px;
	font-size: 13px;
	cursor: pointer;
}

.site-wechat-modal__lead {
	margin: 0 0 14px;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}

.site-wechat-modal__frame {
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
}

.site-wechat-modal__frame img {
	width: min(100%, 240px);
	height: auto;
	border-radius: 6px;
	border: 1px solid #e8ebf0;
	background: #fff;
}

.site-wechat-modal__id {
	margin: 0 0 14px;
	font-size: 14px;
	color: #334155;
}

.site-wechat-modal__id strong {
	color: #1d5198;
	font-weight: 600;
}

.site-wechat-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.site-wechat-modal__btn {
	flex: 1 1 auto;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 5px;
	font-size: 14px;
	cursor: pointer;
}

.site-wechat-modal__btn--ghost {
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #334155;
}

.site-wechat-modal__btn--primary {
	border: 1px solid #1d5198;
	background: #1d5198;
	color: #fff;
}

.site-wechat-modal__hint {
	margin: 12px 0 0;
	font-size: 12px;
	color: #94a3b8;
	line-height: 1.5;
}

.site-wechat-toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	z-index: 100003;
	max-width: min(92vw, 420px);
	padding: 12px 16px;
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.92);
	color: #fff;
	font-size: 14px;
	line-height: 1.5;
	transform: translate(-50%, 12px);
	opacity: 0;
	transition: opacity 0.22s ease, transform 0.22s ease;
	pointer-events: none;
}

.site-wechat-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* Floating online inquiry modal */
body.site-inquiry-modal-open {
	overflow: hidden;
}

.site-inquiry-modal {
	position: fixed;
	inset: 0;
	z-index: 100002;
	display: grid;
	place-items: center;
	padding: 24px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.site-inquiry-modal.is-open {
	pointer-events: auto;
	opacity: 1;
}

.site-inquiry-modal__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(15, 23, 42, 0.55);
	cursor: pointer;
}

.site-inquiry-modal__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 560px);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 22px 22px 20px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
}

.site-inquiry-modal__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.site-inquiry-modal__head h2 {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 700;
	color: #1e3a5f;
}

.site-inquiry-modal__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #64748b;
}

.site-inquiry-modal__close {
	flex-shrink: 0;
	border: 1px solid #dde3ea;
	background: #f8fafc;
	color: #64748b;
	border-radius: 5px;
	min-height: 32px;
	padding: 0 12px;
	font-size: 13px;
	cursor: pointer;
}

.site-inquiry-modal__row {
	display: flex;
	gap: 14px;
	margin-bottom: 14px;
}

.site-inquiry-modal__field {
	flex: 1;
	min-width: 0;
}

.site-inquiry-modal__field--full {
	margin-bottom: 14px;
}

.site-inquiry-modal__field label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #444;
}

.site-inquiry-modal__field input,
.site-inquiry-modal__field select,
.site-inquiry-modal__field textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	padding: 10px 12px;
	font: inherit;
	font-size: 14px;
	color: #333;
	background: #fff;
	outline: none;
	transition: border-color 0.2s ease;
}

.site-inquiry-modal__field input:focus,
.site-inquiry-modal__field select:focus,
.site-inquiry-modal__field textarea:focus {
	border-color: #1d5198;
}

.site-inquiry-modal__field textarea {
	resize: vertical;
	min-height: 96px;
}

.site-inquiry-modal__submit {
	width: 100%;
	min-height: 44px;
	border: 0;
	border-radius: 5px;
	background: #1d5198;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.site-inquiry-modal__submit:hover {
	background: #295692;
}

.site-inquiry-modal__submit:disabled {
	opacity: 0.7;
	cursor: wait;
}

@media (max-width: 640px) {
	.site-inquiry-modal {
		padding: 12px;
	}

	.site-inquiry-modal__panel {
		width: 100%;
		padding: 18px 16px 16px;
	}

	.site-inquiry-modal__row {
		flex-direction: column;
		gap: 0;
		margin-bottom: 0;
	}

	.site-inquiry-modal__field,
	.site-inquiry-modal__field--full {
		margin-bottom: 12px;
	}
}


/* ===== public/static/header/static/css/lang-switcher.css ===== */
/* Language switcher — nav utility dropdown */
.lang-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
	/* 与 日本語 相同的柔和 UI 字体优先，拉丁文也走同一套，避免 Blinker 跳变 */
	--lang-switcher-font: "Yu Gothic UI", "Yu Gothic", Meiryo, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
		"Microsoft YaHei", "PingFang SC",
		"Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial,
		"Thai UI", "Noto Sans Thai",
		sans-serif;
	font-family: var(--lang-switcher-font);
	font-weight: 400;
	font-synthesis: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.lang-switcher__trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 36px;
	padding: 0 10px;
	border: 1px solid transparent;
	border-radius: 5px;
	background: transparent;
	color: #475569;
	font-family: var(--lang-switcher-font);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.25;
	cursor: pointer;
	transition:
		color 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease;
}

.lang-switcher__trigger:hover,
.lang-switcher.is-open .lang-switcher__trigger {
	color: #1d5198;
	background: rgba(29, 81, 152, 0.06);
	border-color: rgba(29, 81, 152, 0.12);
}

.lang-switcher__trigger:focus-visible {
	outline: 2px solid rgba(29, 81, 152, 0.45);
	outline-offset: 2px;
}

.lang-switcher__globe {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	opacity: 0.85;
}

.lang-switcher__flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
}

.lang-switcher__flag svg {
	display: block;
	width: 100%;
	height: 100%;
}

.lang-switcher__trigger-flag {
	width: 17px;
	height: 17px;
}

.lang-switcher__label {
	max-width: 6.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 400;
}

.lang-switcher__chevron {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	opacity: 0.55;
	transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__chevron {
	transform: rotate(180deg);
}

/* Panel — 宽度随最长项收缩，避免过宽 */
.lang-switcher__panel {
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	z-index: 10001;
	width: max-content;
	min-width: 0;
	max-width: 200px;
	margin: 0;
	padding: 5px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.88);
	font-family: var(--lang-switcher-font);
	font-weight: 400;
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	backdrop-filter: blur(14px) saturate(160%);
	box-shadow:
		0 4px 6px -1px rgba(15, 23, 42, 0.06),
		0 16px 32px -8px rgba(15, 23, 42, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px) scale(0.98);
	transform-origin: top right;
	transition:
		opacity 0.18s ease,
		transform 0.18s ease,
		visibility 0.18s ease;
}

.lang-switcher.is-open .lang-switcher__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.lang-switcher__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lang-switcher__item + .lang-switcher__item {
	margin-top: 2px;
}

.lang-switcher__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 34px;
	padding: 0 10px;
	border-radius: 5px;
	color: #334155;
	font-family: var(--lang-switcher-font);
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.25;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background 0.15s ease,
		color 0.15s ease;
}

.lang-switcher__link:hover {
	background: rgba(241, 245, 249, 0.72);
	color: #1d5198;
}

.lang-switcher__link.is-active {
	background: rgba(238, 244, 251, 0.82);
	color: #1d5198;
}

.lang-switcher__link.is-active:hover {
	background: rgba(230, 238, 248, 0.88);
}

.lang-switcher__link-main {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	flex: 1;
}

.lang-switcher__link-text {
	font-family: inherit;
	font-weight: 400;
}

/* 全站统一：按钮/链接文字不被导航 Blinker 覆盖 */
.lang-switcher__trigger,
.lang-switcher__label,
.lang-switcher__link,
.lang-switcher__link-text {
	font-family: var(--lang-switcher-font) !important;
	font-weight: 400 !important;
	font-synthesis: none;
}

.lang-switcher__check {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: #1d5198;
}

/* Hero 叠层 — 浅色语言切换按钮 */
body.pa-nav-over-hero .lang-switcher__trigger {
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

body.pa-nav-over-hero .lang-switcher__trigger:hover,
body.pa-nav-over-hero .lang-switcher.is-open .lang-switcher__trigger {
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.22);
}

@media (prefers-reduced-motion: reduce) {
	.lang-switcher__panel,
	.lang-switcher__chevron,
	.lang-switcher__trigger,
	.lang-switcher__link {
		transition: none;
	}
}

html[dir='rtl'] .lang-switcher__trigger {
	flex-direction: row-reverse;
}

html[dir='rtl'] .lang-switcher__panel {
	right: auto;
	left: 0;
	transform-origin: top left;
}

html[dir='rtl'] .lang-switcher__link {
	flex-direction: row-reverse;
	text-align: right;
}


/* ===== public/static/footer/footer-shell.css ===== */
/* Legacy footer — reuse global .container (same page-shell-width + gutter) */
.site-footer-legacy .container {
	width: var(--page-shell-width, min(var(--container-max, 1450px), calc(100vw - var(--container-gutter, 1.5rem) * 2)));
	max-width: var(--page-shell-max, var(--container-max, 1450px));
	margin-inline: auto;
	padding-inline: var(--container-gutter, 1.5rem);
	box-sizing: border-box;
}

.site-footer-legacy a,
.site-footer-legacy a:hover,
.site-footer-legacy a:focus {
	text-decoration: none;
}

.site-footer-legacy ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* 右侧 CTA / 品牌栏与版心右缘对齐 */
.site-footer__cta-grid .cta-item:last-child {
	text-align: right;
}

.site-footer__cta-grid .cta-item:last-child .cta-apps {
	display: flex;
	justify-content: flex-end;
}

.site-footer__cta-grid .cta-item:last-child .apps-store {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}

.site-footer__cta-grid .cta-item:last-child .apps-store a {
	margin: 0;
}

.site-footer__content-col > .footer__widget:last-child {
	text-align: right;
}

.site-footer__content-col > .footer__widget:last-child .footer__hotline.d-flex {
	justify-content: flex-end;
}

.site-footer__content-col > .footer__widget:last-child .footer__email-row {
	justify-content: flex-end;
	text-align: right;
}

.site-footer__content-col > .footer__widget:last-child .footer__info ul {
	text-align: right;
}


/* ===== public/static/footer/static/footer.css ===== */
/* 华创页脚样式包（桌面专用）— 由 cn/scripts/build-footer-css.py 生成，勿手改 */
/* === font-awesome subset === */
/* Font Awesome subset — footer icons only */
@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(/static/footer/static/fonts/fa-brands-400.woff2) format("woff2")}
@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:900;font-display:block;src:url(/static/footer/static/fonts/fa-solid-900.woff2) format("woff2")}
@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:300;font-display:block;src:url(/static/footer/static/fonts/fa-light-300.woff2) format("woff2")}
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fab{font-family:"Font Awesome 5 Brands";font-weight:400}.fas,.fal,.far{font-family:"Font Awesome 5 Pro"}.fas{font-weight:900}.fal{font-weight:300}
.fa-dribbble:before{content:"\f17d"}
.fa-facebook-f:before{content:"\f39e"}
.fa-headset:before{content:"\f590"}
.fa-linkedin-in:before{content:"\f0e1"}
.fa-rss:before{content:"\f09e"}
.fa-twitter:before{content:"\f099"}
.fa-whatsapp:before{content:"\f232"}
.fa-youtube:before{content:"\f167"}

/* === footer.desktop.css === */
/* 华创页脚桌面样式 — 无 @media，对齐 header 桌面化策略 */

/* spacing（fragment 沿用类名） */
.pt-55 { padding-top: 55px; }
.pb-10 { padding-bottom: 10px; }
.pt-80 { padding-top: 80px; }
.pb-15 { padding-bottom: 15px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-25 { margin-bottom: 25px; }
.mb-20 { margin-bottom: 20px; }
.mb-35 { margin-bottom: 35px; }
.mb-10 { margin-bottom: 10px; }
.mr-15 { margin-right: 15px; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.text-center { text-align: center; }

.d-dark-bg { background-color: #222; }
.d-ldark-bg { background-color: #2f3037; }

/* CTA */
.site-footer__cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cta-item .cta-title {
  font-size: 18px;
  letter-spacing: -0.45px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.cta-item p {
  color: #999;
  margin-bottom: 16px;
}

.subscribe__form {
  position: relative;
  width: 100%;
}

.subscribe__form input {
  width: 100%;
  height: 45px;
  line-height: 41px;
  padding: 0 130px 0 20px;
  border: 0;
  color: #222;
  background: #fff;
  border-radius: 5px;
}

.subscribe__form input::placeholder {
  color: #979ca5;
  font-size: 14px;
}

.subscribe__form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  line-height: 45px;
  background: #fcbe00;
  color: #222;
  padding: 0 25px;
  border: 0;
  border-radius: 0 5px 5px 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.apps-store a {
  display: inline-block;
  margin: 0 20px 10px 0;
}

.apps-store a:last-child {
  margin-right: 0;
}

.social-icon a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 0 6px 10px 0;
  border-radius: 5px;
  text-align: center;
  color: #fff;
}

.social-icon a:last-child {
  margin-right: 0;
}

.social-icon a:hover {
  background-color: #fcbe00;
  color: #222;
}

.social-icon .whatsapp { background-color: #25d366; }
.social-icon .facebook { background-color: #3b5998; }
.social-icon .twitter { background-color: #1da1f2; }
.social-icon .youtube { background-color: #cd201f; }
.social-icon .linkedin { background-color: #0077b5; }
.social-icon .rss { background-color: #f26522; }
.social-icon .dribbble { background-color: #ea4c89; }

/* 主栏布局 */
.site-footer__main-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
}

.site-footer__link-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.site-footer__content-col {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
}

.site-footer__account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* footer widgets */
.footer__widget {
  margin-bottom: 40px;
}

.footer__widget-title h4 {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer__widget-content p,
.footer-text {
  color: #999;
}

.footer__link ul li {
  margin-bottom: 8px;
}

.footer__link ul li a {
  color: #999;
  font-size: 14px;
}

.footer__link ul li a:hover {
  color: #fcbe00;
  padding-left: 5px;
}

.footer__hotline .icon i {
  font-size: 55px;
  color: #fcbe00;
}

.footer__hotline .text h4 {
  font-size: 14px;
  color: #999;
  margin-bottom: 0;
}

.footer__hotline .text span {
  font-size: 18px;
  font-weight: 500;
  color: #fcbe00;
}

.footer__phones {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
}

.footer__phones a {
  color: inherit;
  text-decoration: none;
}

.site-footer-legacy .footer__hotline .footer__phones a,
.site-footer-legacy .footer__hotline .footer__phones a:hover,
.site-footer-legacy .footer__hotline .footer__phones a:focus-visible,
.site-footer-legacy .footer__info .footer__email-link,
.site-footer-legacy .footer__info .footer__email-link:hover,
.site-footer-legacy .footer__info .footer__email-link:focus-visible {
  color: #fcbe00 !important;
}

.footer__email-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0 0.35em;
  margin-bottom: 8px;
}

.footer__email-label {
  display: inline;
  font-size: 14px;
  color: #999;
  margin-bottom: 0;
  flex-shrink: 0;
}

.footer__info .footer__email-link {
  display: inline;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

.footer__info ul li {
  margin-bottom: 5px;
}

.footer__info ul li span {
  font-size: 14px;
  color: #999;
}

.footer__bottom-content {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__links p {
  margin-bottom: 0;
}

.footer__links p a {
  color: #999;
  font-size: 14px;
  padding: 0 10px;
  position: relative;
}

.footer__links p a::before {
  content: "/";
  position: absolute;
  right: 0;
  top: -3px;
  transform: translateX(50%);
  color: #999;
  opacity: 0.2;
}

.footer__links p a:hover {
  color: #fcbe00;
}

.footer__links p a:last-child::before {
  display: none;
}

.copy-right-area p {
  color: #999;
}

.payment-image img {
  width: auto;
}

/* === site-footer-overrides === */
#site-footer-root .apps-store img,
.cta-area .apps-store img {
  display: block;
  width: 181px;
  height: 45px;
  max-width: none;
  object-fit: contain;
}

#site-footer-root .footer__bottom-content,
.cta-area + footer .footer__bottom-content {
  padding-top: 20px;
  padding-bottom: 20px;
}

#site-footer-root .copy-right-area,
footer .copy-right-area {
  text-align: center;
}

#site-footer-root .copy-right-area p,
footer .copy-right-area p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

#site-footer-root .site-footer__notice,
footer .site-footer__notice {
  width: 100%;
  max-width: none;
  margin: 0.35rem 0 0;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}

#site-footer-root .payment-image img,
footer .payment-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
}


/* ===== public/static/site/css/menu-sub.css (inlined) ===== */
/* About 二级导航 — 白底 + 下划线 Tab（现代简洁） */

:root {
	--menu-sub-brand: #1d5198;
	--menu-sub-brand-hover: #16467f;
	--menu-sub-border: #e8ebf0;
	/* Hero 底部分隔线（旧站 #b0b0b0，现调浅） */
	--menu-sub-hero-separator: #cfd4da;
	--menu-sub-border-strong: #dde3ea;
	--menu-sub-text: #64748b;
	--menu-sub-text-strong: #334155;
	--menu-sub-divider: #cbd2dc;
	--menu-sub-surface: #f8fafc;
	--menu-sub-bar-height: 52px;
}

/* Hero 底部分隔线（旧 banner-sub #site-banner-sub-root border-bottom） */
.page-hero {
	border-bottom: 5px solid var(--menu-sub-hero-separator);
}

.page-hero ~ .menu {
	margin-top: 0;
	border-top: none;
	position: relative;
	z-index: 2;
}

/* Hero 底缘叠层（与首页产品条同思路：首屏可见） */
.page-hero:has(.page-hero__banner-footer > .menu) {
	border-bottom: none;
}

.page-hero__banner-footer > .menu {
	width: 100%;
	margin-bottom: 0;
	border-top: none;
	position: relative;
	z-index: 5;
}

/* Hero 底缘叠层（与首页产品条同思路：首屏可见） */
.page-hero:has(.page-hero__banner-footer > .menu) {
	border-bottom: none;
}

.page-hero__banner-footer > .menu {
	width: 100%;
	margin-bottom: 0;
	border-top: none;
	position: relative;
	z-index: 5;
}

main.pushable-content > .menu,
main:not(.pushable-content) > .menu {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.menu {
	width: 100%;
	margin-bottom: 32px;
	background: #fff;
	border-top: 1px solid var(--menu-sub-border);
	border-bottom: 1px solid var(--menu-sub-border-strong);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.menu__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: var(--menu-sub-bar-height);
	width: var(--page-shell-width);
	max-width: var(--page-shell-max);
	margin-inline: auto;
	padding-inline: var(--container-gutter);
	box-sizing: border-box;
}

.menu__crumbs {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu__crumb-item {
	display: flex;
	align-items: center;
	min-width: 0;
}

.menu__crumb-item--segment {
	flex: 0 1 auto;
	max-width: 100%;
}

.menu__crumb-sep {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 18px;
	color: var(--menu-sub-divider);
}

.menu__crumb-sep .menu__crumb-icon {
	width: 14px;
	height: 14px;
	stroke-width: 2;
	opacity: 0.7;
}

.menu__crumb {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: min(100%, 280px);
	min-height: 36px;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--menu-sub-text);
	text-decoration: none;
	transition:
		color 0.15s ease,
		background-color 0.15s ease;
}

.menu__crumb-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--menu-sub-brand);
	opacity: 0.82;
}

.menu__crumb-icon--product {
	width: 14px;
	height: 21px;
}

.menu__crumb-icon--product {
	width: 14px;
	height: 21px;
}

.menu__crumb-label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.menu__crumb--home {
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--menu-sub-border);
	background: var(--menu-sub-surface);
}

.menu__crumb--home .menu__crumb-icon {
	width: 17px;
	height: 17px;
	opacity: 1;
}

.menu__crumb--home:hover {
	background: rgba(29, 81, 152, 0.08);
	border-color: rgba(29, 81, 152, 0.18);
	color: var(--menu-sub-brand);
}

.menu__crumb--home:focus-visible {
	outline: 2px solid rgba(29, 81, 152, 0.35);
	outline-offset: 2px;
}

.menu__crumb--link:hover {
	color: var(--menu-sub-brand);
	background: rgba(29, 81, 152, 0.06);
}

.menu__crumb--link:hover .menu__crumb-icon {
	opacity: 1;
}

.menu__crumb--current {
	color: var(--menu-sub-text-strong);
	font-weight: 500;
	background: rgba(29, 81, 152, 0.08);
	border: 1px solid rgba(29, 81, 152, 0.12);
}

.menu__crumb--current .menu__crumb-icon {
	opacity: 1;
}

.menu__crumb--link:focus-visible,
.menu__crumb--home:focus-visible {
	outline: 2px solid rgba(29, 81, 152, 0.35);
	outline-offset: 2px;
}

.menu__tabs {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	flex: 0 1 auto;
	margin-left: auto;
	flex-wrap: nowrap;
	gap: 0;
	max-width: 100%;
	min-width: 0;
	min-height: var(--menu-sub-bar-height);
	overflow-x: auto;
	overflow-y: visible;
	scrollbar-width: none;
	padding-left: 0;
}

.menu__tabs::-webkit-scrollbar {
	display: none;
}

.menu--split-current .menu__crumbs {
	flex: 1 1 auto;
	min-width: 0;
}

/* SKU 详情：面包屑（到系列）+ 当前型号 + 系列 Tab 同排 */
.menu--split-with-tabs .menu__crumbs {
	flex: 0 1 auto;
}

.menu--split-with-tabs .menu__current {
	margin-left: 0;
	flex: 0 0 auto;
}

.menu--split-with-tabs .menu__current-label {
	height: 36px;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--menu-sub-text-strong);
	background: rgba(29, 81, 152, 0.08);
	border: 1px solid rgba(29, 81, 152, 0.12);
}

.menu--split-with-tabs .menu__current-label::after {
	display: none;
}

.menu--split-with-tabs .menu__tabs {
	margin-left: auto;
}

/* SKU 详情：面包屑（到系列）+ 当前型号 + 系列 Tab 同排 */
.menu--split-with-tabs .menu__crumbs {
	flex: 0 1 auto;
}

.menu--split-with-tabs .menu__current {
	margin-left: 0;
	flex: 0 0 auto;
}

.menu--split-with-tabs .menu__current-label {
	height: 36px;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--menu-sub-text-strong);
	background: rgba(29, 81, 152, 0.08);
	border: 1px solid rgba(29, 81, 152, 0.12);
}

.menu--split-with-tabs .menu__current-label::after {
	display: none;
}

.menu--split-with-tabs .menu__tabs {
	margin-left: auto;
}

.menu__current {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	flex: 0 0 auto;
	margin-left: auto;
	min-height: var(--menu-sub-bar-height);
}

.menu__current-label {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex-shrink: 0;
	height: var(--menu-sub-bar-height);
	padding: 0 18px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--menu-sub-brand);
	white-space: nowrap;
}

.menu__current-label .menu__crumb-icon {
	width: 16px;
	height: 16px;
	opacity: 1;
}

.menu__current-label::after {
	content: '';
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 0;
	height: 3px;
	border-radius: 5px 5px 0 0;
	background: var(--menu-sub-brand);
}

.menu__tabs a .menu__tab-label {
	display: inline;
	line-height: 1.3;
	font-family: var(--site-ui-font, 'Segoe UI', system-ui, -apple-system, 'Microsoft YaHei', 'PingFang SC', sans-serif);
}

.menu__tabs a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	height: var(--menu-sub-bar-height);
	padding: 0 18px;
	border: none;
	border-radius: 0;
	background: transparent;
	font-family: var(--site-ui-font, 'Segoe UI', system-ui, -apple-system, 'Microsoft YaHei', 'PingFang SC', sans-serif);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--menu-sub-text);
	text-decoration: none;
	white-space: nowrap;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition:
		color 0.18s ease,
		background-color 0.18s ease;
}

.menu__tabs a::selection,
.menu__tabs a .menu__tab-label::selection {
	background: rgba(29, 81, 152, 0.18);
	color: inherit;
}

.menu__tabs a::after {
	content: '';
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 0;
	height: 3px;
	border-radius: 5px 5px 0 0;
	background: transparent;
	transform: scaleX(0.35);
	opacity: 0;
	transition:
		transform 0.22s ease,
		opacity 0.22s ease,
		background-color 0.18s ease;
}

.menu__tabs a:hover {
	color: var(--menu-sub-brand);
	background: rgba(29, 81, 152, 0.04);
}

.menu__tabs a:hover::after {
	background: rgba(29, 81, 152, 0.35);
	transform: scaleX(1);
	opacity: 1;
}

.menu__tabs a.is-active,
.menu__tabs a[aria-current='page'] {
	color: var(--menu-sub-brand);
	background: transparent;
}

.menu__tabs a.is-active:hover,
.menu__tabs a[aria-current='page']:hover,
.menu__tabs a.is-active:focus,
.menu__tabs a[aria-current='page']:focus,
.menu__tabs a.is-active:active,
.menu__tabs a[aria-current='page']:active {
	color: var(--menu-sub-brand);
	background: transparent;
}

.menu__tabs a.is-active::after,
.menu__tabs a[aria-current='page']::after {
	background: var(--menu-sub-brand);
	transform: scaleX(1);
	opacity: 1;
}

@media (min-width: 961px) {
	.menu__tabs a:last-child {
		padding-right: 0;
	}

	.menu__tabs a:last-child::after {
		right: 0;
	}

	.menu--split-current .menu__current-label {
		padding-right: 0;
	}

	.menu--split-current .menu__current-label::after {
		right: 0;
	}
}

@media (max-width: 960px) {
	.menu__inner {
		flex-wrap: wrap;
		align-content: flex-start;
		padding-block: 8px;
	}

	.menu__crumbs {
		flex: 1 1 auto;
		flex-wrap: wrap;
		row-gap: 4px;
	}

	.menu__crumb {
		max-width: min(100%, 220px);
		min-height: 32px;
		padding: 5px 10px;
		font-size: 12px;
	}

	.menu__crumb--home {
		width: 32px;
		height: 32px;
	}

	.menu__tabs {
		flex: 1 0 100%;
		margin-left: 0;
		justify-content: flex-start;
		overflow-x: auto;
		min-height: 44px;
		margin-top: 2px;
	}

	.menu--split-current .menu__current {
		flex: 0 0 auto;
		margin-left: auto;
		min-height: 44px;
	}

	.menu--split-with-tabs .menu__current {
		margin-left: 0;
	}

	.menu--split-with-tabs .menu__tabs {
		flex: 1 0 100%;
		margin-left: 0;
		margin-top: 2px;
	}

	.menu--split-with-tabs .menu__current {
		margin-left: 0;
	}

	.menu--split-with-tabs .menu__tabs {
		flex: 1 0 100%;
		margin-left: 0;
		margin-top: 2px;
	}

	.menu--split-current .menu__current-label {
		height: 44px;
		padding: 0 14px;
		font-size: 13px;
	}

	.menu--split-current .menu__current-label::after {
		left: 14px;
		right: 14px;
	}

	.menu__tabs a {
		height: 44px;
		padding: 0 14px;
		font-size: 13px;
	}

	.menu__tabs a::after {
		left: 14px;
		right: 14px;
	}
}

@media (max-width: 640px) {
	.menu {
		margin-bottom: 24px;
	}

	.menu__crumb {
		max-width: min(100%, 180px);
		font-size: 11px;
		gap: 5px;
		padding: 4px 8px;
	}

	.menu__crumb-icon {
		width: 14px;
		height: 14px;
	}

	.menu__tabs a {
		padding: 0 12px;
		font-size: 12px;
	}

	.menu__tabs a::after {
		left: 12px;
		right: 12px;
		height: 2px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.menu__tabs a::after {
		transition: none;
	}
}

html[dir='rtl'] .menu__crumb-sep .menu__crumb-icon {
	transform: scaleX(-1);
}

html[dir='rtl'] .menu__crumb-sep .menu__crumb-icon {
	transform: scaleX(-1);
}


/* ===== public/static/site-link-reset.css ===== */


/* Override Tailwind .container — align with MenuSubNav / hero shell width */
main:not(.pushable-content) .container {
	width: var(--page-shell-width);
	max-width: var(--page-shell-max);
	margin-inline: auto;
	padding-inline: var(--container-gutter);
	box-sizing: border-box;
}

/* Site-wide: links never show underline */
a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
}


/* ===== public/static/site/css/site-radius.css ===== */
/**
 * 全站圆角 5px — 设计 token 与 Tailwind 工具类兜底
 * 须在 pageStyles 之后加载（见 BaseLayout.astro）
 */
:root {
	--radius: 5px;
	--radius-sm: 5px;
	--radius-md: 5px;
	--radius-lg: 5px;
	--ui-nav-active-radius: 5px;
}

.rounded,
.rounded-sm,
.rounded-md,
.rounded-lg,
.rounded-xl,
.rounded-2xl,
.rounded-3xl {
	border-radius: 5px !important;
}

/* PageHero 描述文字 — 全局兜底（组件 scoped 样式 + 末位加载确保生效） */
.page-hero .page-hero__subtitle {
	font-size: 20px;
}

/* 场景页 legacy 嵌入：避免 collection-page 内外双层版心导致网格偏右 */
main:not(.pushable-content) .legacy-page-body > .collection-page > .collection-page__inner {
	width: 100% !important;
	max-width: none !important;
	margin-inline: 0 !important;
	padding-inline: 0 !important;
}

