@charset "UTF-8";

:root {
    --c-primary: #0A2C5E;
    --c-primary-2: #12457F;
    --c-accent: #1E6FE0;
    --c-accent-soft: #EAF2FE;
    --c-accent-2: #4D9BFF;

    --c-ink: #10151C;
    --c-ink-2: #3A4553;
    --c-muted: #6B7684;
    --c-line: #E4E9F0;
    --c-line-2: #EEF2F7;

    --c-bg: #FFFFFF;
    --c-bg-soft: #F4F7FB;
    --c-bg-dark: #0E1726;
    --c-bg-dark-2: #16233A;

    --radius-s: 4px;
    --radius-m: 6px;
    --radius-l: 10px;

    --shadow-s: 0 1px 2px rgba(16, 21, 28, .05);
    --shadow-m: 0 6px 18px rgba(10, 44, 94, .08);
    --shadow-l: 0 14px 34px rgba(10, 44, 94, .12);

    --container: 1280px;
    --hd-h: 76px;
    --hd-h-stuck: 64px;

    --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    /* 顶栏 fixed 会盖住锚点目标，锚点跳转时预留出顶栏高度 */
    scroll-padding-top: calc(var(--hd-h) + 12px);
}

body {
    margin: 0;
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--c-ink);
    background: var(--c-bg);
    /* clip 不产生滚动容器，保证侧栏 position:sticky 生效；不支持 clip 的老浏览器回退 hidden */
    overflow-x: hidden;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; line-height: 1.35; color: var(--c-ink); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: 15px; }
table { border-collapse: collapse; width: 100%; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    padding: 10px 18px; background: var(--c-primary); color: #fff;
}
.skip-link:focus { left: 0; }
.sr-only {
    position: absolute !important; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 76px 0; }
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-bg-dark); color: #fff; }
.section--tight { padding: 52px 0; }
.section--tech { position: relative; }
.section--tech::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(30, 111, 224, .085) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, 0) 76%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, 0) 76%);
    pointer-events: none;
}
.section--tech::after {
    content: "";
    position: absolute;
    left: 50%; top: 6%;
    width: min(1100px, 88vw); height: 520px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(30, 111, 224, .1), rgba(30, 111, 224, 0));
    pointer-events: none;
}
.section--tech > .container { position: relative; z-index: 1; }

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
.sec-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.sec-title {
    font-size: 30px;
    letter-spacing: .5px;
    position: relative;
    padding-left: 16px;
}
.sec-title::before {
    content: "";
    position: absolute; left: 0; top: 50%;
    width: 4px; height: 26px; margin-top: -13px;
    background: var(--c-accent);
    border-radius: 2px;
}
.sec-head--center .sec-title { padding-left: 0; font-size: 32px; }
.sec-head--center .sec-title::before {
    left: 50%; top: auto; bottom: -14px; margin: 0 0 0 -20px;
    width: 40px; height: 3px;
}
.section--dark .sec-title { color: #fff; }
.sec-en {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--c-muted);
    font-weight: 500;
}
.sec-head--center .sec-en { margin-top: 24px; }
.section--dark .sec-en { color: rgba(255, 255, 255, .55); }
.sec-desc {
    max-width: 760px;
    margin-top: 14px;
    color: var(--c-muted);
    font-size: 15px;
}
.sec-head--center .sec-desc { margin-left: auto; margin-right: auto; }
.section--dark .sec-desc { color: rgba(255, 255, 255, .68); }

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: none;
    padding: 9px 20px;
    font-size: 14px;
    color: var(--c-primary);
    border: 1px solid var(--c-line);
    border-radius: 999px;
    background: #fff;
    transition: all .28s var(--ease);
}
.more-link:hover {
    color: #fff;
    background: var(--c-accent);
    border-color: var(--c-accent);
    transform: translateY(-1px);
}
.more-link i { font-style: normal; transition: transform .28s var(--ease); }
.more-link:hover i { transform: translateX(3px); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-s);
    transition: all .28s var(--ease);
    white-space: nowrap;
}
.btn--primary { background: var(--c-accent); color: #fff; box-shadow: 0 8px 20px rgba(30, 111, 224, .28); }
.btn--primary:hover { background: #1A5FC4; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(30, 111, 224, .34); }
.btn--ghost { border: 1px solid rgba(255, 255, 255, .5); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: #fff; }
.btn--line { border: 1px solid var(--c-accent); color: var(--c-accent); }
.btn--line:hover { background: var(--c-accent); color: #fff; }

.card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    transition: all .32s var(--ease);
}

/* 顶栏走 fixed + 等高占位块（.hd-space），不走 sticky。
   原因：sticky 的顶栏在文档流里，吸顶时 .header-inner 从 --hd-h 收到
   --hd-h-stuck（76->64 / 80->66 / 84->68 / 88->70），整篇文档高度随之变化，
   正文被整体挪动 12~18px；浏览器的 scroll anchoring 会把 pageYOffset 回写同样的
   位移，于是 is-stuck 在阈值附近被自己反复触发 -> 顶栏来回抖。
   改成 fixed 后收缩只发生在 fixed 层，文档流零变化，阈值不可能被自己触发。 */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .84);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: background .34s var(--ease), border-color .34s var(--ease), box-shadow .34s var(--ease);
}
.site-header::before {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(30, 111, 224, .5) 22%,
        rgba(127, 212, 255, .95) 50%,
        rgba(30, 111, 224, .5) 78%,
        transparent 100%);
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .45s var(--ease), transform .7s var(--ease);
    pointer-events: none;
}
.site-header::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: -90px;
    height: 150px;
    background: radial-gradient(58% 100% at 50% 100%, rgba(30, 111, 224, .17), transparent 72%);
    opacity: 0;
    transition: opacity .5s var(--ease);
    pointer-events: none;
}
.site-header.is-stuck {
    background: rgba(255, 255, 255, .93);
    border-bottom-color: var(--c-line);
    box-shadow: 0 12px 34px -14px rgba(10, 44, 94, .3);
}
.site-header.is-stuck::before { opacity: 1; transform: scaleX(1); }
.site-header.is-stuck::after { opacity: 1; }

.hd-progress {
    position: absolute;
    left: 0; top: 0;
    z-index: 3;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-2) 55%, #7FD4FF 100%);
    box-shadow: 0 0 10px rgba(77, 155, 255, .75);
    transition: width .12s linear;
    pointer-events: none;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.9vw, 40px);
    height: var(--hd-h);
    transition: height .34s var(--ease);
}
.site-header.is-stuck .header-inner { height: var(--hd-h-stuck); }

/* 顶栏占位块：高度恒等于 --hd-h（顶栏「未吸顶」时的高度），不随 is-stuck 变化。
   顶栏已 fixed，这一步是把它的高度重新放回文档流，保证正文从顶栏下方开始，
   同时让吸顶收缩不再影响任何布局。media query 里 --hd-h 变了它自动跟着变。 */
.hd-space { height: var(--hd-h); }

.brand {
    display: flex;
    align-items: center;
    flex: none;
    min-width: 0;
    transition: transform .3s var(--ease);
}
.brand:hover { transform: translateY(-1px); }
.brand-logo {
    display: block;
    max-height: 48px;
    width: auto;
    transition: max-height .34s var(--ease), filter .34s var(--ease);
}
.site-header.is-stuck .brand-logo { max-height: 40px; }
.brand:hover .brand-logo { filter: drop-shadow(0 6px 14px rgba(30, 111, 224, .32)); }
.brand-mark {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(30, 111, 224, .28);
    transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.brand-mark::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, transparent, rgba(77, 155, 255, .75), transparent 55%);
    opacity: 0;
    animation: brandSpin 4.5s linear infinite;
    transition: opacity .4s var(--ease);
    pointer-events: none;
    z-index: -1;
}
.brand:hover .brand-mark { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(30, 111, 224, .45); }
.brand:hover .brand-mark::after { opacity: 1; }
.brand-mark svg { width: 26px; height: 26px; }
@keyframes brandSpin { to { transform: rotate(360deg); } }

.nav { flex: 1 1 auto; min-width: 0; }
.nav-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.nav-item { position: relative; }
.nav-item::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    height: 10px;
}
.sub-toggle { display: none; }
.nav-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 15.5px;
    color: var(--c-ink-2);
    white-space: nowrap;
    transition: color .26s var(--ease), transform .26s var(--ease);
}
.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 10px;
    background: radial-gradient(72% 130% at 50% 100%, rgba(30, 111, 224, .17), rgba(30, 111, 224, 0) 76%);
    opacity: 0;
    transform: scale(.9);
    transition: opacity .3s var(--ease), transform .36s var(--ease);
    pointer-events: none;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--c-accent), #7FD4FF);
    box-shadow: 0 0 8px rgba(77, 155, 255, .8);
    transform: translateX(-50%);
    transition: width .34s var(--ease);
}
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link { color: var(--c-primary); }
.nav-item:hover > .nav-link::before,
.nav-item:focus-within > .nav-link::before { opacity: 1; transform: scale(1); }
.nav-item:hover > .nav-link::after { width: 18px; }
.nav-item.active > .nav-link { color: var(--c-accent); }
.nav-item.active > .nav-link::before { opacity: 1; transform: scale(1); transition: none; }
.nav-item.active > .nav-link::after { width: 24px; height: 3px; bottom: 4px; transition: none; }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .nav-item.active > .nav-link {
        background-image: linear-gradient(96deg, var(--c-primary) 0%, var(--c-accent-2) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.subnav {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 226px;
    padding: 10px;
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--c-line);
    border-radius: 14px;
    box-shadow: 0 24px 54px -20px rgba(10, 44, 94, .42);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px) scale(.97);
    transform-origin: 50% 0;
    overflow: hidden;
    transition: opacity .3s var(--ease),
                transform .36s cubic-bezier(.22, .61, .36, 1),
                visibility .3s;
}
.subnav::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-accent), #7FD4FF 58%, transparent);
}
.nav-item:hover > .subnav,
.nav-item:focus-within > .subnav {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}
.nav-item.no-sub::before { display: none; }
.nav-item.no-sub > .subnav { display: none; }
.nav-item.no-sub > .sub-toggle { display: none; }
@supports selector(:has(*)) {
    .nav-item:not(:has(.subnav > li))::before { display: none; }
    .nav-item:not(:has(.subnav > li)) > .subnav { display: none; }
}
.subnav li a {
    position: relative;
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--c-ink-2);
    white-space: nowrap;
    transition: color .22s var(--ease), background .22s var(--ease), padding-left .24s var(--ease);
}
.subnav li a::before {
    content: "";
    position: absolute;
    left: 6px; top: 50%;
    width: 3px; height: 0;
    border-radius: 2px;
    background: var(--c-accent);
    transform: translateY(-50%);
    transition: height .26s var(--ease);
}
.subnav li a:hover {
    color: var(--c-accent);
    background: var(--c-accent-soft);
    padding-left: 20px;
}
.subnav li a:hover::before { height: 14px; }
.nav-item:hover > .subnav li { animation: subIn .36s var(--ease) both; }
.nav-item:hover > .subnav li:nth-child(1) { animation-delay: .01s; }
.nav-item:hover > .subnav li:nth-child(2) { animation-delay: .05s; }
.nav-item:hover > .subnav li:nth-child(3) { animation-delay: .09s; }
.nav-item:hover > .subnav li:nth-child(4) { animation-delay: .13s; }
.nav-item:hover > .subnav li:nth-child(5) { animation-delay: .17s; }
.nav-item:hover > .subnav li:nth-child(6) { animation-delay: .21s; }
.nav-item:hover > .subnav li:nth-child(7) { animation-delay: .25s; }
.nav-item:hover > .subnav li:nth-child(8) { animation-delay: .29s; }
@keyframes subIn {
    from { opacity: 0; transform: translateY(-7px); }
    to { opacity: 1; transform: none; }
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: none;
    padding-left: 16px;
    border-left: 1px solid var(--c-line);
    transition: border-color .34s var(--ease);
}

