/* ==========================================================
   深圳汝原科技（Morpho）· 校园招聘门户
   ========================================================== */

:root {
  /* 品牌色 —— Morpho 蝴蝶蓝 */
  --primary: #1B4FD8;
  --accent: #00D4FF;
  --violet: #7C3AED;

  --ink: #0B1220;
  --ink-2: #475467;
  --ink-3: #8994A5;
  --line: #E6EAF2;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FC;
  --dark: #050B1A;

  --success: #12B76A;
  --danger: #E23D3D;
  --warning: #F79009;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, .05);
  --shadow: 0 12px 32px rgba(11, 18, 32, .08);
  --shadow-lg: 0 24px 64px rgba(11, 18, 32, .14);
  --grad: linear-gradient(120deg, var(--primary) 0%, #2E7BFF 45%, var(--accent) 100%);
  --grad-soft: linear-gradient(120deg, rgba(27,79,216,.08), rgba(0,212,255,.12));
  --grad-dark: linear-gradient(135deg, #030913 0%, #071A3C 38%, #123A8A 72%, #0E7490 100%);
  --font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.container { width: min(1200px, 100% - 48px); margin: 0 auto; }

/* 滚动淡入 */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- 导航 ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
  background: transparent;
}
.nav.solid {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(11, 18, 32, .06);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; width: min(1200px, 100% - 48px); margin: 0 auto; }

.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: .3px; color: #fff; transition: color .3s; }
.nav.solid .logo { color: var(--ink); }
.logo .mark {
  width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center; flex: none; overflow: hidden;
}
.logo .mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.logo .mark svg { width: 23px; height: 23px; }
.logo .txt small { display: block; font-size: 10px; font-weight: 500; letter-spacing: 2.2px; opacity: .55; margin-top: 1px; }

.nav-links { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav-links a {
  padding: 9px 15px; border-radius: 999px; font-size: 14.5px; font-weight: 500;
  color: rgba(255, 255, 255, .84); transition: .18s;
}
.nav.solid .nav-links a { color: var(--ink-2); }
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.nav.solid .nav-links a:hover { color: var(--primary); background: var(--bg-soft); }
.nav-links .site-link { display: inline-flex; align-items: center; gap: 6px; }
.nav-links .site-link svg { width: 13px; height: 13px; opacity: .7; }

/* 「立即投递」按钮：恒定渐变样式。
   早前这里是「白底深字 / 渐变底白字」两套配色，切换 nav.solid 时 background 会立刻跳变、
   而 color 仍在过渡，于是约 0.2 秒内是白底白字，看起来就是"空白按钮"。
   现在只保留一套配色，且过渡里不含 background / color，问题彻底消失。 */
.btn-go {
  background: var(--grad); color: #fff; padding: 10px 22px; border-radius: 999px;
  font-size: 14.5px; font-weight: 700; box-shadow: 0 8px 24px rgba(27, 79, 216, .34);
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  transition: transform .2s, box-shadow .2s; white-space: nowrap; min-width: 96px;
}
.btn-go:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(27, 79, 216, .46); }
.nav.solid .btn-go { box-shadow: 0 8px 22px rgba(27, 79, 216, .3); }

/* 汉堡菜单按钮（仅在移动端显示，见下方 @media） */
.nav-toggle {
  display: none;
  width: 44px; height: 44px; margin-left: auto; flex: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: 0; cursor: pointer; border-radius: 12px; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: #fff; transition: transform .26s, opacity .2s, background .3s;
}
.nav.solid .nav-toggle span { background: var(--ink); }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* 菜单展开时，导航条本身也变实底，保证白色下拉与条连成一体、按钮可见 */
.nav.open { background: rgba(255, 255, 255, .98); backdrop-filter: saturate(180%) blur(18px); box-shadow: 0 1px 0 rgba(11, 18, 32, .06); }
.nav.open .logo { color: var(--ink); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--grad-dark); color: #fff; overflow: hidden; padding: 120px 0 72px;
}
/* ---------------- 首屏背景插画（2026-09-14：由「右侧插画卡」改成「整块首屏背景」）
   用户原话：「这个图片能不能直接变成所在板块的背景，而不是一张图片附在身边的感觉」。
   图由 .hero-bg 承载（走后台 hero_bg 设置项），贴右对齐、比首屏高 112% 所以上下都出血；
   左半边的压暗交给 .hero-veil 的第一层**横向渐变**（见下面的 hero_overlay 说明）。
   ⚠️ **左缘千万不要用 mask 做透明渐隐** —— 试过，效果是左边留下一个"半透明人影"，
      看着像渲染出错；而且文字压在鬼影上很难读。要压暗就用不透明渐变去盖（盖住 = 暗，
      不是"变半透明"）。
   ⚠️ **别改成 background-size: cover**：源图是 1024×1024 正方形，首屏约 16:10，
      cover 会先放大到 1440 宽再上下切掉约 37%，学生头顶被切出画面、平台上的成品也会掉出去。
      auto 112% 是「按高度对齐」，完全不裁。
   ⚠️ 换 hero_bg 图时这几处要一起看：position 100%（贴右）、hero_overlay 的横向层、≤980px 的覆盖规则。 */
.hero-bg {
  position: absolute; inset: 0; opacity: 1;
  background-repeat: no-repeat;
  background-position: 100% 44%;
  background-size: auto 112%;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 35%, transparent 100%);
}
/* 光晕现在排在 .hero-bg 之下：有照片的地方被照片盖住（不再糊照片），
   左半屏没有照片，光晕就只剩它们该有的氛围作用。g2 在左下，是唯一常驻可见的一团，
   所以把它提到 .34 补回呼吸感；g1/g3 在照片底下，压到 .20/.26 防越界处穿帮。 */
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-glow.g1 { width: 620px; height: 620px; top: -180px; right: -140px; background: rgba(0, 212, 255, .20); }
.hero-glow.g2 { width: 560px; height: 560px; bottom: -220px; left: -160px; background: rgba(124, 58, 237, .34); }
.hero-glow.g3 { width: 420px; height: 420px; top: 40%; left: 45%; background: rgba(27, 79, 216, .26); }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,9,19,.55) 0%, rgba(3,9,19,.25) 40%, rgba(3,9,19,.85) 100%); }

