/*
  Theme Name: 临翰教育 (Linhan Education)
  Theme URI: https://example.com
  Description: 临翰教育单招培训官网 WordPress 主题（青橙活力风）。由 Node.js 原站 design tokens 精细还原：朝青主色 + 橙红辅色 + 金色点缀，衬线标题 + 胶囊按钮。
  Version: 1.2.1
  Author: WorkBuddy 迁移
  Template:
*/

/* finesse · register=brand · A=朝青+橙红 · B=衬线900/无衬线400 · C=landing-sequence
 * D=CSS-only+slider · E=青橙活力教育 · SOUL=7 SPECTACLE=4 DENSITY=4
 * 修饰：全局细颗粒(grain) + 分层 hero 光晕 + 编辑式分节细线 + 标题张力 + 键盘焦点环 */

/* ============== 设计令牌（与原 EJS 一致） ============== */
:root {
  /* 主色 - 朝青 */
  --brand:        #0E5F6F;
  --brand-light:  #0A7B8C;
  --brand-dark:   #0A3F4A;
  --brand-50:     #E6F2F4;
  --brand-100:    #CCE5E9;
  --brand-200:    #99CCE2;

  /* 辅色 - 橙红 */
  --accent:       #E94E2E;
  --accent-light: #FF6B47;
  --accent-dark:  #C73B1F;
  --accent-50:    #FDEEE9;
  --accent-100:   #FCDDD3;

  /* 金色（徽章） */
  --gold:         #F4B942;
  --gold-dark:    #D89B1F;

  /* 中性 */
  --paper:        #FAF7F2;
  --card:         #FFFFFF;
  --paper-2:      #F4F7F9;
  --ink:          #1A2530;
  --ink-2:        #2C3E50;
  --mute:         #5A6B7A;
  --mute-2:       #8896A3;
  --line:         #E5E7EA;
  --line-soft:    #F0F2F5;

  /* 状态 */
  --success:      #1A9E5E;
  --warning:      #F4B942;
  --danger:       #E94E2E;
  --info:         #0E5F6F;

  /* 字体 */
  --serif:        'Noto Serif SC', 'STSong', '宋体', serif;
  --sans:         'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --mono:         'Noto Sans SC', system-ui, sans-serif;
  --display:      'Noto Serif SC', 'Plus Jakarta Sans', serif;

  /* 节奏 */
  --c-max:        1280px;
  --c-pad:        24px;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-sm:    6px;
  --shadow-sm:    0 2px 8px rgba(14, 95, 111, 0.06);
  --shadow:       0 6px 24px rgba(14, 95, 111, 0.08);
  --shadow-lg:    0 18px 48px rgba(14, 95, 111, 0.14);
  --shadow-accent: 0 8px 24px rgba(233, 78, 46, 0.22);
  --t:            .25s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--accent); color: #fff; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* finesse · 全局细颗粒层（premium substrate）：固定噪点叠加，消除平面矢量感，立刻显得「贵」 */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .04;
}

