@charset "utf-8";
/* ==========================================================================
   浙江高职提前招生网 · 桃义升学
   设计系统 —— 主色：桃义红 / 辅色：登岸金
   ========================================================================== */

/* ---------- 1. 设计令牌 ---------- */
:root {
  /* 蓝 —— 品牌主色（变量名沿用 --red-* 以便复用，值已改为蓝） */
  --red-900: #0A2351;
  --red-800: #0E2E66;
  --red-700: #143C82;
  --red-600: #1A4DA8;
  --red-500: #1E5BC0;
  --red-400: #3E7BD8;
  --red-200: #BBD3F2;
  --red-100: #E2EDFB;
  --red-50: #F2F7FE;

  /* 金 —— 辅助 / 荣誉色 */
  --gold-700: #8C6410;
  --gold-600: #B8860B;
  --gold-500: #D4A24C;
  --gold-300: #F0D9A8;
  --gold-50: #FDF8EC;

  /* 中性 */
  --ink-900: #18171C;
  --ink-800: #262530;
  --ink-700: #3A3944;
  --ink-500: #6A6975;
  --ink-400: #8C8B96;
  --ink-300: #ADACB6;
  --ink-200: #D6D5DC;
  --line: #E6ECF3;
  --line-soft: #F1F5FA;
  --bg: #FFFFFF;
  --bg-warm: #F6F9FD;
  --bg-gray: #F4F7FB;

  /* 功能色 */
  --green-600: #1E9E5A;
  --green-50: #EAF8F0;
  --amber-600: #D98218;
  --amber-50: #FDF3E5;
  --blue-600: #1E5BC0;
  --blue-50: #EAF1FC;

  /* 阴影 */
  --shadow-xs: 0 1px 3px rgba(14, 42, 92, .06);
  --shadow-s: 0 2px 10px rgba(14, 42, 92, .07);
  --shadow-m: 0 10px 28px rgba(14, 42, 92, .09);
  --shadow-l: 0 22px 56px rgba(14, 42, 92, .16);
  --shadow-red: 0 10px 26px rgba(26, 77, 168, .28);

  /* 圆角 */
  --r-xs: 6px;
  --r-s: 10px;
  --r-m: 16px;
  --r-l: 22px;
  --r-xl: 30px;
  --r-full: 999px;

  /* 布局 */
  --container: 1240px;
  --header-h: 74px;

  /* 动效 */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .32s;
}

/* ---------- 2. 基础重置 ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei UI", "Microsoft YaHei",
    system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--red-400);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--red-600); color: #fff; }

/* 滚动条 */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-gray); }
::-webkit-scrollbar-thumb { background: var(--red-200); border-radius: 999px; border: 2px solid var(--bg-gray); }
::-webkit-scrollbar-thumb:hover { background: var(--red-400); }

/* ---------- 3. 通用布局 ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 78px 0; }
.section--tight { padding: 54px 0; }
.section--warm { background: var(--bg-warm); }
.section--gray { background: var(--bg-gray); }
.section--ink { background: var(--ink-900); color: #fff; }

.section-head { margin-bottom: 40px; }
.section-head--center { text-align: center; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--red-600);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--red-600), var(--gold-500));
}
.section-head--center .section-eyebrow::after {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--red-600));
}

.section-title {
  font-size: 34px;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--ink-900);
}
.section-title em {
  font-style: normal;
  color: var(--red-600);
  position: relative;
}
.section-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 3px;
  height: 8px;
  background: linear-gradient(90deg, rgba(222,31,53,.22), rgba(212,162,76,.22));
  border-radius: 4px;
  z-index: -1;
}
.section-desc {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-500);
  max-width: 660px;
}
.section-head--center .section-desc { margin-left: auto; margin-right: auto; }

.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- 4. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 46px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary:hover { box-shadow: 0 14px 32px rgba(194, 16, 43, .38); }

.btn--gold {
  background: linear-gradient(135deg, #E8BE72, var(--gold-600));
  color: #4A3406;
  box-shadow: 0 10px 26px rgba(184, 134, 11, .28);
}

.btn--outline {
  border-color: var(--red-200);
  color: var(--red-700);
  background: #fff;
}
.btn--outline:hover { border-color: var(--red-600); background: var(--red-50); }

.btn--ghost {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .2); border-color: #fff; }

.btn--white {
  background: #fff;
  color: var(--red-700);
  box-shadow: var(--shadow-m);
}
.btn--white:hover { color: var(--red-600); }

.btn--sm { height: 38px; padding: 0 18px; font-size: 13.5px; }
.btn--lg { height: 54px; padding: 0 34px; font-size: 16.5px; }
.btn--block { width: 100%; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red-600);
  transition: gap var(--dur) var(--ease);
}
.link-more:hover { gap: 11px; }
.link-more svg { width: 15px; height: 15px; }

/* ---------- 5. 顶栏 + 页头 ---------- */
.topbar {
  background: linear-gradient(90deg, var(--red-900), var(--red-800) 45%, var(--red-700));
  color: rgba(255, 255, 255, .88);
  font-size: 12.5px;
  height: 38px;
  display: flex;
  align-items: center;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 700;
  color: #FFE7C2;
  flex: none;
}
.topbar-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #FFD37A;
  box-shadow: 0 0 0 3px rgba(255, 211, 122, .25);
}
.topbar-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-right { display: flex; align-items: center; gap: 18px; flex: none; }
.topbar-right a:hover { color: #fff; }
.topbar-right strong { color: #fff; letter-spacing: .3px; }
.topbar-sep { width: 1px; height: 13px; background: rgba(255, 255, 255, .28); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(14, 42, 92, .09); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo-mark {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--red-500), var(--red-800));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, .45) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shine 4.5s var(--ease) infinite;
}
@keyframes shine {
  0%, 60% { transform: translateX(-120%); }
  85%, 100% { transform: translateX(120%); }
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text b {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--red-700);
}
.logo-text span {
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--ink-400);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 74px;
  padding: 0 16px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-700);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--red-500), var(--gold-500));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur) var(--ease);
}
.nav-link:hover { color: var(--red-600); }
.nav-link:hover::after { transform: scaleX(.45); }
.nav-link.is-active { color: var(--red-700); }
.nav-link.is-active::after { transform: scaleX(1); }