.hero .container { position: relative; z-index: 3; width: min(1200px, 100% - 48px); }
.hero.center { text-align: center; }
.hero.center .hero-sub, .hero.center .hero-actions, .hero.center .hero-stats { justify-content: center; }
.hero.center .hero-sub { margin-left: auto; margin-right: auto; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 30px;
  padding: 13px 28px 13px 22px; border-radius: 999px;
  font-size: clamp(19px, 2.1vw, 28px); font-weight: 600; letter-spacing: .2px;
  background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
}
.hero-eyebrow .dot { width: 11px; height: 11px; border-radius: 50%; background: #34E5B0; box-shadow: 0 0 0 6px rgba(52, 229, 176, .22); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

.hero h1 {
  font-size: clamp(38px, 6.6vw, 76px); line-height: 1.08; margin: 0 0 22px;
  font-weight: 800; letter-spacing: -1.2px;
}
.hero h1 .hl {
  background: linear-gradient(100deg, #7FDBFF 0%, #4DA3FF 42%, #B79BFF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(15px, 1.9vw, 19px); line-height: 1.75; opacity: .82; margin: 0 0 14px; max-width: 620px; }
.hero-sub.strong { font-weight: 600; opacity: .95; font-size: clamp(14px, 1.6vw, 17px); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 32px; border-radius: 999px; font-weight: 700; font-size: 15.5px;
  border: 1px solid transparent; transition: .2s; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(27, 79, 216, .38); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(27, 79, 216, .5); }
.btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .3); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: rgba(11,18,32,.2); }
.btn-outline-dark:hover { border-color: var(--primary); color: var(--primary); }
.btn .ar { transition: transform .2s; }
.btn:hover .ar { transform: translateX(4px); }

/* 数据条：5 项（70%+ / 50%+ / 500+ / $10,000,000+ / B 轮）——
   gap 从 56px 收到 40px 并改用 space-between 均分：项数从 4 变 5 后，
   固定 56px 间距在 1100~1280 视口会把最后一项挤到第二行。 */
.hero-stats { display: flex; gap: 20px 40px; margin-top: 66px; flex-wrap: wrap; justify-content: space-between; }
.hero-stats .it b {
  display: block; font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -.5px;
  background: linear-gradient(180deg, #FFFFFF 30%, #9FD4FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* 插画改成首屏背景后，数据条左右两端会落在插画里较亮的区域（学生、印刷成品）；
     头两项在深蓝底上没问题，第 4/5 项（$10,000,000+ / B 轮）会有点"糊"。
     ⚠️ 这里只能用 filter: drop-shadow，不能用 text-shadow —— <b> 是
        background-clip:text + color:transparent，text-shadow 会从透明字形里透出来变成一圈脏边；
        drop-shadow 是对渲染结果做投影，跟随渐变字形，正常。
     上面的 hero_overlay 那层纵向渐变也在同步加厚（见后台 hero_overlay 设置项），两处配合。 */
  filter: drop-shadow(0 2px 12px rgba(3, 8, 20, .58));
}
.hero-stats .it span { font-size: 13px; opacity: .72; letter-spacing: .5px;
  /* 小字比大数字更怕花底，投影给实一点 */
  text-shadow: 0 1px 8px rgba(3, 8, 20, .75), 0 0 3px rgba(3, 8, 20, .55); }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; opacity: .5; font-size: 12px; letter-spacing: 2px; }

/* ==========================================================
   首屏右侧配色层（校招调性）
   ----------------------------------------------------------
   左栏文案 / 右栏配色视觉，两栏网格 —— 右栏是纯装饰层，任何视口下都不会压到文字。
   配色全部取自品牌：蓝 #1B4FD8、青 #00D4FF、紫 #7C3AED，加上首屏 eyebrow 圆点
   已经在用的薄荷 #34E5B0。比原来的死蓝更亮、更年轻，就是校招该有的调性。
   改文案只需动 .hero-copy，这里的结构不用碰。
   ========================================================== */
.hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: 0 44px; align-items: center; }
.hero.center .hero-inner { grid-template-columns: 1fr; }
/* 数据条横跨两栏：留在左栏里只有 602px 宽，4 个数据会换行 */
.hero-inner .hero-stats { grid-column: 1 / -1; }

.hero-visual {
  position: relative; align-self: stretch; min-height: 520px; min-width: 0;
  pointer-events: none;
}

/* 极光光斑：4 团不同色、不同节奏的呼吸光 */
.hv-aura {
  --sz: 360px;
  position: absolute; width: var(--sz); height: var(--sz); border-radius: 50%;
  filter: blur(60px); mix-blend-mode: screen;
  animation: hvDrift 18s ease-in-out infinite;
}
.hv-aura.a1 { top: 1%; right: 4%; background: radial-gradient(circle, rgba(0, 212, 255, .95) 0%, rgba(0, 212, 255, 0) 70%); }
.hv-aura.a2 { --sz: 420px; top: 30%; right: -8%; background: radial-gradient(circle, rgba(124, 58, 237, .92) 0%, rgba(124, 58, 237, 0) 70%); animation-duration: 23s; animation-delay: -5s; }
.hv-aura.a3 { --sz: 380px; top: 54%; right: 4%; background: radial-gradient(circle, rgba(46, 123, 255, .95) 0%, rgba(46, 123, 255, 0) 70%); animation-duration: 20s; animation-delay: -9s; }
.hv-aura.a4 { --sz: 250px; top: 6%; right: 46%; background: radial-gradient(circle, rgba(52, 229, 176, .85) 0%, rgba(52, 229, 176, 0) 70%); animation-duration: 26s; animation-delay: -3s; }
@keyframes hvDrift {
  0%, 100% { translate: 0 0; scale: 1; }
  50%      { translate: -16px 20px; scale: 1.07; }
}