img, picture, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
a:hover { color: var(--accent); }
/* finesse · 键盘焦点环（无障碍 + 精致细节） */
:where(a, button, .btn, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea, button { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ============== 布局 ============== */
.container { width: 100%; max-width: var(--c-max); margin: 0 auto; padding: 0 var(--c-pad); }
.container-sm { max-width: 980px; }
.container-lg { max-width: 1440px; }

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section--tight { padding: 48px 0; }
.bg-paper-2 { background: var(--paper-2); position: relative; }
.bg-paper-2::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
  z-index: 1;
}
.bg-brand { background: var(--brand); color: #fff; }
.bg-grad-brand { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%); color: #fff; }
.bg-grad-accent { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%); color: #fff; }
.bg-ink { background: var(--ink); color: #fff; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; gap: 16px; }
.flex-c { display: flex; align-items: center; gap: 12px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.flex-col { display: flex; flex-direction: column; gap: 12px; }
.wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.hidden { display: none !important; }

/* ============== 排版 ============== */
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 700; line-height: 1.22; color: var(--ink); letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
h4 { font-size: 18px; }
p { color: var(--ink-2); }
.text-mute { color: var(--mute); }
.text-accent { color: var(--accent); }
.text-brand { color: var(--brand); }
.text-gold { color: var(--gold-dark); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--mute); }

/* Eyebrow 小标签 */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); padding: 2px 0 2px 12px; border-radius: 0;
  background: none; border: none; border-left: 2px solid var(--brand);
}
.eyebrow.eyebrow-brand { color: var(--brand); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* ============== 按钮 ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 12px 26px; border-radius: 999px;
  transition: all var(--t);
  cursor: pointer; white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(233,78,46,.32); text-decoration: none; }
.btn-brand { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-brand:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--brand); border-color: var(--brand-200); }
.btn-ghost:hover { background: var(--brand-50); color: var(--brand-dark); border-color: var(--brand); text-decoration: none; }
.btn-outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.18); color: #fff; border-color: #fff; text-decoration: none; }
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: var(--paper); color: var(--brand-dark); transform: translateY(-2px); text-decoration: none; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }
.btn .ico { width: 16px; height: 16px; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============== 顶部公告条 ============== */
.topbar {
  background: var(--brand-dark);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar .tb-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar .tb-announce { display: flex; align-items: center; gap: 8px; }
.topbar .tb-announce .ico { color: var(--gold); }
.topbar .tb-announce strong { color: #fff; font-weight: 600; }
.topbar .tb-right { display: flex; align-items: center; gap: 18px; }
.topbar a:hover { color: #fff; }
.topbar .tb-sep { width: 1px; height: 14px; background: rgba(255,255,255,.18); }
.topbar .tb-tel { font-family: var(--mono); font-weight: 600; color: #fff; }
.topbar .tb-tel strong { color: var(--gold); font-size: 15px; letter-spacing: .02em; }

/* ============== 站点头 ============== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: box-shadow var(--t);
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 10px 34px rgba(14,95,111,.14);
  border-bottom-color: rgba(14,95,111,.10);
}
.site-header.scrolled .header-inner { height: 64px; }
.site-header.scrolled .main-nav a { height: 64px; }
.site-header.scrolled .main-nav a::after { bottom: 13px; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 80px; transition: height var(--t);
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; display: block; border-radius: 12px; object-fit: contain; box-shadow: var(--shadow); }
.brand-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  border-radius: 12px; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 900; font-size: 22px; color: #fff;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ''; position: absolute; right: -8px; bottom: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); opacity: .9;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--ink); letter-spacing: .02em; }
.brand-text .slogan { font-family: var(--sans); font-size: 12px; color: var(--mute-2); letter-spacing: .04em; margin-top: 3px; }

.main-nav { display: flex; flex: 1; justify-content: center; }
.main-nav ul { display: flex; gap: 4px; margin: 0; padding: 0; }
.main-nav a {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 80px; padding: 0 16px;
  font-size: 15px; font-weight: 400; color: var(--mute);
  white-space: nowrap; transition: color var(--t), height var(--t);
}
.main-nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 22px;
  transform: translateX(-50%); width: 0; height: 3px; border-radius: 2px;
  background: var(--brand); transition: width var(--t);
}
.main-nav a:hover { color: var(--brand); }
.main-nav a:hover::after { width: 22px; }
.main-nav a.active { color: var(--brand); font-weight: 700; }
.main-nav a.active::after { width: 22px; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.hd-phone {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 10px;
  background: var(--brand-50); color: var(--brand-dark);
  transition: all var(--t);
}
.hd-phone:hover { background: var(--brand-100); color: var(--brand-dark); }
.hd-phone .ico { font-size: 18px; }
.hd-phone .lbl { display: block; font-size: 11px; color: var(--mute); line-height: 1; margin-bottom: 3px; }
.hd-phone .num { display: block; font-family: var(--mono); font-weight: 700; font-size: 15px; line-height: 1; }
.header-cta .btn-primary { padding: 11px 24px; border-radius: 999px; }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: all var(--t); }

/* ============== 浮动咨询按钮（右侧） ============== */
.float-consult {
  position: fixed; right: 16px; top: 50%; transform: translateY(-50%);
  z-index: 80; display: flex; flex-direction: column; gap: 8px;
}
.fc-item {
  width: 56px; height: 56px; border-radius: 14px;
  background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center;
  color: var(--brand); position: relative;
  border: 1px solid var(--line);
  transition: all var(--t); text-decoration: none;
}
.fc-item:hover { background: var(--brand); color: #fff; transform: translateX(-3px); box-shadow: var(--shadow-lg); }
.fc-item .ico { font-size: 22px; line-height: 1; }
.fc-item .fc-label {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff;
  padding: 6px 12px; border-radius: 8px; font-size: 13px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.fc-item .fc-label::after {
  content: ''; position: absolute; right: -4px; top: 50%; transform: translateY(-50%);
  border: 4px solid transparent; border-left-color: var(--ink);
}
.fc-item:hover .fc-label { opacity: 1; }
.fc-item.fc-phone { background: var(--accent); color: #fff; border-color: var(--accent); }
.fc-item.fc-phone:hover { background: var(--accent-dark); color: #fff; }
.fc-item.fc-top { background: var(--ink); color: #fff; border-color: var(--ink); }
.fc-item.fc-top:hover { background: var(--ink-2); color: #fff; }

/* ============== Hero 主视觉 ============== */
.hero { position: relative; overflow: hidden; background: var(--paper-2); }
.hero-slider { position: relative; height: 560px; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(10,63,74,.58) 0%, rgba(10,63,74,.26) 45%, rgba(10,63,74,0) 100%),
    radial-gradient(120% 90% at 88% 12%, rgba(233,78,46,.10) 0%, rgba(233,78,46,0) 46%),
    radial-gradient(90% 80% at 8% 95%, rgba(244,185,66,.08) 0%, rgba(244,185,66,0) 50%);
}
.hero-slide-content { position: relative; z-index: 2; color: #fff; max-width: 640px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 30px;
  background: rgba(244, 185, 66, .15); border: 1px solid rgba(244, 185, 66, .4);
  color: var(--gold); font-family: var(--mono); font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 1.6s infinite; }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); font-weight: 900; line-height: 1.12; margin-bottom: 18px; text-shadow: 0 2px 12px rgba(0,0,0,.2); word-break: keep-all; overflow-wrap: break-word; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.92); margin-bottom: 32px; line-height: 1.6; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px 38px; margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.hstat { display: flex; flex-direction: column; gap: 4px; }
.hstat strong { display: flex; align-items: baseline; gap: 2px; font-family: var(--mono); font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.01em; }
.hstat .hstat-unit { font-size: .5em; color: var(--gold); font-weight: 700; }
.hstat-lbl { font-size: 13px; color: rgba(255,255,255,.82); letter-spacing: .03em; }
.hero-legal-note { position: relative; z-index: 2; font-size: 12px; color: #1a2530 !important; text-align: center; padding: 14px 20px 0; line-height: 1.7; }
.hero-meta { position: relative; z-index: 2; display: flex; gap: 36px; margin-top: 48px; color: rgba(255,255,255,.9); }
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-num { font-family: var(--mono); font-size: 32px; font-weight: 800; color: #fff; line-height: 1; }
.hero-meta-num span { color: var(--gold); }
.hero-meta-lbl { font-size: 13px; opacity: .85; letter-spacing: .04em; }

/* 顶部滚动进度条 */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 9999; background: linear-gradient(90deg, var(--brand), var(--brand-light) 60%, var(--gold)); box-shadow: 0 0 8px rgba(214,40,40,.5); pointer-events: none; }

/* 卡片 3D 倾斜（由 theme.js 注入 .tilt-3d 并维护 transform） */
.tilt-3d { will-change: transform; transform-style: preserve-3d; backface-visibility: hidden; }
.tilt-3d:hover { box-shadow: 0 18px 40px rgba(20,40,80,.16); }
@media (prefers-reduced-motion: reduce) { .scroll-progress { transition: none; } }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px); color: #fff; z-index: 5;
  display: grid; place-items: center; font-size: 22px; transition: all var(--t);
}
.hero-arrow:hover { background: var(--accent); border-color: var(--accent); }
.hero-arrow.prev { left: 30px; }
.hero-arrow.next { right: 30px; }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hero-dot { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.4); transition: all var(--t); cursor: pointer; }
.hero-dot.active { background: #fff; width: 48px; }
.hero-index { position: absolute; top: 24px; right: 30px; color: rgba(255,255,255,.8); font-family: var(--mono); font-size: 13px; z-index: 5; letter-spacing: .08em; }
.hero-index strong { color: #fff; font-size: 16px; }

/* Hero 招生倒计时 */
.hero-countdown {
  position: relative;
  background: linear-gradient(95deg, var(--ink) 0%, var(--brand-dark) 100%);
  color: #fff; padding: 18px 0; overflow: hidden;
  border-top: 1px solid rgba(244,185,66,.2);
}
.hero-countdown::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 12% 50%, rgba(244,185,66,.14), transparent 28%), radial-gradient(circle at 88% 50%, rgba(233,78,46,.18), transparent 28%);
}
.hcd-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hcd-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hcd-badge {
  display: inline-block; background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #fff; font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 30px; box-shadow: 0 4px 12px rgba(233,78,46,.35);
}
.hcd-text { font-size: 15px; color: rgba(255,255,255,.88); }
.hcd-numbers { display: flex; align-items: center; gap: 8px; font-family: var(--mono); }
.hcd-num {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; padding: 6px 14px; min-width: 60px; backdrop-filter: blur(6px);
}
.hcd-num strong { font-size: 24px; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.hcd-num span { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 3px; letter-spacing: .06em; }
.hcd-sep { color: rgba(255,255,255,.4); font-size: 22px; font-weight: 700; }
.hcd-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 30px; box-shadow: 0 6px 18px rgba(233,78,46,.4); transition: all var(--t);
}
.hcd-btn:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }

/* ============== Trust Bar 数据条 ============== */
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); position: relative; z-index: 5; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 32px 0; }
.trust-item { text-align: center; position: relative; padding: 0 20px; }
.trust-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 48px; background: var(--line); }
.trust-num { font-family: var(--mono); font-weight: 800; font-size: clamp(32px, 3.6vw, 42px); color: var(--brand); line-height: 1; display: inline-flex; align-items: baseline; gap: 4px; }
.trust-num sup { font-size: .55em; color: var(--accent); font-weight: 700; }
.trust-num .unit { font-size: .55em; color: var(--mute); margin-left: 2px; }
.trust-lbl { font-size: 14px; color: var(--mute); margin-top: 8px; letter-spacing: .02em; }
.trust-note { text-align: center; font-size: 12px; color: var(--mute); padding: 0 0 24px; line-height: 1.7; }

/* ============== 通用 section head ============== */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.sec-head.left { text-align: left; margin-left: 0; }
.sec-head h2 { margin-top: 16px; margin-bottom: 14px; position: relative; }
.sec-head h2 em { color: var(--accent); font-style: normal; }
.sec-head p { color: var(--mute); font-size: 16px; line-height: 1.7; }
.sec-head .deco { width: 56px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%); margin: 18px auto 0; }
.sec-head.left .deco { margin-left: 0; }

/* ============== 优势 / Why Us ============== */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; overflow: hidden; transition: all var(--t);
}
.adv-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--brand); transform: scaleY(0); transform-origin: top; transition: transform var(--t); }
.adv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.adv-card:hover::before { transform: scaleY(1); background: var(--accent); }
.adv-ico { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand-50) 0%, var(--brand-100) 100%); color: var(--brand); margin-bottom: 20px; font-size: 30px; transition: all var(--t); }
.adv-card:hover .adv-ico { background: var(--accent); color: #fff; transform: rotate(-6deg) scale(1.06); }
.adv-ico .ico { width: 28px; height: 28px; }
.adv-card h3 { font-size: 20px; margin-bottom: 10px; }
.adv-card p { color: var(--mute); font-size: 14.5px; line-height: 1.7; }
.adv-card .num-tag { position: absolute; top: 22px; right: 24px; font-family: var(--mono); font-size: 32px; font-weight: 800; color: var(--paper-2); line-height: 1; z-index: 0; }

/* ============== 课程班型展示 ============== */
.courses-section { position: relative; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.course-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 24px 26px; display: flex; flex-direction: column; transition: all var(--t); overflow: hidden;
}
.course-card::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.course-card:hover::before { transform: scaleX(1); background: var(--accent); }
.course-card .course-badge {
  position: absolute; top: 14px; right: -32px; background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #fff; font-size: 11px; font-weight: 700; padding: 5px 36px; transform: rotate(35deg); letter-spacing: .04em; box-shadow: 0 4px 12px rgba(233,78,46,.3);
}
.course-feature { background: linear-gradient(180deg, var(--brand-50) 0%, #fff 35%); border-color: var(--brand-200); box-shadow: 0 8px 28px rgba(14,95,111,.12); position: relative; z-index: 1; }
.course-feature::after { content: '推荐'; position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 6px; letter-spacing: .06em; }
.course-head { margin-bottom: 16px; padding-top: 4px; }
.course-tag { display: inline-block; font-family: var(--mono); font-weight: 700; font-size: 11px; letter-spacing: .08em; padding: 3px 10px; border-radius: 4px; background: var(--accent-50); color: var(--accent-dark); margin-bottom: 12px; }
.course-tag.tag-brand { background: var(--brand-50); color: var(--brand-dark); }
.course-tag.tag-gold { background: var(--gold); color: var(--ink); }
.course-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.course-sub { font-size: 13px; color: var(--mute); }
.course-price { display: flex; align-items: baseline; gap: 4px; padding: 16px 0; margin-bottom: 18px; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); }
.course-price .price-symbol { font-family: var(--mono); font-size: 16px; font-weight: 700; color: var(--accent); }
.course-price .price-num { font-family: var(--mono); font-size: 32px; font-weight: 800; color: var(--accent-dark); line-height: 1; letter-spacing: -.02em; }
.course-feature .price-num, .course-feature .price-symbol { color: var(--brand); }
.course-price .price-unit { font-size: 13px; color: var(--mute); margin-left: 6px; }
.course-feats { margin-bottom: 20px; display: flex; flex-direction: column; }
.course-card > a:last-child { margin-top: auto; }
.course-feats li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--ink-2); padding: 6px 0; line-height: 1.5; }
.course-feats li .ico { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--brand-50); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; line-height: 1; }
.course-feature .course-feats li .ico { background: var(--accent); color: #fff; }
.courses-foot { margin-top: 32px; padding: 22px 28px; background: linear-gradient(95deg, var(--brand-50) 0%, var(--accent-50) 100%); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border: 1px solid var(--brand-100); }
.courses-foot .cf-text { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: 15px; font-weight: 500; }
.courses-foot .cf-text .ico { font-size: 22px; }

/* ============== 课程费用明细 ============== */
.pricing-section { position: relative; }
.price-table-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead th { background: var(--brand); color: #fff; font-weight: 700; font-size: 14px; padding: 16px 14px; text-align: left; white-space: nowrap; }
.price-table thead th.price-col { text-align: right; }
.price-table tbody td { padding: 16px 14px; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; color: var(--ink-2); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: var(--paper-2); }
.price-table tbody tr:hover { background: var(--brand-50); }
.price-table .price-col { text-align: right; font-family: var(--mono); font-weight: 800; font-size: 17px; color: var(--accent-dark); white-space: nowrap; }
.price-table tbody tr:nth-child(2) .price-col,
.price-table tbody tr:nth-child(5) .price-col { color: var(--brand); }
.price-notes { display: flex; flex-wrap: wrap; gap: 12px 28px; padding: 18px 22px; background: var(--paper-2); border-top: 1px solid var(--line-soft); }
.pn-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); }
.pn-item .pn-ico { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.pn-highlight { color: var(--accent-dark); font-weight: 600; }
.pn-highlight .pn-ico { background: var(--accent); }
@media (max-width: 760px) {
  .price-table thead th, .price-table tbody td { padding: 12px 10px; font-size: 13px; }
  .price-table .price-col { font-size: 15px; }
  .price-notes { flex-direction: column; gap: 10px; padding: 16px; }
}

/* ============== 教学服务流程 ============== */
.process-section { position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; right: -100px; top: 50%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(14,95,111,.06) 0%, transparent 70%); }
.process-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr; gap: 14px 10px; align-items: stretch; position: relative; z-index: 2; }
.process-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 18px 22px; text-align: center; position: relative; transition: all var(--t); overflow: hidden; }
.process-step::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--brand); transform: scaleY(0); transform-origin: top; transition: transform var(--t); }
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-200); }
.process-step:hover::before { transform: scaleY(1); background: var(--accent); }
.process-step .ps-num { position: absolute; top: 10px; right: 14px; font-family: var(--mono); font-weight: 800; font-size: 28px; color: var(--paper-2); line-height: 1; }
.process-step .ps-ico { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand-50), var(--brand-100)); font-size: 26px; transition: all var(--t); }
.process-step:hover .ps-ico { background: linear-gradient(135deg, var(--brand), var(--brand-light)); transform: scale(1.06) rotate(-4deg); }
.process-step h4 { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--mute); line-height: 1.6; }
.process-step:hover h4 { color: var(--brand); }
.ps-arrow { align-self: center; font-size: 22px; font-weight: 700; color: var(--brand-200); transition: color var(--t); }
.process-step:hover + .ps-arrow { color: var(--accent); }