/* 移动端抽屉里才显示的登录入口 */
.nav-cta { display: none; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; flex: none; }

.search-box {
  position: relative;
  width: 190px;
  transition: width var(--dur) var(--ease);
}
.search-box:focus-within { width: 240px; }
.search-box input {
  width: 100%;
  height: 40px;
  padding: 0 38px 0 16px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--line);
  background: var(--bg-warm);
  font-size: 13.5px;
  outline: none;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.search-box input::placeholder { color: var(--ink-300); }
.search-box input:focus { border-color: var(--red-400); background: #fff; }
.search-box button {
  position: absolute;
  right: 4px; top: 4px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-400);
  transition: color var(--dur), background-color var(--dur);
}
.search-box button:hover { color: var(--red-600); background: var(--red-50); }
.search-box svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r-s);
  border: 1.5px solid var(--line);
  place-items: center;
  color: var(--red-700);
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- 6. 首页 Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #0A2351;
  /* 三层叠加：顶部/底部压暗 → 左侧可读性遮罩 → 主视觉大图 */
  background-image:
    linear-gradient(180deg, rgba(7, 22, 54, .34) 0%, rgba(7, 22, 54, 0) 24%, rgba(7, 22, 54, 0) 62%, rgba(7, 22, 54, .66) 100%),
    linear-gradient(96deg, rgba(6, 18, 46, .90) 0%, rgba(14, 42, 92, .73) 30%, rgba(20, 58, 120, .40) 56%, rgba(14, 42, 92, .29) 78%, rgba(7, 22, 54, .44) 100%),
    url("../img/hero-bg.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, 68% center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 底纹网格只在文字区淡淡透出，避免压住主视觉 */
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(ellipse 74% 72% at 34% 44%, #000 24%, transparent 100%);
  pointer-events: none;
}
.hero::after {
  content: "上岸";
  position: absolute;
  right: -26px;
  bottom: -72px;
  font-size: 268px;
  font-weight: 900;
  letter-spacing: -16px;
  color: rgba(255, 233, 184, .06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 62px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 8px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 22px;
}
.hero-badge b {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #F3D48B, var(--gold-500));
  color: #4A3406;
  font-size: 12px;
  letter-spacing: .5px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -1.6px;
  margin-bottom: 20px;
  text-shadow: 0 6px 26px rgba(0, 0, 0, .18);
}
.hero-title .hl {
  position: relative;
  display: inline-block;
  color: #FFE9B8;
}
.hero-title .hl::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 6px;
  height: 12px;
  background: linear-gradient(90deg, rgba(243, 212, 139, .45), rgba(243, 212, 139, .12));
  border-radius: 6px;
  z-index: -1;
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .84);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-sub b { color: #FFE9B8; font-weight: 800; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-note {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
}
.hero-note svg { width: 16px; height: 16px; flex: none; }

/* Hero 右侧：AI 评估卡 */
.hero-card-wrap { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--r-l);
  background: rgba(255, 255, 255, .91);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .62);
  color: var(--ink-900);
  box-shadow: 0 30px 70px rgba(22, 2, 7, .40), 0 0 0 1px rgba(212, 162, 76, .16);
  padding: 22px 22px 20px;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(255, 255, 255, .22), transparent 55%);
  z-index: -1;
  pointer-events: none;
}
.hc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.hc-head-l { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 14.5px; }
.hc-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 4px rgba(222, 31, 53, .16);
}
.hc-tag {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--gold-700);
  background: var(--gold-50);
  border: 1px solid var(--gold-300);
  padding: 2px 9px;
  border-radius: var(--r-full);
}
.hc-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0 6px;
}
.hc-score b {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.hc-score span { font-size: 12.5px; color: var(--ink-400); font-weight: 600; }
.hc-bar {
  height: 7px;
  border-radius: 999px;
  background: var(--bg-gray);
  overflow: hidden;
  margin: 8px 0 16px;
}
.hc-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-600), var(--gold-500));
  animation: grow 1.6s var(--ease) .4s forwards;
}
@keyframes grow { to { width: 86%; } }