/* 光轨：两道斜向柔光，给右侧一点"舞台"感 */
.hv-beam {
  position: absolute; top: -6%; height: 112%; width: 130px; border-radius: 999px;
  filter: blur(30px); transform: rotate(15deg); opacity: .5;
}
.hv-beam.b1 { right: 10%; background: linear-gradient(180deg, rgba(0, 212, 255, 0) 0%, rgba(0, 212, 255, .5) 46%, rgba(0, 212, 255, 0) 100%); }
.hv-beam.b2 { right: 44%; width: 92px; background: linear-gradient(180deg, rgba(124, 58, 237, 0) 0%, rgba(124, 58, 237, .46) 50%, rgba(124, 58, 237, 0) 100%); }

/* 校招生插画卡（2026-09-14 第三次换图：暗调影棚照 → 明亮人物照 → 3D 渲染插画）。
   为什么用圆角卡而不是"出血羽化"：内容横向几乎铺满整张图，
   任何左缘淡出都会切到最左/最右那个人。做成一张明确的圆角卡最干净，
   也和站内 .about-side / .prod-card 的卡片语言一致。
   极光光斑留在卡片外围，继续提供校招配色（见 .hv-aura）。

   ⚠️ 换图时这几处必须一起改，它们原本是给深色影棚照配的：
     背景垫色 / 描边 / 投影 都改成冷白蓝调，否则亮图会被一圈深色边"框住"；
     卡内的叠光也从"下缘压暗"改成"下缘提亮"，不然画面底部会发灰发脏。
   ⚠️ 图本身是 1:1（1024×1024），因为卡位实测 ≈485×455（1.07）/ 手机 354×360（0.98），
     用 4:5 的图会被 cover 上下各切一大截（蝴蝶上翅会被裁掉）。 */
.hv-photo-wrap {
  position: absolute; inset: 5% 0 2% 3%;
  border-radius: 26px; overflow: hidden; background: #EAF4FF;
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: 0 40px 90px rgba(2, 7, 18, .5), 0 0 70px rgba(0, 212, 255, .22),
              inset 0 1px 0 rgba(255, 255, 255, .6);
}
.hv-photo { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 50%; }
/* 卡内上缘的冷光 + 下缘提亮，让照片不是一块平贴的方图 */
.hv-photo-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 72% 46% at 50% 0%, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, rgba(226, 242, 255, .34) 100%);
}

/* 系统开启"减少动态效果"时全部静止 */
@media (prefers-reduced-motion: reduce) {
  .hv-aura { animation: none; }
}

/* 文案永远压在视觉层之上 */
.hero-copy { position: relative; z-index: 1; }

/* 980 以下收成单栏（2026-09-14 起插画已改成首屏背景，这里不再有独立的插画卡）：
   窄屏必须把横向 mask 换成纵向 mask —— 横向 mask 在小屏上只剩右边一条缝。
   cover + 纵向渐隐后，插画变成一条整幅铺宽、上下渐隐的出血背景带：
   顶部让给文案、底部让给数据条，中间露出插画。 */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-bg {
    background-size: cover;
    background-position: 50% 68%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.12) 30%, rgba(0,0,0,.62) 40%, #000 48%, #000 86%, rgba(0,0,0,.30) 100%);
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.12) 30%, rgba(0,0,0,.62) 40%, #000 48%, #000 86%, rgba(0,0,0,.30) 100%);
  }
  /* 窄屏额外压一层纵向蒙版：cover 之后整屏都是亮图，
     文案（白字）与数据条都需要更实的底，靠 hero_overlay 那层不够。
     中间留 60%~72% 稍亮，让插画在文案与数据条之间透出来一点。 */
  .hero::after {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(4,10,24,.82) 0%, rgba(4,10,24,.74) 48%,
                rgba(4,10,24,.34) 62%, rgba(4,10,24,.26) 70%, rgba(4,10,24,.80) 100%);
  }
}

/* ---------------- 通用区块 ---------------- */
.section { padding: 104px 0; }
.section.soft { background: var(--bg-soft); }
.section.dark { background: var(--dark); color: #fff; }

.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--primary); text-transform: uppercase; margin-bottom: 16px;
}
.section-head { margin-bottom: 52px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.8vw, 44px); margin: 0 0 14px; font-weight: 800; letter-spacing: -.8px; line-height: 1.2; }
.section-head p { margin: 0; color: var(--ink-2); font-size: 16.5px; line-height: 1.75; }
.section.dark .section-head p { color: rgba(255, 255, 255, .66); }
.section.dark .eyebrow { color: var(--accent); }

/* ---------------- 优势卡片 ---------------- */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }

/* 「我们提供」5 张卡：桌面端强制一行 5 个（auto-fit 在 1200px 下只会给到 4 列） */
#benefits .feat-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
#benefits .feat-card { padding: 26px 18px 22px; text-align: center; }
#benefits .feat-card .ico { margin-left: auto; margin-right: auto; width: 46px; height: 46px; font-size: 22px; margin-bottom: 16px; }
#benefits .feat-card h3 { font-size: 16.5px; margin-bottom: 8px; }
#benefits .feat-card p { font-size: 13.2px; line-height: 1.7; }
@media (max-width: 1100px) {
  #benefits .feat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
  #benefits .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  #benefits .feat-card { padding: 22px 14px 18px; }
}
@media (max-width: 420px) {
  #benefits .feat-grid { grid-template-columns: 1fr; }
}

/* 「过往荣誉」徽章墙（2026-09-14 由「品牌荣誉」改名）：features 区块的图标位改用真实奖项图，桌面端 6 列 × 3 行 */
/* 过往荣誉墙：18 张卡（其中 TIME / CES 两张各放 2 枚年份徽章，共 20 枚）。
   卡片数是 18 —— 6 列 × 3 行正好排满，5 列会剩一行 3 张的残行。 */