/* ============== 教师 / Faculty ============== */
.teachers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.teacher-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); transition: all var(--t); display: flex; flex-direction: column; }
.teacher-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.teacher-photo { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--brand-50), var(--brand-100)); position: relative; overflow: hidden; display: grid; place-items: center; color: var(--brand); font-family: var(--serif); font-weight: 900; font-size: 80px; }
.teacher-photo img { width: 100%; height: 100%; object-fit: cover; }
.teacher-photo .subj-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.95); color: var(--brand-dark); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; letter-spacing: .04em; }
.teacher-info { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.teacher-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.teacher-title { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.teacher-intro { color: var(--mute); font-size: 14px; line-height: 1.7; margin-bottom: 18px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ============== 录取案例（对齐原站 honor-card） ============== */
.honor-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.honor-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all var(--t); position: relative;
}
.honor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.honor-card .ph {
  aspect-ratio: 1/1; background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  position: relative; display: grid; place-items: center;
  color: var(--brand); font-family: var(--serif); font-weight: 900; font-size: 60px;
}
.honor-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.honor-card .ph .year-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
}
.honor-card .body { padding: 14px 16px 16px; }
.honor-card .body .name { font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.honor-card .body .school { font-size: 13px; color: var(--brand); font-weight: 600; margin-bottom: 4px; }
.honor-card .body .major { font-size: 13px; color: var(--mute); }
.honor-card .body .score {
  display: flex; align-items: baseline; gap: 4px;
  margin-top: 10px; font-family: var(--mono);
}
.honor-card .body .score strong { color: var(--accent); font-size: 22px; font-weight: 800; }
.honor-card .body .score span { font-size: 12px; color: var(--mute); }

/* ============== 教学服务 ============== */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px 26px; position: relative; transition: all var(--t); overflow: hidden; }
.testimonial-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform var(--t); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.testimonial-card:hover::before { transform: scaleY(1); }
.testimonial-card .tm-quote-mark { position: absolute; top: -8px; right: 24px; font-family: var(--serif); font-size: 80px; font-weight: 900; color: var(--brand-50); line-height: 1; pointer-events: none; transition: color var(--t); }
.testimonial-card:hover .tm-quote-mark { color: var(--accent-50); }
.testimonial-card .tm-stars { font-size: 16px; color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card .tm-text { font-family: var(--serif); font-size: 15px; line-height: 1.85; color: var(--ink-2); margin-bottom: 22px; position: relative; z-index: 1; font-style: italic; }
.tm-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px dashed var(--line); }
.tm-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--serif); font-weight: 700; font-size: 18px; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.tm-info { flex: 1; min-width: 0; }
.tm-info .tm-name { font-family: var(--serif); font-weight: 700; font-size: 15px; color: var(--ink); }
.tm-info .tm-role { font-size: 12px; color: var(--mute); margin-top: 2px; }
.tm-school { font-size: 12px; font-weight: 600; color: var(--brand-dark); background: var(--brand-50); padding: 4px 10px; border-radius: 6px; white-space: nowrap; }
.tm-stats { margin-top: 36px; background: linear-gradient(95deg, var(--brand) 0%, var(--brand-dark) 100%); border-radius: var(--radius-lg); padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.tm-stats::before { content: ''; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(244,185,66,.2) 0%, transparent 70%); }
.tm-stats .tms-item { text-align: center; flex: 1; min-width: 100px; position: relative; z-index: 1; }
.tm-stats .tms-num { font-family: var(--mono); font-weight: 800; font-size: clamp(24px, 3vw, 34px); color: var(--gold); line-height: 1; }
.tm-stats .tms-num small { font-size: .55em; color: rgba(255,255,255,.8); margin-left: 2px; }
.tm-stats .tms-lbl { font-size: 13px; color: rgba(255,255,255,.78); margin-top: 6px; letter-spacing: .04em; }
.tm-stats .tms-divider { width: 1px; height: 36px; background: rgba(255,255,255,.18); }