.hc-list { display: grid; gap: 8px; }
.hc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-s);
  background: var(--bg-warm);
  font-size: 13px;
}
.hc-item b { flex: 1; font-weight: 700; font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hc-pill {
  flex: none;
  font-size: 11.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.hc-pill--chong { background: var(--red-100); color: var(--red-700); }
.hc-pill--wen { background: var(--amber-50); color: var(--amber-600); }
.hc-pill--bao { background: var(--green-50); color: var(--green-600); }
.hc-rate { flex: none; font-weight: 800; font-variant-numeric: tabular-nums; font-size: 12.5px; }

.hc-foot { margin-top: 16px; }
.hc-mini {
  margin-top: 10px;
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-400);
}

/* 数据条 */
.stats-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .14);
  backdrop-filter: blur(8px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 0;
}
.stat {
  text-align: center;
  padding: 6px 14px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 34px;
  background: rgba(255, 255, 255, .18);
}
.stat b {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  color: #fff;
  line-height: 1.2;
}
.stat b i { font-style: normal; font-size: 18px; margin-left: 2px; color: #FFE9B8; }
.stat span { font-size: 13px; color: rgba(255, 255, 255, .7); letter-spacing: .3px; }

/* ---------- 7. 快捷入口 ---------- */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.quick-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 18px;
  border-radius: var(--r-m);
  background: #fff;
  border: 1.5px solid var(--line);
  transition: all var(--dur) var(--ease);
}
.quick-card:hover {
  border-color: var(--red-200);
  box-shadow: var(--shadow-m);
  transform: translateY(-4px);
}
.quick-icon {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--red-50), var(--red-100));
  color: var(--red-600);
  transition: all var(--dur) var(--ease);
}
.quick-card:hover .quick-icon {
  background: linear-gradient(140deg, var(--red-500), var(--red-700));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.quick-icon svg { width: 23px; height: 23px; }
.quick-text b { display: block; font-size: 15px; font-weight: 800; color: var(--ink-900); }
.quick-text span { font-size: 12.5px; color: var(--ink-400); }

/* ---------- 8. 企业简介 ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 62px;
  align-items: center;
}
.about-body p {
  font-size: 15.5px;
  line-height: 2;
  color: var(--ink-500);
  margin-bottom: 16px;
}
.about-body strong { color: var(--red-700); font-weight: 800; }

.about-points {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
}
.about-point {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.about-point-ico {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--red-50);
  border: 1px solid var(--red-100);
  color: var(--red-600);
}
.about-point-ico svg { width: 16px; height: 16px; }
.about-point b { display: block; font-size: 15px; font-weight: 800; color: var(--ink-900); }
.about-point span { font-size: 13.5px; color: var(--ink-400); }

.about-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(150deg, var(--red-700), var(--red-900));
  padding: 34px;
  color: #fff;
  box-shadow: var(--shadow-l);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 82% 12%, rgba(212, 162, 76, .45), transparent 45%);
  pointer-events: none;
}
.about-visual::after {
  content: "桃义";
  position: absolute;
  right: -14px; bottom: -58px;
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, .06);
  letter-spacing: -8px;
  line-height: 1;
  pointer-events: none;
}
.av-top { position: relative; z-index: 2; }
.av-top h3 { font-size: 26px; font-weight: 900; letter-spacing: .5px; margin-bottom: 8px; }
.av-top p { font-size: 14px; color: rgba(255, 255, 255, .75); max-width: 380px; }
.av-kpis {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.av-kpi {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-m);
  padding: 16px;
  backdrop-filter: blur(6px);
}
.av-kpi b {
  display: block;
  font-size: 27px;
  font-weight: 900;
  color: #FFE9B8;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.5px;
}
.av-kpi span { font-size: 12.5px; color: rgba(255, 255, 255, .72); }

/* ---------- 9. 优势卡片 ---------- */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.adv-card {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: var(--r-l);
  background: #fff;
  border: 1.5px solid var(--line);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.adv-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red-600), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.adv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); border-color: transparent; }
.adv-card:hover::before { transform: scaleX(1); }

.adv-num {
  position: absolute;
  right: 20px; top: 14px;
  font-size: 54px;
  font-weight: 900;
  color: var(--red-50);
  letter-spacing: -3px;
  line-height: 1;
  transition: color var(--dur) var(--ease);
}
.adv-card:hover .adv-num { color: var(--red-100); }
.adv-icon {
  position: relative;
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--red-50), var(--red-100));
  color: var(--red-600);
  margin-bottom: 18px;
  transition: all var(--dur) var(--ease);
}
.adv-card:hover .adv-icon {
  background: linear-gradient(140deg, var(--red-500), var(--red-700));
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--shadow-red);
}
.adv-icon svg { width: 26px; height: 26px; }
.adv-card h3 { position: relative; font-size: 18px; font-weight: 800; color: var(--ink-900); margin-bottom: 10px; }
.adv-card p { font-size: 13.8px; line-height: 1.85; color: var(--ink-500); position: relative; }

/* ---------- 10. 上岸案例 ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.case-card {
  position: relative;
  border-radius: var(--r-l);
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 24px 22px 20px;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); border-color: var(--red-200); }
.case-ribbon {
  position: absolute;
  right: -34px; top: 15px;
  transform: rotate(38deg);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 4px 38px;
}
.case-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.case-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(140deg, var(--red-400), var(--red-700));
  box-shadow: 0 6px 16px rgba(194, 16, 43, .22);
}
.case-name b { display: block; font-size: 16px; font-weight: 800; color: var(--ink-900); }
.case-name span { font-size: 12.5px; color: var(--ink-400); }
.case-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border-radius: var(--r-s);
  background: var(--red-50);
  margin-bottom: 13px;
}
.case-arrow svg { width: 15px; height: 15px; color: var(--red-400); flex: none; }
.case-arrow b { font-size: 14.5px; font-weight: 800; color: var(--red-700); line-height: 1.4; }
.case-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.case-tag {
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: var(--bg-gray);
  color: var(--ink-500);
}
.case-tag--gold { background: var(--gold-50); color: var(--gold-700); border: 1px solid var(--gold-300); }
.case-quote {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
  font-size: 12.8px;
  line-height: 1.75;
  color: var(--ink-400);
}

/* ---------- 11. 资讯 ---------- */
.news-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 26px;
  align-items: start;
}
.panel {
  border-radius: var(--r-l);
  background: #fff;
  border: 1.5px solid var(--line);
  overflow: hidden;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--bg-warm));
}
.panel-head h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-head h3::before {
  content: "";
  width: 4px; height: 19px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--red-500), var(--red-800));
}
.panel-body { padding: 8px 0; }