#honors .feat-grid { grid-template-columns: repeat(6, 1fr); gap: 14px; }
#honors .feat-card { padding: 18px 14px 18px; text-align: center; }
#honors .feat-card .ico { width: 100%; height: 92px; margin: 0 auto 14px; border-radius: 0; background: none; display: block; }
#honors .feat-card h3 { font-size: 14px; margin-bottom: 6px; }
#honors .feat-card p { font-size: 12.4px; line-height: 1.65; }
@media (max-width: 1100px) {
  #honors .feat-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  #honors .feat-card .ico { height: 78px; }
}
@media (max-width: 768px) {
  #honors .feat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  #honors .feat-card { padding: 16px 10px 14px; }
  #honors .feat-card .ico { height: 60px; margin-bottom: 10px; }
  #honors .feat-card h3 { font-size: 13px; }
  #honors .feat-card p { font-size: 11.6px; }
}
@media (max-width: 480px) {
  #honors .feat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 图片型图标（features 区块通用：icon 字段写图片路径时走这里） */
.feat-card .ico.ico-img { background: none; border-radius: 0; }
.feat-card .ico.ico-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* 同一张卡放多枚徽章（icon 字段用 ; 分隔多个路径）：并排、等宽、各自等比缩放。
   必须同时写 #honors 版本 —— #honors .feat-card .ico 是 id 选择器，
   它的 display:block 会压过 .feat-card .ico.ico-imgs 的 flex，
   结果两张图被竖排、撑出卡片压到标题上。 */
.feat-card .ico.ico-imgs,
#honors .feat-card .ico.ico-imgs {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: none; border-radius: 0;
}
.feat-card .ico.ico-imgs img,
#honors .feat-card .ico.ico-imgs img {
  flex: 1 1 0; min-width: 0; width: auto; height: 100%; object-fit: contain; display: block;
}

.feat-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px 30px; transition: .28s cubic-bezier(.2,.7,.3,1); overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card .ico {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(27,79,216,.10), rgba(0,212,255,.16));
  display: grid; place-items: center; font-size: 25px; color: var(--primary);
}
.feat-card h3 { margin: 0 0 10px; font-size: 19px; font-weight: 700; }
.feat-card p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.8; }
/* 产品卡片标签（如 多材质打印 / 精准色彩） */
.feat-card .chip-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.feat-card .chip-tags span {
  font-size: 12.5px; padding: 4px 11px; border-radius: 999px;
  background: rgba(27, 79, 216, .08); color: var(--primary, #1B4FD8); font-weight: 500;
}

/* ---------------- 数据条 ---------------- */
.stat-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.stat-band .it { text-align: center; padding: 20px 12px; }
.stat-band .it b {
  display: block; font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1px; line-height: 1.1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-band .it span { font-size: 14px; color: var(--ink-2); }
.section.dark .stat-band .it span { color: rgba(255,255,255,.6); }

/* ---------------- 招聘项目 ---------------- */
.proj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.proj-card {
  position: relative; padding: 32px 28px; border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid var(--line); transition: .28s;
}
.proj-card::after {
  content: ''; position: absolute; right: -60px; top: -60px; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.16), transparent 70%); transition: .35s;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,212,255,.4); }
.proj-card:hover::after { transform: scale(1.35); }
.proj-card .tag {
  display: inline-block; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 6px;
  background: rgba(27,79,216,.09); color: var(--primary); margin-bottom: 16px;
}
.proj-card h3 { margin: 0 0 12px; font-size: 21px; font-weight: 700; letter-spacing: -.3px; }
.proj-card p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.8; }