/* ============== 数字校园（新增模块） ============== */
.smartcampus-section { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 70%, var(--brand-light) 100%); color: #fff; }
.smartcampus-section::before, .smartcampus-section::after { background: none; }
.smartcampus-section .sec-head h2 { color: #fff; }
.smartcampus-section .sec-head h2 em { color: var(--gold); }
.smartcampus-section .sec-head p { color: rgba(255,255,255,.82); }
.smartcampus-section .sec-head .deco { background: linear-gradient(90deg, var(--gold), var(--accent)); }
.sc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 2; }
.sc-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 28px 26px; backdrop-filter: blur(6px); transition: all var(--t); position: relative; overflow: hidden; }
.sc-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); border-color: rgba(244,185,66,.4); box-shadow: 0 18px 40px rgba(0,0,0,.2); }
.sc-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--gold); color: var(--brand-dark); font-size: 26px; margin-bottom: 18px; transition: all var(--t); }
.sc-card:hover .sc-ico { background: var(--accent); color: #fff; transform: rotate(-6deg) scale(1.06); }
.sc-card h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.sc-card p { color: rgba(255,255,255,.8); font-size: 14.5px; line-height: 1.7; }
.sc-stats { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; z-index: 2; }
.sc-stat { text-align: center; padding: 20px 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.sc-stat .num { font-family: var(--mono); font-weight: 800; font-size: 30px; color: var(--gold); line-height: 1; }
.sc-stat .lbl { font-size: 13px; color: rgba(255,255,255,.78); margin-top: 8px; }

/* ============== 志愿系统（新增模块·交互） ============== */
.zhiyuan-section { background: var(--paper-2); }
/* ---- AI 志愿：居中卡片 ---- */
.zy-wrap { display: flex; justify-content: center; }
.zy-result { width: 100%; max-width: 680px; }
.zy-summary { background: linear-gradient(95deg, var(--brand-50), var(--accent-50)); border: 1px solid var(--brand-100); border-radius: var(--radius); padding: 16px 20px; font-size: 14px; color: var(--ink-2); }
.zy-summary b { color: var(--brand-dark); }
.zy-tier { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.zy-tier-head { display: flex; align-items: center; gap: 10px; padding: 12px 18px; font-weight: 700; font-family: var(--serif); font-size: 16px; }
.zy-tier-head .badge { font-family: var(--mono); font-size: 12px; font-weight: 700; color: #fff; padding: 3px 10px; border-radius: 30px; }
.zy-tier--chong .zy-tier-head { background: var(--accent-50); color: var(--accent-dark); }
.zy-tier--chong .badge { background: var(--accent); }
.zy-tier--wen .zy-tier-head { background: var(--brand-50); color: var(--brand-dark); }
.zy-tier--wen .badge { background: var(--brand); }
.zy-tier--bao .zy-tier-head { background: #E8F5E9; color: #2E7D32; }
.zy-tier--bao .badge { background: var(--success); }
.zy-list { padding: 6px 18px 14px; }
.zy-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line-soft); }
.zy-item:last-child { border-bottom: none; }
.zy-item .zy-school { font-weight: 600; color: var(--ink); }
.zy-item .zy-cat { font-size: 12px; color: var(--mute); }
.zy-item .zy-score { font-family: var(--mono); font-weight: 700; color: var(--accent-dark); font-size: 15px; white-space: nowrap; }
.zy-empty { text-align: center; color: var(--mute); padding: 40px 20px; background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); }
.zy-note { font-size: 12px; color: var(--mute-2); margin-top: 4px; }

/* ============== 环境 / Space ============== */
.env-masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.env-item { position: relative; overflow: hidden; border-radius: var(--radius); background: linear-gradient(135deg, var(--brand-50), var(--brand-100)); cursor: pointer; transition: all var(--t); }
.env-item.big { grid-column: span 2; grid-row: span 2; }
.env-item.tall { grid-row: span 2; }
.env-item.wide { grid-column: span 2; }
.env-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.env-item:hover img { transform: scale(1.08); }
.env-item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 20px 18px; background: linear-gradient(to top, rgba(10,63,74,.92) 0%, rgba(10,63,74,.4) 70%, transparent 100%); color: #fff; transform: translateY(8px); opacity: 0; transition: all var(--t); }
.env-item:hover .cap { transform: translateY(0); opacity: 1; }
.env-item .cap .no { font-family: var(--mono); font-size: 12px; opacity: .8; letter-spacing: .12em; }
.env-item .cap .t { font-family: var(--serif); font-size: 18px; font-weight: 700; margin-top: 2px; }
.env-item .cap .d { font-size: 13px; opacity: .85; margin-top: 4px; }

/* ============== 资讯 / 文章 ============== */
.article-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.article-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; transition: all var(--t); position: relative; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.article-cat { display: inline-block; align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--accent); background: var(--accent-50); padding: 4px 10px; border-radius: 30px; margin-bottom: 14px; }
.article-title { font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-card:hover .article-title { color: var(--brand); }
.article-excerpt { font-size: 13px; color: var(--mute); line-height: 1.7; flex: 1; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--mute-2); padding-top: 14px; border-top: 1px solid var(--line-soft); }

/* 文章详情 */
.article-detail { background: #fff; border-radius: var(--radius-lg); padding: 48px; border: 1px solid var(--line); }
.article-detail .a-head { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.article-detail .a-head .cat-tag { display: inline-block; background: var(--accent-50); color: var(--accent-dark); padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; margin-bottom: 14px; }
.article-detail .a-head h1 { font-size: 32px; line-height: 1.35; margin-bottom: 14px; }
.article-detail .a-meta { display: flex; gap: 18px; font-size: 13px; color: var(--mute); flex-wrap: wrap; }
.article-detail .a-body { font-size: 16px; line-height: 1.85; color: var(--ink-2); }
.article-detail .a-body h3 { margin: 28px 0 14px; font-size: 22px; color: var(--ink); padding-left: 12px; border-left: 4px solid var(--brand); }
.article-detail .a-body p { margin-bottom: 16px; }
.article-detail .a-body strong { color: var(--accent-dark); }
.article-detail .a-body ul { padding-left: 22px; margin: 14px 0; }
.article-detail .a-body ul li { margin-bottom: 8px; color: var(--ink-2); list-style: disc; }
.article-detail .a-body img { border-radius: var(--radius); margin: 24px 0; }

/* ============== 咨询表单（首页 CTA） ============== */
.consult-section { position: relative; background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%); color: #fff; overflow: hidden; padding: 60px 0; }
.consult-section::before, .consult-section::after { background: none; }
.consult-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; position: relative; z-index: 2; }
.consult-info h2 { color: #fff; font-size: clamp(24px, 2.8vw, 34px); margin: 14px 0 12px; }
.consult-info h2 em { color: var(--gold); font-style: normal; }
.consult-info p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.7; max-width: 460px; }
.consult-points { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.consult-points li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.92); font-size: 13.5px; }
.consult-points .ico { width: 20px; height: 20px; border-radius: 50%; background: rgba(244,185,66,.2); color: var(--gold); display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.consult-phone { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.consult-phone .lbl { display: block; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.consult-phone a { font-family: var(--mono); font-size: 24px; font-weight: 800; color: var(--gold); }
.consult-form { background: #fff; border-radius: var(--radius-lg); padding: 24px 22px; box-shadow: var(--shadow-lg); }
.consult-form::before { content: ''; position: absolute; }
.cf-head { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.cf-head h3 { font-size: 20px; font-family: var(--sans); font-weight: 700; color: var(--ink); }
.cf-head p { font-size: 12px; color: var(--mute-2); margin-top: 4px; }
.cf-row { margin-bottom: 12px; }
.cf-row.cf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-row label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 5px; }
.cf-row label em { color: var(--accent); font-style: normal; margin-left: 2px; }
.cf-row input, .cf-row select, .cf-row textarea { width: 100%; padding: 9px 12px; border: 1.5px solid var(--line); border-radius: 8px; font-size: 13.5px; background: var(--paper); transition: all var(--t); font-family: inherit; }
.cf-row input:focus, .cf-row select:focus, .cf-row textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px var(--brand-50); }
.cf-row textarea { min-height: 64px; resize: vertical; }
.cf-tip { font-size: 11.5px; color: var(--mute-2); text-align: center; margin-top: 10px; }
.cf-agree-row { margin-bottom: 12px; }
.cf-row .cf-agree { display: inline-flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; cursor: pointer; user-select: none; }
.cf-row .cf-agree input { margin-top: 2px; flex-shrink: 0; width: auto; min-width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; }
.cf-row .cf-agree a { color: var(--brand); text-decoration: underline; }
.btn:disabled, .btn[disabled] { opacity: .5; cursor: not-allowed; filter: grayscale(.25); }
.cf-msg { margin-top: 10px; padding: 10px 12px; border-radius: 8px; font-size: 12.5px; display: none; }
.cf-msg.show { display: block; }
.cf-msg.success { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.cf-msg.error { background: var(--accent-50); color: var(--accent-dark); border: 1px solid var(--accent-100); }

/* ============== FAQ ============== */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all var(--t); }
.faq-item[open] { border-color: var(--brand-200); box-shadow: var(--shadow-sm); }
.faq-q { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--ink); transition: color var(--t); list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--brand); }
.faq-q .q-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; font-family: var(--mono); font-weight: 700; font-size: 13px; }
.faq-q .q-text { flex: 1; }
.faq-q .q-ico { flex-shrink: 0; width: 28px; height: 28px; display: grid; place-items: center; color: var(--mute); transition: all var(--t); font-size: 20px; }
.faq-item[open] .q-ico { transform: rotate(45deg); color: var(--accent); }
.faq-a { padding: 0 24px 20px 72px; color: var(--mute); font-size: 14.5px; line-height: 1.8; }

/* ============== CTA Section ============== */
.cta-section { position: relative; padding: 56px 0; background: linear-gradient(120deg, var(--accent-dark), var(--accent)); color: #fff; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.08), transparent 40%), radial-gradient(circle at 80% 30%, rgba(244,185,66,.16), transparent 40%); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h3 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,.92); font-size: 15px; }
.cta-inner .btn-white { background: #fff; color: var(--accent-dark); }
.cta-inner .btn-white:hover { background: var(--gold); color: var(--ink); }
.cta-inner .btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.cta-inner .btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ============== 内页 hero ============== */
.page-hero { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 70%, var(--brand-light) 100%); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: -100px; top: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(244,185,66,.16) 0%, transparent 70%); }
.page-hero .ph-inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero .ph-sub { color: rgba(255,255,255,.85); font-size: 16px; max-width: 680px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: rgba(255,255,255,.7); }

/* ============== 页脚 ============== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand-mark { background: linear-gradient(135deg, var(--brand-light), var(--brand)); }
.footer-brand .brand-text .name { color: #fff; }
.footer-brand .brand-text .slogan { color: rgba(255,255,255,.4); }
.footer-brand .desc { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.8; margin-top: 18px; max-width: 320px; }
.footer-brand .footer-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.footer-brand .footer-contact .fc-row { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.7); font-size: 14px; }
.footer-brand .footer-contact .fc-row .ico { color: var(--accent); margin-top: 2px; }
.footer-brand .footer-contact .fc-row strong { color: #fff; font-family: var(--mono); font-size: 16px; font-weight: 700; }
.footer-col h4 { color: #fff; font-size: 16px; font-family: var(--sans); font-weight: 700; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 14px; transition: all var(--t); display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-hours { margin-bottom: 18px; }
.footer-hours li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,.1); font-size: 13px; }
.footer-hours li:last-child { border-bottom: none; }
.footer-hours .d { color: rgba(255,255,255,.7); }
.footer-hours .h { color: var(--gold); font-family: var(--mono); font-weight: 600; }
.footer-cta-btn { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; background: var(--accent); color: #fff; transition: all var(--t); text-decoration: none; box-shadow: 0 6px 18px rgba(233,78,46,.32); }
.footer-cta-btn:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.footer-cta-btn .ico { font-size: 24px; }
.footer-cta-btn .lbl { display: block; font-size: 12px; opacity: .9; line-height: 1; margin-bottom: 4px; }
.footer-cta-btn .num { display: block; font-family: var(--mono); font-weight: 700; font-size: 17px; line-height: 1; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom .fb-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom .fb-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .sep { width: 1px; height: 12px; background: rgba(255,255,255,.2); }

/* ============== 滚动显现 ============== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }

/* ============== 动画 ============== */
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .6; } }