.tabs { display: flex; gap: 4px; background: var(--bg-gray); padding: 4px; border-radius: var(--r-full); }
.tab {
  padding: 7px 17px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-500);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.tab:hover { color: var(--red-600); }
.tab.is-active {
  background: #fff;
  color: var(--red-700);
  box-shadow: var(--shadow-xs);
}

.news-list { padding: 4px 0; }
.news-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line-soft);
  transition: background-color var(--dur) var(--ease);
}
.news-item:last-child { border-bottom: 0; }
.news-item:hover { background: var(--red-50); }
.news-date {
  flex: none;
  width: 62px;
  text-align: center;
  padding: 5px 0;
  border-radius: var(--r-xs);
  background: var(--bg-gray);
  transition: all var(--dur) var(--ease);
}
.news-item:hover .news-date { background: #fff; }
.news-date b {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: var(--ink-800);
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}
.news-date span { font-size: 10.5px; color: var(--ink-400); }
.news-main { flex: 1; min-width: 0; }
.news-main a {
  display: block;
  font-size: 14.8px;
  font-weight: 700;
  color: var(--ink-800);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.news-item:hover .news-main a { color: var(--red-600); }
.news-main p {
  font-size: 12.5px;
  color: var(--ink-400);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 2px;
}
.news-src {
  flex: none;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--red-600);
  background: var(--red-50);
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.news-src--gov { color: var(--blue-600); background: var(--blue-50); }

.side-list { padding: 6px 0 10px; }
.side-item {
  display: flex;
  gap: 13px;
  padding: 14px 22px;
  transition: background-color var(--dur) var(--ease);
}
.side-item:hover { background: var(--red-50); }
.side-rank {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  background: var(--bg-gray);
  color: var(--ink-400);
  transition: all var(--dur) var(--ease);
}
.side-item:nth-child(1) .side-rank { background: linear-gradient(135deg, var(--red-500), var(--red-700)); color: #fff; }
.side-item:nth-child(2) .side-rank { background: var(--red-100); color: var(--red-700); }
.side-item:nth-child(3) .side-rank { background: var(--gold-50); color: var(--gold-700); }
.side-body { min-width: 0; }
.side-body b {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-800);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.side-body span { font-size: 12px; color: var(--ink-400); }
.side-item:hover .side-body b { color: var(--red-600); }

/* ---------- 12. 联系 CTA 横幅 ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 380px at 88% 20%, rgba(212, 162, 76, .35), transparent 60%),
    linear-gradient(120deg, var(--red-800), var(--red-600) 60%, var(--red-700));
  color: #fff;
  border-radius: var(--r-xl);
  padding: 46px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-l);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 100% at 90% 50%, #000, transparent 70%);
  pointer-events: none;
}
.cta-band-main { position: relative; z-index: 2; }
.cta-band h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.6px;
  margin-bottom: 12px;
}
.cta-band p { font-size: 15px; color: rgba(255, 255, 255, .82); max-width: 560px; }
.cta-band-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 22px;
  border-radius: var(--r-m);
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
}
.cta-phone-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .18);
  flex: none;
}
.cta-phone-ico svg { width: 20px; height: 20px; }
.cta-phone-txt span { display: block; font-size: 11.5px; color: rgba(255, 255, 255, .7); letter-spacing: .4px; }
.cta-phone-txt b {
  display: block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .5px;
  font-variant-numeric: tabular-nums;
  color: #FFE9B8;
}

/* ---------- 13. 内页 Page Hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background-color: #0A2351;
  /* 内页文字更密，遮罩相应加深，右侧保留主视觉透出 */
  background-image:
    linear-gradient(180deg, rgba(7, 20, 50, .46) 0%, rgba(7, 20, 50, .20) 48%, rgba(7, 20, 50, .62) 100%),
    linear-gradient(96deg, rgba(5, 16, 42, .92) 0%, rgba(10, 32, 74, .80) 42%, rgba(16, 50, 108, .50) 72%, rgba(10, 32, 74, .34) 100%),
    url("../img/hero-bg.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, 74% center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 52px 0 56px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 90% at 30% 40%, #000, transparent 100%);
  pointer-events: none;
}
.page-hero::after {
  content: attr(data-watermark);
  position: absolute;
  right: -8px; bottom: -48px;
  font-size: 140px;
  font-weight: 900;
  letter-spacing: -8px;
  color: rgba(255, 255, 255, .05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.page-hero .container { position: relative; z-index: 2; }
/* 底部金色细分隔 + 压暗，让蓝色页头与白色正文的过渡更精致 */
.page-hero {
  box-shadow: inset 0 -1px 0 rgba(212, 162, 76, .45), inset 0 -46px 66px -34px rgba(5, 15, 40, .55);
}
/* 各内页露出主视觉的不同局部，避免每页开头千篇一律 */
body[data-page="jianzhang"] .page-hero { background-position: center, center, 74% center; }
body[data-page="kaogang"]   .page-hero { background-position: center, center, 88% center; }
body[data-page="ai"]        .page-hero { background-position: center, center, 58% center; }
body[data-page="peixun"]    .page-hero { background-position: center, center, 92% center; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .66);
  margin-bottom: 14px;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 13px; height: 13px; opacity: .6; }
.breadcrumb b { color: rgba(255, 255, 255, .95); font-weight: 700; }

.page-hero h1 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.8px;
  margin-bottom: 14px;
}
.page-hero p { font-size: 15.5px; color: rgba(255, 255, 255, .8); max-width: 720px; }
.page-hero-stats {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.ph-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 13px;
  font-weight: 700;
}
.ph-chip svg { width: 15px; height: 15px; color: #FFE9B8; }
.ph-chip b { color: #FFE9B8; font-variant-numeric: tabular-nums; }

/* ---------- 14. 工具栏 / 筛选 ---------- */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border-radius: var(--r-m);
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-xs);
  margin-bottom: 22px;
}
.toolbar-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.toolbar-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.year-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  box-shadow: var(--shadow-red);
}
.year-switch button {
  padding: 8px 22px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, .82);
  transition: all var(--dur) var(--ease);
  font-variant-numeric: tabular-nums;
}
.year-switch button:hover { color: #fff; }
.year-switch button.is-active {
  background: #fff;
  color: var(--red-700);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
}

.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-size: 13px; font-weight: 700; color: var(--ink-400); flex: none; }
.chip {
  padding: 6px 15px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-500);
  background: var(--bg-gray);
  border: 1.5px solid transparent;
  transition: all var(--dur) var(--ease);
}
.chip:hover { color: var(--red-600); background: var(--red-50); }
.chip.is-active {
  background: var(--red-50);
  color: var(--red-700);
  border-color: var(--red-200);
}