/* ---------------- 职位 ---------------- */
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.filter-row { display: flex; gap: 16px; align-items: flex-start; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.filter-row:last-child { border-bottom: 0; }
.filter-row .label { width: 78px; flex: none; font-size: 13px; color: var(--ink-3); padding-top: 7px; font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; flex: 1; }
.chip {
  padding: 7px 15px; border-radius: 999px; font-size: 13.5px; cursor: pointer;
  background: var(--bg-soft); color: var(--ink-2); border: 1px solid transparent; transition: .16s; user-select: none;
}
.chip:hover { color: var(--primary); border-color: rgba(27,79,216,.3); }
.chip.on { background: var(--primary); color: #fff; font-weight: 600; box-shadow: 0 4px 14px rgba(27,79,216,.28); }
.search-box { display: flex; gap: 10px; flex: 1; }
.search-box input {
  flex: 1; padding: 11px 18px; border: 1px solid var(--line); border-radius: 999px;
  outline: none; background: var(--bg-soft); font-size: 14.5px; transition: .18s;
}
.search-box input:focus { background: #fff; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,212,255,.14); }
.search-box button { padding: 11px 26px; border-radius: 999px; background: var(--grad); color: #fff; border: 0; font-weight: 700; }
.filter-summary { display: flex; align-items: center; gap: 14px; padding: 16px 0 0; font-size: 13.5px; color: var(--ink-3); }
.filter-summary .clear { color: var(--primary); cursor: pointer; font-weight: 600; }

.job-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; margin-top: 24px; }
.job-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 20px; transition: .26s cubic-bezier(.2,.7,.3,1); position: relative;
  display: flex; flex-direction: column; overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad); transform: scaleY(0); transform-origin: top; transition: transform .3s;
}
.job-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.job-card:hover::before { transform: scaleY(1); }
.job-card h3 { margin: 0 0 14px; font-size: 18.5px; font-weight: 700; letter-spacing: -.3px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.job-meta span { font-size: 12px; padding: 4px 11px; border-radius: 6px; background: var(--bg-soft); color: var(--ink-2); }
.job-meta span.hl { background: rgba(27,79,216,.09); color: var(--primary); font-weight: 600; }
.job-desc {
  font-size: 13.8px; color: var(--ink-2); line-height: 1.8; margin: 0 0 20px; flex: 1;
  /* 4 行：42 个岗位的描述最长 57 字、中位 35 字，13.8px 下 4 行约能放 100 字，
     放宽后不再出现「…」截断，因此也不需要"展开"控件（原本是 2 行，会切在句子中间）。 */
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.job-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.job-foot .count { font-size: 12.5px; color: var(--ink-3); }
.job-foot .apply-btn { font-size: 14.5px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.job-card:hover .apply-btn .ar { transform: translateX(4px); }
.job-foot .apply-btn .ar { transition: transform .2s; }

/* 「加载更多岗位」：岗位列表分批显示（手机 9 张 / 桌面 12 张）。
   42 张卡全铺开时手机首页能到 16747px，滑很久才到底。 */
.job-more-wrap { display: flex; justify-content: center; margin: 30px 0 6px; }
.job-more {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  padding: 13px 30px; border-radius: 999px; font-family: inherit;
  font-size: 15px; font-weight: 600; color: var(--primary);
  background: #fff; border: 1px solid rgba(27, 79, 216, .28); transition: .22s;
}
.job-more:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
/* ⚠️ 元素用 hidden 属性控制显隐时，作者样式里的 display 会压过 UA 的 [hidden]{display:none}
   （本项目 #deadlineBanner 踩过同一个坑），所以必须显式写这一条。 */
.job-more[hidden] { display: none !important; }

/* 回到顶部：长页面（手机首页 1.6 万像素）滑到底后回顶很累，滚过一屏半才出现 */
.to-top {
  position: fixed; right: 26px; bottom: 30px; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer; border: 0;
  display: grid; place-items: center; font-family: inherit; font-size: 19px; line-height: 1;
  color: #fff; background: var(--grad); box-shadow: 0 12px 30px rgba(11, 18, 32, .26);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.to-top.on { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }
@media (max-width: 768px) { .to-top { right: 16px; bottom: 18px; width: 42px; height: 42px; } }
@media (prefers-reduced-motion: reduce) { .to-top { transition: none; } }

/* 薪资行：突出真实区间，「面议」则弱化 */
.job-salary {
  font-size: 17px; font-weight: 800; letter-spacing: -.2px;
  margin: -2px 0 12px; padding: 8px 12px; border-radius: 10px;
  display: flex; align-items: baseline; gap: 6px;
}
.job-salary.salary-pos { background: linear-gradient(135deg, rgba(27,79,216,.08), rgba(15,76,129,.04)); color: var(--primary); }
.job-salary.salary-pos .hc { font-size: 12px; font-weight: 600; color: var(--ink-2); margin-left: 4px; }
.job-salary.salary-neg { background: var(--bg-soft); color: var(--ink-2); font-weight: 500; font-size: 13px; padding: 6px 10px; }

/* 投递截止时间高亮 banner */
.deadline-banner {
  display: flex; align-items: center; gap: 18px;
  margin: 28px 0 24px; padding: 18px 22px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 1px solid rgba(245, 158, 11, .35);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(245, 158, 11, .1);
}
.deadline-banner .db-icon {
  font-size: 28px; flex: none;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: rgba(245, 158, 11, .15); border-radius: 50%;
}
.deadline-banner .db-text { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex: 1; }
.deadline-banner .db-label { font-size: 14px; color: #92400e; }
.deadline-banner .db-text strong { font-size: 19px; color: #78350f; font-weight: 800; }
.deadline-banner .db-days {
  background: #f59e0b; color: white; padding: 4px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
}
.deadline-banner .db-days.db-expired { background: #9ca3af; }
.deadline-banner .db-btn {
  flex: none; font-size: 14px; font-weight: 700; color: var(--primary);
  padding: 8px 14px; border-radius: 10px; background: white; border: 1px solid rgba(27,79,216,.18);
}
.deadline-banner .db-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
/* 未设置截止时间时必须整块隐藏：作者样式的 display:flex 会盖过 UA 的 [hidden]{display:none} */
.deadline-banner[hidden] { display: none !important; }
@media (max-width: 768px) {
  .deadline-banner { flex-wrap: wrap; gap: 12px; padding: 16px 18px; margin: 20px 0; }
  .deadline-banner .db-icon { width: 40px; height: 40px; font-size: 20px; }
  .deadline-banner .db-text { flex: 1 1 auto; flex-direction: column; align-items: flex-start; gap: 5px; }
  .deadline-banner .db-text strong { font-size: 20px; white-space: nowrap; }
  .deadline-banner .db-days { align-self: flex-start; }
  .deadline-banner .db-btn { flex: 1 1 100%; width: 100%; text-align: center; }
}

.empty { text-align: center; padding: 70px 20px; color: var(--ink-3); }

/* ---------------- 关于 ---------------- */
/* 关于页内容盒放宽到 1280（首页仍为 1200）：正文起点更靠左，右侧卡片更宽、照片能放更大。
   导航条 .nav-inner 必须同步放宽，否则正文会与顶部 logo 错位。 */
.page-about .nav-inner,
.page-about .container { width: min(1280px, 100% - 48px); }
/* 左栏（标题+正文） : 右侧图片卡 ≈ 1 : 0.95；两栏顶部对齐，各自作为一个整体。
   align-items 从 start 改成 stretch：右侧照片卡只有「照片+一行按钮」，
   自然高度比左栏正文矮一截，顶部对齐后底部就空出一块、像浮在那儿；
   拉成与左栏等高后，照片按剩余高度铺满，右栏才真正"立"得住。 */
.about-wrap { display: grid; grid-template-columns: 1fr .95fr; gap: 56px; align-items: stretch; }
.about-left { min-width: 0; }
.about-left .section-head { margin-bottom: 30px; }
.about-text p { font-size: 16px; line-height: 2; color: var(--ink-2); margin: 0 0 20px; }
.section.dark .about-text p { color: rgba(255, 255, 255, .72); }
/* 关于右侧卡 · 两种形态（JS 打类）：.mode-image 满幅照片卡 / .mode-list 要点卡
   设计演进（两轮）：
   ① 丑在"卡片没有形"—— 卡面只有 rgba(255,255,255,.07) + 描边 .13，叠在深蓝底上
      看不见，于是页面右侧成了「一张照片 + 一根白色横条」，那根 100% 宽的纯白按钮
      比正文还亮，注意力全被吸走。
   ② 改成"照片 + 一行按钮"后仍偏弱：照片还是卡里的一张小图，卡片下半截空着一大块蓝。
   现在（定稿）：**照片就是卡片本身**（满出血、无内边距），底部压一条**毛玻璃信息条**
      —— 地点 + 一句说明 + 官网出口。信息条用真正的 backdrop-filter 磨砂（不是渐变
      蒙版：渐变会让 blur 在透明段露出「没被压暗却被糊掉」的脏边）。
   ⚠️ ≤1000px 时信息条改回**照片下方的常规块**（position: static + 照片 aspect-ratio 3/2）：
      窄屏卡片接近正方形，满幅 cover 会把最左/最右两个人裁掉。 */
.about-side {
  border-radius: 24px; padding: 0; position: relative; overflow: hidden;
  display: flex; flex-direction: column; min-height: 380px;
  background: linear-gradient(158deg, rgba(255,255,255,.11), rgba(255,255,255,.035) 52%, rgba(0,212,255,.07));
  border: 1px solid rgba(255, 255, 255, .17);
  box-shadow: 0 34px 74px rgba(2, 7, 18, .46), 0 0 60px rgba(0, 212, 255, .10),
              inset 0 1px 0 rgba(255, 255, 255, .20);
}
.about-side::after {
  content: ''; position: absolute; top: 0; left: 22px; right: 22px; height: 1px; z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .7), transparent);
  pointer-events: none;
}
.about-side.mode-list { padding: 38px 34px; min-height: 0; }
.about-side h4 { margin: 0 0 22px; font-size: 17px; }
.about-side ul { margin: 0 0 30px; padding: 0; list-style: none; }
.about-side li { padding: 11px 0 11px 26px; position: relative; font-size: 14.5px; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.08); }
.about-side li:last-child { border-bottom: 0; }
.about-side li::before { content: '✦'; position: absolute; left: 0; color: var(--accent); font-size: 12px; }

/* 官网出口按钮（默认整条白底，给 .mode-list 用） */
.site-cta {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 12px;
  background: #fff; color: var(--ink); font-weight: 700; font-size: 15px;
  transition: transform .22s, box-shadow .22s, background .22s, border-color .22s;
  width: 100%; justify-content: center;
}
.site-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.3); }
.site-cta .ar { transition: transform .22s; }
.site-cta:hover .ar { transform: translateX(4px); }

/* —— 满幅照片：撑满卡片上半部 —— */
.about-side-img-wrap {
  position: relative; margin: 0; flex: 1 1 auto; min-height: 0;
  overflow: hidden; background: rgba(255,255,255,.06);
}
/* object-position 稍偏上：人物抬头，重心在画面 46% 处最稳 */
.about-side-img { width: 100%; height: 100%; display: block; object-position: 50% 46%; }
/* 照片下缘压一道"照片自己变暗"的过渡，让它沉进下面的信息区 ——
   否则照片与实底信息区齐平的地方会出现一条横向硬切线。 */
.about-side-img-wrap::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 92px; z-index: 2;
  background: linear-gradient(180deg, rgba(6,15,34,0), rgba(6,15,34,.56) 66%, rgba(6,15,34,.93));
  pointer-events: none;
}

/* —— 信息区（2026-09-14 第四轮：从"压在照片上的毛玻璃条"改成照片下方的实底块）——
   上一版把「地点 + 说明 + 官网按钮」三样挤在一条 60px 高的毛玻璃里，左边拿一个 6px
   蓝点当 bullet，读起来像表单字段；而且整张卡的照片被拉成近方形。现在拆开：
   照片在上（受控裁切）、信息区在下（实底深蓝 + 上缘一条品牌渐变细线），各归各位。
   ⚠️ 别再改回 backdrop-filter 压条：那需要照片盖满整张卡，就又要回到"照片拉成方形"。 */
.about-side-info {
  position: relative; z-index: 3; flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: stretch; gap: 13px;
  padding: 20px 24px 22px;
  background: linear-gradient(180deg, #08122b 0%, #060e20 100%);
  border-top: 1px solid rgba(255, 255, 255, .10);
}
.about-side-info::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, rgba(0,212,255,.9), rgba(27,79,216,.55) 40%, transparent 86%);
}
.asi-tx { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.asi-place {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: #fff; letter-spacing: .01em;
}
/* 一条竖的品牌渐变条代替原来的圆点：圆点像表单 bullet，竖条是「标签」语汇 */
.asi-place::before {
  content: ''; flex: 0 0 auto; width: 3px; height: 15px; border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  box-shadow: 0 0 10px rgba(0, 212, 255, .5);
}
.asi-note { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,.62); }
/* 信息区里的官网出口：玻璃小药丸，左对齐跟在说明下面（不是横铺一整条 ——
   横铺的白底条比正文还亮，会把视线从公司介绍上拽走） */
.about-side.mode-image .site-cta {
  width: auto; align-self: flex-start; margin-top: 3px;
  padding: 11px 18px; font-size: 13.5px; border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .30);
  color: #fff;
}
.about-side.mode-image .site-cta:hover {
  background: rgba(255, 255, 255, .25); border-color: rgba(255, 255, 255, .46);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
}