/* ============== 响应式 ============== */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .honor-wall { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-stats { grid-template-columns: repeat(2, 1fr); }
  .course-feature { grid-column: 1 / -1; }
  .process-flow { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(4), .process-step:nth-child(5), .process-step:nth-child(6) { margin-top: 0; }
  .ps-arrow { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .zy-wrap { padding: 0 10px; }
  .consult-wrap { grid-template-columns: 1fr; gap: 28px; }
  .consult-info { order: 2; }
  .consult-form { order: 1; }
  .env-masonry { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .header-cta .hd-phone { display: none; }
}
@media (max-width: 760px) {
  :root { --c-pad: 18px; }
  .section { padding: 56px 0; }
  .topbar .tb-right .tb-sep, .topbar .tb-right > span:not(.tb-tel) { display: none; }
  .topbar .tb-left .tb-announce span:not(.tb-announce-text) { display: none; }
  .header-inner { height: 64px; gap: 12px; }
  .main-nav { position: fixed; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; padding: 16px var(--c-pad); transform: translateY(-200%); transition: transform var(--t); z-index: 95; gap: 4px; }
  .main-nav.open { transform: translateY(0); box-shadow: var(--shadow); }
  .main-nav a { padding: 12px 14px; border-radius: 8px; height: auto; }
  .header-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .hero-slider { height: 460px; }
  .hero-arrow { display: none; }
  .hero h1 { font-size: 30px; }
  .hero-meta { gap: 18px; margin-top: 28px; }
  .hero-meta-num { font-size: 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 24px 0; gap: 20px 0; }
  .trust-item:nth-child(2)::after { display: none; }
  .grid-2, .grid-3, .grid-4, .adv-grid, .teachers-grid, .honor-wall, .article-grid, .courses-grid, .sc-grid { grid-template-columns: 1fr; }
  .course-feature { grid-column: 1; }
  .courses-foot { flex-direction: column; text-align: center; }
  .process-flow { grid-template-columns: 1fr; gap: 14px; }
  .sc-stats { grid-template-columns: 1fr; }
  .env-masonry { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .env-item.big, .env-item.tall, .env-item.wide { grid-column: span 1; grid-row: span 1; }
  .consult-form { padding: 24px 20px; }
  .cf-row.cf-row-2 { grid-template-columns: 1fr; }
  .consult-points { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .float-consult { right: 8px; }
  .fc-item { width: 48px; height: 48px; }
  .fc-item .ico { font-size: 18px; }
  .tm-stats { flex-direction: column; }
  .tm-stats .tms-divider { width: 80%; height: 1px; }
}
@media (max-width: 480px) { .float-consult { display: none; } }

/* ============== 内页通用：page-hero 顶部横幅 ============== */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 55%, var(--brand-light) 100%);
  color: #fff;
  padding: 70px 0 50px;
  text-align: center;
}
.page-hero .eyebrow {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 5vw, 44px);
  margin: 12px 0 10px;
}
.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}

/* ============== 师资详情 ============== */
.teacher-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}
.td-photo img,
.td-photo .ph {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  object-fit: cover;
}
.td-info h2 {
  font-size: 30px;
  margin-bottom: 14px;
}
.td-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.td-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--brand-50);
  color: var(--brand);
  border: 1px solid var(--brand-200);
}
.td-badge--sub {
  background: var(--accent-50);
  color: var(--accent);
  border-color: var(--accent-100);
}
.td-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}
.td-content {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}
.td-content h3 { margin-top: 24px; }
.td-content p { margin-bottom: 12px; }