.grow-search {
  position: relative;
  min-width: 220px;
}
.grow-search input {
  width: 100%;
  height: 42px;
  padding: 0 42px 0 16px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--line);
  background: var(--bg-warm);
  font-size: 14px;
  outline: none;
  transition: all var(--dur) var(--ease);
}
.grow-search input:focus { border-color: var(--red-400); background: #fff; box-shadow: 0 0 0 4px rgba(222, 31, 53, .1); }
.grow-search svg {
  position: absolute;
  right: 15px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--ink-300);
  pointer-events: none;
}

.result-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-400);
  margin-bottom: 18px;
}
.result-bar b { color: var(--red-600); font-weight: 900; font-variant-numeric: tabular-nums; font-size: 17px; }
.result-bar .reset {
  color: var(--red-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 15. 院校卡片 ---------- */
.school-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.school-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-m);
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 20px 18px 16px;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}
.school-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--red-500), var(--gold-500));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.school-card:hover {
  transform: translateY(-5px);
  border-color: var(--red-200);
  box-shadow: var(--shadow-m);
}
.school-card:hover::after { transform: scaleY(1); }

.sc-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; }
.sc-logo {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.5px;
  color: #fff;
  background: linear-gradient(140deg, var(--red-400), var(--red-700));
  box-shadow: 0 5px 14px rgba(194, 16, 43, .2);
  line-height: 1.1;
  text-align: center;
  padding: 2px;
}
.sc-title { min-width: 0; flex: 1; }
.sc-title h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.45;
  margin-bottom: 5px;
  transition: color var(--dur) var(--ease);
}
.school-card:hover .sc-title h3 { color: var(--red-700); }
.sc-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.sc-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  color: var(--ink-400);
  background: var(--bg-warm);
}
.sc-badge--pub { color: var(--red-700); background: var(--red-50); border-color: var(--red-100); }
.sc-badge--pri { color: var(--gold-700); background: var(--gold-50); border-color: var(--gold-300); }

.sc-foot {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-link {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  border-radius: var(--r-s);
  background: var(--red-50);
  color: var(--red-700);
  font-size: 13px;
  font-weight: 800;
  transition: all var(--dur) var(--ease);
}
.sc-link:hover { background: linear-gradient(135deg, var(--red-500), var(--red-700)); color: #fff; }
.sc-link svg { width: 14px; height: 14px; }
.sc-site {
  width: 36px; height: 36px;
  flex: none;
  border-radius: var(--r-s);
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line);
  color: var(--ink-400);
  transition: all var(--dur) var(--ease);
}
.sc-site:hover { border-color: var(--red-400); color: var(--red-600); background: var(--red-50); }
.sc-site svg { width: 15px; height: 15px; }

.sc-year {
  position: absolute;
  right: 14px; top: 14px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--ink-300);
  letter-spacing: .5px;
  font-variant-numeric: tabular-nums;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  border-radius: var(--r-l);
  background: var(--bg-warm);
  border: 1.5px dashed var(--red-200);
}
.empty-state svg { width: 52px; height: 52px; margin: 0 auto 16px; color: var(--red-200); }
.empty-state b { display: block; font-size: 17px; color: var(--ink-700); margin-bottom: 6px; }
.empty-state span { font-size: 13.5px; color: var(--ink-400); }