@media (max-width: 1000px) {
  /* 窄屏：照片固定 820/725（= 卡片图区比例，cover 不再二次裁人），信息区自然堆叠 */
  .about-side { min-height: 0; }
  .about-side-img-wrap { flex: 0 0 auto; aspect-ratio: 820 / 725; }
  .about-side-info { padding: 18px 20px 20px; }
}

/* HR 自定义装修区块（后台「自定义模块」插入） */
.custom-blocks { background: var(--bg-soft); }
.custom-blocks .cb { margin-bottom: 28px; }
.custom-blocks .cb:last-child { margin-bottom: 0; }
.cb-image img { width: 100%; max-height: 520px; border-radius: var(--radius); box-shadow: var(--shadow); }
.cb-cap { margin-top: 12px; font-size: 14px; color: var(--ink-2); text-align: center; }
.cb-video-wrap .cb-video { width: 100%; max-height: 560px; border-radius: var(--radius); box-shadow: var(--shadow); background: #000; }
.cb-video-wrap iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.cb-html { line-height: 1.9; color: var(--ink-2); }

/* 图文区块 */
.imgtext { display: grid; gap: 56px; align-items: center; }
.imgtext.right { grid-template-columns: 1fr 1fr; }
.imgtext.left { grid-template-columns: 1fr 1fr; }
.imgtext.left .img { order: 2; }
.imgtext .img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg-soft); min-height: 300px; }
.imgtext .img img { width: 100%; height: 100%; object-fit: cover; }
.imgtext .tx p { font-size: 15.5px; line-height: 2; color: var(--ink-2); white-space: pre-wrap; margin: 0; }