/* 师资卡片（归档列表） */
.teacher-card {
  text-align: center;
}
.tc-photo {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
}
.tc-photo img,
.tc-photo .ph {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.tc-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.tc-info h3 a {
  color: var(--text-dark);
  text-decoration: none;
}
.tc-info h3 a:hover { color: var(--brand); }
.tc-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============== 课程详情 ============== */
.course-detail {
  max-width: 720px;
}
.course-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--accent);
  color: #fff;
  margin-bottom: 14px;
}
.course-detail h2 {
  font-size: 32px;
  margin-bottom: 8px;
}
.cd-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.cd-price {
  margin-bottom: 22px;
}
.cd-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
}
.cd-price small {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}
.cd-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
}
.cd-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.cd-features li .ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.cd-action {
  margin: 28px 0;
}
.cd-content {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}

/* 课程卡片（归档）补充 */
.cc-tag {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  margin-bottom: 8px;
}
.cc-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cc-price {
  margin: 10px 0;
}
.cc-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
}

/* ============== 录取案例详情 ============== */
.admission-detail { max-width: 640px; }
.admission-detail .ad-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}
.ad-student {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px;
}
.ad-school {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.ad-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.ad-fi {
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: var(--paper);
  border-radius: 10px;
}
.ad-fl {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.ad-fv {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.ad-fv--score { color: var(--accent); }
.ad-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

/* ============== 环境详情 ============== */
.env-detail img {
  width: 100%;
  border-radius: 16px;
}
.env-content {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}

/* ============== 文章详情 ============== */
/* .article-detail max-width removed — 让内容区撑满 container，不再缩窄 */
.article-detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.article-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}
/* 重置编辑器可能带进来的 inline 字号/行高，保证整篇文章视觉统一 */
.article-body *,
.article-body *::before,
.article-body *::after {
  font-size: inherit;
  line-height: inherit;
}
.article-body h2,
.article-body h3 {
  margin-top: 28px;
  color: var(--text-dark);
  font-weight: 700;
}
.article-body h2 {
  font-size: 22px !important;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 4px solid var(--brand);
}
.article-body h3 {
  font-size: 19px !important;
  margin-bottom: 12px;
}
.article-body h4 {
  font-size: 17px !important;
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.article-body p,
.article-body ul,
.article-body ol,
.article-body li,
.article-body blockquote,
.article-body table,
.article-body pre,
.article-body address {
  font-size: 16px !important;
  line-height: 1.9 !important;
}
.article-body p { margin-bottom: 14px; }
.article-body strong,
.article-body b {
  font-weight: 700;
  color: var(--text-dark);
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin: 14px 0;
}
.article-body ul li { list-style: disc; margin-bottom: 8px; }
.article-body ol li { list-style: decimal; margin-bottom: 8px; }
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 16px 0;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: #fff;
}
.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.article-body th {
  background: var(--paper-2);
  font-weight: 700;
  color: var(--text-dark);
}
.article-body blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 4px solid var(--brand);
  background: var(--paper-2);
  color: var(--mute);
}
@media (max-width: 640px) {
  .article-body { font-size: 15px; }
  .article-body h2 { font-size: 20px !important; }
  .article-body h3 { font-size: 17px !important; }
}
.related-articles h3 {
  font-size: 20px;
  color: var(--text-dark);
}

/* ============== 分数线表格（历年录取页 + 志愿系统） ============== */
.zy-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  border: 1px solid var(--border);
}
.zy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.zy-table thead th {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: .02em;
}
.zy-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.zy-table tbody tr:hover { background: var(--paper); }
.zy-table tbody tr:last-child td { border-bottom: none; }