/* ---------- 16. 步骤 / 流程 ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 0 22px;
  text-align: center;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  right: -2px; top: -14px;
  font-size: 44px;
  font-weight: 900;
  color: var(--red-50);
  letter-spacing: -2px;
  line-height: 1;
}
.step-ico {
  position: relative;
  width: 66px; height: 66px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--red-600);
  box-shadow: var(--shadow-s);
  transition: all var(--dur) var(--ease);
}
.step:hover .step-ico {
  background: linear-gradient(140deg, var(--red-500), var(--red-700));
  color: #fff;
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
}
.step-ico svg { width: 29px; height: 29px; }
.step h3 { position: relative; font-size: 16.5px; font-weight: 800; color: var(--ink-900); margin-bottom: 8px; }
.step p { position: relative; font-size: 13.5px; line-height: 1.8; color: var(--ink-500); }
.step-line {
  position: absolute;
  left: 50%; top: 33px;
  width: 100%;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--red-200) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step:last-child .step-line { display: none; }

/* ---------- 17. 班型 / 价格 ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  border-radius: var(--r-xl);
  background: #fff;
  border: 2px solid var(--line);
  padding: 34px 32px 30px;
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); border-color: var(--red-200); }
.plan-card--hot {
  border-color: transparent;
  background: linear-gradient(165deg, #fff 0%, var(--red-50) 100%);
  box-shadow: var(--shadow-m);
}
.plan-card--hot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  padding: 2px;
  background: linear-gradient(140deg, var(--red-500), var(--gold-500), var(--red-700));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.plan-flag {
  position: absolute;
  right: 26px; top: 0;
  padding: 5px 16px 7px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  box-shadow: 0 6px 16px rgba(184, 134, 11, .3);
}
.plan-name {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.plan-days {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red-600);
  background: var(--red-50);
  border: 1px solid var(--red-100);
  padding: 3px 12px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
  align-self: flex-start;
  white-space: nowrap;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}
.plan-price .cur { font-size: 20px; font-weight: 800; color: var(--red-600); }
.plan-price .num {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--red-700);
  font-variant-numeric: tabular-nums;
}
.plan-price .unit { font-size: 13.5px; color: var(--ink-400); font-weight: 600; }
.plan-price .was {
  margin-left: auto;
  font-size: 13px;
  color: var(--ink-300);
  text-decoration: line-through;
}
.plan-feats { display: grid; gap: 11px; margin-bottom: 26px; }
.plan-feat { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-700); }
.plan-feat svg { width: 17px; height: 17px; flex: none; color: var(--red-500); margin-top: 3px; }
.plan-feat.is-off { color: var(--ink-300); }
.plan-feat.is-off svg { color: var(--ink-200); }
.plan-card .btn { margin-top: auto; }

.plan-note {
  margin-top: 22px;
  padding: 16px 22px;
  border-radius: var(--r-m);
  background: var(--gold-50);
  border: 1px solid var(--gold-300);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--gold-700);
  line-height: 1.8;
}
.plan-note svg { width: 19px; height: 19px; flex: none; margin-top: 3px; }

/* 对比表 */
.cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--r-m);
  overflow: hidden;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 14px;
}
.cmp-table th,
.cmp-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.cmp-table thead th {
  background: linear-gradient(135deg, var(--red-700), var(--red-600));
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  border-bottom: 0;
}
.cmp-table thead th:first-child { background: linear-gradient(135deg, var(--red-800), var(--red-700)); }
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table tbody tr:hover { background: var(--red-50); }
.cmp-table td:first-child { font-weight: 700; color: var(--ink-800); background: var(--bg-warm); }
.cmp-table .yes { color: var(--green-600); font-weight: 800; }
.cmp-table .no { color: var(--ink-300); }

/* ---------- 18. 课程模块 / 功能卡 ---------- */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mod-card {
  padding: 26px 24px;
  border-radius: var(--r-m);
  background: #fff;
  border: 1.5px solid var(--line);
  transition: all var(--dur) var(--ease);
}
.mod-card:hover { border-color: var(--red-200); box-shadow: var(--shadow-m); transform: translateY(-4px); }
.mod-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mod-ico {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--red-50), var(--red-100));
  color: var(--red-600);
}
.mod-ico svg { width: 22px; height: 22px; }
.mod-head h3 { font-size: 16.5px; font-weight: 800; color: var(--ink-900); }
.mod-card p { font-size: 13.6px; line-height: 1.85; color: var(--ink-500); }
.mod-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.mod-tag {
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--bg-gray);
  color: var(--ink-500);
}

/* ---------- 19. FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item {
  border-radius: var(--r-m);
  background: #fff;
  border: 1.5px solid var(--line);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.faq-item.is-open { border-color: var(--red-200); box-shadow: var(--shadow-s); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink-900);
  transition: color var(--dur) var(--ease);
}
.faq-q:hover { color: var(--red-600); }
.faq-q .q-mark {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.faq-q .arrow {
  margin-left: auto;
  width: 20px; height: 20px;
  color: var(--ink-300);
  transition: transform var(--dur) var(--ease), color var(--dur);
  flex: none;
}
.faq-item.is-open .faq-q .arrow { transform: rotate(180deg); color: var(--red-600); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner {
  padding: 0 22px 20px 62px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-500);
}
.faq-a-inner b { color: var(--red-700); font-weight: 800; }

/* ---------- 20. AI 系统界面预览 ---------- */
.mock-window {
  border-radius: var(--r-l);
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-l);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #fff, var(--bg-gray));
  border-bottom: 1px solid var(--line);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.mock-dots i:nth-child(1) { background: #FF5F57; }
.mock-dots i:nth-child(2) { background: #FEBC2E; }
.mock-dots i:nth-child(3) { background: #28C840; }
.mock-url {
  flex: 1;
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: var(--ink-400);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 4px 14px;
  font-family: ui-monospace, Menlo, Consolas, monospace;
}
.mock-body { padding: 22px; background: var(--bg-warm); }

.mock-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.mock-kpi {
  background: #fff;
  border-radius: var(--r-s);
  border: 1px solid var(--line);
  padding: 14px 15px;
}
.mock-kpi span { font-size: 12px; color: var(--ink-400); display: block; }
.mock-kpi b {
  font-size: 23px;
  font-weight: 900;
  color: var(--red-700);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.5px;
}
.mock-kpi b i { font-style: normal; font-size: 13px; color: var(--ink-400); font-weight: 600; margin-left: 2px; }

.mock-rows { background: #fff; border-radius: var(--r-s); border: 1px solid var(--line); overflow: hidden; }
.mock-row {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.mock-row:last-child { border-bottom: 0; }
.mock-row > * { justify-self: start; min-width: 0; }
.mock-row--head {
  background: var(--bg-gray);
  font-weight: 800;
  color: var(--ink-500);
  font-size: 12.5px;
}
.mock-row b { font-weight: 800; color: var(--ink-800); }
.mock-prob {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.mock-prob i {
  display: block;
  width: 46px; height: 6px;
  border-radius: 999px;
  background: var(--bg-gray);
  overflow: hidden;
  position: relative;
}
.mock-prob i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--w, 60%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-500), var(--gold-500));
}
.mock-actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- 21. 院校详情 ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 26px;
  align-items: start;
}
.detail-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-l);
  padding: 28px 30px;
  background: linear-gradient(135deg, var(--red-800), var(--red-600));
  color: #fff;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-m);
}
.detail-hero-card::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 162, 76, .35), transparent 70%);
}
.dhc-logo {
  width: 78px; height: 78px;
  flex: none;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  background: rgba(255, 255, 255, .16);
  border: 1.5px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
}
.dhc-info { position: relative; z-index: 2; flex: 1; min-width: 0; }
.dhc-info h1 { font-size: 27px; font-weight: 900; letter-spacing: -.4px; margin-bottom: 9px; }
.dhc-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.dhc-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
}
.dhc-badge--gold { background: linear-gradient(135deg, #F3D48B, var(--gold-500)); color: #4A3406; border-color: transparent; font-weight: 800; }

.link-rows { display: grid; gap: 0; }
.link-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  transition: background-color var(--dur) var(--ease);
}
.link-row:last-child { border-bottom: 0; }
.link-row:hover { background: var(--red-50); }
.lr-year {
  flex: none;
  width: 52px;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  color: var(--red-700);
  font-variant-numeric: tabular-nums;
}
.lr-main { flex: 1; min-width: 0; }
.lr-main b { display: block; font-size: 15px; font-weight: 800; color: var(--ink-900); }
.lr-main span { font-size: 12.5px; color: var(--ink-400); }
.lr-status {
  flex: none;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--amber-50);
  color: var(--amber-600);
}
.lr-status--ok { background: var(--green-50); color: var(--green-600); }