/* 时间轴 / 流程 */
.flow-wrap { display: flex; flex-wrap: wrap; gap: 14px; }
.flow-item {
  flex: 1; min-width: 150px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; transition: .24s;
}
.flow-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(0,212,255,.4); }
.flow-item .no {
  width: 38px; height: 38px; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-size: 15px; font-weight: 800; margin: 0 auto 14px;
  box-shadow: 0 6px 16px rgba(27,79,216,.28);
}
.flow-item .t { font-weight: 600; font-size: 15.5px; }

/* 投递方式（contact 区块）：左「怎么投」/ 右「我们在哪」/ 底部投递出口
   一块白卡里塞两组信息，靠 ①列标题的品牌色小字 ②左栏数字徽章、右栏定位图钉
   把两组区分开 —— 不用分隔线，避免又变成"表格"。 */
.ct-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow); padding: 42px 46px 34px;
  display: grid; grid-template-columns: 1.02fr 1fr; gap: 34px 58px;
}
.ct-col-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 22px; }
.ct-col-head span { font-size: 17.5px; font-weight: 800; color: var(--ink); }
.ct-col-head em {
  font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
}
.ct-col ul { list-style: none; margin: 0; padding: 0; counter-reset: ct; }
.ct-col li { position: relative; padding: 0 0 20px 48px; }
.ct-col li:last-child { padding-bottom: 0; }
.ct-col li::before {
  counter-increment: ct; content: counter(ct, decimal-leading-zero);
  position: absolute; left: 0; top: 1px; width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center; font-size: 12.5px; font-weight: 800;
  color: var(--primary); background: rgba(27,79,216,.09); border: 1px solid rgba(27,79,216,.16);
}
.ct-col.ct-places li::before {
  counter-increment: none; content: '📍'; font-size: 15px; font-weight: 400;
  background: rgba(0,212,255,.12); border-color: rgba(0,212,255,.32);
}
.ct-col li b { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 6px; }
.ct-col li span { display: block; font-size: 14px; line-height: 1.8; color: var(--ink-2); }
.ct-col li a { color: var(--primary); font-weight: 600; text-decoration: none; border-bottom: 1px dashed rgba(27,79,216,.45); }
.ct-col li a:hover { border-bottom-style: solid; }
.ct-foot {
  grid-column: 1 / -1; display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px;
  margin-top: 4px; padding-top: 26px; border-top: 1px dashed var(--line);
}
.ct-note { font-size: 13.5px; line-height: 1.7; color: var(--ink-3); }
.ct-note a { color: var(--primary); }
@media (max-width: 900px) {
  .ct-wrap { grid-template-columns: 1fr; gap: 30px; padding: 30px 24px 26px; }
  .ct-foot { padding-top: 22px; }
}

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 14px; transition: .3s; }
.gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow); }

.text-block { font-size: 15.5px; line-height: 2; color: var(--ink-2); white-space: pre-wrap; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; }
.faq-item .q { font-weight: 700; margin-bottom: 8px; font-size: 15.5px; }
.faq-item .a { color: var(--ink-2); font-size: 14.5px; line-height: 1.85; }

/* ---------------- 页脚 ---------------- */
.footer { background: #03080F; color: rgba(255, 255, 255, .58); padding: 72px 0 34px; font-size: 14px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer .f-brand .logo { color: #fff; margin-bottom: 18px; }
.footer .f-brand p { line-height: 1.9; margin: 0 0 22px; max-width: 340px; }
.footer h5 { color: #fff; font-size: 14.5px; margin: 0 0 18px; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 11px; }
.footer li a:hover { color: #fff; }
/* 联系我们：深圳 / 上海 两个地址换行显示（contact_addr 用 \n 分隔） */
#footAddr { white-space: pre-line; line-height: 1.75; }
.footer .site-btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 22px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .28); color: #fff; font-weight: 600; font-size: 14px; transition: .2s;
}
.footer .site-btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.42); }

/* ---------------- 响应式 ---------------- */
@media (max-width: 1000px) {
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .imgtext.right, .imgtext.left { grid-template-columns: 1fr; }
  .imgtext.left .img { order: 0; }
}