/* ============== 历年升学数据卡片（stats-grid） ============== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(14,95,111,.06), 0 1px 4px rgba(0,0,0,.04);
  border: 1px solid rgba(14,95,111,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14,95,111,.12), 0 4px 12px rgba(0,0,0,.06);
}
/* 左侧彩色竖条 */
.stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--accent) 100%);
  border-radius: 4px 0 0 4px;
}
.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.stat-card-year {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .5px;
}
.stat-card-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(233,78,46,.08);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .3px;
}
.stat-card-hero {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.stat-card-big {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  font-family: 'Plus Jakarta Sans', 'Noto Sans SC', sans-serif;
  letter-spacing: -1.5px;
}
.stat-card-unit {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}
/* 进度条区域 */
.stat-card-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.stat-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  align-items: center;
  gap: 10px;
}
.stat-bar-lbl {
  font-size: 13px;
  color: var(--text-secondary);
}
.stat-bar-lbl b {
  color: var(--text);
  font-weight: 700;
}
.stat-bar-track {
  height: 8px;
  background: #f0f4f5;
  border-radius: 999px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.stat-bar-ug { background: linear-gradient(90deg, var(--brand), #2a9d8f); }
.stat-bar-key { background: linear-gradient(90deg, var(--accent), var(--gold)); }
.stat-bar-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: right;
}
.stat-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(14,95,111,.12);
}

/* 历年数据响应式 */
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-card { padding: 22px 18px; }
  .stat-card-big { font-size: 38px; }
  .stat-bar-row { grid-template-columns: 75px 1fr 35px; gap: 6px; }
}