.tool-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 42px; height: 42px;
    border-radius: 12px;
    color: var(--c-ink-2);
    transition: color .26s var(--ease), background .26s var(--ease),
                transform .26s var(--ease), box-shadow .34s var(--ease);
}
.tool-btn svg { width: 20px; height: 20px; transition: transform .32s var(--ease); }
.tool-btn:hover,
.tool-btn[aria-expanded="true"] {
    color: var(--c-accent);
    background: var(--c-accent-soft);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -10px rgba(30, 111, 224, .7), 0 0 0 1px rgba(30, 111, 224, .26);
}
.tool-btn:hover svg { transform: scale(1.1); }
#searchToggle svg { width: 19px; height: 19px; }

.lang-box { position: relative; }
.lang-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 176px;
    padding: 8px;
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--c-line);
    border-radius: 12px;
    box-shadow: 0 24px 54px -20px rgba(10, 44, 94, .42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.97);
    transform-origin: 100% 0;
    transition: opacity .26s var(--ease),
                transform .32s cubic-bezier(.22, .61, .36, 1),
                visibility .26s;
}
.lang-box.is-open .lang-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--c-ink-2);
    white-space: nowrap;
    transition: color .22s var(--ease), background .22s var(--ease), padding-left .22s var(--ease);
}
.lang-item:hover { color: var(--c-accent); background: var(--c-accent-soft); padding-left: 16px; }
.lang-item img {
    flex: none;
    width: 22px; height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.search-box { position: relative; }
.search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 330px;
    padding: 16px;
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--c-line);
    border-radius: 12px;
    box-shadow: 0 24px 54px -20px rgba(10, 44, 94, .42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.97);
    transform-origin: 100% 0;
    transition: opacity .26s var(--ease),
                transform .32s cubic-bezier(.22, .61, .36, 1),
                visibility .26s;
}
.search-box.is-open .search-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--c-line);
    border-radius: 8px;
    outline: none;
    transition: border-color .25s var(--ease), box-shadow .3s var(--ease);
}
.search-form input[type="search"]:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(30, 111, 224, .14);
}
.search-form button {
    flex: none;
    height: 42px;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--c-accent), #1A5FC4);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 8px 18px -8px rgba(30, 111, 224, .8);
    transition: transform .25s var(--ease), box-shadow .3s var(--ease);
}
.search-form button:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(30, 111, 224, .9); }
.search-tip { margin-top: 10px; font-size: 13px; color: #D64545; }
.search-hot { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--c-line); }
.search-hot-title { font-size: 12px; color: var(--c-muted); margin-bottom: 8px; }
.search-hot-list { display: flex; flex-wrap: wrap; gap: 8px; }
.search-hot-list a {
    padding: 4px 12px;
    font-size: 13px;
    color: var(--c-ink-2);
    background: var(--c-bg-soft);
    border-radius: 999px;
    transition: all .24s var(--ease);
}
.search-hot-list a:hover { background: var(--c-accent-soft); color: var(--c-accent); transform: translateY(-1px); }

.nav-toggle {
    display: none;
    position: relative;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--c-primary);
    transition: background .26s var(--ease), color .26s var(--ease);
}
.nav-toggle[aria-expanded="true"] { color: var(--c-accent); background: var(--c-accent-soft); }
.nav-toggle svg {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    margin: auto;
    width: 24px; height: 24px;
    transition: transform .36s cubic-bezier(.22, .61, .36, 1), opacity .24s var(--ease);
}
.nav-toggle .ico-close { opacity: 0; transform: rotate(-90deg) scale(.6); }
.nav-toggle[aria-expanded="true"] .ico-menu { opacity: 0; transform: rotate(90deg) scale(.6); }
.nav-toggle[aria-expanded="true"] .ico-close { opacity: 1; transform: rotate(0deg) scale(1); }
.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(1200px 520px at 78% 18%, rgba(30, 111, 224, .38), transparent 62%),
        linear-gradient(118deg, #0A2C5E 0%, #102F63 42%, #0E1726 100%);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 64px 64px, 64px 64px;
    mask-image: linear-gradient(90deg, transparent, #000 30%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%, #000 100%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
}
.hero-txt { max-width: 720px; color: #fff; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 22px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #CFE0FA;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
.hero-tag i {
    width: 6px; height: 6px;
    background: #4D9BFF;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(77, 155, 255, .22);
    animation: pulse 2.2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .45; }
}
.hero-title {
    font-size: 46px;
    line-height: 1.24;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
}
.hero-title em {
    font-style: normal;
    color: #6FB0FF;
    white-space: nowrap;
}
.hero-sub {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .78);
    max-width: 640px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 54px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-stat { padding-right: 48px; margin-right: 48px; border-right: 1px solid rgba(255, 255, 255, .16); }
.hero-stat:last-child { padding-right: 0; margin-right: 0; border-right: 0; }
.hero-stat strong {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: .5px;
}
.hero-stat strong span { font-size: 16px; margin-left: 3px; font-weight: 500; }
.hero-stat strong span[data-count] { font-size: inherit; font-weight: inherit; margin-left: 0; }
.hero-stat em { font-style: normal; font-size: 13px; color: rgba(255, 255, 255, .62); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    overflow: hidden;
    transition: transform .34s var(--ease), border-color .34s var(--ease), box-shadow .34s var(--ease);
}
.product-card::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-accent), #7FD4FF);
    transform: scaleX(0);
    transform-origin: 0 50%;
    z-index: 3;
    transition: transform .44s var(--ease);
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 111, 224, .46);
    box-shadow: 0 30px 60px -26px rgba(10, 44, 94, .5), 0 0 0 1px rgba(30, 111, 224, .18);
}
.product-card:hover::after { transform: scaleX(1); }
.product-thumb {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--c-bg-soft);
}
.product-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .68s var(--ease), filter .5s var(--ease);
}
.product-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 44, 94, 0) 54%, rgba(10, 44, 94, .3));
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.product-card:hover .product-thumb img { transform: scale(1.08); filter: saturate(1.06); }
.product-card:hover .product-thumb::after { opacity: 1; }
.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    padding: 4px 11px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    color: #fff;
    background: linear-gradient(120deg, var(--c-primary), var(--c-accent));
    border-radius: 999px;
    box-shadow: 0 6px 18px -6px rgba(30, 111, 224, .8);
    overflow: hidden;
}
.product-badge::after {
    content: "";
    position: absolute;
    top: 0; left: -60%;
    width: 45%; height: 100%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .62), rgba(255, 255, 255, 0));
    transform: skewX(-18deg);
}
.product-card:hover .product-badge::after { animation: badgeShine .78s var(--ease); }
@keyframes badgeShine {
    from { left: -60%; }
    to { left: 132%; }
}
.product-go {
    position: absolute;
    left: 50%; top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    margin: -28px 0 0 -28px;
    color: #fff;
    background: rgba(10, 44, 94, .56);
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 50%;
    box-shadow: 0 10px 22px -16px rgba(6, 26, 58, .6);
    backdrop-filter: blur(6px) saturate(160%);
    opacity: 0;
    transform: scale(.7);
    transition: opacity .34s var(--ease), transform .44s var(--ease), background .3s var(--ease);
    pointer-events: none;
}
.product-go svg { width: 22px; height: 22px; }
.product-card:hover .product-go { opacity: 1; transform: scale(1); background: var(--c-primary); }
.product-body { padding: 20px 22px 24px; flex: 1 1 auto; display: flex; flex-direction: column; }
.product-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    min-height: 51px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-title a { transition: color .26s var(--ease); }
.product-title a:hover { color: var(--c-accent); }
.product-desc {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--c-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1 1 auto;
}
/* 描述为空（seo_description 未填）时不占位；仅此状态把底部行顶到底，
   描述非空时保持原有 18px 间距与垂直节奏，不受影响 */
.product-desc:empty { display: none; }
.product-desc:empty + .product-foot { margin-top: auto; }
.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--c-line-2);
}
.product-cat {
    display: inline-flex;
    align-items: center;
    max-width: 58%;
    padding: 4px 10px;
    font-size: 12px;
    color: var(--c-ink-2);
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line-2);
    border-radius: 999px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: none;
    padding: 6px 13px;
    font-size: 12.5px;
    color: var(--c-accent);
    background: var(--c-accent-soft);
    border-radius: 999px;
    transition: color .28s var(--ease), background .28s var(--ease);
}
.product-more i { font-style: normal; transition: transform .3s var(--ease); }
.product-card:hover .product-more { color: #fff; background: var(--c-primary); }
.product-card:hover .product-more i { transform: translateX(4px); }

.prod-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -2px 0 36px;
}
.prod-cat {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(16, 21, 28, .04);
    white-space: nowrap;
    transition: border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}
.prod-cat::before {
    content: "";
    flex: none;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-line);
    transition: background .28s var(--ease), transform .28s var(--ease);
}
.prod-cat-cn {
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: .2px;
    color: var(--c-ink-2);
    transition: color .28s var(--ease);
}
.prod-cat:hover {
    border-color: rgba(30, 111, 224, .45);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -18px rgba(6, 26, 58, .5);
}
.prod-cat:hover::before { background: var(--c-accent); transform: scale(1.4); }
.prod-cat:hover .prod-cat-cn { color: var(--c-accent); }
.prod-cat--all {
    background: var(--c-primary);
    border-color: var(--c-primary);
}
.prod-cat--all::before { background: rgba(255, 255, 255, .55); }
.prod-cat--all .prod-cat-cn { color: #fff; }
.prod-cat--all:hover { background: var(--c-accent); border-color: var(--c-accent); }
.prod-cat--all:hover::before { background: rgba(255, 255, 255, .8); }
.prod-cat--all:hover .prod-cat-cn { color: #fff; }

.cat-strip {
    counter-reset: catIdx;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.cat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 12px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    font-size: 14px;
    color: var(--c-ink-2);
    overflow: hidden;
    transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease),
                transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat-item::before {
    content: counter(catIdx, decimal-leading-zero);
    counter-increment: catIdx;
    position: absolute;
    top: 9px; right: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: rgba(30, 111, 224, .2);
    transition: color .3s var(--ease);
}
.cat-item::after {
    content: "";
    position: absolute;
    top: 0; left: -70%;
    width: 45%; height: 100%;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .32), rgba(255, 255, 255, 0));
    transform: skewX(-18deg);
    transition: left .62s var(--ease);
    pointer-events: none;
}
.cat-item:hover {
    color: #fff;
    background: var(--c-primary);
    border-color: var(--c-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -18px rgba(10, 44, 94, .55);
}
.cat-item:hover::before { color: rgba(255, 255, 255, .6); }
.cat-item:hover::after { left: 125%; }
.cat-item svg {
    width: 48px; height: 48px;
    padding: 11px;
    color: var(--c-accent);
    background: linear-gradient(160deg, rgba(30, 111, 224, .1), rgba(30, 111, 224, .015));
    border: 1px solid rgba(30, 111, 224, .14);
    border-radius: 15px;
    transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.cat-item:hover svg {
    color: #7FD4FF;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .22);
    transform: translateY(-2px);
}
.cat-item svg:not(:nth-child(1)) { display: none; }
.cat-item svg:nth-child(1) { display: block; }

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.adv-card {
    position: relative;
    padding: 34px 30px 32px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    overflow: hidden;
    transition: all .34s var(--ease);
}
.adv-card::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--c-accent), #6FB0FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.adv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 111, 224, .4);
    box-shadow: var(--shadow-l);
}
.adv-card:hover::after { transform: scaleX(1); }
.adv-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px; height: 54px;
    margin-bottom: 22px;
    color: var(--c-accent);
    background: var(--c-accent-soft);
    border-radius: var(--radius-m);
    transition: all .34s var(--ease);
}
.adv-ico svg { width: 27px; height: 27px; }
.adv-card:hover .adv-ico { color: #fff; background: var(--c-accent); }
.adv-title { font-size: 19px; margin-bottom: 12px; }
.adv-text { font-size: 14px; line-height: 1.85; color: var(--c-muted); }
.adv-num {
    position: absolute;
    right: 22px; top: 18px;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    color: var(--c-line-2);
    letter-spacing: -2px;
    transition: color .34s var(--ease);
}
.adv-card:hover .adv-num { color: var(--c-accent-soft); }

.news-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.news-tabs a {
    padding: 8px 22px;
    font-size: 14px;
    color: var(--c-ink-2);
    border: 1px solid var(--c-line);
    border-radius: 999px;
    background: #fff;
    transition: all .28s var(--ease);
}
.news-tabs a:hover,
.news-tabs a.active {
    color: #fff;
    background: linear-gradient(120deg, #1657D4, #2E8BFF);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(22, 87, 212, .28);
}

/* ---- 新闻区块底色（v1.11.4）：淡蓝渐变画布 + 两枚装饰圆（对应截图背景） ---- */
#news {
    position: relative;
    background: linear-gradient(135deg, #EDF3FF 0%, #E2ECFF 48%, #F3F7FF 100%);
    overflow: hidden;
}
#news::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -110px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%, rgba(151, 186, 246, .60), rgba(151, 186, 246, .22) 58%, rgba(151, 186, 246, 0) 72%);
    pointer-events: none;
}
#news::after {
    content: "";
    position: absolute;
    bottom: -170px;
    left: -130px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(129, 168, 240, .45), rgba(129, 168, 240, .16) 58%, rgba(129, 168, 240, 0) 72%);
    pointer-events: none;
}
#news > .container { position: relative; z-index: 1; }

