/* ==========================================================================
   五越电子 · 官网主样式
   配色取自企业 LOGO：主色 #00A2EA（蓝） / 辅色 #F39412（橙）
   ========================================================================== */

:root {
    --wy-primary: #00A2EA;
    --wy-primary-dark: #0084C4;
    --wy-primary-darker: #00689C;
    --wy-primary-soft: #E6F6FE;
    --wy-navy: #06304A;
    --wy-navy-2: #0A4166;
    --wy-navy-3: #0F5182;
    --wy-accent: #F39412;
    --wy-accent-dark: #D97D06;
    --wy-accent-soft: #FEF3E2;
    --wy-ink: #22201F;
    --wy-body: #4A5568;
    --wy-muted: #8A94A6;
    --wy-line: #E4EBF2;
    --wy-bg: #F5F8FB;
    --wy-white: #fff;
    --wy-container: 1380px;
    --wy-radius: 14px;
    --wy-radius-sm: 10px;
    --wy-shadow: 0 6px 24px rgba(6, 48, 74, .07);
    --wy-shadow-lg: 0 18px 48px rgba(6, 48, 74, .13);
    --wy-trans: .28s cubic-bezier(.4, 0, .2, 1);
    --topbar-h: 42px;
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                 "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: var(--wy-body);
    background: var(--wy-white);
    font-size: 15px;
    line-height: 1.75;
    overflow-x: hidden;
}

a { color: var(--wy-primary-dark); text-decoration: none; transition: var(--wy-trans); }
a:hover { color: var(--wy-accent); }

h1, h2, h3, h4, h5, h6 { color: var(--wy-ink); font-weight: 700; line-height: 1.35; }

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