.side-card {
  border-radius: var(--r-m);
  background: #fff;
  border: 1.5px solid var(--line);
  overflow: hidden;
  margin-bottom: 18px;
}
.side-card-head {
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 900;
  color: var(--ink-900);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--bg-warm));
  display: flex;
  align-items: center;
  gap: 9px;
}
.side-card-head::before {
  content: "";
  width: 3px; height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--red-500), var(--red-800));
}
.side-card-body { padding: 8px 0; }
.side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13.8px;
  color: var(--ink-700);
  transition: all var(--dur) var(--ease);
}
.side-link:hover { background: var(--red-50); color: var(--red-600); padding-left: 24px; }
.side-link svg { width: 14px; height: 14px; color: var(--red-400); flex: none; }

/* ---------- 22. 页脚 ---------- */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--red-900), #06183A);
  color: rgba(255, 255, 255, .72);
  padding: 56px 0 0;
  margin-top: 0;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}
/* 数据来源条 —— 强化官方权威感 */
.footer-sources {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 0 0 26px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .56);
}
.footer-sources .fs-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  letter-spacing: .6px;
  color: #FFE9B8;
}
.footer-sources .fs-label svg { width: 15px; height: 15px; }
.footer-sources a {
  color: rgba(255, 255, 255, .6);
  border-bottom: 1px dashed rgba(255, 255, 255, .22);
  padding-bottom: 1px;
  transition: all var(--dur) var(--ease);
}
.footer-sources a:hover { color: #fff; border-bottom-color: var(--gold-500); }
.fs-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255, 255, 255, .3); flex: none; }

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 42px;
  padding-bottom: 44px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 34px;
}
.footer-brand .logo-text b { color: #fff; }
.footer-brand .logo-text span { color: rgba(255, 255, 255, .5); }
.footer-brand .logo-mark { background: linear-gradient(140deg, var(--gold-500), var(--gold-600)); color: #4A3406; box-shadow: 0 8px 22px rgba(184, 134, 11, .3); }
.footer-brand .logo { margin-bottom: 18px; }
.footer-desc { font-size: 13.5px; line-height: 1.9; color: rgba(255, 255, 255, .6); margin-bottom: 20px; }
.footer-contact-list { display: grid; gap: 11px; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
}
.footer-contact .ico {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #FFE9B8;
  flex: none;
}
.footer-contact .ico svg { width: 15px; height: 15px; }
.footer-contact b { color: #fff; font-weight: 800; letter-spacing: .3px; font-variant-numeric: tabular-nums; }

.footer-col h4 {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: .5px;
}
.footer-links { display: grid; gap: 11px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .62);
  transition: all var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-links a::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  transition: background-color var(--dur);
}
.footer-links a:hover { color: #FFE9B8; transform: translateX(3px); }
.footer-links a:hover::before { background: var(--gold-500); }

.qr-box { display: flex; gap: 16px; }
.qr-item { text-align: center; }
.qr-img {
  width: 96px; height: 96px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  border: 3px solid rgba(255, 255, 255, .12);
  overflow: hidden;
}
.qr-img svg { width: 100%; height: 100%; }
.qr-item span { font-size: 12px; color: rgba(255, 255, 255, .6); }

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom .links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-legal a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, .3);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.footer-legal .beian-ico { flex: none; opacity: .78; }
.footer-legal a:hover .beian-ico { opacity: 1; }
.footer-legal a:hover { color: #fff; border-bottom-color: rgba(212, 162, 76, .75); }

.footer-disclaimer {
  position: relative;
  z-index: 2;
  padding-bottom: 22px;
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .38);
  max-width: 980px;
}

/* ---------- 23. 回到顶部 ---------- */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 28px;
  z-index: 80;
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--red-500), var(--red-800));
  color: #fff;
  box-shadow: var(--shadow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all var(--dur) var(--ease);
}
.to-top.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- 24. 滚动动效 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 25. 响应式 ---------- */
@media (max-width: 1180px) {
  .hero-title { font-size: 44px; }
  .school-grid { grid-template-columns: repeat(3, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-link { padding: 0 11px; font-size: 15px; }
  .search-box { display: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer-grid .footer-col:nth-child(3) { display: none; }
}

@media (max-width: 1080px) {
  .header-actions .btn--outline { display: none; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  /* 窄屏图片被放大、画面更亮，遮罩同步加深保证文字可读 */
  .hero {
    background-image:
      linear-gradient(180deg, rgba(7, 20, 50, .56) 0%, rgba(7, 20, 50, .36) 40%, rgba(7, 20, 50, .68) 100%),
      linear-gradient(96deg, rgba(5, 16, 42, .90) 0%, rgba(10, 32, 74, .78) 44%, rgba(16, 50, 108, .56) 76%, rgba(10, 32, 74, .52) 100%),
      url("../img/hero-bg.jpg");
  }
  .hero-title { font-size: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 38px 32px; }
  .cta-band-side { align-items: stretch; }
  .cta-phone { justify-content: center; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .step-line { display: none; }
  .mock-kpis { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; }

  /* 移动端导航 */
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    left: 0; right: 0; top: calc(38px + var(--header-h));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-m);
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
    margin-left: 0;
  }
  .nav.is-open { max-height: 480px; padding: 8px 16px 18px; }
  .nav-link {
    height: 52px;
    padding: 0 12px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
  }
  .nav-link::after { display: none; }
  .nav-link.is-active { color: var(--red-700); background: var(--red-50); border-radius: 10px; }
  .nav-cta {
    display: flex;
    margin-top: 10px;
    height: 48px;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    color: #fff !important;
    border-bottom: 0;
    font-weight: 800;
  }
  .search-box { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 14.5px; }
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .section-title { font-size: 26px; }
  .hero {
    padding-top: 38px;
    background-image:
      linear-gradient(180deg, rgba(6, 18, 44, .66) 0%, rgba(6, 18, 44, .46) 36%, rgba(6, 18, 44, .78) 100%),
      linear-gradient(96deg, rgba(5, 15, 38, .92) 0%, rgba(10, 30, 68, .82) 48%, rgba(15, 47, 102, .66) 80%, rgba(10, 30, 68, .64) 100%),
      url("../img/hero-bg.jpg");
  }
  .hero-title { font-size: 32px; letter-spacing: -.8px; }
  .hero-sub { font-size: 15px; }
  .hero::after { font-size: 180px; bottom: -40px; }
  .hero-card { padding: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 0; padding: 20px 0; }
  .stat:nth-child(3)::before { display: none; }
  .stat b { font-size: 25px; }
  .quick-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .quick-card { padding: 15px 13px; gap: 10px; }
  .quick-icon { width: 40px; height: 40px; border-radius: 11px; }
  .quick-icon svg { width: 20px; height: 20px; }
  .quick-text b { font-size: 14px; }
  .quick-text span { display: none; }
  .adv-grid, .mod-grid, .school-grid, .case-grid { grid-template-columns: 1fr; }
  .school-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 34px 0 38px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero::after { display: none; }
  .toolbar { padding: 14px; }
  .toolbar-left, .toolbar-right { width: 100%; }
  .grow-search { min-width: 100%; }
  .year-switch { width: 100%; }
  .year-switch button { flex: 1; padding: 8px 10px; }
  .news-item { padding: 12px 16px; gap: 12px; flex-wrap: wrap; }
  .news-date { width: 54px; }
  .news-src { display: none; }
  .cta-band { padding: 28px 20px; border-radius: var(--r-l); }
  .cta-band h2 { font-size: 23px; }
  .cta-phone-txt b { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid .footer-col:nth-child(3) { display: block; }
  .detail-hero-card { flex-direction: column; align-items: flex-start; padding: 22px; }
  .dhc-logo { width: 62px; height: 62px; font-size: 20px; }
  .dhc-info h1 { font-size: 21px; }
  .link-row { flex-wrap: wrap; gap: 10px; padding: 15px 16px; }
  .plan-price .num { font-size: 42px; }
  .plan-card { padding: 26px 20px 24px; }
  .mock-body { padding: 14px; }
  .mock-row { grid-template-columns: 1.4fr 1fr; font-size: 12px; padding: 10px 12px; }
  .mock-row > :nth-child(3) { display: none; }
  .cmp-table { font-size: 13px; }
  .cmp-table th, .cmp-table td { padding: 11px 12px; }
  .to-top { right: 14px; bottom: 18px; }
  .topbar-text { display: none; }
  .topbar-right { gap: 12px; }
  .topbar-right .hide-sm { display: none; }
  .header-inner { gap: 12px; }
  .logo-mark { width: 40px; height: 40px; font-size: 18px; border-radius: 11px; }
  .logo-text b { font-size: 17px; letter-spacing: 1px; }
  .logo-text span { font-size: 10px; letter-spacing: 1.1px; }
  .header-actions .btn--primary { height: 40px; padding: 0 16px; font-size: 14px; }
}

@media (max-width: 400px) {
  .quick-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- 26. 卡片悬浮光影统一升级（红金描边 + 分层投影） ---------- */
.adv-card:hover,
.case-card:hover,
.mod-card:hover {
  box-shadow: 0 20px 46px rgba(14, 42, 92), .16), 0 0 0 1px rgba(212, 162, 76, .38);
}
.school-card:hover,
.quick-card:hover {
  box-shadow: 0 16px 38px rgba(14, 42, 92), .14), 0 0 0 1px rgba(212, 162, 76, .32);
}
.plan-card:hover {
  box-shadow: 0 24px 58px rgba(14, 42, 92), .2), 0 0 0 1px rgba(212, 162, 76, .4);
}
.panel:hover,
.side-card:hover {
  box-shadow: 0 16px 40px rgba(14, 42, 92), .1);
}