/* ---- 首页新闻卡片网格（v1.11.4）：宽屏 2 列，≤760px 单列；分类签悬停联动由页内脚本驱动 ---- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.news-card {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(176, 199, 240, .55);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.news-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -85%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(46, 139, 255, .12), transparent);
    transform: skewX(-18deg);
    transition: left .65s var(--ease);
    pointer-events: none;
}
.news-card:hover::after { left: 135%; }
.news-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 0 0 1.5px rgba(46, 139, 255, .55), 0 18px 40px rgba(22, 87, 212, .16);
}
.news-card-thumb {
    flex: 0 0 148px;
    width: 148px;
    aspect-ratio: 3 / 2;
    align-self: center;
    border-radius: 10px;
    overflow: hidden;
    background: var(--c-accent-soft);
}
.news-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease); }
.news-card:hover .news-card-thumb img { transform: scale(1.06); }
.news-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 7px; }
.news-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}
.news-card-title a { color: var(--c-ink); }
.news-card:hover .news-card-title a { color: var(--c-accent); }
.news-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.65;
    color: var(--c-ink-2);
}
.news-card-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--c-ink-2); opacity: .75; }
.news-card-meta time, .news-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.news-card-meta svg { width: 14px; height: 14px; }
@media (max-width: 760px) {
    .news-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
    .news-card { padding: 12px; gap: 12px; }
    .news-card-thumb { flex-basis: 118px; width: 118px; }
    .news-card-title { font-size: 15px; }
    .news-card-desc { -webkit-line-clamp: 2; font-size: 12px; }
    .news-card-meta { font-size: 12px; }
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}
.news-list { display: grid; gap: 18px; }
.news-item {
    display: flex;
    gap: 22px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    transition: all .32s var(--ease);
}
.news-item:hover {
    border-color: rgba(30, 111, 224, .4);
    box-shadow: var(--shadow-m);
    transform: translateX(4px);
}
.news-thumb {
    position: relative;
    flex: none;
    width: 216px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-s);
    background: var(--c-bg-soft);
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.news-item:hover .news-thumb img { transform: scale(1.07); }
.news-body { min-width: 0; display: flex; flex-direction: column; }
.news-title {
    font-size: 17px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-item:hover .news-title { color: var(--c-accent); }
.news-desc {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--c-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1 1 auto;
}
/* 同产品卡：空描述不留空隙，底部信息行始终贴齐（非空时保持原 14px 间距） */
.news-desc:empty { display: none; }
.news-desc:empty + .news-meta { margin-top: auto; }
.news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--c-line);
    font-size: 12.5px;
    color: var(--c-muted);
}
.news-meta .news-cat { color: var(--c-accent); }
.news-meta time, .news-meta span { display: inline-flex; align-items: center; gap: 5px; }
.news-meta svg { width: 14px; height: 14px; }

.empty-tip {
    padding: 60px 20px;
    text-align: center;
    color: var(--c-muted);
    font-size: 14px;
    background: var(--c-bg-soft);
    border-radius: var(--radius-m);
}

/* 交付流程：首页「从需求到交付」5 步流程条。
   替代原「合作伙伴」logo 跑马灯（原区块读 {eyou:links} 演示数据，与页脚友情链接重复）。
   类名用 .flow-steps / .flow-step，不复用产品页已占用的 .flow-grid / .flow-item，避免撞名。 */
.flow-steps {
    --flow-gap: 20px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--flow-gap);
}
.flow-step {
    position: relative;
    padding: 30px 24px 28px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
}
/* 步骤先后：横线跨过 gap 连向下一步，末步不出线。线宽跟随 --flow-gap，缩放断点无需另改线宽 */
.flow-step::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: var(--flow-gap);
    height: 2px;
    margin-top: -1px;
    background: var(--c-line);
    transition: background .32s var(--ease);
    pointer-events: none;
}
.flow-step:last-child::after { display: none; }
.flow-step:hover {
    transform: translateY(-4px);
    border-color: var(--c-accent);
    box-shadow: var(--shadow-m);
}
.flow-step:hover::after { background: var(--c-accent); }

/* 序号：大号淡色数字，沿用 .adv-num 的视觉语言 */
.flow-num {
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--c-line-2);
    transition: color .34s var(--ease);
    pointer-events: none;
}
.flow-step:hover .flow-num { color: var(--c-accent-soft); }

.flow-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    color: var(--c-accent);
    background: var(--c-accent-soft);
    border-radius: var(--radius-m);
    transition: color .34s var(--ease), background .34s var(--ease);
}
.flow-ico svg { width: 25px; height: 25px; }
.flow-step:hover .flow-ico { color: #fff; background: var(--c-accent); }

.flow-title { position: relative; font-size: 17px; margin-bottom: 10px; }
.flow-text { position: relative; font-size: 13.5px; line-height: 1.8; color: var(--c-muted); }

.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--c-bg-dark);
    color: rgba(255, 255, 255, .68);
    font-size: 13.5px;
}
.site-footer::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-accent) 24%, #7FD4FF 50%, var(--c-accent) 76%, transparent);
    opacity: .8;
}
.site-footer::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -240px;
    width: min(1200px, 96vw);
    height: 560px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(30, 111, 224, .22), rgba(30, 111, 224, 0));
    pointer-events: none;
}
.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding: 62px 0 48px;
}
.footer-brand .footer-logo-row { display: flex; align-items: center; margin-bottom: 24px; }
.footer-logo { position: relative; display: inline-flex; align-items: center; }
.footer-logo::after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: 168%; height: 190%;
    transform: translate(-50%, -50%);
    background: radial-gradient(closest-side, rgba(111, 176, 255, .16), rgba(111, 176, 255, 0));
    pointer-events: none;
}
.footer-logo img { max-height: 46px; width: auto; }
.footer-logo svg { width: 40px; height: 40px; color: #6FB0FF; }
.footer-desc { line-height: 1.92; color: rgba(255, 255, 255, .58); max-width: 32em; }
.footer-contact { margin-top: 26px; display: grid; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; line-height: 1.7; }
.fc-ico {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    margin-top: -3px;
    color: #6FB0FF;
    background: rgba(111, 176, 255, .1);
    border: 1px solid rgba(111, 176, 255, .16);
    border-radius: 9px;
    transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.fc-ico svg { width: 15px; height: 15px; }
.footer-contact li:hover .fc-ico {
    color: #A9D4FF;
    background: rgba(111, 176, 255, .2);
    border-color: rgba(111, 176, 255, .42);
}
.footer-contact em { font-style: normal; color: rgba(255, 255, 255, .45); margin-right: 4px; }
.footer-contact a { transition: color .24s var(--ease); }
.footer-contact a:hover { color: #7FD4FF; }

.footer-col h3 {
    position: relative;
    font-size: 16px;
    color: #fff;
    margin-bottom: 22px;
    padding-bottom: 14px;
}
.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .03));
}
.footer-col h3::before {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 34px; height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--c-accent), #7FD4FF);
    box-shadow: 0 0 10px rgba(77, 155, 255, .7);
}
.footer-nav ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; }
.footer-nav a {
    display: inline-block;
    color: rgba(255, 255, 255, .68);
    transition: color .24s var(--ease), transform .24s var(--ease);
}
.footer-nav a:hover { color: #7FD4FF; transform: translateX(4px); }
.flink-list { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.flink-list li { display: flex; }
.flink-list a {
    display: inline-block;
    padding: 5px 11px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .6);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    transition: color .26s var(--ease), background .26s var(--ease), border-color .26s var(--ease);
}
.flink-list a:hover {
    color: #fff;
    background: rgba(111, 176, 255, .16);
    border-color: rgba(111, 176, 255, .45);
}

.qr-box { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.qr-box img { width: 96px; height: 96px; padding: 5px; background: #fff; border-radius: var(--radius-s); }
.qr-box span { font-size: 12.5px; color: rgba(255, 255, 255, .55); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}
.footer-bottom p { display: inline; margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, .5); }
.footer-bottom a:hover { color: #6FB0FF; }

.back-top {
    position: fixed;
    right: 28px;
    bottom: 34px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    color: #fff;
    background: var(--c-primary);
    border-radius: var(--radius-s);
    box-shadow: var(--shadow-m);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .3s var(--ease);
}
.back-top.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--c-accent); transform: translateY(-3px); }
.back-top svg { width: 20px; height: 20px; }

.page-hero {
    position: relative;
    padding: 58px 0 54px;
    background:
        radial-gradient(900px 380px at 80% 0%, rgba(30, 111, 224, .34), transparent 62%),
        linear-gradient(112deg, #0A2C5E 0%, #0E1726 100%);
    color: #fff;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 56px 56px, 56px 56px;
    pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1,
.page-hero .page-hero-title { margin: 0; font-size: 32px; font-weight: 600; line-height: 1.35; color: #fff; }
.page-hero-en {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .52);
}
.page-hero-desc { margin-top: 12px; max-width: 760px; color: rgba(255, 255, 255, .7); line-height: 1.85; }

.crumb {
    padding: 18px 0;
    margin-bottom: 26px;
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-line);
    font-size: 13.5px;
    color: var(--c-muted);
}
.crumb-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.crumb a { color: var(--c-ink-2); }
.crumb a:hover { color: var(--c-accent); }
.crumb .crumb-sep { color: var(--c-line); }

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    padding: 52px 0 76px;
    align-items: start;
}
.page-layout--full { grid-template-columns: minmax(0, 1fr); }
/* 产品详情页：主图+信息+正文在主列，侧栏与产品标题平齐、随滚动吸顶 */
.prod-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    padding: 52px 0 76px;
    align-items: start;
}
.prod-maincol { min-width: 0; }
.page-content > .detail-block:first-child { margin-top: 0; }
.prod-top {
    display: grid;
    grid-template-columns: minmax(0, 0.66fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
}
/* 侧栏：不做吸顶，随正文主列一起滚动（全站统一） */
.page-aside {
    display: grid;
    gap: 24px;
    align-self: start;
}
/* 侧栏双列表：子栏目列表优先，无子栏目时由 JS 换成兜底列表 */
.side-nav[hidden] { display: none; }

.side-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    overflow: hidden;
    box-shadow: 0 16px 38px -30px rgba(6, 26, 58, .4);
}
.side-card-head {
    position: relative;
    padding: 15px 20px;
    background: linear-gradient(120deg, var(--c-primary) 0%, #17497f 100%);
    overflow: hidden;
}
.side-card-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(140px 64px at 88% 16%, rgba(110, 185, 255, .32), transparent 72%);
    pointer-events: none;
}
.side-card-head h3 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}
.side-card-head h3::before {
    content: "";
    flex: none;
    width: 4px;
    height: 15px;
    border-radius: 2px;
    background: var(--c-accent);
    box-shadow: 0 0 8px var(--c-accent);
}
.side-card-body { padding: 10px 14px 14px; }