@media (max-width: 768px) {
  .container, .nav-inner, .hero .container { width: calc(100% - 36px); }
  .nav-inner { height: 60px; gap: 10px; }
  .logo { font-size: 16.5px; }
  .logo .txt small { display: none; }
  .nav-toggle { display: inline-flex; }
  /* 移动端导航：logo + 汉堡按钮在条上，链接收进下拉面板 */
  .nav-links {
    position: fixed; top: 60px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    margin: 0; padding: 12px 18px 22px;
    background: rgba(255, 255, 255, .98);
    -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
    box-shadow: 0 18px 40px rgba(11, 18, 32, .16);
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .26s ease, opacity .22s ease, visibility .26s;
    max-height: calc(100vh - 60px); overflow-y: auto;
  }
  .nav.open .nav-links { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a:not(.site-link):not(.btn-go) { display: block; color: var(--ink-2); }
  .nav-links a { color: var(--ink-2); padding: 13px 14px; font-size: 16px; border-radius: 12px; background: transparent; }
  .nav-links a:hover { background: var(--bg-soft); color: var(--primary); }
  .nav-links .site-link { display: flex; }
  .nav-links .btn-go { width: 100%; margin-top: 4px; padding: 13px; font-size: 16px; justify-content: center; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: auto; padding: 108px 0 64px; }
  /* 窄屏描述行默认断行会把最后一个字挤成孤字（"…智能硬件" 的"件"单占一行）。
     ⚠️ 这里**不能**用 text-wrap: balance —— 它会把「创新」拆成「用创 / 新重新定义…」两行，
        中文断词比孤字更难看。pretty 只挪动断点位置、不压缩行长，能让末行不落单。
        副标题（bannerSub）为空时已整行隐藏，不受影响。 */
  .hero-sub { text-wrap: pretty; }
  .hero-stats { gap: 30px; margin-top: 44px; }
  .scroll-hint { display: none; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .filters { padding: 16px; }
  .filter-row { flex-direction: column; gap: 9px; padding: 12px 0; }
  .filter-row .label { width: auto; padding-top: 0; }
  /* 手机端 .filter-row 变成纵向 flex，且带 align-items:flex-start；
     此时 .chips 的交叉轴尺寸会退化成「按内容撑开」，一行筛选项能到 490px 宽，
     于是溢出白卡片、overflow-x:auto 也失效（最后几个类别在手机上点不到）。
     必须显式让它撑满行宽，横向滚动才会真正生效。 */
  .chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; align-self: stretch; min-width: 0; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; }
  .job-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ 可视化编辑高亮 ============ */
.ve-editable { transition: outline .15s, outline-offset .15s; outline: 0 solid transparent; }
.ve-editable:hover { outline: 2px dashed #1B4FD8; outline-offset: 4px; cursor: pointer; }
.ve-selected { outline: 2px solid #1B4FD8 !important; outline-offset: 4px; background: rgba(27,79,216,.06); }

/* ==========================================================
   产品中心（大图卡片）—— 图片可在后台可视化编辑里点图更换
   ========================================================== */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 26px; }

.prod-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--card, #fff); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .24s, box-shadow .24s, border-color .24s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(27,79,216,.22); }

.prod-img { position: relative; aspect-ratio: 16 / 10; background: var(--bg-soft); overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-img-ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 14px; color: var(--ink-3); border-bottom: 1px dashed var(--line);
}

.prod-body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 28px; }
.prod-body h3 { margin: 0 0 10px; font-size: 21px; font-weight: 700; letter-spacing: -.4px; color: var(--ink); }
.prod-body p { margin: 0; font-size: 14.5px; line-height: 1.8; color: var(--ink-2); }
.prod-body .chip-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 20px; }
.prod-body .chip-tags span {
  font-size: 12.5px; font-weight: 500; padding: 5px 13px; border-radius: 999px;
  background: rgba(27,79,216,.08); color: var(--primary, #1B4FD8); border: 1px solid rgba(27,79,216,.15);
}

/* ==========================================================
   子页面 · 关于我们（头图与公司简介同底色，无缝衔接）
   ========================================================== */
.page-about #about.page-top {
  position: relative; overflow: hidden;
  /* 整块铺满一屏：原来是内容撑多高就多高，1080 屏下会在最下面露出一条白边。
     做成 flex 居中后内容仍按 168/104 的内边距留白，只是不再有贴底的白条。 */
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 168px 0 104px;
  background: var(--grad-dark); color: #fff;
}
.page-about #about.page-top .container { position: relative; z-index: 3; }
.page-about #about.page-top .section-head { margin-bottom: 44px; }

.page-hero-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 82% 72% at 50% 26%, #000 28%, transparent 78%);
  mask-image: radial-gradient(ellipse 82% 72% at 50% 26%, #000 28%, transparent 78%);
}
.page-about #about.page-top .hero-glow { z-index: 0; }

/* 导航当前页高亮 */
.nav-links a.on { color: #fff; font-weight: 700; }
.nav.solid .nav-links a.on { color: var(--primary); }

/* ==========================================================
   底部「了解汝原 / 查看职位」引导条
   ========================================================== */
.about-cta-band { padding-top: 0; padding-bottom: 96px; }
.about-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap;
  padding: 40px 46px; border-radius: 22px;
  background: linear-gradient(120deg, rgba(27,79,216,.07), rgba(0,212,255,.11));
  border: 1px solid rgba(27,79,216,.16);
}
.about-cta .act-tx { flex: 1 1 300px; }
.about-cta h2 { margin: 0 0 8px; font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -.6px; color: var(--ink); }
.about-cta p { margin: 0; font-size: 15px; line-height: 1.8; color: var(--ink-2); }
.about-cta .act-btns { display: flex; gap: 12px; flex-wrap: wrap; flex: none; }
.about-cta > .btn { flex: none; }

/* 产品中心在浅色（soft）区块里的卡片描边更深一点，避免糊在一起 */
.section.soft .prod-card { border-color: rgba(11,18,32,.08); }

@media (max-width: 768px) {
  .prod-grid { grid-template-columns: 1fr; gap: 20px; }
  .prod-body { padding: 20px 20px 24px; }
  .page-about #about.page-top { padding: 118px 0 68px; }
  .about-cta { padding: 28px 24px; border-radius: 18px; }
  .about-cta .btn, .about-cta .act-btns { width: 100%; }
  .about-cta .act-btns .btn { flex: 1; justify-content: center; }
}

/* ==========================================================
   员工内推通道 引导条
   ========================================================== */
.referral-band { padding-bottom: 18px; }
.ref-cta {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap;
  padding: 40px 46px; border-radius: 22px;
  background: var(--grad-dark); color: #fff;
}
.ref-cta::after {
  content: ''; position: absolute; right: -90px; top: -90px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(0,212,255,.38), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.ref-cta .rc-left { position: relative; z-index: 1; flex: 1 1 320px; }
.ref-cta .rc-tag {
  display: inline-block; margin-bottom: 14px; padding: 5px 13px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .4px;
  background: rgba(0,212,255,.16); color: #7FE3FF;
}
.ref-cta h2 { margin: 0 0 10px; font-size: clamp(21px, 2.5vw, 29px); font-weight: 800; letter-spacing: -.6px; color: #fff; line-height: 1.3; }
.ref-cta p { margin: 0; font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.72); }
.ref-cta p b { color: #7FE3FF; font-weight: 700; }
.ref-cta .rc-btn { position: relative; z-index: 1; flex: none; }

@media (max-width: 768px) {
  .referral-band { padding-bottom: 10px; }
  .ref-cta { padding: 28px 24px; border-radius: 18px; }
  .ref-cta .rc-btn { width: 100%; justify-content: center; }
}