/* tm-stats 补充（录取统计页 - 保留给教学服务底部用） */
.tm-stat-year {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.tm-stat-breakdown {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}
.tm-stat-breakdown b { color: var(--brand); }
.tm-stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* 分页 */
.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all .2s;
}
.pagination a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.pagination .current {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 600;
}

/* 内页响应式 */
@media (max-width: 760px) {
  .teacher-detail { grid-template-columns: 1fr; }
  .td-photo { max-width: 260px; margin: 0 auto 20px; }
  .course-detail h2 { font-size: 26px; }
  .cd-num { font-size: 28px; }
  .cd-features { grid-template-columns: 1fr; }
  .ad-info-grid { grid-template-columns: 1fr 1fr; }
  .zy-table { font-size: 13px; }
  .zy-table thead th,
  .zy-table tbody td { padding: 10px 12px; }
}

/* ============== 面包屑导航 ============== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.6);
}
.breadcrumb a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: rgba(255,255,255,.9); }

/* ============== Page Hero 增强 ============== */
.page-hero .ph-inner { position: relative; z-index: 2; }
.page-hero .ph-sub {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

/* ============== 文章正文（about/contact 等页面） ============== */
.a-body {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
}
.a-body h2 {
  font-size: 22px;
  color: var(--text-dark);
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--brand);
}
.a-body h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin: 24px 0 10px;
}
.a-body p { margin-bottom: 14px; }
.a-body strong { color: var(--text-dark); }

/* ============== 联系我们页 ============== */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.consult-info h3,
.consult-form-wrap h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.ci-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.ci-item:last-child { border-bottom: none; }
.ci-ico {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--paper);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-item strong {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.ci-item p {
  margin: 0;
  font-size: 15px;
  color: var(--text-dark);
}
.ci-item a { color: var(--brand); text-decoration: none; }
.ci-item a:hover { text-decoration: underline; }

/* 咨询表单区域 */
.consult-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}
/* ganxue_contact_form 表单样式覆盖 */
.consult-form-wrap form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.consult-form-wrap form input[type="text"],
.consult-form-wrap form input[type="tel"],
.consult-form-wrap form input[type="email"],
.consult-form-wrap form textarea,
.consult-form-wrap form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 16px;
  background: var(--paper);
  transition: border-color .2s;
  box-sizing: border-box;
  font-family: inherit;
}
.consult-form-wrap form input:focus,
.consult-form-wrap form textarea:focus,
.consult-form-wrap form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14,95,111,.08);
}
.consult-form-wrap form textarea { min-height: 100px; resize: vertical; }
.consult-form-wrap form button,
.consult-form-wrap form input[type="submit"] {
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
}
.consult-form-wrap form button:hover,
.consult-form-wrap form input[type="submit"]:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14,95,111,.25);
}
.consult-form-wrap form button:disabled,
.consult-form-wrap form button:disabled:hover {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.consult-form-wrap form .ganxue-agree label {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 12px;
  cursor: pointer;
}
.consult-form-wrap form .ganxue-agree input {
  width: auto;
  margin: 3px 0 0;
  accent-color: var(--brand);
  flex-shrink: 0;
}
.consult-form-wrap form .ganxue-agree a {
  color: var(--brand);
  text-decoration: underline;
}

/* 地图占位 */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

/* CTA 区域增强 */
.cta-section {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff;
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.cta-inner h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 8px;
}
.cta-inner p {
  color: rgba(255,255,255,.75);
  max-width: 480px;
  line-height: 1.6;
}
.btn-group {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-white {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--paper);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* 联系页响应式 */
@media (max-width: 760px) {
  .consult-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner p { max-width: 100%; }
  .btn-group { justify-content: center; flex-wrap: wrap; }
  .map-wrap iframe { height: 220px; }
}

/* ==================================================================
 * ✨ 动效增强（2026-08-05 新增）
 * 保持培训教育风格，不加深色科技感
 * ================================================================== */

/* --- ① 数字滚动计数：进入视口后递增 --- */
.ganxecount { display: inline-block; }

/* --- ② 卡片交错入场：reveal 子元素分别延迟，形成楼梯上浮 --- */
.reveal-stagger > * { transition-delay: calc(var(--ri, 0) * 70ms); }
.reveal-stagger > .reveal.reveal-in { transform: translateY(0); }
.reveal-stagger > .reveal { transform: translateY(26px); }

/* 若某容器整体 reveal-in，其内部卡片也依次显现 */
.adv-grid.reveal-in, .course-grid.reveal-in, .sc-grid.reveal-in,
.testimonials-grid.reveal-in, .teacher-grid.reveal-in, .honor-grid.reveal-in,
.process-grid.reveal-in {
  opacity: 1; transform: translateY(0);
}

/* 按钮保留 hover 微抬升（.btn-primary:hover），去除扫光（去 AI 化） */
@media (prefers-reduced-motion: reduce) {
  .ganxecount { transition: none; }
}

/* --- ④ Hero 标题逐字上浮 --- */
.hero-title-anim .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  animation: ganxue-word-up .6s ease forwards;
}
@keyframes ganxue-word-up {
  to { opacity: 1; transform: translateY(0); }
}

/* --- ⑤ 轻量入场动画（首屏加载时播放，轮播切换走原生淡入） --- */
@media (prefers-reduced-motion: no-preference) {
  .hero-slide-content .hero-eyebrow { animation: ganxue-fade-in .9s ease .2s both; }
  .hero-slide-content h1 { animation: ganxue-fade-in .9s ease .35s both; }
  .hero-slide-content .hero-sub { animation: ganxue-fade-in .9s ease .5s both; }
  .hero-slide-content .hero-actions { animation: ganxue-fade-in .9s ease .65s both; }
  .hero-slide-content .hero-stats { animation: ganxue-fade-in .9s ease .8s both; }
}
@keyframes ganxue-fade-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
/* 首屏彩光与按钮扫光已移除（去 AI 化 · 2026-08-15） */