.side-nav li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    margin: 2px 0;
    font-size: 14px;
    color: var(--c-ink-2);
    border-radius: 8px;
    transition: color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.side-nav li a::before {
    content: "";
    flex: none;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-muted);
    opacity: .55;
    transition: all .22s var(--ease);
}
.side-nav li a:hover {
    color: var(--c-accent);
    background: var(--c-bg-soft);
    transform: translateX(3px);
}
.side-nav li a:hover::before { background: var(--c-accent); opacity: 1; }
.side-nav li a.active {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(115deg, var(--c-accent) 0%, var(--c-primary) 100%);
    box-shadow: 0 10px 20px -12px rgba(23, 100, 190, .75);
    transform: none;
}
.side-nav li a.active::before { background: #fff; opacity: 1; }

.side-news li {
    display: flex;
    gap: 12px;
    padding: 12px 10px;
    margin: 2px -10px;
    border-bottom: 1px dashed var(--c-line-2);
    border-radius: 8px;
    transition: background .22s var(--ease);
}
.side-news li:hover { background: var(--c-bg-soft); }
.side-news li:last-child { border-bottom: 0; padding-bottom: 0; }
.side-news .thumb { flex: none; width: 84px; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 3px; background: var(--c-bg-soft); }
.side-news .thumb img { width: 100%; height: 100%; object-fit: cover; }
/* 热门推荐缩略图「按图片自身比例显示」只放开给产品域页面：
   .page-layout--product 仅 lists_product.htm 使用，.prod-wrap 仅 view_product.htm 使用；
   其余页面（文章 / 下载 / 图集等）沿用上面的 4:3 统一裁切，
   避免宽度参差不齐把栏内纵向节奏打散。 */
.page-layout--product .side-news .thumb,
.prod-wrap .side-news .thumb {
    width: auto;
    height: 64px;
    min-width: 46px;
    max-width: calc(100% - 130px);
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 3px;
    background: var(--c-bg-soft);
}
.page-layout--product .side-news .thumb img,
.prod-wrap .side-news .thumb img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.side-news .txt { min-width: 0; }
.side-news .txt a {
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.side-news .txt a:hover { color: var(--c-accent); }
.side-news .txt time { display: block; margin-top: 6px; font-size: 12px; color: var(--c-muted); }

.side-contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--c-primary) 0%, #17497f 62%, #1d5aa8 100%);
    color: #fff;
    border: 0;
    padding: 26px 22px;
}
.side-contact::before {
    content: "";
    position: absolute;
    right: -44px;
    top: -44px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 190, 255, .3), transparent 70%);
    pointer-events: none;
}
.side-contact > * { position: relative; }
.side-contact h3 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.side-contact p { font-size: 13px; color: rgba(255, 255, 255, .68); line-height: 1.8; }
.side-contact strong { display: block; margin-top: 12px; font-size: 25px; font-weight: 700; letter-spacing: .5px; }

.filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 20px;
    margin-bottom: 28px;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
}
.filter-bar-label { font-size: 14px; color: var(--c-muted); margin-right: 6px; }
.filter-bar a {
    padding: 6px 18px;
    font-size: 14px;
    color: var(--c-ink-2);
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    transition: all .26s var(--ease);
}
.filter-bar a:hover,
.filter-bar a.active { color: #fff; background: var(--c-accent); border-color: var(--c-accent); }

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

/* 主图区渐变描边 + 柔和光晕（仅主图，缩略图不参与框选） */
.prod-gallery {
    border-radius: var(--radius-m);
    background: #fff;
}
.prod-gallery-main {
    position: relative;
    padding: 3px;
    border-radius: calc(var(--radius-m) + 4px);
    background: linear-gradient(140deg, #2F7BF0 0%, #7CB6FF 32%, #D9E8FF 52%, #7CB6FF 70%, #2F7BF0 100%);
    background-size: 240% 240%;
    box-shadow: 0 0 0 1px rgba(47, 123, 240, .14),
                0 0 22px -4px rgba(47, 123, 240, .38),
                0 20px 44px -30px rgba(47, 123, 240, .9);
    animation: prodFrame 12s ease-in-out infinite;
}
@keyframes prodFrame {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* 高度跟随主图自身比例，不再强制 1:1 */
.prod-gallery-main img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-m) + 2px);
    background: #fff;
}
.prod-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;  /* 与主图拉开距离：缩略图只保留自身 1px 灰框，不再另加分隔线 */
    padding: 0;
}
.prod-thumbs {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.prod-thumbs::-webkit-scrollbar { display: none; }
.prod-thumbs-nav {
    flex: none;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c-line);
    border-radius: 50%;
    background: #fff;
    color: var(--c-ink-2);
    cursor: pointer;
    transition: all .2s var(--ease);
}
.prod-thumbs-nav svg { width: 15px; height: 15px; }
.prod-thumbs-nav:hover { color: #fff; background: var(--c-accent); border-color: var(--c-accent); }
.prod-thumbs li {
    flex: 0 0 calc((100% - 40px) / 5);  /* 一屏 5 张（含 4 个 10px 间隙），其余由箭头滚动露出 */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--c-line);
    border-radius: 3px;
    background: var(--c-bg-soft);
    cursor: pointer;
    opacity: .72;
    transition: opacity .2s var(--ease), border-color .2s var(--ease);
}
.prod-thumbs li img { width: 100%; height: 100%; object-fit: contain; }
.prod-thumbs li:hover { opacity: 1; }
.prod-thumbs li.is-active { opacity: 1; border-color: var(--c-accent); }

.prod-info h1 { font-size: 26px; line-height: 1.45; }
.prod-summary-block { margin-top: 20px; }
.prod-summary {
    margin-top: 0;
    font-size: 14.5px;
    line-height: 1.95;
    color: var(--c-ink-2);
    white-space: pre-line;  /* 保留录入时的换行，回车即分段 */
}
.prod-points { margin-top: 22px; display: grid; gap: 10px; }
.prod-points li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; line-height: 1.8; color: var(--c-ink-2);
}
.prod-points svg { flex: none; width: 18px; height: 18px; margin-top: 4px; color: var(--c-accent); }
/* 四项优势点全空时整块隐藏（每项是 {eyou:notempty}，无 <li> 即视为未填写） */
.prod-points:not(:has(li)) { display: none; }
/* 工艺流程全空时整块隐藏：新版多行字段（.flow-raw）与旧版单步字段（.flow-item）都没有内容 */
.detail-block--flow:not(:has(.flow-item)):not(:has(.flow-raw)) { display: none; }
.prod-actions {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 30px; padding-top: 26px;
    border-top: 1px solid var(--c-line);
}
.prod-phone {
    display: flex; align-items: center; gap: 10px;
    padding: 0 4px;
}
.prod-phone em { font-style: normal; font-size: 12px; color: var(--c-muted); display: block; }
.prod-phone strong { font-size: 20px; font-weight: 700; color: var(--c-primary); }

.detail-block { margin-top: 48px; }
.detail-block-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px; padding-bottom: 16px;
    border-bottom: 2px solid var(--c-line);
}
.detail-block-head h2 { font-size: 22px; }
.detail-block-head span { font-size: 11.5px; letter-spacing: 2.2px; color: var(--c-muted); text-transform: uppercase; }

.rich-text { font-size: 15.5px; line-height: 2; color: var(--c-ink-2); word-wrap: break-word; }
.rich-text p { margin: 0 0 20px; }
.rich-text h2 { font-size: 21px; margin: 34px 0 16px; padding-left: 13px; border-left: 3px solid var(--c-accent); }
.rich-text h3 { font-size: 18px; margin: 28px 0 14px; }
.rich-text h4 { font-size: 16px; margin: 22px 0 12px; }
/* 图片保持行内块：编辑器段落 text-align 的居中/靠右才能生效；font-size:0 消除图间空隙保证无缝拼接 */
.rich-text img { max-width: 100%; height: auto; margin: 0; border-radius: 0; display: inline-block; vertical-align: top; }
/* 后台编辑器常把长图切片逐段粘贴：只含图片的段落去掉外边距与行高，让图片严丝合缝连成一张 */
.rich-text p:has(> img:only-child) { margin: 0; line-height: 0; font-size: 0; text-align: inherit; }
.rich-text p:has(> img:only-child) br { display: none; }
.rich-text ul, .rich-text ol { margin: 0 0 20px; padding-left: 22px; }
.rich-text ul li { list-style: none; position: relative; padding-left: 16px; margin-bottom: 10px; }
.rich-text ul li::before {
    content: ""; position: absolute; left: 0; top: 13px;
    width: 6px; height: 6px; background: var(--c-accent); border-radius: 50%;
}
.rich-text ol { list-style: decimal; }
.rich-text ol li { margin-bottom: 10px; }
.rich-text a { color: var(--c-accent); text-decoration: underline; }
.rich-text table { margin: 22px 0; font-size: 14.5px; }
.rich-text th, .rich-text td { padding: 12px 16px; border: 1px solid var(--c-line); text-align: left; }
.rich-text th { background: var(--c-bg-soft); font-weight: 600; }
.rich-text blockquote {
    margin: 22px 0; padding: 16px 22px;
    background: var(--c-bg-soft);
    border-left: 3px solid var(--c-accent);
    color: var(--c-ink-2);
    border-radius: 0 var(--radius-s) var(--radius-s) 0;
}

.spec-table { width: 100%; border: 1px solid var(--c-line); border-radius: var(--radius-m); overflow: hidden; }
.spec-table th, .spec-table td { padding: 14px 20px; font-size: 14.5px; border-bottom: 1px solid var(--c-line); text-align: left; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th { width: 220px; background: var(--c-bg-soft); font-weight: 600; color: var(--c-ink); }
.spec-table td { color: var(--c-ink-2); }
/* 基础信息仅当后台填写了自定义行（tr[data-spec]）才显示，五行全空则整块隐藏 */
.detail-block--spec:not(:has(tr[data-spec])) { display: none; }

/* 单个多行文本字段的原始形态：脚本会把每一行拆成 .flow-item 卡片；
   脚本未启用或加载失败时按原样分行显示，内容依然完整可读 */
.flow-raw {
    grid-column: 1 / -1;
    padding: 18px 22px;
    border-left: 3px solid var(--c-accent);
    border-radius: var(--radius-m);
    background: var(--c-bg-soft);
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--c-ink-2);
    white-space: pre-line;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 14px;
    counter-reset: flow;
}
.flow-item {
    position: relative;
    padding: 22px 16px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    font-size: 14px;
    color: var(--c-ink-2);
    counter-increment: flow;
    transition: all .3s var(--ease);
}
.flow-item::before {
    content: counter(flow, decimal-leading-zero);
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: 1px;
}
.flow-item:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 111, 224, .45);
    box-shadow: var(--shadow-m);
    color: var(--c-primary);
}

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

