/* ============================================================
   中创千帆 · 江苏人工智能训练师报名入口
   白色公益风格 · 响应式 · 自研组件样式
   设计基调：克制、信息服务导向，弱化营销视觉
   图标：Font Awesome（国内 BootCDN 的 CSS 图标字体）+ 内联 SVG
   ============================================================ */

/* ---------- 设计变量 ---------- */
:root {
  --primary: #3a6ea5;          /* 沉稳柔和蓝，去除高饱和商业感 */
  --primary-dark: #2c5282;
  --primary-soft: #eef3f8;     /* 极淡蓝灰 */
  --accent: #5a9bb5;
  --text: #2d3340;
  --text-light: #5f6b7a;
  --text-muted: #5f6b7a;
  --border: #e3e8ee;
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --bg-soft-2: #eef2f6;
  --success: #2f9e6f;
  --warning: #c08a2d;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow: 0 3px 12px rgba(15, 23, 42, .06);
  --shadow-lg: 0 8px 24px rgba(15, 23, 42, .08);
  --radius: 12px;
  --radius-sm: 9px;
  --container: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    "Hiragino Sans GB", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- 基础重置 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color .25s ease; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.3; color: #1f2733; font-weight: 700; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- 通用工具类 ---------- */
.mb-6 { margin-bottom: 1.5rem !important; }      /* 24px，footer h3 统一间距 */
.text-center { text-align: center; }

/* 兼容代码片段中出现的类（与你提供的快捷链接 HTML 保持一致） */
.text-gray-400 { color: #9ca3af; }
.hover\:text-blue-400:hover { color: #5a9bb5; }
.transition-all-300 { transition: all .3s ease; }
.mr-2 { margin-right: .5rem; }
.text-xs { font-size: .75rem; }
.opacity-50 { opacity: .5; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-light); }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none !important; }

/* 区块标题 */
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600; font-size: 14px;
  background: var(--primary-soft); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 { font-size: 30px; margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 16px; }

/* 按钮 —— 朴素实心，无强投影、无上浮营销感 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; border-radius: 8px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid transparent; transition: background .25s ease, color .25s ease, border-color .25s ease;
  line-height: 1;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: #fff; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-soft); }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.28); }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* ---------- 顶部公告条 —— 浅底信息条，弱化营销感 ---------- */
.topbar {
  background: var(--bg-soft-2); color: #4a5568; font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; gap: 12px; }
.topbar a { color: var(--primary); }
.topbar a:hover { text-decoration: underline; }
.topbar .tb-left { display: flex; align-items: center; gap: 8px; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

/* ---------- 站点头部 / 导航 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: var(--shadow-sm);
}
.brand .logo svg { width: 24px; height: 24px; }
.brand .name { font-weight: 700; font-size: 17px; color: #1f2733; }
.brand .name small { display: block; font-size: 12px; font-weight: 500; color: var(--text-muted); letter-spacing: .3px; }

.nav-links { display: flex; align-items: center; gap: 3px; flex: 1 1 auto; justify-content: center; flex-wrap: nowrap; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 8px 11px; border-radius: 8px; color: #3d4654; font-weight: 500; font-size: 14.5px;
}
.nav-links > li > a:hover { background: var(--primary-soft); color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; width: 42px; height: 42px; color: var(--primary); cursor: pointer; }

/* ---------- 轮播图（现代 / 简洁 / 留白） ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #f6f9fd 0%, #eaf2fb 100%);
}
.hero::before {
  content: ""; position: absolute; top: -130px; right: -90px; width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(58,110,165,.12) 0%, rgba(58,110,165,0) 68%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -150px; left: -110px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,110,165,.08) 0%, rgba(58,110,165,0) 68%);
  pointer-events: none;
}
.slides { position: relative; z-index: 1; }
.slide {
  display: none; min-height: 480px; align-items: center;
  padding: 78px 0; position: relative;
}
.slide.active { display: flex; animation: heroIn .6s cubic-bezier(.22,.61,.36,1) both; }
@keyframes heroIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }
.slide .container { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.slide-content .tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--primary); background: var(--primary-soft); padding: 7px 15px; border-radius: 999px;
  margin-bottom: 20px; letter-spacing: .2px;
}
.slide-content h1 { font-size: 42px; line-height: 1.18; margin-bottom: 18px; color: #1f2733; font-weight: 700; letter-spacing: -.3px; }
.slide-content h1 .hl { color: var(--primary); }
.slide-content p { font-size: 17px; line-height: 1.75; color: #4a5568; margin-bottom: 28px; max-width: 520px; }
.slide-content .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-art {
  background: #fff; border-radius: 20px; box-shadow: 0 18px 48px rgba(31,39,51,.10);
  padding: 30px; display: flex; flex-direction: column; border: 1px solid rgba(58,110,165,.10);
}
.slide-art .art-row {
  display: flex; align-items: center; gap: 16px; padding: 16px 4px;
  border-bottom: 1px solid #eef2f7;
}
.slide-art .art-row:last-of-type { border-bottom: none; }
.slide-art .art-ico {
  width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--primary); background: var(--primary-soft); flex-shrink: 0; font-size: 18px;
}
.slide-art .art-row b { font-size: 15px; display: block; color: #1f2733; }
.slide-art .art-row span { font-size: 13px; color: var(--text-light); }
.slide-art .art-foot { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-light); margin-top: 6px; padding-top: 16px; border-top: 1px solid #eef2f7; }
.slide-art .art-foot i { color: var(--primary); }

/* 轮播控制 */
.hero-dots { position: absolute; bottom: 26px; left: 0; right: 0; display: flex; justify-content: center; gap: 9px; z-index: 3; }
.hero-dots button {
  width: 8px; height: 8px; border-radius: 999px; border: none; background: rgba(58,110,165,.28);
  cursor: pointer; transition: width .3s ease, background .3s ease; padding: 0;
}
.hero-dots button.active { background: var(--primary); width: 26px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid rgba(58,110,165,.18); background: rgba(255,255,255,.8);
  color: var(--primary); box-shadow: 0 6px 18px rgba(31,39,51,.10); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.06); box-shadow: 0 10px 24px rgba(58,110,165,.30); }
.hero-arrow.prev { left: 22px; }
.hero-arrow.next { right: 22px; }

/* ---------- 重要提示 —— 保留警示语义，降饱和 ---------- */
.notice {
  background: #fdfaf0; border: 1px solid #eadfc2; border-left: 4px solid var(--warning);
  border-radius: var(--radius-sm); padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.notice .n-ico { color: var(--warning); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.notice .n-body { font-size: 14px; color: #6b5a30; }
.notice .n-body b { color: #5a4a22; }
.notice-wrap { margin-top: -32px; position: relative; z-index: 5; }

/* ---------- 服务导航 —— 浅底图标，去除渐变与上浮 ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: border-color .25s ease, box-shadow .25s ease; text-align: left;
}
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.service-card .s-ico {
  width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 20px; margin-bottom: 16px;
  background: var(--primary-soft);
}
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-light); }
.service-card.disabled { background: #f5f7fa; border-color: #e8edf2; color: #b3bcc7; cursor: not-allowed; }
.service-card.disabled:hover { border-color: #e8edf2; box-shadow: none; }
.service-card.disabled .s-ico { background: #eef1f5; color: #c2cad3; }
.service-card.disabled p { color: #aab4bf; }

/* ---------- 资讯动态 —— 同色系深浅，去除四色花哨 ---------- */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.news-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: box-shadow .25s ease;
}
.news-card:hover { box-shadow: var(--shadow); }
.news-thumb { height: 140px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 36px; position: relative; background: var(--primary); }
.news-thumb.c1 { background: #3a6ea5; } /* 常规考区资讯 */
.news-thumb.c2 { background: #2c5282; } /* 常规考区资讯（深） */
.news-thumb.c3 { background: #2e7d6b; } /* 新兴方向：AI 智能体应用工程师 */
.news-thumb.c4 { background: #256b5c; } /* 新兴方向：AIGC 应用工程师 */
.news-thumb .badge { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.28); color: #fff; font-size: 12px; padding: 4px 10px; border-radius: 999px; }
.news-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-body .date { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.news-body h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.news-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; flex: 1; }
.news-body .more { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.news-body .more:hover { gap: 10px; }

/* ---------- 职业画像 / 双栏 —— 浅色卡片，去除深蓝块 ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split .visual {
  background: #eef4f9; border: 1px solid var(--border); border-radius: 16px; padding: 40px; color: var(--text);
  position: relative; overflow: hidden;
}
.split .visual h3 { color: var(--text); font-size: 22px; margin-bottom: 18px; }
.split .visual ul li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.split .visual ul li:last-child { border-bottom: none; }
.split .visual ul li i { color: var(--primary); }
.feature-list li { display: flex; gap: 14px; padding: 12px 0; align-items: flex-start; }
.feature-list li .f-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-list li b { display: block; font-size: 16px; margin-bottom: 2px; }
.feature-list li span { color: var(--text-light); font-size: 14px; }

/* ---------- 评价机构表格 ---------- */
.table-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table-wrap thead th { background: var(--primary-soft); color: var(--primary-dark); text-align: left; padding: 15px 18px; font-weight: 700; white-space: nowrap; }
.table-wrap tbody td { padding: 14px 18px; border-top: 1px solid var(--border); color: #374151; }
.table-wrap tbody tr:hover { background: var(--bg-soft); }
.table-wrap .org-name { font-weight: 600; color: #1f2733; }
.table-wrap .org-no { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--text-light); font-size: 13px; }

/* ---------- 城市导航 ---------- */
.city-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.city-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 14px;
  text-align: center; transition: border-color .25s ease, color .25s ease; color: #3d4654; font-weight: 600;
}
.city-card:hover { background: var(--primary-soft); border-color: var(--primary); color: var(--primary); }
.city-card small { display: block; font-size: 12px; font-weight: 400; color: var(--text-muted); margin-top: 4px; }
.city-card.disabled { background: #f5f7fa; border-color: #e8edf2; color: #b3bcc7; cursor: not-allowed; }
.city-card.disabled:hover { background: #f5f7fa; border-color: #e8edf2; color: #b3bcc7; }
.city-card.disabled small { color: #aab4bf; }

/* ---------- 关于平台 ---------- */
.about-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.about-card .stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; }
.about-card .stat { text-align: center; padding: 18px; background: var(--bg-soft); border-radius: var(--radius-sm); }
.about-card .stat b { display: block; font-size: 28px; color: var(--primary); }
.about-card .stat span { font-size: 13px; color: var(--text-light); }

/* ---------- 联系方式 —— 浅色信息卡，去除深蓝营销 banner ---------- */
.contact-cta {
  background: #eef4f9; border: 1px solid var(--border);
  border-radius: 16px; padding: 44px; color: var(--text); position: relative; overflow: hidden;
}
.contact-cta h2 { color: var(--text); font-size: 26px; margin-bottom: 10px; }
.contact-cta p { color: var(--text-light); margin-bottom: 26px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; display: flex; gap: 14px; align-items: center; }
.contact-item .c-ico { width: 44px; height: 44px; border-radius: 11px; background: var(--primary-soft); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--primary); flex-shrink: 0; }
.contact-item b { display: block; font-size: 15px; color: var(--text); }
.contact-item span { font-size: 13px; color: var(--text-light); }

/* ---------- 页脚 —— 浅灰底信息门户风，去除深色商业页脚 ---------- */
.site-footer { background: #f1f4f8; color: #4a5568; padding: 56px 0 0; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px 44px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }

/* 品牌区 */
.footer-brand .brand-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .logo { width: 40px; height: 40px; border-radius: 10px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; flex: none; }
.footer-brand .logo svg { width: 22px; height: 22px; }
.footer-brand .brand-name { font-size: 17px; font-weight: 700; color: var(--text); }
.footer-brand p { font-size: 14px; color: #5f6b7a; line-height: 1.85; margin-bottom: 12px; }
.footer-brand .brand-meta { font-size: 13px; color: #8a94a6; margin-bottom: 0; }

/* 链接列（站点导航 / 官方查询）统一图标样式 */
.site-footer h3,
.footer-col > h3 {
  color: var(--text); font-size: 16px; font-weight: 700; margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: #5f6b7a; font-size: 14px; display: inline-flex; align-items: center; transition: color .25s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-col ul li a i { margin-right: 8px; font-size: 11px; opacity: .55; color: var(--primary); }

/* 联系与咨询 */
.footer-contact-col { display: flex; flex-direction: column; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-light); margin-bottom: 13px; }
.footer-contact li i { color: var(--primary); margin-top: 4px; width: 16px; flex: none; }
.footer-contact li a { color: var(--primary); }
.footer-qr { margin-top: 16px; display: flex; gap: 12px; align-items: center; }
.footer-qr img { width: 104px; height: 104px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 5px; flex: none; cursor: zoom-in; }
.footer-qr p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.footer-qr p .zoom-hint { display: inline-block; margin-top: 4px; color: var(--primary); font-size: 12px; }

/* 二维码放大灯箱（点击页脚/备考二维码打开全分辨率预览，便于扫码） */
.qr-lightbox {
  position: fixed; inset: 0; z-index: 9999; display: none;
  align-items: center; justify-content: center;
  background: rgba(15, 23, 42, .8); padding: 24px;
  flex-direction: column;
}
.qr-lightbox.open { display: flex; }
.qr-lightbox img {
  max-width: min(88vw, 460px); max-height: 78vh; width: auto; height: auto;
  background: #fff; border-radius: 14px; padding: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
}
.qr-lightbox .lb-close {
  position: absolute; top: 16px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); border: none; color: #fff;
  font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.qr-lightbox .lb-close:hover { background: rgba(255, 255, 255, .28); }
.qr-lightbox .lb-tip { margin-top: 16px; color: rgba(255, 255, 255, .85); font-size: 13px; }

/* 底部版权 + 免责声明 */
.footer-bottom { padding: 22px 0; font-size: 13px; color: #64748b; }
.footer-bottom .copyright { text-align: center; margin-bottom: 10px; }
.footer-bottom .legal { text-align: center; line-height: 1.9; font-size: 12px; color: #5b6675; max-width: 920px; margin: 0 auto; }

/* ---------- 返回顶部 ---------- */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; border: none; box-shadow: var(--shadow); cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 16px; z-index: 60; transition: background .25s; }
.to-top.show { display: flex; }
.to-top:hover { background: var(--primary-dark); }

/* ---------- 内页通用 ---------- */
.page-hero { background: #eef4f9; padding: 56px 0 48px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: 32px; margin-bottom: 10px; }
.page-hero p { color: #4a5568; font-size: 16px; max-width: 720px; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--primary); }
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin: 36px 0 14px; padding-left: 12px; border-left: 4px solid var(--primary); }
.prose h3 { font-size: 19px; margin: 26px 0 10px; }
.prose p, .prose li { color: #374151; margin-bottom: 12px; }
.prose ul.dot li { position: relative; padding-left: 22px; margin-bottom: 10px; }
.prose ul.dot li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.prose .callout { background: var(--primary-soft); border-left: 4px solid var(--primary); border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 18px 0; color: #2c5282; font-size: 14px; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.prose table th, .prose table td { border: 1px solid var(--border); padding: 11px 14px; text-align: left; }
.prose table th { background: var(--primary-soft); color: var(--primary-dark); }
.sitemap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sitemap-link { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; transition: border-color .25s, background .25s; }
.sitemap-link:hover { border-color: var(--primary); background: var(--primary-soft); }
.sitemap-link .si { width: 38px; height: 38px; border-radius: 10px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sitemap-link b { display: block; font-size: 15px; }
.sitemap-link span { font-size: 13px; color: var(--text-light); }

/* ---------- 资讯"新兴方向"差异化描边徽章（C4） ---------- */
.news-thumb .badge.badge-new {
  background: transparent; color: #fff;
  border: 1px solid rgba(255, 255, 255, .9);
}

/* ---------- 服务卡"即将上线"角标（B2） ---------- */
.service-card { position: relative; }
.service-card .soon {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 600; color: var(--warning);
  background: #fdfaf0; border: 1px solid #eadfc2;
  padding: 3px 9px; border-radius: 999px;
}

/* ---------- 报考条件自测（A2，仅供参考） ---------- */
.selftest {
  max-width: 860px; margin: 0 auto; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 32px;
}
.st-q { padding: 18px 0; border-bottom: 1px solid var(--border); }
.st-q:last-of-type { border-bottom: none; }
.st-q-title { font-weight: 600; font-size: 16px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: var(--text); }
.st-q-title i { color: var(--primary); }
.st-opts { display: flex; gap: 12px; flex-wrap: wrap; }
.st-opt {
  padding: 10px 18px; border: 1px solid var(--border); border-radius: 999px;
  background: #fff; color: var(--text-light); font-size: 14px; cursor: pointer;
  transition: all .2s ease; font-family: inherit;
}
.st-opt:hover { border-color: var(--primary); color: var(--primary); }
.st-opt.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.st-result {
  margin-top: 22px; background: var(--primary-soft); border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0; padding: 16px 18px; color: #2c5282; font-size: 14px;
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.7;
}
.st-result i { margin-top: 3px; flex-shrink: 0; }
.st-actions { margin-top: 20px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 侧边锚点快捷导航（D3） ---------- */
.anchor-nav {
  position: fixed; left: 18px; top: 50%; transform: translateY(-50%);
  z-index: 40; display: flex; flex-direction: column; gap: 8px;
}
.anchor-nav a {
  display: flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; color: var(--text-light); box-shadow: var(--shadow-sm);
  transition: all .2s ease; white-space: nowrap;
}
.anchor-nav a i { font-size: 12px; }
.anchor-nav a.active { background: var(--primary); color: #fff; border-color: var(--primary); }
@media (max-width: 1180px) { .anchor-nav { display: none; } }

/* ---------- 备考资料包 专栏 ---------- */
.materials-wrap {
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items: center;
}
.materials-steps {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 32px; box-shadow: var(--shadow-sm);
}
.materials-steps .step-list { counter-reset: step; }
.materials-steps .step-list li {
  display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--border);
}
.materials-steps .step-list li:last-child { border-bottom: none; padding-bottom: 0; }
.materials-steps .step-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.materials-steps .step-list li b { display: block; font-size: 16px; margin-bottom: 4px; color: var(--text); }
.materials-steps .step-list li p { font-size: 14px; color: var(--text-light); margin: 0; }
.kw {
  display: inline-block; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--primary-soft); color: var(--primary-dark);
  padding: 2px 8px; border-radius: 6px; font-size: 13px; border: 1px solid var(--border);
}
.materials-qr { text-align: center; }
.qr-box {
  width: 220px; margin: 0 auto 14px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-sm);
}
.qr-box img { width: 100%; height: auto; border-radius: 6px; }
.qr-cap { font-size: 15px; font-weight: 600; color: var(--text); display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.qr-cap i { color: var(--success); }
.qr-sub { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
/* 导航：偏窄桌面/平板即切换为下拉菜单，避免整行溢出被截断 */
@media (max-width: 1160px) {
  .nav-links { position: fixed; top: 70px; left: 16px; right: 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; padding: 12px; gap: 2px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 14px; justify-content: flex-start; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}
@media (max-width: 860px) {
  .nav-cta .btn-outline { display: none; }
  .slide .container { grid-template-columns: 1fr; }
  .slide-art { display: flex; margin-top: 28px; }
  .slide { min-height: auto; padding: 50px 0; }
  .slide-content h1 { font-size: 30px; }
  .notice-wrap { margin-top: 0; }
  .split, .news-grid, .sitemap-grid, .materials-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-card .stat-row { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 52px 0; }
  .section-head h2 { font-size: 24px; }
}
@media (max-width: 560px) {
  .service-grid, .city-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-cta { padding: 32px 22px; }
  .slide-content h1 { font-size: 26px; }
  .hero-arrow { display: none; }
}