::selection { background: var(--wy-primary); color: #fff; }

/* ---------- 布局容器：主体宽度 1380px ---------- */
.wy-container {
    width: 100%;
    max-width: var(--wy-container);
    margin: 0 auto;
    padding: 0 20px;
}

.wy-section { padding: 76px 0; }
.wy-section-sm { padding: 52px 0; }
.wy-bg-soft { background: var(--wy-bg); }
.wy-bg-navy { background: var(--wy-navy); color: rgba(255, 255, 255, .8); }
.wy-bg-navy h2, .wy-bg-navy h3, .wy-bg-navy h4 { color: #fff; }

/* ---------- 标题 ---------- */
.wy-head { margin-bottom: 46px; }
.wy-head.center { text-align: center; }
.wy-head-tag {
    display: inline-block;
    color: var(--wy-primary);
    background: var(--wy-primary-soft);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.wy-head h2 {
    font-size: 34px;
    margin: 0 0 12px;
    letter-spacing: -.4px;
}
.wy-head p { color: var(--wy-muted); margin: 0; font-size: 15.5px; }
.wy-head-line {
    width: 54px; height: 4px; border-radius: 2px; margin-top: 18px;
    background: linear-gradient(90deg, var(--wy-primary), var(--wy-accent));
}
.wy-head.center .wy-head-line { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   顶部
   ========================================================================== */
/* 语言切换（保留，已移入头部工具区） */
.wy-lang { position: relative; }
/* 展开时在按钮与菜单之间架一层透明“桥”：鼠标经过空隙时不会判为移出，菜单不收起 */
.wy-lang:hover::after,
.wy-lang.open::after,
.wy-lang:focus-within::after {
    content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 16px;
}
.wy-lang-btn {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff; border-radius: 999px;
    padding: 5px 14px; font-size: 13px;
    display: inline-flex; align-items: center; gap: 7px;
    cursor: pointer; transition: var(--wy-trans);
}
.wy-lang-btn:hover { background: var(--wy-primary); border-color: var(--wy-primary); }
.wy-lang-menu {
    position: absolute; right: 0; top: calc(100% + 8px);
    background: #fff; border-radius: 12px; box-shadow: var(--wy-shadow-lg);
    min-width: 178px; padding: 8px; z-index: 1080;
    max-height: 330px; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: var(--wy-trans);
}
/* 展开：悬停（鼠标）/ 点开（.open）/ 键盘聚焦（:focus-within）三种都支持，
   不做 @media(hover) 包裹，避免老内核直接忽略整块导致悬停失效 */
.wy-lang:hover .wy-lang-menu,
.wy-lang.open .wy-lang-menu,
.wy-lang:focus-within .wy-lang-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.wy-lang-menu a {
    display: flex; align-items: center; gap: 9px;
    padding: 8px 12px; border-radius: 8px; color: var(--wy-body); font-size: 13.5px;
}
.wy-lang-menu a:hover { background: var(--wy-primary-soft); color: var(--wy-primary-dark); }
.wy-lang-menu a.on { background: var(--wy-primary); color: #fff; font-weight: 600; }
.wy-lang-menu a .tick { margin-left: auto; font-size: 13px; opacity: .9; }
.wy-lang-menu .flag { font-size: 15px; line-height: 1; }

/* ==================== 顶栏（信息条） ==================== */
.wy-topbar {
    font-size: 13px; line-height: 1; color: rgba(255, 255, 255, .82);
    z-index: 1096;
}
.wy-topbar .inner {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    height: var(--topbar-h);
}
.wy-topbar a { color: inherit; }
.wy-topbar a:hover { color: #fff; }
.wy-topbar .tb-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.wy-topbar .tb-left span { display: inline-flex; align-items: center; gap: 6px; }
.wy-topbar .tb-left i { color: var(--wy-primary); font-size: 13px; }
.wy-topbar .tb-inquiry {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 999px;
    background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16);
    font-weight: 500; transition: var(--wy-trans); white-space: nowrap;
}
.wy-topbar .tb-inquiry:hover { background: var(--wy-primary); border-color: var(--wy-primary); color: #fff; }
.wy-topbar .tb-right { display: flex; align-items: center; gap: 14px; }
/* 顶栏内的语言按钮：顶栏始终为深色底，保持白字白边 */
.wy-topbar .wy-lang-btn { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .18); color: #fff; }
.wy-topbar .wy-lang-btn:hover { background: var(--wy-primary); border-color: var(--wy-primary); color: #fff; }
.wy-topbar .wy-lang-menu { top: calc(100% + 10px); }
/* 修正：`.wy-topbar a:hover{color:#fff}` 特异性与 .wy-lang-menu a 相同且在后，
   会把下拉项文字刷成白色 —— 白底下白字看不见。这里用同/更高优先级扳回来 */
.wy-topbar .wy-lang-menu a { color: var(--wy-body); }
.wy-topbar .wy-lang-menu a:hover { background: var(--wy-primary-soft); color: var(--wy-primary-dark); }
.wy-topbar .wy-lang-menu a.on,
.wy-topbar .wy-lang-menu a.on:hover { background: var(--wy-primary); color: #fff; }

/* 首页：透明悬浮于 Banner 上方，位于头部之上 */
.wy-topbar.wb-home {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(4, 28, 45, .28);
    backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
    transition: background .35s ease;
}
/* 首页滚动后：顶栏变为实色深蓝，保证白字可读 */
.wy-topbar.wb-home.wb-stuck {
    background: var(--wy-navy);
    backdrop-filter: none; -webkit-backdrop-filter: none;
    box-shadow: 0 2px 14px rgba(6, 48, 74, .18);
}
/* 非首页：实色深蓝条，正常文档流 */
.wy-topbar.wb-solid {
    position: relative; background: var(--wy-navy);
    color: rgba(255, 255, 255, .82);
}

/* 头部 + 导航：合并为悬浮于 Banner 上方的单行 */
.wy-headerbar {
    position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 1095;
    transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.wy-headerbar .inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; height: 78px; transition: height .35s ease;
}
.wy-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; color: inherit; }
.wy-logo img { height: 46px; width: auto; display: block; transition: filter .35s ease; }
.wy-logo .txt {
    font-size: 18.5px; font-weight: 700; color: inherit;
    letter-spacing: 1.5px; white-space: nowrap; line-height: 1.25;
}

/* 首页：透明悬浮于深色 Banner 之上 */
.wy-headerbar.wb-home { background: transparent; color: #fff; }
/* LOGO 反白：不透明区域全部转白，W 形为镂空(alpha=0)不受影响，透出深色仍清晰可辨 */
.wy-headerbar.wb-home .wy-logo img { filter: brightness(0) invert(1); }
.wy-headerbar.wb-home .wy-logo .txt { color: #fff; }
.wy-headerbar.wb-home .wy-nav ul.menu > li > a { color: rgba(255, 255, 255, .88); }
.wy-headerbar.wb-home .wy-nav ul.menu > li > a:hover,
.wy-headerbar.wb-home .wy-nav ul.menu > li.active > a { color: #fff; }
.wy-headerbar.wb-home .nav-search { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .18); }
.wy-headerbar.wb-home .nav-search input { color: #fff; }
.wy-headerbar.wb-home .nav-search input::placeholder { color: rgba(255, 255, 255, .6); }
.wy-headerbar.wb-home .nav-search button { background: rgba(255, 255, 255, .18); color: #fff; }

/* 吸顶 / 非首页：实色白底 */
.wy-headerbar.wb-solid {
    /* 内页回到正常文档流：必须清掉基础规则里的 top/left/right，
       否则 relative 定位会按 top:var(--topbar-h) 下移并留出同高空白行 */
    position: relative; top: auto; left: auto; right: auto;
    background: #fff; color: var(--wy-ink);
    box-shadow: 0 2px 14px rgba(6, 48, 74, .07);
}
.wy-headerbar.wb-home.wb-stuck {
    position: fixed; background: #fff; color: var(--wy-ink);
    box-shadow: 0 6px 28px rgba(6, 48, 74, .10);
}
/* 吸顶后白底：LOGO 恢复彩色 */
.wy-headerbar.wb-home.wb-stuck .wy-logo img { filter: none; }
.wy-headerbar.wb-home.wb-stuck .wy-logo .txt { color: var(--wy-ink); }
.wy-headerbar.wb-home.wb-stuck .wy-nav ul.menu > li > a { color: var(--wy-body); }
.wy-headerbar.wb-home.wb-stuck .wy-nav ul.menu > li > a:hover,
.wy-headerbar.wb-home.wb-stuck .wy-nav ul.menu > li.active > a { color: var(--wy-primary); }
.wy-headerbar.wb-home.wb-stuck .nav-search { background: #f5f7fa; border-color: #dde4ed; }
.wy-headerbar.wb-home.wb-stuck .nav-search input { color: var(--wy-ink); }
.wy-headerbar.wb-home.wb-stuck .nav-search input::placeholder { color: #aab8c9; }
.wy-headerbar.wb-home.wb-stuck .nav-search button { background: var(--wy-primary); color: #fff; }
.wy-headerbar.wb-solid .inner,
.wy-headerbar.wb-home.wb-stuck .inner { height: 68px; }
.wy-headerbar.wb-solid .wy-logo .txt { color: var(--wy-ink); }

/* 下拉菜单：始终白底深色，保证可读 */
.wy-headerbar .wy-nav ul.sub { background: #fff; }
.wy-headerbar .wy-nav ul.sub a { color: var(--wy-body); }

/* 工具区（语言 + 搜索 + 汉堡） */
.wb-tools { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* 主导航 */
.wy-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.wy-nav ul.menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.wy-nav ul.menu > li { position: relative; }
.wy-nav ul.menu > li > a {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    font-size: 15.5px; font-weight: 600; color: inherit;
    letter-spacing: .2px; white-space: nowrap; position: relative; border-radius: 8px;
    transition: var(--wy-trans);
}
.wy-nav ul.menu > li > a::after {
    content: ""; position: absolute; left: 50%; bottom: 0;
    width: 0; height: 3px; background: var(--wy-primary);
    transform: translateX(-50%); transition: var(--wy-trans); border-radius: 3px 3px 0 0;
}
.wy-nav ul.menu > li > a:hover,
.wy-nav ul.menu > li.active > a { color: var(--wy-primary); }
.wy-nav ul.menu > li > a:hover::after,
.wy-nav ul.menu > li.active > a::after { width: 60%; }
.wy-nav ul.menu > li > a > .caret { font-size: 11px; color: var(--wy-muted); }

/* 下拉 */
.wy-nav ul.sub {
    position: absolute; left: 0; top: 100%;
    background: #fff; min-width: 208px;
    box-shadow: var(--wy-shadow-lg); border-radius: 0 0 12px 12px;
    list-style: none; margin: 0; padding: 8px 0; z-index: 1050;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--wy-trans); border-top: 3px solid var(--wy-primary);
}
.wy-nav li:hover > ul.sub { opacity: 1; visibility: visible; transform: translateY(0); }
.wy-nav ul.sub li { position: relative; }
.wy-nav ul.sub a {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 10px 18px; font-size: 14.5px; color: var(--wy-body);
}
.wy-nav ul.sub a:hover { background: var(--wy-primary-soft); color: var(--wy-primary-dark); padding-left: 24px; }
.wy-nav ul.sub ul.sub { left: 100%; top: -8px; border-radius: 12px; border-top: none; border-left: 3px solid var(--wy-primary); }

.nav-search {
    display: flex; align-items: center; background: var(--wy-bg);
    border-radius: 999px; padding: 6px 6px 6px 16px; border: 1px solid var(--wy-line);
}
.nav-search input {
    border: 0; background: transparent; outline: none; font-size: 14px; width: 150px;
    color: var(--wy-ink);
}
.nav-search button {
    border: 0; background: var(--wy-primary); color: #fff;
    width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
    cursor: pointer; transition: var(--wy-trans);
}
.nav-search button:hover { background: var(--wy-accent); }

.wy-burger {
    display: none; border: 1px solid var(--wy-line); background: #fff;
    width: 44px; height: 42px; border-radius: 10px; font-size: 21px;
    color: var(--wy-ink); cursor: pointer;
}

/* 移动端抽屉 */
.wy-drawer {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: #fff; z-index: 1090; transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    display: flex; flex-direction: column; box-shadow: -12px 0 40px rgba(6, 48, 74, .18);
}
.wy-drawer.open { transform: translateX(0); }
.wy-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid var(--wy-line);
}
.wy-drawer-head img { height: 40px; }
.wy-drawer-body { flex: 1; overflow-y: auto; padding: 10px 0 30px; }
.wy-drawer ul { list-style: none; margin: 0; padding: 0; }
.wy-drawer ul a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 22px; color: var(--wy-ink); font-size: 15.5px; font-weight: 600;
    border-bottom: 1px solid var(--wy-line);
}
.wy-drawer ul a.sub-item { font-weight: 500; font-size: 14.5px; color: var(--wy-body); padding-left: 40px; }
.wy-drawer ul li.active > a { color: var(--wy-primary); background: var(--wy-primary-soft); }
.wy-drawer ul ul { display: none; background: #fbfdff; }
.wy-drawer ul li.open > ul { display: block; }
.wy-drawer .dw-lang { padding: 18px 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.wy-drawer .dw-lang a {
    border: 1px solid var(--wy-line); border-radius: 999px; padding: 5px 14px;
    font-size: 13px; color: var(--wy-body); border-bottom: 1px solid var(--wy-line);
}
.wy-drawer .dw-lang a.on { background: var(--wy-primary); border-color: var(--wy-primary); color: #fff; }
.wy-backdrop {
    position: fixed; inset: 0; background: rgba(6, 48, 74, .5);
    z-index: 1085; opacity: 0; visibility: hidden; transition: var(--wy-trans);
}
.wy-backdrop.show { opacity: 1; visibility: visible; }

/* ==========================================================================
   首页 · 沉浸式主视觉 V2（参考集星通风格）
   ========================================================================== */
.wy-hero-v2 {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background: linear-gradient(135deg, #041C2D 0%, #06304A 35%, #0A4166 70%, #0F5182 100%);
    color: #fff;
}

/* ---- 背景层 ---- */
.hero-bg {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,162,234,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,162,234,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 55% 45%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 55% 45%, black 30%, transparent 100%);
}
.hero-glow {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35;
}
.hero-glow-1 {
    width: 500px; height: 500px; right: -80px; top: -100px;
    background: radial-gradient(circle, rgba(0,162,234,.5), transparent 70%);
}
.hero-glow-2 {
    width: 360px; height: 360px; left: 10%; bottom: -60px;
    background: radial-gradient(circle, rgba(243,148,18,.25), transparent 70%);
}
.hero-glow-3 {
    width: 240px; height: 240px; right: 25%; top: 40%;
    background: radial-gradient(circle, rgba(0,162,234,.3), transparent 70%);
}

/* ---- 浮动粒子 ---- */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-particles .p {
    position: absolute; border-radius: 50%; background: rgba(0,162,234,.35);
    animation: particleFloat 6s ease-in-out infinite;
}
.p1 { width:6px; height:6px; left:15%; top:20%; animation-delay:0s; }
.p2 { width:4px; height:4px; left:75%; top:15%; animation-delay:1.2s; background:rgba(243,148,18,.3); }
.p3 { width:8px; height:8px; left:60%; top:65%; animation-delay:2.4s; }
.p4 { width:5px; height:5px; left:25%; top:70%; animation-delay:3s; background:rgba(255,255,255,.2); }
.p5 { width:7px; height:7px; left:85%; top:50%; animation-delay:1.8s; }
.p6 { width:4px; height:4px; left:45%; top:12%; animation-delay:4s; background:rgba(243,148,18,.25); }
@keyframes particleFloat {
    0%,100% { transform: translateY(0) scale(1); opacity: .35; }
    50% { transform: translateY(-20px) scale(1.3); opacity: .7; }
}

/* ---- 主内容 ---- */
.hero-inner {
    position: relative; z-index: 3;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px;
    align-items: center; padding-top: 120px; padding-bottom: 100px; min-height: 680px;
}

/* ---- 左侧文案 ---- */
.hero-copy { max-width: 650px; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,162,234,.15);
    border: 1px solid rgba(0,162,234,.4);
    color: #7DD8FF; font-size: 13px; font-weight: 600;
    padding: 7px 18px; border-radius: 999px; margin-bottom: 26px;
    letter-spacing: .04em;
}
.hero-tag i { font-size: 14px; }

.hero-title {
    color: #fff; font-size: 52px; line-height: 1.2; margin: 0 0 22px;
    letter-spacing: -1px; font-weight: 800;
}
.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, #7DD8FF 0%, #00D4AA 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.8;
    margin: 0 0 34px; max-width: 520px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* 毛玻璃按钮 */
.wy-btn-glass {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px; border-radius: 999px; font-size: 15px; font-weight: 600;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
    color: #fff; cursor: pointer; transition: var(--wy-trans); line-height: 1.2;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.wy-btn-glass:hover {
    background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.45);
    color: #fff; transform: translateY(-2px);
}
.wy-btn-glass i { font-size: 16px; }

/* ---- 嵌入式数据统计 ---- */
.hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
    max-width: 560px;
}
.hs-item {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px; padding: 20px 14px; text-align: center;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    transition: var(--wy-trans);
}
.hs-item:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(0,162,234,.35);
    transform: translateY(-3px);
}
.hs-item strong {
    display: block; font-size: 36px; font-weight: 800; color: var(--wy-primary);
    line-height: 1; letter-spacing: -1.2px;
}
/* 注意：必须显式覆盖 display/margin-top —— 上面的 .hs-item span 是后代选择器，
   否则 "16年" 的「年」会被拆到下一行 */
.hs-item strong span {
    display: inline-block; margin-top: 0; font-size: 19px; font-weight: 700;
    margin-left: 3px; letter-spacing: 0; color: rgba(125,216,255,.85);
}
.hs-item span {
    display: block; margin-top: 6px; font-size: 12.5px; color: rgba(255,255,255,.6);
    font-weight: 500; letter-spacing: .02em;
}

/* ---- 右侧视觉：安防摄像头场景 ---- */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.camera-scene {
    position: relative; width: 420px; height: 420px;
    display: grid; place-items: center;
}

/* 主摄像头 */
.cam-main { position: relative; z-index: 3; animation: camFloat 5s ease-in-out infinite; }
.cam-body {
    width: 140px; height: 100px; position: relative;
    background: linear-gradient(145deg, #E8EEF4, #C8D4E0);
    border-radius: 20px 20px 16px 16px;
    box-shadow:
        0 20px 50px rgba(0,0,0,.3),
        inset 0 2px 0 rgba(255,255,255,.6),
        inset 0 -3px 8px rgba(0,0,0,.08);
}
.cam-lens {
    position: absolute; width: 72px; height: 72px;
    left: 50%; top: 50%; transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(145deg, #1A2A3A, #0D1520);
    box-shadow:
        inset 0 3px 10px rgba(0,0,0,.6),
        0 0 0 3px #2A3A4A,
        0 0 0 6px #1A2A3A;
    display: grid; place-items: center;
}
.lens-ring {
    position: absolute; width: 62px; height: 62px; border-radius: 50%;
    border: 2px solid rgba(0,162,234,.3);
    animation: lensRing 4s linear infinite;
}
.lens-core {
    width: 44px; height: 44px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #3A5A7A, #0A1624 60%, #050B12);
    box-shadow: inset 0 0 15px rgba(0,162,234,.2);
    position: relative;
}
.lens-core::after {
    content: ""; position: absolute; width: 14px; height: 14px;
    background: radial-gradient(circle, rgba(255,255,255,.7), transparent 70%);
    border-radius: 50%; top: 8px; left: 10px;
}
.lens-glare {
    position: absolute; width: 120px; height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), transparent);
    top: -10px; left: -10px; border-radius: 50%;
    transform: rotate(-20deg);
}
.cam-bracket {
    position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 22px;
    background: linear-gradient(180deg, #B0BCCA, #8899AA);
    border-radius: 0 0 6px 6px;
}
.cam-stand {
    width: 6px; height: 50px;
    background: linear-gradient(90deg, #8899AA, #A0B0C0, #8899AA);
    margin: 0 auto; border-radius: 3px;
}
.cam-base {
    width: 70px; height: 14px;
    background: linear-gradient(180deg, #9AA8B8, #6E7E8E);
    border-radius: 7px; margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

@keyframes camFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes lensRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 副摄像头 */
.cam-sub {
    position: absolute; z-index: 2;
    animation: camSubFloat 4s ease-in-out infinite;
}
.cs-body {
    width: 48px; height: 38px;
    background: linear-gradient(145deg, #D8E2EA, #B8C8D8);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    display: grid; place-items: center;
}
.cs-lens {
    width: 22px; height: 22px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #3A5A7A, #0A1624);
    border: 2px solid #2A3A4A;
}
.cam-sub-1 { top: 30px; right: 20px; transform: rotate(-15deg); animation-delay: .5s; }
.cam-sub-2 { bottom: 80px; left: 10px; transform: rotate(20deg); animation-delay: 1.5s; }

@keyframes camSubFloat {
    0%,100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-8px) rotate(var(--r, 0deg)); }
}

/* 装饰圆环 */
.deco-ring {
    position: absolute; border-radius: 50%; border: 2px dashed;
    opacity: .15;
}
.ring-1 {
    width: 320px; height: 320px; border-color: rgba(0,162,234,.4);
    animation: ringRotate 20s linear infinite;
}
.ring-2 {
    width: 380px; height: 380px; border-color: rgba(243,148,18,.25);
    animation: ringRotate 30s linear infinite reverse;
}
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* 扫描区域 */
.scan-area {
    position: absolute; width: 260px; height: 160px;
    border: 2px solid rgba(0,162,234,.2);
    border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%, -30%);
    background: radial-gradient(ellipse, rgba(0,162,234,.06), transparent 70%);
}
.scan-line {
    position: absolute; width: 200px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,162,234,.6), transparent);
    top: 42%; left: 50%; transform: translate(-50%, -50%);
    border-radius: 2px; opacity: 0;
}
.scan-line.run {
    animation: scanSweep 2.5s ease-in-out;
}
@keyframes scanSweep {
    0% { top: 28%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 58%; opacity: 0; }
}

/* 浮动标签 */
.float-label {
    position: absolute; z-index: 5;
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(6,48,74,.85); border: 1px solid rgba(0,162,234,.3);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: rgba(255,255,255,.9); font-size: 12.5px; font-weight: 600;
    padding: 8px 15px; border-radius: 999px;
    white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.float-label i { color: var(--wy-primary); font-size: 14px; }
.fl-1 { top: 20px; right: -20px; animation: labelFloat 3.5s ease-in-out infinite; }
.fl-2 { bottom: 100px; left: -30px; animation: labelFloat 4s ease-in-out infinite .8s; }
.fl-3 { bottom: 30px; right: 0; animation: labelFloat 3.8s ease-in-out infinite 1.6s; }
@keyframes labelFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ---- 底部波浪 ---- */
.hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
    line-height: 0; overflow: hidden;
}
.hero-wave svg {
    width: 100%; height: 80px; display: block;
}

/* ---- 入场动画 ---- */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 按钮 */
.wy-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px; border-radius: 999px; font-size: 15px; font-weight: 600;
    border: 2px solid transparent; cursor: pointer; transition: var(--wy-trans);
    line-height: 1.2;
}
.wy-btn i { font-size: 16px; }
.wy-btn-primary { background: var(--wy-primary); color: #fff; }
.wy-btn-primary:hover { background: var(--wy-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 162, 234, .34); }
.wy-btn-accent { background: var(--wy-accent); color: #fff; }
.wy-btn-accent:hover { background: var(--wy-accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(243, 148, 18, .34); }
.wy-btn-ghost { border-color: rgba(255, 255, 255, .5); color: #fff; }
.wy-btn-ghost:hover { background: #fff; color: var(--wy-navy); border-color: #fff; }
.wy-btn-outline { border-color: var(--wy-primary); color: var(--wy-primary); background: transparent; }
.wy-btn-outline:hover { background: var(--wy-primary); color: #fff; }
.wy-btn-sm { padding: 9px 20px; font-size: 14px; }

/* 为什么选择五越（四卡） */
.wy-feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wy-fcard {
    background: #fff; border-radius: var(--wy-radius); padding: 26px 24px;
    box-shadow: var(--wy-shadow); display: flex; gap: 16px; align-items: flex-start;
    transition: var(--wy-trans); border: 1px solid transparent;
}
.wy-fcard:hover { transform: translateY(-6px); box-shadow: var(--wy-shadow-lg); border-color: var(--wy-primary-soft); }
.wy-fcard .ic {
    width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--wy-primary), var(--wy-primary-darker));
    color: #fff; display: grid; place-items: center; font-size: 23px;
}
.wy-fcard:nth-child(even) .ic { background: linear-gradient(135deg, var(--wy-accent), var(--wy-accent-dark)); }
.wy-fcard h4 { font-size: 17px; margin: 2px 0 6px; }
.wy-fcard p { font-size: 13.5px; color: var(--wy-muted); margin: 0; line-height: 1.6; }

/* 关于 */
.wy-about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.wy-about-media { position: relative; }
.wy-about-media img { border-radius: var(--wy-radius); box-shadow: var(--wy-shadow-lg); width: 100%; }
.wy-about-media .badge {
    position: absolute; right: -18px; bottom: -18px;
    background: linear-gradient(135deg, var(--wy-primary), var(--wy-primary-darker));
    color: #fff; border-radius: var(--wy-radius); padding: 22px 26px; text-align: center;
    box-shadow: 0 14px 34px rgba(0, 162, 234, .34);
}
.wy-about-media .badge strong { display: block; font-size: 34px; line-height: 1; letter-spacing: -1px; }
.wy-about-media .badge span { font-size: 13px; opacity: .9; }
.wy-about-list { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 11px; }
.wy-about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.wy-about-list i { color: var(--wy-primary); font-size: 17px; margin-top: 3px; }

/* 产品卡 */
.wy-prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.wy-pcard {
    background: #fff; border: 1px solid var(--wy-line); border-radius: var(--wy-radius);
    overflow: hidden; transition: var(--wy-trans); display: flex; flex-direction: column;
}
.wy-pcard:hover { transform: translateY(-8px); box-shadow: var(--wy-shadow-lg); border-color: var(--wy-primary); }
.wy-pcard .pic {
    position: relative; aspect-ratio: 4/3; background: #fff;
    display: grid; place-items: center; padding: 18px; overflow: hidden;
}
.wy-pcard .pic img { max-height: 100%; object-fit: contain; transition: transform .5s ease; }
.wy-pcard:hover .pic img { transform: scale(1.07); }
.wy-pcard .body { padding: 18px 20px 22px; border-top: 1px solid var(--wy-line); flex: 1; display: flex; flex-direction: column; }
.wy-pcard h4 { font-size: 16px; margin: 0 0 8px; line-height: 1.45; }
.wy-pcard h4 a { color: var(--wy-ink); }
.wy-pcard h4 a:hover { color: var(--wy-primary); }
.wy-pcard .model { font-size: 12.5px; color: var(--wy-muted); margin: 0 0 12px; }
.wy-pcard .more {
    margin-top: auto; font-size: 13.5px; font-weight: 600; color: var(--wy-primary);
    display: inline-flex; align-items: center; gap: 5px;
}
.wy-pcard .more:hover { gap: 10px; color: var(--wy-accent); }
.wy-pcard .flags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.wy-pcard .flags span {
    font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 6px;
    background: var(--wy-primary); color: #fff;
}
.wy-pcard .flags span.hot { background: var(--wy-accent); }

/* 解决方案卡 */
.wy-sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wy-scard {
    position: relative; border-radius: var(--wy-radius); overflow: hidden;
    min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 26px; color: #fff; background: var(--wy-navy-2);
    transition: var(--wy-trans);
}
.wy-scard .bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transition: transform .6s ease;
}
.wy-scard::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6, 48, 74, .18) 0%, rgba(6, 48, 74, .88) 100%);
}
.wy-scard:hover { transform: translateY(-6px); box-shadow: var(--wy-shadow-lg); }
.wy-scard:hover .bg { transform: scale(1.08); }
.wy-scard > * { position: relative; z-index: 2; }
.wy-scard .ic {
    width: 46px; height: 46px; border-radius: 13px; margin-bottom: 14px;
    background: rgba(0, 162, 234, .9); display: grid; place-items: center; font-size: 21px;
}
.wy-scard h4 { color: #fff; font-size: 19px; margin: 0 0 8px; }
.wy-scard p { color: rgba(255, 255, 255, .76); font-size: 13.5px; margin: 0; }

/* 数据 */
.wy-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, .12); border-radius: var(--wy-radius); overflow: hidden; }
.wy-stats .st { background: var(--wy-navy); padding: 34px 20px; text-align: center; }
.wy-stats .st strong { display: block; font-size: 44px; font-weight: 800; color: var(--wy-primary); line-height: 1; letter-spacing: -1.5px; }
.wy-stats .st strong .unit { font-size: 20px; font-weight: 700; margin-left: 2px; }
.wy-stats .st span { display: block; margin-top: 10px; font-size: 14px; color: rgba(255, 255, 255, .7); }

/* 新闻 */
.wy-news-main { display: grid; grid-template-columns: 1.25fr 1fr; gap: 30px; }
.wy-news-list { display: grid; gap: 18px; }
.wy-nitem {
    display: flex; gap: 20px; background: #fff; border: 1px solid var(--wy-line);
    border-radius: var(--wy-radius); overflow: hidden; transition: var(--wy-trans);
}
.wy-nitem:hover { box-shadow: var(--wy-shadow-lg); border-color: var(--wy-primary); transform: translateX(4px); }
.wy-nitem .thumb {
    width: 216px; min-height: 152px; flex-shrink: 0; background: var(--wy-bg);
    display: grid; place-items: center; overflow: hidden;
}
.wy-nitem .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wy-nitem:hover .thumb img { transform: scale(1.06); }
.wy-nitem .body { padding: 20px 22px 20px 0; display: flex; flex-direction: column; flex: 1; }
.wy-nitem h3 { font-size: 18px; margin: 0 0 10px; line-height: 1.45; }
.wy-nitem h3 a { color: var(--wy-ink); }
.wy-nitem h3 a:hover { color: var(--wy-primary); }
.wy-nitem p { font-size: 14px; color: var(--wy-muted); margin: 0 0 14px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wy-nitem .meta { display: flex; align-items: center; gap: 18px; font-size: 12.5px; color: var(--wy-muted); }
.wy-nitem .meta i { color: var(--wy-primary); margin-right: 5px; }

.wy-nside { background: #fff; border: 1px solid var(--wy-line); border-radius: var(--wy-radius); padding: 24px; }
.wy-nside h3 { font-size: 17px; margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--wy-line); position: relative; }
.wy-nside h3::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 44px; height: 3px; background: var(--wy-primary); border-radius: 3px; }
.wy-nside ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.wy-nside li { display: flex; gap: 12px; padding-bottom: 14px; border-bottom: 1px dashed var(--wy-line); }
.wy-nside li:last-child { border-bottom: 0; padding-bottom: 0; }
.wy-nside li .d {
    width: 52px; height: 52px; border-radius: 10px; background: var(--wy-primary-soft);
    color: var(--wy-primary-dark); text-align: center; flex-shrink: 0;
    display: flex; flex-direction: column; justify-content: center; line-height: 1.15;
}
.wy-nside li .d b { font-size: 18px; font-weight: 800; display: block; }
.wy-nside li .d span { font-size: 11px; }
.wy-nside li a { color: var(--wy-body); font-size: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wy-nside li a:hover { color: var(--wy-primary); }

/* 案例 */
.wy-case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.wy-ccard { border-radius: var(--wy-radius); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--wy-navy-2); display: block; }
.wy-ccard img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.wy-ccard::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6, 48, 74, 0) 35%, rgba(6, 48, 74, .9) 100%);
}
.wy-ccard:hover img { transform: scale(1.08); }
.wy-ccard .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; z-index: 2; }
.wy-ccard .cap h4 { color: #fff; font-size: 15.5px; margin: 0 0 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wy-ccard .cap span { font-size: 12.5px; color: rgba(255, 255, 255, .7); }

/* CTA */
.wy-cta {
    background: linear-gradient(120deg, var(--wy-navy) 0%, var(--wy-navy-3) 100%);
    border-radius: var(--wy-radius); padding: 52px 56px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.wy-cta::before {
    content: ""; position: absolute; right: -60px; top: -60px;
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 162, 234, .34), transparent 68%);
}
.wy-cta::after {
    content: "\F4E1"; font-family: "bootstrap-icons";
    position: absolute; right: 42px; bottom: -26px; font-size: 150px;
    color: rgba(255, 255, 255, .05);
}
.wy-cta > * { position: relative; z-index: 2; }
.wy-cta h2 { color: #fff; font-size: 30px; margin: 0 0 10px; }
.wy-cta p { color: rgba(255, 255, 255, .74); margin: 0; font-size: 15.5px; }
.wy-cta .acts { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   内页
   ========================================================================== */
.wy-banner {
    background: linear-gradient(120deg, var(--wy-navy) 0%, var(--wy-navy-3) 100%);
    padding: 62px 0; position: relative; overflow: hidden;
}
.wy-banner::after {
    content: ""; position: absolute; right: -80px; top: -80px; width: 380px; height: 380px;
    border-radius: 50%; background: radial-gradient(circle, rgba(0, 162, 234, .26), transparent 70%);
}
.wy-banner .inner { position: relative; z-index: 2; }
.wy-banner h1 { color: #fff; font-size: 34px; margin: 0 0 12px; letter-spacing: -.5px; }
.wy-banner p { color: rgba(255, 255, 255, .72); margin: 0; font-size: 15px; max-width: 760px; }
.wy-crumb { margin-top: 18px; font-size: 13.5px; color: rgba(255, 255, 255, .6); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.wy-crumb a { color: rgba(255, 255, 255, .72); }
.wy-crumb a:hover { color: var(--wy-primary); }
.wy-crumb i { font-size: 11px; }

.wy-layout { display: grid; grid-template-columns: 274px 1fr; gap: 32px; align-items: start; }

/* 侧栏 */
.wy-side { position: sticky; top: 84px; }
.wy-side-card { background: #fff; border: 1px solid var(--wy-line); border-radius: var(--wy-radius); overflow: hidden; margin-bottom: 22px; }
.wy-side-card > h3 {
    font-size: 17px; margin: 0; padding: 18px 22px;
    background: linear-gradient(120deg, var(--wy-navy), var(--wy-navy-3)); color: #fff;
    display: flex; align-items: center; gap: 9px;
}
.wy-side-card .bd { padding: 14px; }
.wy-cat-list { list-style: none; margin: 0; padding: 0; }
.wy-cat-list a {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 11px 16px; border-radius: 9px; font-size: 14.5px; color: var(--wy-body);
    margin-bottom: 3px; transition: var(--wy-trans);
}
.wy-cat-list a:hover { background: var(--wy-primary-soft); color: var(--wy-primary-dark); padding-left: 21px; }
.wy-cat-list li.active > a { background: var(--wy-primary); color: #fff; }
.wy-cat-list .lv2 a { padding-left: 30px; font-size: 14px; }
.wy-cat-list .lv3 a { padding-left: 46px; font-size: 13.5px; color: var(--wy-muted); }
.wy-cat-list a .badge { background: rgba(255, 255, 255, .25); font-size: 11px; padding: 2px 7px; border-radius: 6px; }
.wy-side-contact { background: linear-gradient(150deg, var(--wy-navy), var(--wy-navy-3)); color: #fff; border-radius: var(--wy-radius); padding: 26px 24px; }
.wy-side-contact h3 { color: #fff; font-size: 16.5px; margin: 0 0 6px; }
.wy-side-contact .sub { font-size: 13px; color: rgba(255, 255, 255, .6); margin-bottom: 18px; }
.wy-side-contact .line { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 12px; color: rgba(255, 255, 255, .86); }
.wy-side-contact .line i { color: var(--wy-primary); font-size: 16px; width: 18px; }
.wy-side-contact .line a { color: rgba(255, 255, 255, .9); }
.wy-side-contact .line a:hover { color: var(--wy-primary); }
.wy-side-contact .hot { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.4px; display: block; line-height: 1.4; }

/* 列表网格（产品） */
.wy-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wy-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* 文章列表 */
.wy-art-list { background: #fff; border: 1px solid var(--wy-line); border-radius: var(--wy-radius); overflow: hidden; }
.wy-art-item {
    display: flex; gap: 20px; padding: 22px; border-bottom: 1px solid var(--wy-line);
    transition: var(--wy-trans);
}
.wy-art-item:hover { background: #FBFDFF; }
.wy-art-item:last-child { border-bottom: 0; }
.wy-art-item .thumb { width: 190px; height: 126px; border-radius: var(--wy-radius-sm); overflow: hidden; flex-shrink: 0; background: var(--wy-bg); }
.wy-art-item .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wy-art-item:hover .thumb img { transform: scale(1.07); }
.wy-art-item .body { flex: 1; display: flex; flex-direction: column; }
.wy-art-item h3 { font-size: 18px; margin: 0 0 9px; }
.wy-art-item h3 a { color: var(--wy-ink); }
.wy-art-item h3 a:hover { color: var(--wy-primary); }
.wy-art-item p { font-size: 14px; color: var(--wy-muted); margin: 0 0 12px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wy-art-item .meta { display: flex; align-items: center; gap: 18px; font-size: 12.5px; color: var(--wy-muted); flex-wrap: wrap; }
.wy-art-item .meta i { color: var(--wy-primary); margin-right: 5px; }

/* 纯文字列表 */
.wy-txt-list { list-style: none; margin: 0; padding: 0; }
.wy-txt-list li { border-bottom: 1px dashed var(--wy-line); }
.wy-txt-list li:last-child { border-bottom: 0; }
.wy-txt-list a {
    display: flex; align-items: center; gap: 14px; padding: 15px 4px;
    color: var(--wy-body); font-size: 15px; transition: var(--wy-trans);
}
.wy-txt-list a::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--wy-primary); flex-shrink: 0; transition: var(--wy-trans);
}
.wy-txt-list a .ttl { flex: 1; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.wy-txt-list a:hover { color: var(--wy-primary); padding-left: 10px; }
.wy-txt-list a:hover::before { background: var(--wy-accent); transform: scale(1.4); }
.wy-txt-list .date { font-size: 12.5px; color: var(--wy-muted); flex-shrink: 0; }

/* 详情正文 */
.wy-article { background: #fff; border: 1px solid var(--wy-line); border-radius: var(--wy-radius); padding: 36px 40px; }
.wy-article-head { padding-bottom: 22px; border-bottom: 1px solid var(--wy-line); margin-bottom: 26px; }
.wy-article-head h1 { font-size: 27px; margin: 0 0 14px; line-height: 1.4; }
.wy-article-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13.5px; color: var(--wy-muted); }
.wy-article-meta i { color: var(--wy-primary); margin-right: 5px; }
.wy-content { font-size: 15.5px; line-height: 1.95; color: #3C4759; word-break: break-word; }
.wy-content h2 { font-size: 22px; margin: 30px 0 14px; padding-left: 14px; border-left: 4px solid var(--wy-primary); }
.wy-content h3 { font-size: 19px; margin: 24px 0 12px; }
.wy-content h4 { font-size: 17px; margin: 20px 0 10px; }
.wy-content p { margin: 0 0 16px; }
.wy-content img { max-width: 100%; border-radius: var(--wy-radius-sm); margin: 14px 0; height: auto; }
.wy-content ul, .wy-content ol { margin: 0 0 16px; padding-left: 24px; }
.wy-content li { margin-bottom: 8px; }
.wy-content table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14.5px; overflow: hidden; border-radius: var(--wy-radius-sm); }
.wy-content table td, .wy-content table th { border: 1px solid var(--wy-line); padding: 10px 14px; }
.wy-content table tr:first-child td, .wy-content table th { background: var(--wy-bg); font-weight: 600; color: var(--wy-ink); }
.wy-content table tr:nth-child(even) td { background: #FBFDFF; }
.wy-content blockquote {
    margin: 18px 0; padding: 16px 22px; background: var(--wy-primary-soft);
    border-left: 4px solid var(--wy-primary); border-radius: 0 var(--wy-radius-sm) var(--wy-radius-sm) 0;
    color: var(--wy-navy-2);
}
.wy-content a { text-decoration: underline; }
.wy-content iframe { max-width: 100%; border-radius: var(--wy-radius-sm); }
.wy-content .table-wrap { overflow-x: auto; }

/* 详情图库 */
.wy-gallery { background: #fff; border: 1px solid var(--wy-line); border-radius: var(--wy-radius); padding: 26px; }
.wy-gallery .main {
    aspect-ratio: 4/3; display: grid; place-items: center; background: #fff;
    border-radius: var(--wy-radius-sm); overflow: hidden; margin-bottom: 16px;
    border: 1px solid var(--wy-line);
}
.wy-gallery .main img { max-height: 100%; object-fit: contain; }
.wy-gallery .thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.wy-gallery .thumbs img {
    width: 78px; height: 78px; object-fit: contain; border: 2px solid var(--wy-line);
    border-radius: 9px; padding: 5px; cursor: pointer; background: #fff; transition: var(--wy-trans);
}
.wy-gallery .thumbs img:hover, .wy-gallery .thumbs img.on { border-color: var(--wy-primary); }

.wy-tabs { border-bottom: 2px solid var(--wy-line); display: flex; gap: 34px; margin-bottom: 26px; flex-wrap: wrap; }
.wy-tabs button {
    background: none; border: 0; padding: 14px 0; font-size: 16.5px; font-weight: 600;
    color: var(--wy-muted); cursor: pointer; position: relative; transition: var(--wy-trans);
}
.wy-tabs button::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
    background: var(--wy-primary); transform: scaleX(0); transition: var(--wy-trans);
}
.wy-tabs button.on { color: var(--wy-primary); }
.wy-tabs button.on::after { transform: scaleX(1); }
.wy-tab-pane { display: none; }
.wy-tab-pane.on { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.wy-spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.wy-spec-table td { border: 1px solid var(--wy-line); padding: 11px 16px; }
.wy-spec-table td:first-child { background: var(--wy-bg); width: 180px; font-weight: 600; color: var(--wy-ink); }

.wy-prod-info h1 { font-size: 26px; margin: 0 0 14px; line-height: 1.4; }
.wy-prod-info .model {
    display: inline-flex; align-items: center; gap: 8px; font-size: 14px;
    background: var(--wy-primary-soft); color: var(--wy-primary-dark);
    padding: 6px 15px; border-radius: 999px; margin-bottom: 18px; font-weight: 600;
}
.wy-prod-info .desc { font-size: 15px; color: var(--wy-body); margin-bottom: 22px; }
.wy-prod-info .attrs { display: grid; gap: 11px; margin-bottom: 26px; }
.wy-prod-info .attrs .row { display: flex; gap: 12px; font-size: 14.5px; }
.wy-prod-info .attrs .row b { color: var(--wy-ink); min-width: 84px; font-weight: 600; }
.wy-prod-info .acts { display: flex; gap: 12px; flex-wrap: wrap; }

/* 分页 */
.wy-pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 34px; flex-wrap: wrap; }
.wy-pager a, .wy-pager span {
    min-width: 42px; height: 42px; border-radius: 10px; display: inline-flex;
    align-items: center; justify-content: center; padding: 0 13px;
    border: 1px solid var(--wy-line); background: #fff; color: var(--wy-body);
    font-size: 14.5px; transition: var(--wy-trans);
}
.wy-pager a:hover { border-color: var(--wy-primary); color: var(--wy-primary); }
.wy-pager .on { background: var(--wy-primary); border-color: var(--wy-primary); color: #fff; font-weight: 700; }
.wy-pager .dis { opacity: .45; cursor: not-allowed; }
.wy-pager .total { border: 0; background: transparent; color: var(--wy-muted); font-size: 13.5px; margin-left: 8px; }

/* 表单 */
.wy-form .frow { margin-bottom: 18px; }
.wy-form label { display: block; font-size: 14px; color: var(--wy-ink); font-weight: 600; margin-bottom: 8px; }
.wy-form label .req { color: #E5484D; margin-left: 3px; }
.wy-form .ctrl {
    width: 100%; border: 1px solid var(--wy-line); border-radius: var(--wy-radius-sm);
    padding: 12px 16px; font-size: 14.5px; color: var(--wy-ink); background: #fff;
    transition: var(--wy-trans); outline: none; font-family: inherit;
}
.wy-form .ctrl:focus { border-color: var(--wy-primary); box-shadow: 0 0 0 3px rgba(0, 162, 234, .13); }
.wy-form textarea.ctrl { min-height: 132px; resize: vertical; }
.wy-form .cap-row { display: flex; gap: 12px; align-items: stretch; }
.wy-form .cap-img {
    height: 46px; border-radius: var(--wy-radius-sm); border: 1px solid var(--wy-line);
    cursor: pointer; overflow: hidden; background: #f2f7fb; display: flex; align-items: center;
}
.wy-form .cap-img svg { height: 100%; width: auto; display: block; }
.wy-alert { border-radius: var(--wy-radius-sm); padding: 13px 18px; font-size: 14.5px; margin-bottom: 18px; display: flex; gap: 10px; align-items: flex-start; }
.wy-alert.ok { background: #E9F9F1; color: #17794C; border: 1px solid #BFEAD3; }
.wy-alert.err { background: #FDEDED; color: #B42318; border: 1px solid #F6CFCF; }
.wy-alert.info { background: var(--wy-primary-soft); color: var(--wy-primary-darker); border: 1px solid #C6EAFB; }

/* 联系卡片 */
.wy-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wy-ccard2 {
    background: #fff; border: 1px solid var(--wy-line); border-radius: var(--wy-radius);
    padding: 30px 26px; text-align: center; transition: var(--wy-trans);
}
.wy-ccard2:hover { transform: translateY(-6px); box-shadow: var(--wy-shadow-lg); border-color: var(--wy-primary); }
.wy-ccard2 .ic {
    width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 17px;
    background: var(--wy-primary-soft); color: var(--wy-primary);
    display: grid; place-items: center; font-size: 26px;
}
.wy-ccard2:hover .ic { background: var(--wy-primary); color: #fff; }
.wy-ccard2 h4 { font-size: 16.5px; margin: 0 0 10px; }
.wy-ccard2 p { margin: 0; font-size: 14.5px; color: var(--wy-body); word-break: break-all; }
.wy-ccard2 a { color: var(--wy-body); }
.wy-ccard2 a:hover { color: var(--wy-primary); }

/* 上传预览 */
.wy-upload-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; }

/* 空状态 */
.wy-empty { text-align: center; padding: 66px 20px; color: var(--wy-muted); }
.wy-empty i { font-size: 54px; color: var(--wy-line); display: block; margin-bottom: 14px; }

/* 浮动联系 */
.wy-float {
    position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
    z-index: 1050; display: flex; flex-direction: column; gap: 10px;
}
.wy-float .fb {
    width: 50px; height: 50px; border-radius: 14px; background: var(--wy-primary);
    color: #fff; display: grid; place-items: center; font-size: 21px;
    cursor: pointer; box-shadow: 0 8px 22px rgba(0, 162, 234, .32);
    transition: var(--wy-trans); position: relative;
}
.wy-float .fb:hover { background: var(--wy-accent); transform: scale(1.08); }
.wy-float .fb .pop {
    position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%) scale(.9);
    background: var(--wy-navy); color: #fff; padding: 9px 15px; border-radius: 9px;
    font-size: 13.5px; white-space: nowrap; opacity: 0; visibility: hidden; transition: var(--wy-trans);
    box-shadow: var(--wy-shadow-lg); pointer-events: none;
}
.wy-float .fb:hover .pop { opacity: 1; visibility: visible; transform: translateY(-50%) scale(1); }
.wy-float .fb .qr-pop {
    position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
    background: #fff; padding: 10px; border-radius: 12px; box-shadow: var(--wy-shadow-lg);
    opacity: 0; visibility: hidden; transition: var(--wy-trans);
}
.wy-float .fb:hover .qr-pop { opacity: 1; visibility: visible; }
.wy-float .fb .qr-pop img { width: 130px; height: 130px; object-fit: contain; display: block; border-radius: 6px; }
.wy-float .fb .qr-pop span { display: block; text-align: center; font-size: 12px; color: var(--wy-muted); margin-top: 6px; }

/* ==========================================================================
   页脚
   ========================================================================== */
.wy-footer { background: var(--wy-navy); color: rgba(255, 255, 255, .62); padding-top: 62px; margin-top: 0; }
.wy-footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 46px; }
.wy-footer h4 { color: #fff; font-size: 16.5px; margin: 0 0 22px; position: relative; padding-bottom: 13px; }
.wy-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--wy-primary); border-radius: 3px; }
.wy-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.wy-footer ul a { color: rgba(255, 255, 255, .62); font-size: 14px; }
.wy-footer ul a:hover { color: var(--wy-primary); padding-left: 5px; }
.wy-footer .fabout .flogo { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; text-decoration: none; }
.wy-footer .fabout .flogo img { height: 46px; width: auto; display: block; margin: 0; filter: brightness(0) invert(1); opacity: .92; }
.wy-footer .fabout .flogo .txt { color: #fff; font-size: 20px; font-weight: 700; letter-spacing: 1.5px; white-space: nowrap; }
.wy-footer .fabout .flogo:hover .txt { color: var(--wy-primary); }
.wy-footer .fabout p { font-size: 14px; line-height: 1.85; margin: 0 0 18px; }
.wy-footer .fq { display: flex; flex-direction: column; gap: 13px; }
.wy-footer .fq .line { display: flex; gap: 11px; font-size: 14px; align-items: flex-start; }
.wy-footer .fq .line i { color: var(--wy-primary); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.wy-footer .fq .line a { color: rgba(255, 255, 255, .72); }
.wy-footer .fq .line a:hover { color: var(--wy-primary); }
.wy-footer .fq .line strong { color: #fff; font-size: 17px; }
.wy-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    flex-wrap: wrap; font-size: 13.5px;
}
.wy-footer-bottom a { color: rgba(255, 255, 255, .62); }
.wy-footer-bottom .links { display: flex; gap: 16px; flex-wrap: wrap; }

/* 回到顶部 */
.wy-top {
    position: fixed; right: 18px; bottom: 26px; width: 48px; height: 48px;
    border-radius: 14px; background: var(--wy-navy); color: #fff; border: 0;
    display: grid; place-items: center; font-size: 20px; cursor: pointer;
    opacity: 0; visibility: hidden; transition: var(--wy-trans); z-index: 1040;
    box-shadow: var(--wy-shadow-lg);
}
.wy-top.show { opacity: 1; visibility: visible; }
.wy-top:hover { background: var(--wy-primary); transform: translateY(-3px); }

/* ==========================================================================
   响应式
   ========================================================================== */
@media (max-width: 1400px) {
    .wy-nav ul.menu > li > a { padding: 9px 13px; font-size: 14.5px; }
    .nav-search input { width: 110px; }
}

@media (max-width: 1200px) {
    .wy-prod-grid, .wy-case-grid { grid-template-columns: repeat(3, 1fr); }
    .wy-sol-grid { grid-template-columns: repeat(2, 1fr); }
    .wy-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .wy-hero-v2 { min-height: 560px; }
    .hero-inner { padding-top: 124px; padding-bottom: 80px; gap: 30px; }
    .hero-title { font-size: 40px; }
    .hero-desc { font-size: 15.5px; }
    .camera-scene { width: 340px; height: 340px; }
    .cam-body { width: 115px; height: 84px; }
    .cam-lens { width: 60px; height: 60px; }
    .lens-core { width: 36px; height: 36px; }
    .hs-item strong { font-size: 30px; }
    .wy-layout { grid-template-columns: 250px 1fr; gap: 26px; }
    .wy-footer-top { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 34px; }
}

@media (max-width: 991px) {
    .wy-nav ul.menu { display: none; }
    .wb-tools .nav-search { display: none; }
    .wy-burger { display: grid; place-items: center; }
    .wy-headerbar .inner { height: 58px; }
    .wy-hero-v2 { min-height: auto; }
    .hero-inner {
        grid-template-columns: 1fr; gap: 40px;
        padding-top: 116px; padding-bottom: 70px; text-align: center;
    }
    .wy-topbar .tb-left { gap: 16px; }
    .hero-copy { max-width: 100%; }
    .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-stats { max-width: 100%; margin: 0 auto; }
    .hero-visual { order: -1; }
    .camera-scene { width: 280px; height: 280px; }
    .cam-main { transform: scale(.9); }
    .float-label { display: none; }
    .wy-cta { padding: 38px 30px; }
    .wy-cta h2 { font-size: 23px; }
    .wy-about { grid-template-columns: 1fr; gap: 34px; }
    .wy-about-media .badge { right: 12px; bottom: -14px; padding: 16px 20px; }
    .wy-about-media .badge strong { font-size: 26px; }
    .wy-news-main { grid-template-columns: 1fr; }
    .wy-layout { grid-template-columns: 1fr; }
    .wy-side { position: static; }
    .wy-side .wy-cat-list { max-height: 300px; overflow-y: auto; }
    .wy-footer-top { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .wy-contact-grid { grid-template-columns: 1fr; }
    .wy-article { padding: 26px 22px; }
    .wy-article-head h1 { font-size: 22px; }
    .wy-banner { padding: 42px 0; }
    .wy-banner h1 { font-size: 26px; }
    .wy-head h2 { font-size: 26px; }
    .wy-section { padding: 52px 0; }
    .wy-float { display: none; }
    .wy-stats { grid-template-columns: repeat(2, 1fr); }
    .wy-art-item .thumb { width: 130px; height: 92px; }
}

@media (max-width: 767px) {
    body { font-size: 14.5px; }
    .wy-topbar { font-size: 12px; }
    .wy-topbar .tb-left { gap: 12px; }
    .wy-topbar .tb-addr { display: none; }
    .wy-headerbar .inner { padding: 6px 0; }
    .wy-logo img { height: 36px; }
    .wy-logo .txt { font-size: 16px; }
    .wb-tools { gap: 8px; }
    .wy-prod-grid, .wy-case-grid, .wy-grid-3, .wy-grid-4,
    .wy-sol-grid, .wy-feat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .wy-nitem { flex-direction: column; }
    .wy-nitem .thumb { width: 100%; height: 170px; min-height: 0; }
    .wy-nitem .body { padding: 0 18px 18px; }
    .wy-art-item { flex-direction: column; gap: 14px; padding: 18px; }
    .wy-art-item .thumb { width: 100%; height: 172px; }
    .wy-hero-v2 { min-height: auto; }
    .hero-inner { padding-top: 116px; padding-bottom: 60px; gap: 30px; }
    .hero-title { font-size: 28px; margin-bottom: 16px; }
    .hero-desc { font-size: 14px; margin-bottom: 26px; }
    .hero-tag { font-size: 11.5px; padding: 5px 14px; margin-bottom: 16px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hs-item { padding: 16px 10px; }
    .hs-item strong { font-size: 28px; }
    .camera-scene { width: 220px; height: 220px; }
    .cam-main { transform: scale(.75); }
    .hero-wave svg { height: 50px; }
    .wy-btn { padding: 11px 22px; font-size: 14px; }
    .wy-head h2 { font-size: 22px; }
    .wy-footer-top { grid-template-columns: 1fr; gap: 26px; }
    .wy-footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .wy-stats .st { padding: 24px 14px; }
    .wy-stats .st strong { font-size: 32px; }
    .wy-cta { padding: 30px 22px; }
    .wy-cta h2 { font-size: 20px; }
    .wy-gallery { padding: 16px; }
    .wy-gallery .thumbs img { width: 58px; height: 58px; }
    .wy-content { font-size: 15px; }
    .wy-content table { font-size: 13px; }
    .wy-pager a, .wy-pager span { min-width: 36px; height: 36px; font-size: 13.5px; }
}

@media (max-width: 480px) {
    .wy-prod-grid, .wy-case-grid, .wy-grid-3, .wy-grid-4 { grid-template-columns: 1fr; }
    .wy-sol-grid, .wy-feat-grid { grid-template-columns: 1fr; }
    .wy-hero-v2 { min-height: auto; }
    .hero-inner { padding-top: 112px; padding-bottom: 50px; }
    .wy-topbar .tb-email { display: none; }
    .wy-topbar .tb-inquiry { padding: 4px 10px; }
    .hero-title { font-size: 24px; }
    .camera-scene { width: 180px; height: 180px; }
    .cam-main { transform: scale(.6); }
    .wy-stats { grid-template-columns: repeat(2, 1fr); }
    .wy-float { display: none; }
}

/* 打印 */
@media print {
    .wy-headerbar, .wy-topbar, .wy-nav, .wy-footer, .wy-float, .wy-top, .wy-side, .wy-banner { display: none !important; }
    .wy-layout { grid-template-columns: 1fr; }
    .wy-article { border: 0; padding: 0; }
}

/* 无障碍 */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ==================== 单页排版：关于我们 / 企业文化 / 招贤纳士 ==================== */
/* 导语 */
.ab-lead {
    font-size: 16.5px; line-height: 2.05; color: var(--wy-navy-2);
    background: linear-gradient(135deg, #F1F9FF 0%, #FFFFFF 90%);
    border-left: 4px solid var(--wy-primary);
    border-radius: 0 var(--wy-radius) var(--wy-radius) 0;
    padding: 22px 26px; margin: 0 0 26px;
}
.ab-lead strong { color: var(--wy-primary-darker); }

/* 数据条 */
.ab-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 0 32px; }
.ab-stat {
    background: var(--wy-bg); border: 1px solid var(--wy-line);
    border-radius: var(--wy-radius); padding: 18px 12px; text-align: center;
    transition: var(--wy-trans);
}
.ab-stat:hover { border-color: rgba(0,162,234,.4); background: #fff; box-shadow: var(--wy-shadow); }
.ab-stat strong {
    display: block; font-size: 27px; font-weight: 800; color: var(--wy-primary);
    line-height: 1.1; letter-spacing: -.6px;
}
.ab-stat span { display: block; margin-top: 7px; font-size: 12.5px; color: var(--wy-muted); }

/* 能力卡片 */
.ab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 4px 0 28px; }
.ab-card {
    background: #fff; border: 1px solid var(--wy-line);
    border-radius: var(--wy-radius); padding: 20px 22px; transition: var(--wy-trans);
}
.ab-card:hover { border-color: rgba(0,162,234,.45); box-shadow: var(--wy-shadow); transform: translateY(-2px); }
.ab-card h4 { display: flex; align-items: center; gap: 9px; margin: 0 0 9px; font-size: 15.5px; color: var(--wy-navy-2); }
.ab-card h4 i { color: var(--wy-primary); font-size: 19px; }
.ab-card p { margin: 0; font-size: 14px; line-height: 1.85; color: #4B5768; }

/* 配图 */
.ab-figure { margin: 6px 0 30px; }
.ab-figure img { width: 100%; display: block; margin: 0; border-radius: var(--wy-radius); }
.ab-figure figcaption { margin-top: 10px; font-size: 13px; color: var(--wy-muted); text-align: center; }

/* 产品系列标签 */
.ab-tags { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 9px; }
.wy-content .ab-tags li {
    margin: 0; padding: 7px 15px; font-size: 13.5px; line-height: 1.5;
    border-radius: 999px; background: var(--wy-primary-soft);
    color: var(--wy-primary-darker); border: 1px solid rgba(0,162,234,.18);
}

/* 结语提示框 */
.ab-note {
    background: var(--wy-bg); border: 1px dashed #CBD8E4;
    border-radius: var(--wy-radius); padding: 18px 22px; font-size: 14.5px; line-height: 1.9;
}
.wy-content .ab-note p:last-child { margin: 0; }

/* 招聘岗位 */
.job-list { display: grid; gap: 16px; margin: 4px 0 26px; }
.job-card { background: #fff; border: 1px solid var(--wy-line); border-radius: var(--wy-radius); padding: 22px 24px; transition: var(--wy-trans); }
.job-card:hover { border-color: rgba(0,162,234,.45); box-shadow: var(--wy-shadow); }
.job-head { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; }
.job-head h4 { margin: 0; font-size: 17px; color: var(--wy-navy-2); }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.job-meta span {
    font-size: 12.5px; color: var(--wy-muted); background: var(--wy-bg);
    border: 1px solid var(--wy-line); border-radius: 999px; padding: 4px 12px; white-space: nowrap;
}
.job-meta span.hot { color: #C2410C; background: #FFF7ED; border-color: #FED7AA; }
.wy-content .job-card h5 { margin: 18px 0 8px; font-size: 14.5px; color: var(--wy-primary-darker); }
.wy-content .job-card h5:first-of-type { margin-top: 16px; }
.wy-content .job-card ul { margin: 0 0 4px; padding-left: 22px; }
.wy-content .job-card li { font-size: 14px; line-height: 1.85; margin-bottom: 5px; }
.job-apply {
    margin-top: 20px; padding: 16px 20px; background: var(--wy-primary-soft);
    border-radius: var(--wy-radius-sm); font-size: 14.5px; line-height: 1.9;
}
.job-apply strong { color: var(--wy-primary-darker); }

/* ==================== 单页排版：企业文化 ==================== */
/* 基本信念（2×2 卡片） */
.cul-belief { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 2px 0 30px; }
.cul-bcard {
    position: relative; overflow: hidden; background: #fff;
    border: 1px solid var(--wy-line); border-radius: var(--wy-radius);
    padding: 24px 24px 22px; transition: var(--wy-trans);
}
.cul-bcard::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
    background: linear-gradient(90deg, var(--wy-primary) 0%, rgba(0, 162, 234, .1) 100%);
}
.cul-bcard:hover {
    border-color: rgba(0, 162, 234, .45); box-shadow: var(--wy-shadow);
    transform: translateY(-2px);
}
.cul-bcard.is-key { background: linear-gradient(150deg, #F2FAFF 0%, #FFFFFF 72%); }
.cul-bcard .ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; margin-bottom: 14px; font-size: 22px;
    border-radius: 12px; background: var(--wy-primary-soft); color: var(--wy-primary);
}
.wy-content .cul-bcard .kicker {
    display: block; margin-bottom: 8px; font-size: 12px; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--wy-muted);
}
.wy-content .cul-bcard strong {
    display: block; margin-bottom: 10px; font-size: 18.5px; font-weight: 700;
    line-height: 1.55; color: var(--wy-navy-2);
}
.wy-content .cul-bcard p { margin: 0; font-size: 14px; line-height: 1.9; color: #4B5768; }

/* 理念体系（编号列表） */
.cul-list { display: grid; gap: 14px; margin: 2px 0 32px; }
.cul-item {
    display: flex; gap: 20px; padding: 22px 24px;
    background: var(--wy-bg); border: 1px solid var(--wy-line);
    border-radius: var(--wy-radius); transition: var(--wy-trans);
}
.cul-item:hover { background: #fff; border-color: rgba(0, 162, 234, .4); box-shadow: var(--wy-shadow); }
.cul-item .no {
    flex: 0 0 54px; font-size: 27px; font-weight: 800; line-height: 1.1;
    letter-spacing: -1px; color: rgba(0, 162, 234, .32);
}
.cul-item .bd { flex: 1 1 auto; min-width: 0; }
.wy-content .cul-item h4 {
    display: flex; flex-wrap: wrap; align-items: baseline; gap: 9px;
    margin: 0 0 8px; font-size: 16.5px; color: var(--wy-navy-2);
}
.wy-content .cul-item h4 em {
    font-style: normal; font-size: 12.5px; font-weight: 500;
    letter-spacing: .4px; color: var(--wy-muted);
}
.wy-content .cul-item .core {
    margin: 0 0 8px; font-size: 15px; font-weight: 600;
    line-height: 1.7; color: var(--wy-primary-darker);
}
.wy-content .cul-item p.txt { margin: 0; font-size: 14px; line-height: 1.9; color: #4B5768; }

/* 企业口号横幅 */
.cul-slogan {
    position: relative; overflow: hidden; margin: 30px 0 4px; padding: 36px 30px;
    border-radius: var(--wy-radius); text-align: center;
    background: linear-gradient(120deg, var(--wy-navy) 0%, var(--wy-navy-2) 45%, var(--wy-navy-3) 100%);
}
.cul-slogan::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 84% 12%, rgba(0, 162, 234, .42), transparent 60%);
}
.wy-content .cul-slogan .k {
    position: relative; display: block; margin-bottom: 12px; font-size: 12px;
    letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, .6);
}
.wy-content .cul-slogan strong {
    position: relative; display: block; font-size: 30px; font-weight: 800;
    letter-spacing: 3px; line-height: 1.4; color: #fff;
}
.wy-content .cul-slogan .en {
    position: relative; display: block; margin-top: 12px; font-size: 12.5px;
    letter-spacing: 2.4px; text-transform: uppercase; color: rgba(255, 255, 255, .55);
}

@media (max-width: 767px) {
    .ab-stats { grid-template-columns: repeat(2, 1fr); }
    .ab-grid { grid-template-columns: 1fr; }
    .ab-lead { font-size: 15.5px; padding: 18px 20px; }
    .ab-figure figcaption { text-align: left; }
    .cul-belief { grid-template-columns: 1fr; }
    .cul-item { flex-direction: column; gap: 10px; padding: 18px 18px; }
    .cul-item .no { flex: 0 0 auto; font-size: 21px; }
    .cul-slogan { padding: 28px 18px; }
    .wy-content .cul-slogan strong { font-size: 22px; letter-spacing: 1.5px; }
}