.article-head {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--c-line);
}
.article-title { font-size: 28px; line-height: 1.5; }
.article-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px;
    margin-top: 16px; font-size: 13px; color: var(--c-muted);
}
.article-meta .article-cat {
    padding: 3px 12px; color: var(--c-accent);
    background: var(--c-accent-soft); border-radius: 999px;
}
.article-summary {
    margin-top: 24px; padding: 18px 22px;
    background: var(--c-bg-soft);
    border-left: 3px solid var(--c-accent);
    border-radius: 0 var(--radius-s) var(--radius-s) 0;
    font-size: 14.5px; line-height: 1.9; color: var(--c-ink-2);
}
.article-content { margin-top: 30px; }

.article-pages {
    display: grid; gap: 12px;
    margin-top: 44px; padding-top: 26px;
    border-top: 1px solid var(--c-line);
    font-size: 14.5px;
}
.article-pages a { color: var(--c-ink-2); }
.article-pages a:hover { color: var(--c-accent); }
.article-pages .page-none { color: var(--c-muted); }

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px; height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-ink-2);
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    transition: all .25s var(--ease);
}
.pagination a:hover {
    color: var(--c-accent);
    border-color: var(--c-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 18px -12px rgba(10, 44, 94, .45);
}
.pagination .active,
.pagination .current {
    color: #fff;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    border-color: transparent;
    box-shadow: 0 10px 18px -12px rgba(30, 111, 224, .55);
}
.pagination .pagination-info,
.pagination .pagination-total { border: 0; background: none; color: var(--c-muted); }

.search-hero { padding: 46px 0 42px; background: var(--c-bg-soft); border-bottom: 1px solid var(--c-line); }
.search-hero h1,
.search-hero .search-hero-title { margin: 0; font-size: 26px; font-weight: 600; line-height: 1.35; color: var(--c-ink); }
.search-hero h1 em { font-style: normal; color: var(--c-accent); }
.search-hero p { margin-top: 10px; font-size: 14px; color: var(--c-muted); }
.search-count { margin: 26px 0 4px; font-size: 14px; color: var(--c-muted); }
.search-count b { color: var(--c-accent); font-weight: 600; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 18px;
    font-size: 14px;
    color: var(--c-ink-2);
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    transition: all .26s var(--ease);
}
.tag-pill em { font-style: normal; font-size: 12px; color: var(--c-muted); }
.tag-pill:hover { color: #fff; background: var(--c-accent); border-color: var(--c-accent); }
.tag-cloud-hot .tag-pill { border-color: var(--c-accent); color: var(--c-accent); }
.tag-cloud-hot .tag-pill em { color: var(--c-accent); }
.tag-cloud-hot .tag-pill:hover { color: #fff; background: var(--c-accent); border-color: var(--c-accent); }
.tag-pill:hover em { color: rgba(255, 255, 255, .8); }
.tag-pill.is-lv2 { font-size: 15px; }
.tag-pill.is-lv3 { font-size: 16px; font-weight: 600; border-color: rgba(30, 111, 224, .45); color: var(--c-primary); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-m);
    border: 1px solid var(--c-line);
    background: var(--c-bg-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item span {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 30px 16px 14px;
    font-size: 14px; color: #fff;
    background: linear-gradient(180deg, transparent, rgba(10, 22, 40, .82));
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}

.download-list { display: grid; gap: 12px; }
.download-item {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    transition: all .3s var(--ease);
}
.download-item:hover { border-color: rgba(30, 111, 224, .42); box-shadow: var(--shadow-m); }
.download-ico { flex: none; width: 42px; height: 42px; color: var(--c-accent); }
.download-ico svg { width: 100%; height: 100%; }
.download-txt { flex: 1 1 auto; min-width: 0; }
.download-txt h3 { font-size: 16px; }
.download-txt p { margin-top: 4px; font-size: 13px; color: var(--c-muted); }
.download-btn {
    flex: none; padding: 9px 24px; font-size: 14px;
    color: #fff; background: var(--c-accent); border-radius: var(--radius-s);
    transition: background .25s var(--ease);
}
.download-btn:hover { background: #1A5FC4; color: #fff; }

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}
.about-intro-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-m);
    border: 1px solid var(--c-line);
    background: var(--c-bg-soft);
}
.about-intro-media img { width: 100%; height: 100%; object-fit: cover; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.stat-card {
    padding: 30px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    transition: all .32s var(--ease);
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(30, 111, 224, .4); box-shadow: var(--shadow-m); }
.stat-card strong { display: block; font-size: 36px; font-weight: 700; color: var(--c-accent); line-height: 1.15; }
.stat-card strong span { font-size: 17px; margin-left: 3px; font-weight: 500; }
.stat-card strong span[data-count] { font-size: inherit; font-weight: inherit; margin-left: 0; }
.stat-card em { font-style: normal; display: block; margin-top: 8px; font-size: 14px; color: var(--c-muted); }

.cert-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.cert-item {
    padding: 26px 18px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    font-size: 14px;
    color: var(--c-ink-2);
    transition: all .3s var(--ease);
}
.cert-item:hover { border-color: rgba(30, 111, 224, .42); transform: translateY(-4px); }
.cert-item img { max-height: 66px; margin: 0 auto 14px; display: block; object-fit: contain; }
.cert-item svg { width: 34px; height: 34px; margin: 0 auto 14px; display: block; color: var(--c-accent); }

.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.contact-card {
    position: relative;
    padding: 34px 28px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    overflow: hidden;
    transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
}
.contact-card::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-accent), #7FD4FF);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .44s var(--ease);
}
.contact-card::after {
    content: "";
    position: absolute;
    right: -40px; top: -40px;
    width: 150px; height: 150px;
    background: radial-gradient(closest-side, rgba(30, 111, 224, .14), rgba(30, 111, 224, 0));
    opacity: 0;
    transition: opacity .44s var(--ease);
    pointer-events: none;
}
.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 111, 224, .42);
    box-shadow: 0 26px 54px -24px rgba(10, 44, 94, .42);
}
.contact-card:hover::before { transform: scaleX(1); }
.contact-card:hover::after { opacity: 1; }
.contact-ico {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; margin-bottom: 20px;
    color: var(--c-accent);
    background: linear-gradient(160deg, rgba(30, 111, 224, .12), rgba(30, 111, 224, .02));
    border: 1px solid rgba(30, 111, 224, .16);
    border-radius: 16px;
    transition: color .32s var(--ease), background .32s var(--ease),
                border-color .32s var(--ease), transform .32s var(--ease);
}
.contact-ico svg { width: 26px; height: 26px; }
.contact-card:hover .contact-ico {
    color: #fff;
    background: linear-gradient(140deg, var(--c-primary), var(--c-accent));
    border-color: transparent;
    transform: translateY(-2px);
}
.contact-card h3 { font-size: 17px; margin-bottom: 10px; }
.contact-card p { font-size: 14px; line-height: 1.85; color: var(--c-muted); word-break: break-all; }
.contact-card strong { display: block; margin-top: 6px; font-size: 21px; font-weight: 700; color: var(--c-primary); word-break: break-all; }
.contact-card strong a { transition: color .26s var(--ease); }
.contact-card strong a:hover { color: var(--c-accent); }

.contact-qr { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.contact-qr img {
    width: 150px; height: 150px; padding: 8px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 14px;
    box-shadow: 0 16px 34px -18px rgba(10, 44, 94, .4);
}
.contact-qr .qr-txt { min-width: 0; }
.contact-qr .qr-txt h3 { font-size: 18px; margin-bottom: 10px; }
.contact-qr .qr-txt p { font-size: 14px; line-height: 1.9; color: var(--c-muted); }

.contact-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
    padding: 38px 40px;
    color: #fff;
    background: linear-gradient(120deg, #0B2A57, var(--c-primary) 58%, #2E7BE6);
    border-radius: var(--radius-m);
    box-shadow: 0 26px 54px -26px rgba(10, 44, 94, .55);
}
.contact-cta::before {
    content: "";
    position: absolute;
    right: -80px; top: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(closest-side, rgba(127, 212, 255, .26), rgba(127, 212, 255, 0));
    pointer-events: none;
}
.contact-cta-txt { position: relative; min-width: 0; }
.contact-cta-txt h2 { font-size: 24px; color: #fff; }
.contact-cta-txt p {
    max-width: 46em;
    margin-top: 10px;
    font-size: 14.5px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .76);
}
.contact-cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; flex: none; }
.contact-cta .btn--primary { background: #fff; color: var(--c-primary); box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .5); }
.contact-cta .btn--primary:hover { background: #F1F7FF; color: var(--c-primary); }
.contact-cta .btn--ghost { border-color: rgba(255, 255, 255, .52); color: #fff; }
.contact-cta .btn--ghost:hover { background: rgba(255, 255, 255, .16); border-color: #fff; }

.map-slot {
    margin-top: 24px;
    aspect-ratio: 21 / 8;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-bg-soft);
    border: 1px dashed var(--c-line);
    border-radius: var(--radius-m);
    color: var(--c-muted);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}
.map-slot iframe { width: 100%; height: 100%; border: 0; }
.map-slot:empty { display: none; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row--full { grid-column: 1 / -1; }
.form-row label { font-size: 14px; color: var(--c-ink-2); }
.form-row label i { font-style: normal; color: #D64545; margin-left: 3px; }
.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-s);
    background: #fff;
    outline: none;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-row textarea { min-height: 132px; resize: vertical; line-height: 1.8; }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(30, 111, 224, .12);
}
.form-row select { height: 46px; }
.form-submit { margin-top: 24px; }

.ad-slot { position: relative; border-radius: var(--radius-m); overflow: hidden; }
.ad-slot img { width: 100%; display: block; }
.ad-badge {
    position: absolute; right: 0; bottom: 0;
    padding: 1px 7px;
    font-size: 11px; font-style: normal;
    color: rgba(255, 255, 255, .85);
    background: rgba(16, 21, 28, .45);
    border-radius: var(--radius-s) 0 0 0;
}

.site-main { display: block; padding-bottom: 36px; }
/* 首页末屏 CTA 与页脚贴排是设计意图，不加大间距 */
.site-main--home { padding-bottom: 0; }

.page-content,
.product-body,
.news-body,
.about-intro > * { min-width: 0; }

.form-ctrl { display: block; }
.form-ctrl input,
.form-ctrl textarea,
.form-ctrl select { width: 100%; }

@media (max-width: 1280px) {
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cat-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hero-title { font-size: 40px; }
}

@media (max-width: 1080px) {
    .section { padding: 60px 0; }
    .news-layout { grid-template-columns: minmax(0, 1fr); }
    .page-layout { grid-template-columns: minmax(0, 1fr); gap: 36px; padding: 44px 0 64px; }
    .prod-wrap { grid-template-columns: minmax(0, 1fr); gap: 36px; padding: 44px 0 64px; }
    .adv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .prod-top { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    .about-intro { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cert-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    /* 交付流程：转 3 列（两行）后不再有单行先后关系，收起连接线 */
    .flow-steps { --flow-gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .flow-step::after { display: none; }
    .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
    .hero-stats { gap: 0; }
    .hero-stat { padding-right: 30px; margin-right: 30px; }
    .hero-stat strong { font-size: 28px; }

    /* ---------- 顶栏：横向导航收起为抽屉 ----------
       断点用 1080 而不是 992：7 个栏目 + logo + 工具区的横向导航在
       993~1080 之间会把 .nav 盒子挤爆（实测 1000px 时首项溢出 nav 左缘、
       只剩 8px 贴着 logo）。1080 正好是本文件其它布局转单列的断点，对齐。 */
    .site-header.is-stuck .header-inner { height: var(--hd-h); }
    .site-header.is-stuck .brand-logo { max-height: 38px; }

    .header-inner { gap: 12px; }
    .nav-toggle { display: flex; order: 3; }
    .brand { order: 1; }
    .header-tools { order: 2; margin-left: auto; gap: 4px; padding-left: 0; border-left: 0; }
    .lang-panel { min-width: 160px; max-width: calc(100vw - 32px); }

    /* 抽屉挂在 fixed 顶栏的正下方。
       🚨 不用 bottom:0 —— .site-header 上的 backdrop-filter 会给 fixed 后代
       造包含块，原来 top:var(--hd-h) + bottom:0 是相对「64px 高的顶栏」解析的，
       算出来高度只有 51px，抽屉根本打不开。改用 top:100% + 显式高度：
       top:100% 相对顶栏自身高度（= --hd-h）解析，高度再撑满剩余视口。 */
    .nav {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        height: calc(100vh - var(--hd-h));
        height: calc(100dvh - var(--hd-h));
        z-index: 99;
        padding: 10px 0 40px;
        background: #fff;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid var(--c-line);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: all .3s var(--ease);
    }
    .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

    .nav-list { display: block; padding: 0 20px; }
    .nav-item { border-bottom: 1px solid var(--c-line-2); }
    .nav-item::before { display: none; }
    .nav-link {
        display: block;
        height: auto;
        padding: 16px 44px 16px 0;
        border-radius: 0;
        line-height: 1.5;
        font-size: 16px;
    }
    .nav-link::after { display: none; }
    .nav-link::before { display: none; }
    .nav-item:hover > .nav-link,
    .nav-item.active > .nav-link { background: none; }
    .nav-item.active > .nav-link {
        color: var(--c-accent);
        background-image: none;
        -webkit-text-fill-color: currentColor;
    }

    .sub-toggle {
        position: absolute;
        right: 0; top: 0;
        width: 46px; height: 54px;
        display: flex; align-items: center; justify-content: center;
        color: var(--c-muted);
    }
    .sub-toggle::before {
        content: "";
        width: 9px; height: 9px;
        border-right: 1.6px solid currentColor;
        border-bottom: 1.6px solid currentColor;
        transform: rotate(45deg) translate(-2px, -2px);
        transition: transform .3s var(--ease);
    }
    .nav-item.is-expand .sub-toggle::before { transform: rotate(225deg) translate(-2px, -2px); }

    .subnav {
        position: static;
        min-width: 0;
        padding: 0 0 0 14px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        max-height: 0;
        overflow: hidden;
    }
    .nav-item.is-expand > .subnav { display: block; max-height: 640px; }
    .subnav li a { padding: 12px 0 12px 12px; border-radius: 0; font-size: 15px; border-bottom: 1px dashed var(--c-line-2); }
    .subnav li:last-child a { border-bottom: 0; }
    .subnav li a:hover { padding-left: 12px; background: none; }

    /* 搜索面板同样贴在顶栏下方（顶栏现在到 1080 才收起，所以这条也放这里） */
    .search-panel {
        position: fixed;
        top: var(--hd-h); left: 0; right: 0;
        width: auto;
        border-radius: 0;
        border-left: 0; border-right: 0;
    }
}

@media (max-width: 992px) {
    :root { --hd-h: 64px; }

    .prod-cats {
        gap: 8px;
        margin-bottom: 26px;
    }
    .prod-cat { padding: 8px 15px; }
    .prod-cat-cn { font-size: 13.5px; }

    .tool-btn { width: 38px; height: 38px; }

    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .product-grid--list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .hero { min-height: 0; }
    .hero-inner { padding-top: 52px; padding-bottom: 52px; }
    .hero-title { font-size: 32px; }
    .hero-sub { font-size: 15.5px; }
    .sec-title { font-size: 24px; }
    .sec-head--center .sec-title { font-size: 26px; }
    .page-hero h1,
    .page-hero .page-hero-title { font-size: 26px; }
    .article-title { font-size: 23px; }
    .prod-info h1 { font-size: 22px; }
    .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    body { font-size: 14.5px; }
    .site-header.is-stuck .brand-logo { max-height: 34px; }
    .header-tools { gap: 2px; }
    .container { padding: 0 16px; }
    .section { padding: 46px 0; }
    .section--tight { padding: 34px 0; }
    .sec-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
    .sec-title { font-size: 22px; }
    .sec-title::before { height: 21px; margin-top: -10.5px; }
    .more-link { padding: 8px 16px; font-size: 13px; }

    .brand-logo { max-height: 38px; }
    .brand-mark { width: 40px; height: 40px; border-radius: 11px; }
    .brand-mark svg { width: 22px; height: 22px; }

    .hero-title { font-size: 26px; }
    .hero-sub { font-size: 14.5px; line-height: 1.85; margin-top: 14px; }
    .hero-actions { margin-top: 26px; gap: 10px; }
    .btn { padding: 11px 22px; font-size: 14px; }
    .hero-stats { margin-top: 34px; padding-top: 22px; flex-wrap: wrap; gap: 18px 0; }
    .hero-stat {
        flex: 0 0 50%;
        padding-right: 0; margin-right: 0; border-right: 0;
        border-left: 2px solid rgba(255, 255, 255, .16);
        padding-left: 14px;
    }
    .hero-stat strong { font-size: 24px; }
    .hero-stat em { font-size: 12px; }

    .cat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .cat-item { padding: 18px 10px; font-size: 13px; }
    .product-body { padding: 16px 18px 20px; }
    .product-title { font-size: 16px; min-height: 0; }
    .adv-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
    .adv-card { padding: 26px 22px 24px; }
    .adv-num { font-size: 34px; right: 16px; top: 14px; }

    .news-item { flex-direction: column; gap: 14px; padding: 16px; }
    .news-thumb { width: 100%; aspect-ratio: 16 / 9; }
    .news-title { font-size: 16px; }
    .news-desc { font-size: 13px; -webkit-line-clamp: 3; }
    .news-meta { gap: 12px; font-size: 12px; }

    .spec-table th { width: 108px; padding: 11px 12px; font-size: 13.5px; }
    .spec-table td { padding: 11px 12px; font-size: 13.5px; }
    .flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .flow-item { padding: 16px 10px; font-size: 13px; }
    .detail-block { margin-top: 34px; }
    .detail-block-head h2 { font-size: 19px; }
    .prod-actions { gap: 10px; }
    .prod-phone strong { font-size: 18px; }

    .rich-text { font-size: 15px; line-height: 1.95; }
    .rich-text h2 { font-size: 18px; }
    .rich-text h3 { font-size: 16.5px; }
    .rich-text table { font-size: 13px; display: block; overflow-x: auto; white-space: nowrap; }
    .article-summary { padding: 15px 16px; font-size: 14px; }
    .article-meta { gap: 8px 14px; font-size: 12.5px; }

    .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .stat-card { padding: 22px 14px; }
    .stat-card strong { font-size: 26px; }
    .cert-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
    .contact-card { padding: 24px 20px; }
    .contact-qr { gap: 18px; }
    .contact-cta { padding: 28px 22px; gap: 20px; }
    .contact-cta-txt h2 { font-size: 21px; }
    .contact-qr img { width: 116px; height: 116px; }

    .form-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
    .filter-bar { padding: 14px; gap: 8px; }
    .filter-bar a { padding: 5px 14px; font-size: 13px; }

    .footer-top { grid-template-columns: minmax(0, 1fr); gap: 30px; padding: 42px 0 34px; }
    .footer-col h3 { margin-bottom: 16px; padding-bottom: 10px; font-size: 15px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; padding: 18px 0; font-size: 12.5px; }

    .back-top { right: 14px; bottom: 18px; width: 42px; height: 42px; }
    .flow-steps { --flow-gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .flow-step { padding: 22px 18px 20px; }
    .flow-num { font-size: 34px; right: 14px; top: 12px; }
    .flow-title { font-size: 16px; }
    .flow-text { font-size: 13px; }
    .pagination a, .pagination span { min-width: 36px; height: 36px; font-size: 13px; }
}

@media (max-width: 600px) {
    .product-grid,
    .product-grid--list { grid-template-columns: minmax(0, 1fr); gap: 16px; }
    .flow-steps { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 420px) {
    .hero-title { font-size: 22px; }
    .hero-stat { flex: 0 0 100%; }
    .cat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: minmax(0, 1fr); }
    .related-grid { grid-template-columns: minmax(0, 1fr); }
    .flow-grid { grid-template-columns: minmax(0, 1fr); }
    .stat-grid { grid-template-columns: minmax(0, 1fr); }
    .btn { width: 100%; justify-content: center; }
    .hero-actions { flex-direction: column; }
}

@media (min-width: 1440px) {
    :root {
        --container: 1380px;
        --hd-h: 80px;
        --hd-h-stuck: 66px;
    }
    .container { padding: 0 clamp(24px, 2.2vw, 44px); }

    .section { padding: 92px 0; }
    .section--tight { padding: 62px 0; }
    .sec-head { margin-bottom: 48px; }
    .sec-title { font-size: 32px; }
    .sec-desc { font-size: 15.5px; }

    .hero { min-height: 620px; }
    .hero-inner { padding-top: 86px; padding-bottom: 86px; }
    .hero-txt { max-width: 960px; }
    .hero-title { font-size: 50px; }
    .hero-sub { font-size: 17.5px; max-width: 760px; }
    .hero-stats { margin-top: 60px; }
    .hero-stat strong { font-size: 38px; }

    .product-grid { gap: 26px; }
    .adv-grid { gap: 26px; }
    .related-grid { gap: 24px; }
    .gallery-grid { gap: 24px; }
    .cert-grid { gap: 24px; }
    .stat-grid { gap: 24px; }
    .cat-strip { gap: 18px; }
    .news-layout { gap: 36px; }
    .page-layout { gap: 44px; padding: 60px 0 88px; }
    .prod-wrap { gap: 44px; padding: 60px 0 88px; }
    .about-intro { gap: 52px; }
    .prod-top { gap: 48px; margin-bottom: 58px; }
    .spec-table th, .spec-table td { padding: 16px 24px; font-size: 15px; }
    .spec-table th { width: 260px; }

    .article-title { font-size: 30px; }
    .rich-text { font-size: 16px; }
    .footer-top { gap: 48px; padding: 70px 0 54px; }
}

@media (min-width: 1680px) {
    :root {
        --container: 1540px;
        --hd-h: 84px;
        --hd-h-stuck: 68px;
    }

    .section { padding: 104px 0; }
    .section--tight { padding: 72px 0; }
    .sec-head { margin-bottom: 54px; }
    .sec-title { font-size: 34px; }
    .sec-desc { font-size: 16.5px; }
    .more-link { padding: 11px 24px; font-size: 14.5px; }

    .hero { min-height: 680px; }
    .hero-inner { padding-top: 96px; padding-bottom: 96px; }
    .hero-txt { max-width: 1040px; }
    .hero-title { font-size: 54px; }
    .hero-sub { font-size: 18px; max-width: 800px; }
    .hero-stats { margin-top: 66px; }
    .hero-stat strong { font-size: 42px; }
    .hero-stat em { font-size: 13.5px; }

    .news-layout { grid-template-columns: minmax(0, 1fr) 400px; gap: 40px; }
    .page-layout, .prod-wrap { grid-template-columns: minmax(0, 1fr) 364px; gap: 48px; }

    .product-grid { gap: 28px; }
    .product-title { font-size: 18px; min-height: 54px; }
    .product-body { padding: 22px 24px 26px; }
    .adv-grid { gap: 28px; }
    .adv-card { padding: 38px 34px 36px; }
    .adv-title { font-size: 20px; }
    .news-thumb { width: 258px; }
    .news-title { font-size: 17.5px; }

    .stat-card { padding: 34px 26px; }
    .stat-card strong { font-size: 40px; }
    .contact-card { padding: 32px 28px; }
    .side-card-head h3 { font-size: 17px; }

    .article-title { font-size: 32px; }
    .prod-info h1 { font-size: 29px; }
    .page-hero h1,
    .page-hero .page-hero-title { font-size: 36px; }
    .rich-text { font-size: 16.5px; }
    .footer-top { gap: 56px; padding: 76px 0 58px; }
    .footer-logo img { max-height: 48px; }
}

@media (min-width: 1920px) {
    :root { --container: 1700px; }
    .container { padding: 0 clamp(32px, 2.4vw, 56px); }

    .section { padding: 116px 0; }
    .section--tight { padding: 80px 0; }
    .sec-title { font-size: 36px; }

    .hero { min-height: 720px; }
    .hero-txt { max-width: 1120px; }
    .hero-title { font-size: 58px; }
    .hero-stat strong { font-size: 46px; }

    .product-grid { gap: 30px; }
    .adv-grid { gap: 30px; }
    .cat-strip { gap: 20px; }
    .stat-grid { gap: 28px; }
    .cert-grid { gap: 26px; }
    .news-layout { grid-template-columns: minmax(0, 1fr) 440px; }
    .page-layout, .prod-wrap { grid-template-columns: minmax(0, 1fr) 400px; }
    .footer-top { gap: 64px; padding: 84px 0 62px; }
}

@media (min-width: 2400px) {
    :root {
        --container: 1900px;
        --hd-h: 88px;
        --hd-h-stuck: 70px;
    }
    body { font-size: 16.5px; }
    .nav-link { font-size: 16.5px; height: 44px; }

    .section { padding: 132px 0; }
    .section--tight { padding: 92px 0; }
    .sec-title { font-size: 40px; }
    .sec-desc { font-size: 17.5px; }

    .hero { min-height: 780px; }
    .hero-txt { max-width: 1240px; }
    .hero-title { font-size: 64px; }
    .hero-sub { font-size: 19px; max-width: 860px; }
    .hero-stat strong { font-size: 50px; }

    .product-grid { gap: 34px; }
    .product-title { font-size: 19px; min-height: 57px; }
    .adv-grid { gap: 34px; }
    .adv-card { padding: 44px 38px 42px; }
    .news-layout { grid-template-columns: minmax(0, 1fr) 480px; }
    .article-title { font-size: 34px; }
    .rich-text { font-size: 17px; }
}

@media (min-width: 3000px) {
    :root { --container: 2160px; }
    .section { padding: 150px 0; }
    .sec-title { font-size: 44px; }
    .hero { min-height: 860px; }
    .hero-txt { max-width: 1400px; }
    .hero-title { font-size: 72px; }
    .page-layout, .prod-wrap { grid-template-columns: minmax(0, 1fr) 440px; }
}

@media (min-width: 1440px) {
    .page-hero { padding: 74px 0 68px; }
    .page-hero-desc { max-width: 880px; font-size: 15.5px; }
    .crumb { padding: 22px 0; font-size: 14px; }
    .search-hero { padding: 60px 0 56px; }
    .search-hero h1,
    .search-hero .search-hero-title { font-size: 30px; }
    .search-hero p { font-size: 15px; }
    .map-slot { margin-top: 30px; }
    .flow-steps { --flow-gap: 24px; }
    .flow-step { padding: 34px 28px 32px; }
    .flow-num { font-size: 48px; }
    .contact-qr img { width: 168px; height: 168px; }
    .side-news .thumb { width: 96px; }
    .cert-item img { max-height: 74px; }
    .flow-item { padding: 26px 18px 24px; font-size: 14.5px; }
    .cat-item { padding: 26px 14px; font-size: 14.5px; }
    .cat-item svg { width: 52px; height: 52px; padding: 12px; }
    .news-item { padding: 24px; gap: 26px; }
    .side-card-body { padding: 12px 18px 18px; }
    .side-nav li a { padding: 12px 14px; font-size: 14.5px; }
    .pagination a, .pagination span { height: 42px; min-width: 42px; }
}

@media (min-width: 1680px) {
    .page-hero { padding: 86px 0 78px; }
    .page-hero h1,
    .page-hero .page-hero-title { font-size: 38px; }
    .crumb { padding: 24px 0; }
    .search-hero { padding: 70px 0 64px; }
    .search-hero h1,
    .search-hero .search-hero-title { font-size: 32px; }
    .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .product-grid--list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .product-grid--list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .map-slot { aspect-ratio: 24 / 8; }
    .flow-steps { --flow-gap: 26px; }
    .flow-step { padding: 38px 32px 36px; }
    .flow-num { font-size: 52px; }
    .contact-qr { gap: 34px; }
    .contact-qr img { width: 180px; height: 180px; }
    .cert-item img { max-height: 80px; }
    .news-thumb { width: 286px; }
    .news-item { padding: 26px; gap: 30px; }
    .cat-item { padding: 30px 16px; }
    .cat-item svg { width: 56px; height: 56px; padding: 13px; }
    .flow-item { padding: 30px 20px 28px; font-size: 15px; }
    .download-ico { width: 48px; height: 48px; }
}

@media (min-width: 1920px) {
    .page-hero { padding: 96px 0 88px; }
    .page-hero h1,
    .page-hero .page-hero-title { font-size: 42px; }
    .related-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .gallery-grid { gap: 28px; }
    .news-thumb { width: 316px; }
    .flow-steps { --flow-gap: 28px; }
    .flow-step { padding: 40px 34px 38px; }
    .flow-num { font-size: 56px; }
    .contact-card { padding: 38px 32px; }
    .contact-card strong { font-size: 23px; }
    .side-card-body { padding: 20px 26px 26px; }
    .map-slot { aspect-ratio: 26 / 8; }
}

@media (min-width: 2400px) {
    .page-hero { padding: 108px 0 98px; }
    .page-hero h1,
    .page-hero .page-hero-title { font-size: 46px; }
    .news-thumb { width: 348px; }
    .cert-item img { max-height: 88px; }
    .contact-qr img { width: 200px; height: 200px; }
    .flow-steps { --flow-gap: 32px; }
    .flow-step { padding: 44px 38px 42px; }
    .flow-num { font-size: 60px; }
}

.reveal { opacity: 0; }
.reveal.is-in {
    opacity: 1;
    animation-name: revealUp;
    animation-duration: .72s;
    animation-timing-function: var(--ease);
    animation-delay: var(--d, 0ms);
    animation-fill-mode: backwards;
}
@keyframes revealUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}
.product-grid > .product-card:nth-child(1) { --d: 0ms; }
.product-grid > .product-card:nth-child(2) { --d: 70ms; }
.product-grid > .product-card:nth-child(3) { --d: 140ms; }
.product-grid > .product-card:nth-child(4) { --d: 210ms; }
.product-grid > .product-card:nth-child(5) { --d: 280ms; }
.product-grid > .product-card:nth-child(6) { --d: 350ms; }
.product-grid > .product-card:nth-child(7) { --d: 420ms; }
.product-grid > .product-card:nth-child(8) { --d: 490ms; }
.prod-cats > .prod-cat:nth-child(1) { --d: 0ms; }
.prod-cats > .prod-cat:nth-child(2) { --d: 60ms; }
.prod-cats > .prod-cat:nth-child(3) { --d: 120ms; }
.prod-cats > .prod-cat:nth-child(4) { --d: 180ms; }
.prod-cats > .prod-cat:nth-child(5) { --d: 240ms; }
.prod-cats > .prod-cat:nth-child(6) { --d: 300ms; }
.prod-cats > .prod-cat:nth-child(7) { --d: 360ms; }
.prod-cats > .prod-cat:nth-child(8) { --d: 420ms; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal,
    .reveal.is-in { opacity: 1; transform: none; animation: none !important; }
    html { scroll-behavior: auto; }
}
@media print {
    .site-header, .site-footer, .back-top, .page-aside, .filter-bar, .pagination { display: none !important; }
    /* 顶栏不打印，占位块也要一起收掉，否则首页顶部会留一条空白 */
    .hd-space { display: none !important; }
    .section { padding: 12px 0; }
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.branch-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 26px 24px;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    background: #fff;
    overflow: hidden;
    transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.branch-card::after {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--c-accent), var(--c-accent-2));
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform .34s var(--ease);
}
.branch-card:hover {
    border-color: rgba(30, 111, 224, .4);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -22px rgba(6, 26, 58, .5);
}
.branch-card:hover::after { transform: scaleY(1); }
.branch-name { font-size: 17px; font-weight: 700; color: var(--c-ink); }
.branch-en {
    display: block;
    margin-top: 4px;
    font-size: 10.5px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--c-muted);
}
.branch-desc {
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.9;
    color: var(--c-muted);
}
.branch-link {
    margin-top: auto;
    padding-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-accent);
}
.branch-empty {
    grid-column: 1 / -1;
    padding: 22px;
    border: 1px dashed var(--c-line);
    border-radius: var(--radius-m);
    text-align: center;
    font-size: 14px;
    color: var(--c-muted);
}

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

@media (max-width: 600px) {
    .branch-grid { grid-template-columns: minmax(0, 1fr); }
}

/* =====================================================================
   首页改版 v1.11.2
   1) 深色顶栏主题（配白色 LOGO）
   2) Hero 加强：多层渐变 + 双光晕 + 关键词渐变字（可降级）
   3) 卡片体系统一：radius-l / 顶部 2px 渐变线 / hover 上浮
   4) 新增：公司环境 .env-grid、合作伙伴 .partner-grid、CTA 通栏 .cta-band
   ===================================================================== */

/* ---- 1. 深色顶栏：底栏固定机制（fixed + .hd-space + 迟滞）保持不变 ---- */
/* .hd-space 与顶栏同色：顶栏是 fixed 半透明层，若占位块是白底，
   首屏会看到顶栏比 Hero 浅一档、像两块拼色。给占位块铺同色深底后顶栏可无缝融进 Hero。 */
.hd-space { background: #08192E; }
.site-header {
    background: rgba(8, 25, 46, .9);
    -webkit-backdrop-filter: saturate(150%) blur(16px);
    backdrop-filter: saturate(150%) blur(16px);
}
.site-header.is-stuck {
    background: rgba(6, 18, 35, .97);
    border-bottom-color: rgba(120, 180, 255, .18);
    box-shadow: 0 16px 40px -18px rgba(3, 12, 28, .85);
}
.site-header::after {
    background: radial-gradient(58% 120% at 50% 100%, rgba(30, 111, 224, .32), transparent 72%);
}
.brand-logo--fallback { max-height: 46px; }
.site-header.is-stuck .brand-logo--fallback { max-height: 38px; }
.tool-btn { color: rgba(255, 255, 255, .82); }
.tool-btn:hover,
.tool-btn[aria-expanded="true"] {
    color: #fff;
    background: rgba(120, 185, 255, .18);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .7), 0 0 0 1px rgba(120, 185, 255, .3);
}
.nav-toggle { color: #fff; }
.nav-toggle[aria-expanded="true"] { color: #fff; background: rgba(120, 185, 255, .2); }

/* 桌面横向导航的浅色文字只在 ≥1081 生效；<1081 是白色抽屉，仍需深色文字 */
@media (min-width: 1081px) {
    .header-tools { border-left-color: rgba(255, 255, 255, .16); }
    .nav-link { height: 44px; color: rgba(255, 255, 255, .84); }
    .nav-link::before {
        background: radial-gradient(72% 130% at 50% 100%, rgba(120, 185, 255, .28), rgba(120, 185, 255, 0) 76%);
    }
    .nav-item:hover > .nav-link,
    .nav-item:focus-within > .nav-link { color: #fff; }
    .nav-item.active > .nav-link { color: #7FC0FF; }
}
@media (min-width: 1081px) {
    @supports ((-webkit-background-clip: text) or (background-clip: text)) {
        .nav-item.active > .nav-link {
            background-image: linear-gradient(96deg, #FFFFFF 0%, #7FC0FF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }
}

/* ---- 2. Hero 加强 ---- */
.hero {
    background:
        radial-gradient(900px 520px at 82% 6%, rgba(45, 130, 255, .42), transparent 60%),
        radial-gradient(760px 640px at 4% 100%, rgba(30, 111, 224, .3), transparent 62%),
        linear-gradient(122deg, #06182F 0%, #0A2C5E 46%, #0E1726 100%);
}
.hero::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(58% 70% at 90% 4%, rgba(127, 212, 255, .16), transparent 62%);
    pointer-events: none;
}
.hero-tag {
    background: linear-gradient(120deg, rgba(120, 185, 255, .16), rgba(255, 255, 255, .06));
    border-color: rgba(150, 200, 255, .32);
    color: #D6E6FF;
}
.hero-title { letter-spacing: .4px; }
.hero-title em { color: #7FC0FF; font-style: normal; white-space: nowrap; }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero-title em {
        background-image: linear-gradient(96deg, #FFFFFF 0%, #C6DEFF 46%, #6FB0FF 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: #6FB0FF;
    }
}
.btn--ghost {
    border: 1px solid rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .07);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .18); border-color: #fff; }

/* ---- 3. 卡片体系统一 ---- */
.product-card,
.adv-card,
.flow-step,
.stat-card,
.news-item,
.contact-card,
.cert-item,
.branch-card { border-radius: var(--radius-l); }

.product-card::after,
.adv-card::after { height: 2px; }

.stat-card { position: relative; overflow: hidden; }
.stat-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--c-accent), #7FD4FF);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .44s var(--ease);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -26px rgba(10, 44, 94, .42); }

.flow-step::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--c-accent), #7FD4FF);
    border-radius: var(--radius-l) var(--radius-l) 0 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .44s var(--ease);
}
.flow-step:hover::before { transform: scaleX(1); }

.news-item {
    box-shadow: 0 12px 30px -26px rgba(10, 44, 94, .55);
}
.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 52px -28px rgba(10, 44, 94, .5);
    border-color: rgba(30, 111, 224, .42);
}

/* ---- 3b. 优势与实力：编号大水印 + 图标 48 ---- */
.adv-card:hover {
    border-color: rgba(30, 111, 224, .42);
    box-shadow: 0 28px 58px -28px rgba(10, 44, 94, .48);
}
.adv-ico { width: 48px; height: 48px; border-radius: 13px; }
.adv-ico svg { width: 24px; height: 24px; }
.adv-card:hover .adv-ico {
    background: linear-gradient(140deg, var(--c-accent), var(--c-primary));
    box-shadow: 0 14px 26px -14px rgba(30, 111, 224, .85);
}
.adv-num {
    right: 20px;
    top: 14px;
    bottom: auto;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -4px;
    color: rgba(16, 21, 28, .05);
}
.adv-card:hover .adv-num { color: rgba(30, 111, 224, .1); }

/* ---- 3c. 关于：厂房实拍 + 数据卡 ---- */
.about-intro-media { border-radius: var(--radius-l); }
.about-intro-media img { transition: transform .8s var(--ease); }
.about-intro-media:hover img { transform: scale(1.04); }
.stat-grid--about { margin-top: 56px; }

/* ---- 3d. 新闻：大号「更多」按钮 ---- */
.more-link--lg { padding: 12px 26px; font-size: 15px; font-weight: 600; }

/* ---- 4. 公司环境 ---- */
.env-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.env-grid[data-demo] .env-item--demo { display: none; }
.env-grid[data-demo].is-empty .env-item--demo { display: block; }

.env-item {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-l);
    border: 1px solid var(--c-line);
    background: var(--c-bg-soft);
    transition: border-color .34s var(--ease), box-shadow .34s var(--ease);
}
.env-item a { display: block; position: relative; width: 100%; height: 100%; }
.env-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.env-item::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 64%;
    background: linear-gradient(180deg, rgba(6, 20, 40, 0), rgba(6, 20, 40, .82));
    pointer-events: none;
}
.env-item figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transform: translateY(6px);
    opacity: .85;
    pointer-events: none;
    transition: transform .42s var(--ease), opacity .42s var(--ease);
}
.env-item:hover {
    border-color: rgba(30, 111, 224, .45);
    box-shadow: 0 24px 48px -26px rgba(10, 44, 94, .55);
}
.env-item:hover img { transform: scale(1.06); }
.env-item:hover figcaption { transform: translateY(0); opacity: 1; }

/* ---- 5. 合作伙伴 ---- */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.partner-grid[data-demo] .partner-item--demo { display: none; }
.partner-grid[data-demo].is-empty .partner-item--demo { display: flex; }

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-l);
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1) opacity(.6);
    transition: filter .34s var(--ease);
}
.partner-item:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 111, 224, .42);
    box-shadow: 0 20px 40px -22px rgba(10, 44, 94, .5);
}
.partner-item:hover img { filter: grayscale(0) opacity(1); }
.partner-more { margin-top: 40px; text-align: center; }

/* ---- 6. 末屏 CTA 通栏 ---- */
#contact.section--dark {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(720px 400px at 88% 8%, rgba(45, 130, 255, .42), transparent 62%),
        radial-gradient(560px 420px at 6% 108%, rgba(30, 111, 224, .3), transparent 64%),
        linear-gradient(120deg, #06182F 0%, #0A2C5E 58%, #123A72 100%);
}
#contact.section--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 58px 58px, 58px 58px;
    -webkit-mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .1));
    mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .1));
    pointer-events: none;
}
.cta-band {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.cta-band-txt { min-width: 0; }
.cta-band-txt .sec-desc { max-width: 46em; }
.cta-band-btn {
    flex: none;
    padding: 16px 34px;
    font-size: 16px;
    background: linear-gradient(135deg, #2E7BE6, #1A5FC4);
    box-shadow: 0 18px 40px -16px rgba(30, 111, 224, .9);
}
.cta-band-btn:hover { background: linear-gradient(135deg, #3A88F5, #2268CE); }

/* ---- 7. 断点 ---- */
@media (min-width: 1081px) and (max-width: 1439px) {
    .header-inner { gap: 12px; }
    .nav-link { padding: 0 10px; font-size: 14.5px; }
    .header-tools { padding-left: 12px; gap: 4px; }
}
@media (min-width: 1081px) and (max-width: 1200px) {
    .nav-link { padding: 0 8px; font-size: 14px; }
}

@media (max-width: 1080px) {
    .env-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .partner-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .brand-logo--fallback { max-height: 40px; }
    .site-header.is-stuck .brand-logo--fallback { max-height: 34px; }
    .adv-num { font-size: 46px; right: 16px; top: 12px; }
    .more-link--lg { padding: 10px 20px; font-size: 14px; }
    .stat-grid--about { margin-top: 34px; }
    .env-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
    .partner-item { height: 84px; padding: 12px; }
    .cta-band { gap: 20px; }
    .cta-band-btn { width: 100%; padding: 14px 24px; font-size: 15px; }
}

@media (max-width: 480px) {
    .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .env-item figcaption { font-size: 13px; padding: 12px 14px; }
}

/* ---- 8. 无障碍：减弱动效时同时取消 animation / transform（避免露出空白态） ---- */
@media (prefers-reduced-motion: reduce) {
    .hero-tag i,
    .brand-mark::after,
    .product-badge::after { animation: none !important; }
    .product-card:hover,
    .adv-card:hover,
    .flow-step:hover,
    .stat-card:hover,
    .news-item:hover,
    .env-item:hover,
    .partner-item:hover { transform: none !important; }
    .product-card:hover .product-thumb img,
    .env-item:hover img,
    .news-item:hover .news-thumb img,
    .about-intro-media:hover img { transform: none !important; }
}

/* ==========================================================================
   v1.11.2 追加 —— 图集页 / 合作伙伴页专用组件
   原 skin/css/pages.css 内容并入此处，消除页内 <link> 请求与 body 内样式表引用。
   作用域：图集用 album-* 独立命名；LOGO 墙用 .partner-grid--page 收窄，避免覆盖 style.css 同名类。
   ========================================================================== */

/* ---- 图集：相册墙 ---- */
.album-wall {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.album-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    overflow: hidden;
    box-shadow: var(--shadow-s);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.album-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-l);
    border-color: rgba(30, 111, 224, .35);
}

.album-shot-wrap {
    position: relative;
    display: block;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--c-bg-soft);
}
.album-shot {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
}
.album-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.album-shot-wrap:hover .album-thumb { transform: scale(1.06); }

.album-zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(10, 44, 94, .72);
    border-radius: 50%;
    cursor: zoom-in;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.album-zoom svg { width: 19px; height: 19px; }
.album-shot-wrap:hover .album-zoom,
.album-zoom:focus-visible {
    opacity: 1;
    transform: none;
    background: var(--c-accent);
}
@media (hover: none), (max-width: 600px) {
    .album-zoom { opacity: 1; transform: none; }
}
.album-wall--detail { margin-bottom: 34px; }
/* 详情页相册：整块图可点开灯箱（列表页的 .album-shot 是链接，不做手型放大） */
.album-wall--detail .album-shot { cursor: zoom-in; }

.album-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px 16px;
}
.album-name {
    font-size: 15px;
    line-height: 1.5;
    color: var(--c-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.album-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--c-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.album-more {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--c-accent);
}
.album-more i { font-style: normal; transition: transform .25s var(--ease); }
.album-more:hover i { transform: translateX(3px); }

.album-empty {
    grid-column: 1 / -1;
    padding: 64px 24px;
    text-align: center;
    color: var(--c-muted);
    background: var(--c-bg-soft);
    border: 1px dashed var(--c-line);
    border-radius: var(--radius-m);
}

/* 详情页「返回列表」按钮：白底页面用 .btn--line，故此处仅控间距 */
.album-back { margin: 26px 0 4px; }

/* ---- 图集：灯箱（纯 JS，无外部库） ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 5vw;
    background: rgba(8, 15, 28, .88);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.lightbox[hidden] { display: none; }
.lightbox-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 1100px;
    max-height: 90vh;
    margin: 0;
}
.lightbox-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    background: #fff;
    border-radius: var(--radius-m);
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .7);
}
.lightbox-cap { font-size: 14px; color: rgba(255, 255, 255, .9); text-align: center; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    font-size: 26px;
    line-height: 1;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-radius: 50%;
    transition: background .25s var(--ease);
}
.lightbox-close:hover { background: var(--c-accent); }

/* ---- 合作伙伴页：LOGO 墙 ---- */
.partner-panel { padding: 30px; }
.partner-grid.partner-grid--page {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.partner-grid--page:empty { display: none; }
.partner-grid--page .partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.partner-grid--page .partner-item:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 111, 224, .4);
    box-shadow: var(--shadow-m);
}
.partner-grid--page .partner-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 62px;
    object-fit: contain;
}
.partner-grid--page .partner-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-ink-2);
    text-align: center;
}

.partner-note { margin-top: 18px; font-size: 13px; color: var(--c-muted); text-align: center; }
.partner-body { margin-top: 18px; }
.partner-empty {
    display: none;
    margin-top: 18px;
    padding: 48px 24px;
    text-align: center;
    color: var(--c-muted);
    background: var(--c-bg-soft);
    border: 1px dashed var(--c-line);
    border-radius: var(--radius-m);
}
.partner-grid--page:empty ~ .partner-note { display: none; }
.partner-grid--page:empty ~ .partner-empty { display: block; }

/* ---- 以上组件的响应式 ---- */
@media (max-width: 1440px) {
    .album-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .partner-grid.partner-grid--page { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1080px) {
    .album-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .partner-grid.partner-grid--page { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .album-wall { grid-template-columns: minmax(0, 1fr); gap: 16px; }
    .partner-panel { padding: 20px; }
    .partner-grid.partner-grid--page { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .partner-grid--page .partner-item { min-height: 82px; }
    .lightbox { padding: 4vh 4vw; }
    .lightbox-close { top: 12px; right: 12px; }
}
