/* ============================================================
 * 白水源 · 南疆文化语料库 — 统一设计系统
 * 意象：水 / 源流 —— 青蓝水系渐变 + 龟兹石窟暖金点缀
 * ============================================================ */

:root {
  /* 水系主色 */
  --water-deep: #0b2a4a;
  --water-mid: #15709e;
  --water-bright: #3ec6d8;
  --water-mist: #e9f3fa;
  --water-foam: #f2f9fc;
  /* 石窟暖金 / 赭石 */
  --gold: #c4a35a;
  --gold-deep: #a3773b;
  --gold-mist: #f7efe0;
  /* 中性 */
  --ink: #14283c;
  --ink-2: #35506b;
  --ink-3: #647f95;
  --line: #dcebf0;
  --line-soft: #ecf4f7;
  --card: #ffffff;
  --bg: #f6fafb;
  /* 阴影与圆角 */
  --sh-sm: 0 1px 3px rgba(11, 42, 74, 0.07);
  --sh-md: 0 6px 20px rgba(11, 42, 74, 0.09);
  --sh-lg: 0 16px 48px rgba(11, 42, 74, 0.14);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  /* 字体 */
  --serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

::selection { background: rgba(127, 209, 232, 0.45); }

/* ---------- 顶部导航（全站共用） ---------- */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand .logo {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(140deg, var(--water-deep), var(--water-mid) 62%, var(--water-bright));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(21, 112, 158, 0.35);
}
.nav-brand .logo svg { width: 22px; height: 22px; }
.nav-brand .bt { font-family: var(--serif); font-size: 20px; font-weight: 700; letter-spacing: 2px; color: var(--water-deep); }
.nav-brand .bs { font-size: 11px; color: var(--ink-3); letter-spacing: 1px; margin-left: 2px; border-left: 1px solid var(--line); padding-left: 12px; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  padding: 8px 16px; border-radius: 99px; font-size: 14.5px; color: var(--ink-2);
  transition: all 0.25s ease;
}
.nav-links a:hover { color: var(--water-deep); background: var(--water-mist); }
.nav-links a.active {
  color: #fff; background: linear-gradient(135deg, var(--water-deep), var(--water-mid));
  box-shadow: 0 4px 12px rgba(21, 112, 158, 0.3);
}

.page-body { padding-top: 68px; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ---------- 页脚（全站共用） ---------- */
.site-footer {
  margin-top: 96px;
  background: linear-gradient(160deg, #081f38, var(--water-deep) 55%, #123f66);
  color: #cfe8ef;
  position: relative; overflow: hidden;
}
.footer-verse {
  max-width: 1280px; margin: 0 auto; padding: 56px 40px 36px;
  text-align: center; position: relative; z-index: 2;
}
.footer-verse .fv-main {
  font-family: var(--serif); font-size: 22px; letter-spacing: 6px; color: #fff;
  margin-bottom: 18px;
}
.footer-verse .fv-flow {
  font-family: var(--serif); font-size: 13.5px; letter-spacing: 1px; line-height: 2.1;
  color: rgba(207, 232, 239, 0.85); max-width: 860px; margin: 0 auto;
}
.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 1280px; margin: 0 auto; padding: 22px 40px 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(207, 232, 239, 0.6); position: relative; z-index: 2;
}
.footer-waves { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }

/* ---------- 通用版式 ---------- */
.section { margin-top: 88px; }
.sec-head { text-align: center; margin-bottom: 44px; }
.sec-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: 3px; color: var(--water-mid);
  text-transform: uppercase; margin-bottom: 12px; font-weight: 600;
}
.sec-kicker::before, .sec-kicker::after {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--water-bright));
}
.sec-kicker::after { background: linear-gradient(90deg, var(--water-bright), transparent); }
.sec-title { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--ink); letter-spacing: 2px; }
.sec-sub { margin-top: 12px; color: var(--ink-3); font-size: 15px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ============================================================
 * 首页
 * ============================================================ */

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #071a30 0%, var(--water-deep) 38%, var(--water-mid) 78%, #35a4c6 100%);
  color: #fff; padding: 108px 40px 150px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 3; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 4px; color: var(--water-bright);
  border: 1px solid rgba(127, 209, 232, 0.4); border-radius: 99px;
  padding: 7px 18px; margin-bottom: 26px; background: rgba(7, 26, 48, 0.3);
}
.hero-title {
  font-family: var(--serif); font-size: 76px; font-weight: 700; letter-spacing: 14px;
  line-height: 1.1; text-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}
.hero-title .accent { color: var(--water-bright); }
.hero-sub {
  font-family: var(--serif); font-size: 22px; letter-spacing: 5px;
  margin-top: 20px; color: rgba(255, 255, 255, 0.92);
}
.hero-desc { margin-top: 22px; max-width: 760px; font-size: 15.5px; line-height: 1.9; color: rgba(226, 244, 249, 0.82); }
.hero-desc em { font-style: normal; color: var(--water-bright); }
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 99px; font-size: 15px; font-weight: 600;
  border: none; transition: all 0.28s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d9bd7e);
  color: #3a2c10; box-shadow: 0 8px 24px rgba(196, 163, 90, 0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(196, 163, 90, 0.5); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.1); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
.btn-water {
  background: linear-gradient(135deg, var(--water-mid), var(--water-deep));
  color: #fff; box-shadow: 0 6px 18px rgba(21, 112, 158, 0.35);
}
.btn-water:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(21, 112, 158, 0.45); }

/* 命名释义（Hero 内三卡） */
.hero-meaning { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; max-width: 1080px; }
.mean-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(127, 209, 232, 0.25);
  border-radius: var(--r-md); padding: 24px 26px;
  backdrop-filter: blur(8px); transition: all 0.3s ease;
}
.mean-card:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-4px); border-color: rgba(127, 209, 232, 0.5); }
.mean-card h4 { font-family: var(--serif); font-size: 19px; color: var(--water-bright); letter-spacing: 2px; margin-bottom: 8px; display: flex; align-items: baseline; gap: 8px; }
.mean-card h4 span { font-size: 12px; color: var(--gold); letter-spacing: 1px; }
.mean-card p { font-size: 13.5px; color: rgba(226, 244, 249, 0.78); line-height: 1.8; }

/* 指标条（骑跨 Hero 底部） */
.stats-bar {
  max-width: 1080px; margin: -64px auto 0; position: relative; z-index: 5;
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  display: grid; grid-template-columns: repeat(5, 1fr);
  overflow: hidden; border: 1px solid var(--line-soft);
}
.stat-cell { padding: 30px 20px 26px; text-align: center; position: relative; }
.stat-cell + .stat-cell::before {
  content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: var(--line);
}
.stat-num { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--water-deep); line-height: 1.1; }
.stat-num small { font-size: 15px; color: var(--water-mid); margin-left: 2px; }
.stat-label { margin-top: 6px; font-size: 13px; color: var(--ink-3); letter-spacing: 1px; }

/* 一源八流 */
.flow-map { position: relative; margin-top: 20px; }
.flow-source {
  width: 150px; height: 150px; margin: 0 auto 8px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #4fb3d8, var(--water-mid) 45%, var(--water-deep) 90%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 0 0 12px rgba(127, 209, 232, 0.15), 0 0 0 26px rgba(127, 209, 232, 0.07), var(--sh-lg);
  position: relative; z-index: 2;
}
.flow-source .fs-char { font-family: var(--serif); font-size: 46px; font-weight: 700; line-height: 1; }
.flow-source .fs-txt { font-size: 12px; letter-spacing: 3px; margin-top: 6px; opacity: 0.9; }
.flow-connector { display: flex; justify-content: center; margin: -4px 0 20px; }
.sublib-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sublib-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 26px 24px 22px; position: relative; overflow: hidden;
  transition: all 0.32s cubic-bezier(0.2, 0.7, 0.3, 1);
  display: flex; flex-direction: column; gap: 10px;
}
.sublib-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--water-mid), var(--water-bright));
  opacity: 0; transition: opacity 0.3s;
}
.sublib-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--water-bright); }
.sublib-card:hover::before { opacity: 1; }
.sublib-top { display: flex; align-items: center; gap: 14px; }
.sublib-alias {
  width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0;
  font-family: var(--serif); font-size: 32px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--water-mid), var(--water-deep));
  box-shadow: 0 6px 14px rgba(11, 42, 74, 0.25);
}
.sublib-card:nth-child(even) .sublib-alias { background: linear-gradient(145deg, #35a4c6, var(--water-mid)); }
.sublib-name { font-family: var(--serif); font-size: 16.5px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.sublib-tagline { font-size: 12px; color: var(--gold-deep); letter-spacing: 1px; margin-top: 3px; }
.sublib-desc { font-size: 13px; color: var(--ink-3); line-height: 1.75; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sublib-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11.5px; padding: 3px 10px; border-radius: 99px;
  background: var(--water-mist); color: var(--water-deep); border: 1px solid rgba(21, 112, 158, 0.15);
}
.tag.gold { background: var(--gold-mist); color: var(--gold-deep); border-color: rgba(196, 163, 90, 0.25); }
.sublib-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed var(--line); padding-top: 12px; }
.sublib-count { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--water-deep); }
.sublib-count small { font-size: 11px; color: var(--ink-3); font-weight: 400; font-family: var(--sans); margin-left: 3px; }
.sublib-go { font-size: 12.5px; color: var(--water-mid); font-weight: 600; }
.sublib-card:hover .sublib-go { color: var(--water-deep); }

/* 数据集 → 场景 联动 */
.linkage-flow { display: grid; grid-template-columns: 1fr 56px 1fr 56px 1.15fr; gap: 0; align-items: stretch; margin-top: 8px; }
.lk-col { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.lk-arrow { display: flex; align-items: center; justify-content: center; color: var(--water-bright); }
.lk-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 20px 22px; box-shadow: var(--sh-sm); transition: all 0.3s ease; position: relative;
}
.lk-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--water-bright); }
.lk-dim { font-size: 11.5px; color: var(--gold-deep); letter-spacing: 2px; font-weight: 600; margin-bottom: 6px; }
.lk-name { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.lk-meta { font-size: 12px; color: var(--ink-3); line-height: 1.7; }
.lk-app { cursor: pointer; border-left: 4px solid var(--gold); }
.lk-app:hover { border-left-color: var(--gold-deep); }
.lk-funcs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.lk-funcs .tag { font-size: 11px; }

/* 数据服务 */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card {
  background: var(--card); border-radius: var(--r-md); border: 1px solid var(--line-soft);
  padding: 30px 26px; transition: all 0.3s ease; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card .svc-desc { flex: 1; }
.svc-card::after {
  content: ""; position: absolute; right: -30px; bottom: -30px; width: 110px; height: 110px;
  border-radius: 50%; background: radial-gradient(circle, rgba(127, 209, 232, 0.18), transparent 70%);
  transition: all 0.4s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--water-bright); }
.svc-card:hover::after { transform: scale(1.7); }
.svc-icon {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 16px;
  background: linear-gradient(145deg, var(--water-mist), #d6eef6);
  display: flex; align-items: center; justify-content: center; color: var(--water-mid);
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-name { font-family: var(--serif); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.svc-desc { font-size: 13px; color: var(--ink-3); line-height: 1.75; }

/* 公告 */
.notice-panel { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); box-shadow: var(--sh-sm); overflow: hidden; }
.notice-item {
  display: flex; align-items: center; gap: 18px; padding: 19px 30px;
  border-bottom: 1px solid var(--line-soft); transition: background 0.25s;
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--water-foam); }
.notice-date { font-family: var(--serif); color: var(--water-mid); font-size: 14px; white-space: nowrap; }
.notice-badge { font-size: 11px; padding: 2px 10px; border-radius: 99px; background: var(--gold-mist); color: var(--gold-deep); white-space: nowrap; }
.notice-badge.blue { background: var(--water-mist); color: var(--water-deep); }
.notice-title { font-size: 14.5px; color: var(--ink-2); flex-grow: 1; }
.notice-item:hover .notice-title { color: var(--water-deep); }

/* ============================================================
 * 语料广场
 * ============================================================ */
.plaza-head {
  background: linear-gradient(150deg, var(--water-deep), var(--water-mid) 80%, #35a4c6);
  color: #fff; padding: 56px 40px 92px; position: relative; overflow: hidden;
}
.plaza-head h1 { font-family: var(--serif); font-size: 38px; letter-spacing: 4px; position: relative; z-index: 2; }
.plaza-head p { margin-top: 10px; color: rgba(226, 244, 249, 0.8); font-size: 14.5px; position: relative; z-index: 2; }

.filter-panel {
  max-width: 1280px; margin: -56px auto 0; position: relative; z-index: 5;
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 24px 28px; border: 1px solid var(--line-soft);
}
.search-row { display: flex; gap: 12px; }
.search-input {
  flex-grow: 1; border: 1.5px solid var(--line); border-radius: 99px;
  padding: 13px 24px; font-size: 15px; outline: none; transition: all 0.25s; color: var(--ink);
  background: var(--water-foam);
}
.search-input:focus { border-color: var(--water-mid); background: #fff; box-shadow: 0 0 0 4px rgba(127, 209, 232, 0.18); }
.filter-row { display: flex; gap: 20px; margin-top: 18px; flex-wrap: wrap; }
.filter-group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label { font-size: 12.5px; color: var(--ink-3); font-weight: 600; letter-spacing: 1px; }
.chip {
  font-size: 12.5px; padding: 6px 14px; border-radius: 99px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-2); transition: all 0.22s;
}
.chip:hover { border-color: var(--water-mid); color: var(--water-deep); }
.chip.on {
  background: linear-gradient(135deg, var(--water-deep), var(--water-mid));
  color: #fff; border-color: transparent; box-shadow: 0 3px 10px rgba(21, 112, 158, 0.3);
}
.result-meta { margin: 30px 0 18px; font-size: 13.5px; color: var(--ink-3); }
.result-meta b { color: var(--water-deep); font-family: var(--serif); font-size: 16px; }

.corpus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 10px; }
.corpus-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 22px 22px 18px; cursor: pointer; transition: all 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
  display: flex; flex-direction: column; gap: 10px; position: relative;
}
.corpus-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--water-bright); }
.cc-head { display: flex; align-items: center; gap: 10px; }
.cc-sublib {
  font-size: 11.5px; font-weight: 600; color: var(--water-deep); background: var(--water-mist);
  border-radius: 6px; padding: 3px 9px; display: inline-flex; align-items: center; gap: 5px;
}
.cc-sublib i { font-style: normal; font-family: var(--serif); font-weight: 700; }
.cc-mod { margin-left: auto; font-size: 11px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 5px; }
.cc-mod .mod-ico {
  width: 22px; height: 22px; border-radius: 6px; font-size: 11px;
  background: var(--gold-mist); color: var(--gold-deep);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}
.cc-title { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.5; }
.corpus-card:hover .cc-title { color: var(--water-deep); }
.cc-abstract { font-size: 12.5px; color: var(--ink-3); line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }
.cc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.cc-tags .tag { font-size: 10.5px; padding: 2px 8px; }
.cc-foot { display: flex; align-items: center; gap: 10px; border-top: 1px dashed var(--line); padding-top: 11px; font-size: 11.5px; color: var(--ink-3); }
.q-badge { font-weight: 700; color: var(--water-mid); font-family: var(--serif); font-size: 13px; }
.lic-badge { padding: 2px 8px; border-radius: 99px; font-size: 10.5px; }
.lic-公益授权 { background: #e8f5e9; color: #2e7d32; }
.lic-学术授权 { background: var(--water-mist); color: var(--water-deep); }
.lic-商业授权 { background: var(--gold-mist); color: var(--gold-deep); }
.cc-lang { margin-left: auto; }

.corpus-card.placeholder {
  border-style: dashed; border-color: var(--line); background: rgba(255, 255, 255, 0.55);
  cursor: default; justify-content: center; align-items: center; text-align: center; min-height: 200px;
}
.corpus-card.placeholder:hover { transform: none; box-shadow: var(--sh-sm); border-color: var(--line); }
.ph-icon { font-family: var(--serif); font-size: 30px; color: var(--water-bright); }
.ph-txt { font-size: 13px; color: var(--ink-3); margin-top: 8px; }
.ph-txt b { color: var(--water-mid); }

/* 详情抽屉 */
.drawer-mask {
  position: fixed; inset: 0; background: rgba(7, 26, 48, 0.45); backdrop-filter: blur(4px);
  z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.drawer-mask.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: -560px; width: 540px; max-width: 92vw; height: 100vh;
  background: #fff; z-index: 1001; box-shadow: -20px 0 60px rgba(7, 26, 48, 0.25);
  transition: right 0.38s cubic-bezier(0.2, 0.7, 0.3, 1); overflow-y: auto;
}
.drawer.open { right: 0; }
.drawer-hero { background: linear-gradient(150deg, var(--water-deep), var(--water-mid)); color: #fff; padding: 34px 34px 28px; position: relative; }
.drawer-close {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
  border: none; background: rgba(255, 255, 255, 0.15); color: #fff; font-size: 17px;
  transition: background 0.25s;
}
.drawer-close:hover { background: rgba(255, 255, 255, 0.3); }
.drawer-id { font-size: 12px; letter-spacing: 2px; color: var(--water-bright); margin-bottom: 10px; }
.drawer-title { font-family: var(--serif); font-size: 21px; font-weight: 700; line-height: 1.55; padding-right: 34px; }
.drawer-body { padding: 28px 34px 40px; }
.meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin: 20px 0; }
.meta-cell { background: var(--water-foam); border-radius: var(--r-sm); padding: 12px 15px; }
.meta-cell .mk { font-size: 11px; color: var(--ink-3); letter-spacing: 1px; margin-bottom: 4px; }
.meta-cell .mv { font-size: 13.5px; color: var(--ink); font-weight: 600; line-height: 1.5; }
.d-section { margin-top: 24px; }
.d-section h5 { font-family: var(--serif); font-size: 15px; color: var(--water-deep); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.d-section h5::before { content: ""; width: 4px; height: 15px; border-radius: 2px; background: linear-gradient(var(--water-mid), var(--water-bright)); }
.d-section p { font-size: 13.5px; color: var(--ink-2); line-height: 1.9; }
.q-meter { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.q-bar { flex-grow: 1; height: 8px; border-radius: 99px; background: var(--line-soft); overflow: hidden; }
.q-bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--water-mid), var(--water-bright)); }
.q-num { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--water-deep); }
.app-link-box { background: var(--gold-mist); border: 1px solid rgba(196, 163, 90, 0.3); border-radius: var(--r-md); padding: 18px 20px; margin-top: 12px; }
.app-link-box .al-app { font-family: var(--serif); font-weight: 700; color: var(--gold-deep); font-size: 15px; margin-bottom: 6px; }
.app-link-box p { font-size: 13px; color: #6b5a35; line-height: 1.85; }

/* ============================================================
 * 应用场景页
 * ============================================================ */
.apps-hero {
  background: linear-gradient(150deg, #071a30, var(--water-deep) 55%, var(--water-mid));
  color: #fff; padding: 60px 40px 70px; position: relative; overflow: hidden;
}
.apps-hero h1 { font-family: var(--serif); font-size: 38px; letter-spacing: 4px; position: relative; z-index: 2; }
.apps-hero p { margin-top: 12px; max-width: 780px; color: rgba(226, 244, 249, 0.82); font-size: 14.5px; line-height: 1.85; position: relative; z-index: 2; }

.app-section { margin-top: 80px; scroll-margin-top: 90px; }
.app-banner {
  border-radius: var(--r-lg); overflow: hidden; color: #fff;
  background: linear-gradient(140deg, var(--water-deep), #1d6b85 60%, var(--water-mid));
  padding: 38px 44px; position: relative;
}
.app-banner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 209, 232, 0.25), transparent 68%);
}
.app-banner .ab-dim { font-size: 12.5px; letter-spacing: 4px; color: var(--water-bright); font-weight: 600; }
.app-banner h2 { font-family: var(--serif); font-size: 30px; letter-spacing: 2px; margin: 8px 0 12px; position: relative; z-index: 2; }
.app-banner .ab-aud { font-size: 13px; color: rgba(226, 244, 249, 0.85); margin-bottom: 14px; position: relative; z-index: 2; }
.app-banner .ab-aud b { color: var(--gold); font-weight: 600; }
.app-banner .ab-desc { font-size: 14px; line-height: 1.9; color: rgba(226, 244, 249, 0.85); max-width: 900px; position: relative; z-index: 2; }
.app-banner .ab-pain { margin-top: 12px; font-size: 13px; color: #ffd9a8; position: relative; z-index: 2; }

.app-cols { display: grid; grid-template-columns: 380px 1fr; gap: 24px; margin-top: 26px; align-items: start; }

.dataset-card {
  background: linear-gradient(160deg, #fff, var(--water-foam));
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 26px; box-shadow: var(--sh-sm);
}
.dataset-card .dc-k { font-size: 11.5px; letter-spacing: 2px; color: var(--water-mid); font-weight: 700; }
.dataset-card h3 { font-family: var(--serif); font-size: 19px; margin: 6px 0 10px; color: var(--ink); }
.dataset-card p { font-size: 13px; color: var(--ink-2); line-height: 1.85; }
.dataset-card .dc-scale { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 12.5px; color: var(--water-deep); font-weight: 600; }

.app-corpus-list { display: flex; flex-direction: column; gap: 10px; }
.ac-item {
  background: var(--card); border: 1.5px solid var(--line-soft); border-radius: var(--r-sm);
  padding: 14px 18px; cursor: pointer; transition: all 0.25s ease;
  display: flex; align-items: center; gap: 14px;
}
.ac-item:hover { border-color: var(--water-bright); transform: translateX(4px); }
.ac-item.sel {
  border-color: var(--water-mid); background: linear-gradient(90deg, var(--water-mist), #fff);
  box-shadow: var(--sh-md);
}
.ac-id { font-size: 11px; color: var(--ink-3); font-family: var(--serif); white-space: nowrap; }
.ac-main { flex-grow: 1; min-width: 0; }
.ac-title { font-size: 13.5px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ac-item.sel .ac-title { color: var(--water-deep); }
.ac-meta { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.ac-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  background: var(--line); border: 2.5px solid #fff; box-shadow: 0 0 0 1.5px var(--line); transition: all 0.25s;
}
.ac-item.sel .ac-dot { background: var(--water-mid); box-shadow: 0 0 0 1.5px var(--water-mid), 0 0 10px rgba(21, 112, 158, 0.5); }

/* 血缘链路图 */
.lineage-box {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: 28px 30px 24px; margin-top: 24px; position: relative;
}
.lineage-box h3 { font-family: var(--serif); font-size: 19px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.lineage-box h3::before { content: ""; width: 5px; height: 19px; border-radius: 3px; background: linear-gradient(var(--gold), #d9bd7e); }
.lineage-box .lb-hint { font-size: 12.5px; color: var(--ink-3); margin: 6px 0 18px; }
.lineage-stage { position: relative; }
.lineage-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: visible; }
.lineage-cols { display: grid; grid-template-columns: 1.15fr 0.85fr 1fr 0.95fr 1.1fr; gap: 14px; position: relative; z-index: 2; }
.ln-col { display: flex; flex-direction: column; gap: 10px; }
.ln-col-head { font-size: 11.5px; letter-spacing: 2px; color: var(--ink-3); text-align: center; font-weight: 700; padding-bottom: 6px; border-bottom: 1px dashed var(--line); }
.ln-node {
  background: var(--water-foam); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 10px 14px; font-size: 12.5px; text-align: center; color: var(--ink-2);
  transition: all 0.3s ease; line-height: 1.5;
}
.ln-node .nn-sub { display: block; font-size: 10.5px; color: var(--ink-3); margin-top: 2px; }
.ln-node.lit {
  background: linear-gradient(150deg, var(--water-deep), var(--water-mid)); color: #fff;
  border-color: transparent; box-shadow: 0 6px 18px rgba(21, 112, 158, 0.4); transform: scale(1.04);
}
.ln-node.lit .nn-sub { color: rgba(255, 255, 255, 0.75); }
.ln-node.dim { opacity: 0.42; }
.ln-corpus-node { text-align: left; cursor: pointer; }
.ln-corpus-node:hover { border-color: var(--water-bright); }
.ln-corpus-node .nn-title { display: block; font-weight: 600; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ln-app-note {
  margin-top: 20px; border-radius: var(--r-md); border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--water-foam), #fff); padding: 20px 24px;
  min-height: 96px; transition: all 0.3s;
}
.ln-app-note .an-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.ln-app-note .an-id { font-family: var(--serif); font-size: 12px; color: var(--water-mid); letter-spacing: 1px; }
.ln-app-note .an-title { font-family: var(--serif); font-size: 15.5px; font-weight: 700; color: var(--ink); }
.ln-app-note p { font-size: 13.5px; color: var(--ink-2); line-height: 1.9; }
.ln-app-note .an-empty { color: var(--ink-3); font-size: 13px; }
.an-chain { margin-top: 12px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 12px; color: var(--ink-3); }
.an-chain .chain-node { background: var(--water-mist); color: var(--water-deep); border-radius: 99px; padding: 3px 12px; font-weight: 600; }
.an-chain .chain-node.gold { background: var(--gold-mist); color: var(--gold-deep); }
.an-chain svg { flex-shrink: 0; color: var(--water-bright); }

/* ============================================================
 * 后台驾驶舱
 * ============================================================ */
.admin-layout { display: grid; grid-template-columns: 250px 1fr; min-height: calc(100vh - 68px); }
.admin-side {
  background: linear-gradient(180deg, #081f38, var(--water-deep));
  color: #b9dbe6; padding: 28px 0; position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto;
}
.side-group { margin-bottom: 6px; }
.side-group-t {
  padding: 11px 24px; font-size: 12px; letter-spacing: 2px; color: rgba(185, 219, 230, 0.55);
  display: flex; align-items: center; justify-content: space-between;
}
.side-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 24px 10px 32px;
  font-size: 13.5px; color: #cfe8ef; cursor: pointer; transition: all 0.22s;
  border-left: 3px solid transparent;
}
.side-item:hover { background: rgba(127, 209, 232, 0.1); color: #fff; }
.side-item.on { background: rgba(127, 209, 232, 0.16); color: #fff; border-left-color: var(--gold); }
.side-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--water-bright); opacity: 0.7; }

.admin-main { padding: 32px 38px 60px; background: var(--bg); }
.admin-title-row { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.admin-title { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: 1px; }
.admin-date { font-size: 12.5px; color: var(--ink-3); }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.metric-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 22px 24px; box-shadow: var(--sh-sm); position: relative; overflow: hidden;
  transition: all 0.28s ease;
}
.metric-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.metric-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--water-mid), var(--water-bright)); }
.metric-card.gold::before { background: linear-gradient(90deg, var(--gold), #d9bd7e); }
.mc-label { font-size: 12.5px; color: var(--ink-3); letter-spacing: 1px; }
.mc-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--water-deep); margin-top: 6px; line-height: 1.15; }
.mc-num small { font-size: 13px; color: var(--ink-3); font-family: var(--sans); font-weight: 400; margin-left: 3px; }
.mc-delta { font-size: 12px; margin-top: 6px; color: #2e7d32; }
.mc-delta.down { color: #c62828; }

.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 22px; }
.panel-grid .span2 { grid-column: span 2; }
.panel {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 24px 26px; box-shadow: var(--sh-sm);
}
.panel h3 { font-family: var(--serif); font-size: 16.5px; color: var(--ink); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.panel h3::before { content: ""; width: 4px; height: 16px; border-radius: 2px; background: linear-gradient(var(--water-mid), var(--water-bright)); }
.panel .p-sub { font-size: 12px; color: var(--ink-3); margin-bottom: 16px; }

/* 审核工作流 */
.audit-flow { display: grid; grid-template-columns: 1fr 42px 1fr 42px 1fr; gap: 0; align-items: stretch; margin-top: 8px; }
.audit-node { border-radius: var(--r-md); padding: 20px; text-align: center; border: 1.5px solid var(--line); background: var(--water-foam); }
.audit-node.an1 { border-color: #f2cf8b; background: #fdf6e7; }
.audit-node.an2 { border-color: var(--water-bright); background: var(--water-mist); }
.audit-node.an3 { border-color: #a5d6a7; background: #eef7ee; }
.audit-node .an-name { font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--ink); }
.audit-node .an-num { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--water-deep); margin: 6px 0 2px; }
.audit-node.an1 .an-num { color: var(--gold-deep); }
.audit-node.an3 .an-num { color: #2e7d32; }
.audit-node .an-sub { font-size: 11.5px; color: var(--ink-3); }
.audit-arrow { display: flex; align-items: center; justify-content: center; color: var(--water-bright); }

/* 进度条 */
.prog-row { margin-bottom: 16px; }
.prog-head { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.prog-head .pn { color: var(--ink-2); font-weight: 600; }
.prog-head .pv { color: var(--water-deep); font-family: var(--serif); font-weight: 700; }
.prog-track { height: 9px; border-radius: 99px; background: var(--line-soft); overflow: hidden; }
.prog-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--water-mid), var(--water-bright)); transition: width 0.9s cubic-bezier(0.2, 0.7, 0.3, 1); }
.prog-fill.gold { background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }

/* SVG 图表通用 */
.chart-svg { width: 100%; height: auto; display: block; }
.legend-row { display: flex; gap: 18px; margin-top: 10px; font-size: 12px; color: var(--ink-3); flex-wrap: wrap; }
.legend-row i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 5px; }

/* 涟漪装饰动画 */
@keyframes rippleDrift { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim-fade-up { animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) both; }

/* ============================================================
 * 响应式
 * ============================================================ */
@media (max-width: 1180px) {
  .sublib-grid { grid-template-columns: repeat(2, 1fr); }
  .corpus-grid { grid-template-columns: repeat(2, 1fr); }
  .linkage-flow { grid-template-columns: 1fr; gap: 12px; }
  .lk-arrow { transform: rotate(90deg); padding: 6px 0; }
  .app-cols { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .panel-grid .span2 { grid-column: span 1; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .wrap { padding: 0 28px; }
  .top-nav { padding: 0 24px; }
  .hero { padding: 88px 28px 130px; }
  .hero-title { font-size: 56px; letter-spacing: 10px; }
  .hero-meaning { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .stat-cell:nth-child(4)::before { display: none; }
  .lineage-cols { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 210px 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
 * V2 追加：Hero 实景图 / 六格指标 / 概念图相框 / 详情页 / 后台 SPA
 * ============================================================ */

/* Hero 实景背景（阿克苏河） */
.hero-photo {
  background:
    linear-gradient(180deg, rgba(7, 26, 48, 0) 55%, rgba(7, 26, 48, 0.38) 100%),
    linear-gradient(103deg, rgba(7, 26, 48, 0.9) 0%, rgba(11, 42, 74, 0.8) 34%, rgba(11, 42, 74, 0.52) 60%, rgba(21, 112, 158, 0.3) 82%, rgba(21, 112, 158, 0.18) 100%),
    url("assets/haixia-hero.png") center 38% / cover no-repeat;
}
.hero { background-color: var(--water-deep); }

/* 六格指标条 */
.stats-bar { grid-template-columns: repeat(6, 1fr); }
.stats-bar .stat-num { font-size: 31px; }
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
}

/* 场景概念图相框卡片 */
.concept-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 12px 12px 10px; box-shadow: var(--sh-md); margin-top: 20px;
  transition: all 0.3s ease; position: relative;
}
.concept-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.concept-frame { border-radius: 10px; overflow: hidden; position: relative; cursor: zoom-in; }
.concept-frame img { width: 100%; display: block; transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1); }
.concept-card:hover .concept-frame img { transform: scale(1.035); }
.concept-frame::after {
  content: "点击放大"; position: absolute; right: 10px; bottom: 10px;
  font-size: 11px; color: #fff; background: rgba(7, 26, 48, 0.55); backdrop-filter: blur(4px);
  padding: 4px 12px; border-radius: 99px; opacity: 0; transition: opacity 0.3s;
}
.concept-card:hover .concept-frame::after { opacity: 1; }
.concept-cap { display: flex; align-items: center; justify-content: space-between; padding: 10px 6px 2px; }
.concept-cap .cc-t { font-size: 12px; color: var(--ink-3); letter-spacing: 1px; }
.concept-cap .cc-badge { font-size: 10.5px; color: var(--gold-deep); background: var(--gold-mist); padding: 2px 10px; border-radius: 99px; }

/* 图片灯箱 */
.img-lightbox {
  position: fixed; inset: 0; z-index: 1200; background: rgba(8, 38, 50, 0.82); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; cursor: zoom-out;
}
.img-lightbox.open { opacity: 1; pointer-events: auto; }
.img-lightbox img { max-width: min(1120px, 92vw); max-height: 82vh; border-radius: 14px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5); }
.img-lightbox .ilb-cap { color: rgba(226, 244, 249, 0.85); font-size: 13px; letter-spacing: 2px; }

/* ============================================================
 * 详情页 detail.html
 * ============================================================ */
.crumb { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-3); margin: 26px 0 20px; flex-wrap: wrap; }
.crumb a { color: var(--water-mid); }
.crumb a:hover { color: var(--water-deep); text-decoration: underline; }
.crumb .sep { color: var(--line); }
.crumb .cur { color: var(--ink); font-weight: 600; }

.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 26px; align-items: start; }
@media (max-width: 1024px) { .detail-grid { grid-template-columns: 1fr; } }

.d-panel { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 26px 30px; box-shadow: var(--sh-sm); margin-bottom: 22px; }
.d-panel h3 { font-family: var(--serif); font-size: 17px; color: var(--water-deep); margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.d-panel h3::before { content: ""; width: 4px; height: 17px; border-radius: 2px; background: linear-gradient(var(--water-mid), var(--water-bright)); }

.d-title-hero { background: linear-gradient(150deg, var(--water-deep), var(--water-mid) 85%); color: #fff; border-radius: var(--r-lg); padding: 34px 38px; position: relative; overflow: hidden; margin-bottom: 22px; }
.d-title-hero::after { content: ""; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(127, 209, 232, 0.22), transparent 68%); }
.d-id { font-size: 12px; letter-spacing: 2px; color: var(--water-bright); margin-bottom: 10px; position: relative; z-index: 2; }
.d-h1 { font-family: var(--serif); font-size: 26px; font-weight: 700; line-height: 1.55; position: relative; z-index: 2; }
.d-badges { display: flex; gap: 9px; margin-top: 16px; flex-wrap: wrap; position: relative; z-index: 2; }
.d-badge { font-size: 12px; padding: 5px 14px; border-radius: 99px; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(127, 209, 232, 0.35); color: #eaf7fb; }
.d-badge.gold { background: rgba(196, 163, 90, 0.28); border-color: rgba(196, 163, 90, 0.5); color: #ffe9c2; }

.meta-table { width: 100%; border-collapse: collapse; }
.meta-table td { padding: 11px 14px; font-size: 13.5px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.meta-table tr:last-child td { border-bottom: none; }
.meta-table .mk { width: 118px; color: var(--ink-3); font-size: 12.5px; letter-spacing: 1px; }
.meta-table .mv { color: var(--ink); font-weight: 600; line-height: 1.6; }

.tag-group { margin-bottom: 14px; }
.tag-group .tg-label { font-size: 12px; color: var(--ink-3); letter-spacing: 1.5px; margin-bottom: 8px; font-weight: 700; }
.tag-group .cc-tags { display: flex; flex-wrap: wrap; gap: 7px; }

/* 样本预览（按模态） */
.preview-block { border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--line); }
.pv-text { background: var(--water-foam); padding: 22px 26px; font-size: 13.5px; color: var(--ink-2); line-height: 2; position: relative; }
.pv-text::before { content: "“"; position: absolute; top: 4px; left: 12px; font-family: var(--serif); font-size: 44px; color: var(--water-bright); }
.pv-audio { background: linear-gradient(140deg, var(--water-deep), var(--water-mid)); padding: 22px 24px; display: flex; align-items: center; gap: 16px; }
.pv-play { width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, 0.92); display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; transition: transform 0.25s; }
.pv-play:hover { transform: scale(1.08); }
.pv-play svg { width: 18px; height: 18px; fill: var(--water-deep); margin-left: 2px; }
.pv-track { flex-grow: 1; }
.pv-bars { display: flex; align-items: flex-end; gap: 3px; height: 34px; }
.pv-bars i { width: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.55); }
.pv-time { color: rgba(255, 255, 255, 0.8); font-size: 11.5px; margin-top: 6px; }
.pv-video, .pv-3d, .pv-image { position: relative; background: linear-gradient(140deg, #081f38, var(--water-deep) 60%, var(--water-mid)); min-height: 220px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: rgba(226, 244, 249, 0.85); }
.pv-video .big-play, .pv-3d .big-play { width: 62px; height: 62px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); border: 1.5px solid rgba(255, 255, 255, 0.4); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; }
.pv-video .big-play:hover, .pv-3d .big-play:hover { background: rgba(255, 255, 255, 0.28); transform: scale(1.06); }
.pv-video .big-play svg, .pv-3d .big-play svg { width: 24px; height: 24px; fill: #fff; margin-left: 3px; }
.pv-image { flex-direction: row; padding: 18px; gap: 12px; flex-wrap: wrap; background: var(--water-foam); }
.pv-thumb { flex: 1 1 110px; height: 96px; border-radius: 9px; background: linear-gradient(140deg, var(--water-mist), #cdeaf3); border: 1px dashed var(--water-bright); display: flex; align-items: center; justify-content: center; color: var(--water-mid); font-size: 12px; }
.pv-note { font-size: 12px; color: var(--ink-3); margin-top: 10px; text-align: center; }

/* 数据血缘小链路 */
.chain-mini { display: grid; grid-template-columns: 1fr 36px 1fr 36px 1fr; align-items: stretch; gap: 0; }
.cm-node { background: var(--water-foam); border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; text-align: center; }
.cm-node .cm-k { font-size: 11px; color: var(--ink-3); letter-spacing: 2px; }
.cm-node .cm-v { font-family: var(--serif); font-weight: 700; color: var(--water-deep); font-size: 14.5px; margin-top: 4px; line-height: 1.5; }
.cm-arrow { display: flex; align-items: center; justify-content: center; color: var(--water-bright); }
@media (max-width: 1024px) { .chain-mini { grid-template-columns: 1fr; gap: 8px; } .cm-arrow { transform: rotate(90deg); padding: 2px 0; } }

/* 关联推荐 */
.rel-list { display: flex; flex-direction: column; gap: 10px; }
.rel-card { display: block; border: 1px solid var(--line-soft); border-radius: var(--r-sm); padding: 13px 16px; transition: all 0.25s; background: #fff; }
.rel-card:hover { border-color: var(--water-bright); transform: translateX(4px); box-shadow: var(--sh-sm); }
.rel-card .rc-title { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rel-card:hover .rc-title { color: var(--water-deep); }
.rel-card .rc-meta { font-size: 11px; color: var(--ink-3); margin-top: 5px; }

/* 404 提示 */
.d-404 { max-width: 620px; margin: 90px auto; text-align: center; }
.d-404 .n4 { font-family: var(--serif); font-size: 74px; color: var(--water-bright); font-weight: 700; }
.d-404 p { color: var(--ink-3); margin: 14px 0 26px; font-size: 15px; }

/* ============================================================
 * 后台 SPA 多视图
 * ============================================================ */
.admin-view { display: none; }
.admin-view.on { display: block; animation: fadeUp 0.4s cubic-bezier(0.2, 0.7, 0.3, 1) both; }
.sub-tab { display: inline-flex; gap: 4px; background: #eef6f9; border-radius: 99px; padding: 4px; margin: 16px 0 20px; flex-wrap: wrap; }
.sub-tab button { border: none; background: transparent; padding: 8px 18px; border-radius: 99px; font-size: 13px; color: var(--ink-2); transition: all 0.22s; }
.sub-tab button.on { background: linear-gradient(135deg, var(--water-deep), var(--water-mid)); color: #fff; box-shadow: 0 3px 10px rgba(21, 112, 158, 0.3); }
.sub-pane { display: none; }
.sub-pane.on { display: block; animation: fadeUp 0.35s ease both; }

.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl th { text-align: left; padding: 10px 12px; font-size: 12px; color: var(--ink-3); letter-spacing: 1px; border-bottom: 1.5px solid var(--line); font-weight: 700; white-space: nowrap; }
.tbl td { padding: 11px 12px; border-bottom: 1px solid var(--line-soft); color: var(--ink-2); vertical-align: middle; }
.tbl tr:hover td { background: var(--water-foam); }
.tbl .t-id { font-family: var(--serif); color: var(--water-mid); font-size: 12px; white-space: nowrap; }

.badge { display: inline-block; font-size: 11.5px; padding: 3px 11px; border-radius: 99px; white-space: nowrap; }
.b-green { background: #e8f5e9; color: #2e7d32; }
.b-blue { background: var(--water-mist); color: var(--water-deep); }
.b-gold { background: var(--gold-mist); color: var(--gold-deep); }
.b-red { background: #fdecea; color: #c62828; }
.b-gray { background: #eef2f4; color: var(--ink-3); }

.btn-sm { border: 1px solid var(--line); background: #fff; color: var(--ink-2); font-size: 12px; padding: 5px 13px; border-radius: 99px; transition: all 0.2s; margin-right: 5px; }
.btn-sm:hover { border-color: var(--water-mid); color: var(--water-deep); }
.btn-sm.pri { background: linear-gradient(135deg, var(--water-deep), var(--water-mid)); color: #fff; border-color: transparent; }
.btn-sm.pri:hover { box-shadow: 0 4px 10px rgba(21, 112, 158, 0.35); }
.btn-sm.danger { color: #c62828; border-color: #f2c4c0; }
.btn-sm.danger:hover { background: #fdecea; border-color: #c62828; }
.btn-sm:disabled { opacity: 0.45; cursor: not-allowed; }

.form-row { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; align-items: center; }
.form-row label { font-size: 12.5px; color: var(--ink-3); font-weight: 600; min-width: 76px; }
.inp, .sel, .ta { border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 9px 14px; font-size: 13px; outline: none; transition: all 0.22s; background: #fff; color: var(--ink); }
.inp:focus, .sel:focus, .ta:focus { border-color: var(--water-mid); box-shadow: 0 0 0 3px rgba(127, 209, 232, 0.18); }
.inp { flex: 1; min-width: 180px; }
.ta { width: 100%; min-height: 76px; resize: vertical; }
.sel { min-width: 150px; }

.tag-pool { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag-pool .tag { font-size: 12.5px; padding: 5px 13px; display: inline-flex; align-items: center; gap: 7px; }
.tag-pool .tag .tx { cursor: pointer; color: var(--ink-3); font-weight: 700; }
.tag-pool .tag .tx:hover { color: #c62828; }

.switch { position: relative; width: 40px; height: 22px; border-radius: 99px; background: #d3e2e9; cursor: pointer; transition: background 0.25s; border: none; flex-shrink: 0; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: left 0.25s; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }
.switch.on { background: var(--water-mid); }
.switch.on::after { left: 21px; }

.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(80px); z-index: 1500; background: linear-gradient(135deg, var(--water-deep), var(--water-mid)); color: #fff; padding: 13px 28px; border-radius: 99px; font-size: 13.5px; box-shadow: var(--sh-lg); opacity: 0; transition: all 0.35s cubic-bezier(0.2, 0.7, 0.3, 1); pointer-events: none; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.kv-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.kv-chip { background: var(--water-foam); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 10px 18px; font-size: 12.5px; color: var(--ink-2); }
.kv-chip b { font-family: var(--serif); color: var(--water-deep); font-size: 16px; margin-right: 4px; }

.reject-box { background: #fdf6e7; border: 1px solid #f2cf8b; border-radius: var(--r-sm); padding: 12px 14px; margin-top: 8px; font-size: 12.5px; color: #8a6d2f; }
.step-line { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-3); flex-wrap: wrap; }
.step-line .st { padding: 3px 11px; border-radius: 99px; background: #eef2f4; }
.step-line .st.done { background: #e8f5e9; color: #2e7d32; }
.step-line .st.cur { background: var(--water-mist); color: var(--water-deep); font-weight: 700; }

/* ============================================================
 * V3 追加：数据服务页 / 注册登录 / 创建应用弹窗 / 标注工作台 / 平台保障
 * ============================================================ */

/* 指标条防折行 */
.stat-cell, .stat-cell .stat-label, .stat-cell .stat-num { white-space: nowrap; }
.stats-bar { grid-template-columns: 1.05fr 1.15fr 1.5fr 1.2fr 1fr 1.1fr; }

/* ---------- services.html ---------- */
.utype-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.utype-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 24px 26px; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.utype-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--water-bright); }
.utype-card .ut-ico {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 14px;
  background: linear-gradient(145deg, var(--water-mist), #d6eef6); color: var(--water-mid);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; font-weight: 700;
}
.utype-card h4 { font-family: var(--serif); font-size: 16.5px; margin-bottom: 6px; }
.utype-card p { font-size: 12.5px; color: var(--ink-3); line-height: 1.75; }

.flow6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; position: relative; margin-top: 10px; }
.flow6::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--water-bright), var(--water-mid)); opacity: 0.5; }
.flow6 .f6 { text-align: center; position: relative; padding: 0 8px; }
.flow6 .f6-n {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%;
  background: #fff; border: 2px solid var(--water-bright); color: var(--water-deep);
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;
  box-shadow: var(--sh-sm);
}
.flow6 .f6-t { font-family: var(--serif); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.flow6 .f6-d { font-size: 11.5px; color: var(--ink-3); margin-top: 5px; line-height: 1.6; }

/* 申请向导 */
.wizard-panel { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); box-shadow: var(--sh-md); overflow: hidden; }
.wizard-steps { display: flex; background: linear-gradient(140deg, var(--water-deep), var(--water-mid)); padding: 0; }
.wizard-steps .ws { flex: 1; text-align: center; padding: 16px 8px; color: rgba(226, 244, 249, 0.55); font-size: 13px; position: relative; transition: all 0.3s; }
.wizard-steps .ws b { display: block; font-family: var(--serif); font-size: 15px; margin-bottom: 2px; }
.wizard-steps .ws.on { color: #fff; background: rgba(255, 255, 255, 0.1); }
.wizard-steps .ws.done { color: var(--water-bright); }
.wizard-body { padding: 30px 36px; min-height: 300px; }
.wizard-foot { display: flex; justify-content: space-between; align-items: center; padding: 18px 36px; border-top: 1px solid var(--line-soft); background: var(--water-foam); }

.pick-list { max-height: 300px; overflow-y: auto; border: 1.5px solid var(--line); border-radius: var(--r-sm); }
.pick-item { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-bottom: 1px solid var(--line-soft); cursor: pointer; transition: background 0.2s; }
.pick-item:hover { background: var(--water-foam); }
.pick-item.sel { background: var(--water-mist); }
.pick-item .pi-check { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--line); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: transparent; transition: all 0.2s; font-size: 12px; }
.pick-item.sel .pi-check { background: var(--water-mid); border-color: var(--water-mid); color: #fff; }
.pick-item .pi-title { font-size: 13px; font-weight: 600; color: var(--ink); flex: 1; }
.pick-item .pi-meta { font-size: 11px; color: var(--ink-3); }
.svc-radio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-radio .sr {
  border: 2px solid var(--line); border-radius: var(--r-md); padding: 22px; cursor: pointer; transition: all 0.25s;
}
.svc-radio .sr:hover { border-color: var(--water-bright); }
.svc-radio .sr.on { border-color: var(--water-mid); background: linear-gradient(160deg, var(--water-mist), #fff); box-shadow: var(--sh-md); }
.svc-radio .sr h4 { font-family: var(--serif); font-size: 16px; margin-bottom: 8px; color: var(--water-deep); }
.svc-radio .sr p { font-size: 12.5px; color: var(--ink-3); line-height: 1.75; }
.confirm-box { background: var(--water-foam); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 24px; }
.confirm-box .cf-row { display: flex; gap: 14px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; }
.confirm-box .cf-row:last-child { border-bottom: none; }
.confirm-box .cf-k { width: 110px; color: var(--ink-3); flex-shrink: 0; }
.success-box { text-align: center; padding: 40px 20px; }
.success-box .sb-ico { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(145deg, var(--water-mid), var(--water-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 34px; box-shadow: 0 12px 30px rgba(21, 112, 158, 0.4); }
.success-box h3 { font-family: var(--serif); font-size: 22px; color: var(--water-deep); margin-bottom: 10px; }
.success-box .sb-no { font-family: var(--serif); font-size: 17px; color: var(--gold-deep); background: var(--gold-mist); display: inline-block; padding: 6px 22px; border-radius: 99px; margin: 8px 0 14px; }
.success-box p { font-size: 13.5px; color: var(--ink-3); }

.login-hint { background: var(--gold-mist); border: 1px solid rgba(196, 163, 90, 0.35); border-radius: var(--r-md); padding: 18px 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.login-hint .lh-t { font-size: 13.5px; color: #6b5a35; flex: 1; min-width: 240px; line-height: 1.7; }

/* ---------- auth.html ---------- */
.auth-shell { max-width: 1120px; margin: 0 auto; padding: 48px 40px 20px; display: grid; grid-template-columns: 1fr 460px; gap: 44px; align-items: start; }
@media (max-width: 1024px) { .auth-shell { grid-template-columns: 1fr; } }
.auth-side h1 { font-family: var(--serif); font-size: 34px; color: var(--ink); letter-spacing: 2px; line-height: 1.4; }
.auth-side .as-sub { margin-top: 14px; font-size: 14.5px; color: var(--ink-3); line-height: 1.9; max-width: 520px; }
.auth-side .as-points { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.auth-side .as-p { display: flex; gap: 12px; align-items: baseline; font-size: 13.5px; color: var(--ink-2); }
.auth-side .as-p::before { content: "◆"; color: var(--water-bright); font-size: 11px; }
.auth-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; }
.auth-tabs { display: flex; background: var(--water-foam); border-bottom: 1px solid var(--line-soft); }
.auth-tabs button { flex: 1; border: none; background: transparent; padding: 16px; font-size: 15px; font-family: var(--serif); font-weight: 700; color: var(--ink-3); transition: all 0.25s; }
.auth-tabs button.on { color: var(--water-deep); background: #fff; box-shadow: inset 0 3px 0 var(--water-mid); }
.auth-body { padding: 28px 32px 32px; }
.utype-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 6px; }
.utype-pick .up { border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 10px 13px; font-size: 12.5px; cursor: pointer; transition: all 0.2s; color: var(--ink-2); }
.utype-pick .up:hover { border-color: var(--water-bright); }
.utype-pick .up.on { border-color: var(--water-mid); background: var(--water-mist); color: var(--water-deep); font-weight: 700; }
.utype-note { font-size: 12px; color: var(--gold-deep); background: var(--gold-mist); border-radius: var(--r-sm); padding: 10px 14px; margin: 10px 0; line-height: 1.7; display: none; }
.utype-note.show { display: block; }
.demo-tip { background: var(--water-foam); border: 1px dashed var(--water-bright); border-radius: var(--r-sm); padding: 12px 16px; font-size: 12px; color: var(--ink-2); line-height: 2; margin-bottom: 16px; }
.demo-tip code { background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: 1px 7px; font-size: 11.5px; color: var(--water-deep); }
.err-msg { color: #c62828; font-size: 12.5px; margin-top: 8px; min-height: 18px; }

/* 用户中心 */
.uc-head { background: linear-gradient(140deg, var(--water-deep), var(--water-mid)); color: #fff; border-radius: var(--r-lg); padding: 30px 36px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; position: relative; overflow: hidden; }
.uc-head::after { content: ""; position: absolute; right: -50px; top: -50px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(127, 209, 232, 0.22), transparent 68%); }
.uc-avatar { width: 62px; height: 62px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); border: 2px solid rgba(255, 255, 255, 0.4); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 26px; font-weight: 700; position: relative; z-index: 2; }
.uc-name { font-family: var(--serif); font-size: 22px; font-weight: 700; position: relative; z-index: 2; }
.uc-meta { font-size: 12.5px; color: rgba(226, 244, 249, 0.85); margin-top: 5px; position: relative; z-index: 2; }
.uc-logout { margin-left: auto; position: relative; z-index: 2; }
.app-item { border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 15px 20px; margin-bottom: 12px; }
.app-item .ai-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.app-item .ai-no { font-family: var(--serif); font-size: 12.5px; color: var(--water-mid); }
.app-item .ai-title { font-size: 13.5px; font-weight: 700; flex: 1; min-width: 200px; }
.app-item .ai-detail { font-size: 12px; color: var(--ink-3); margin-top: 8px; line-height: 1.8; }
.app-item .ai-opinion { margin-top: 9px; font-size: 12.5px; padding: 9px 14px; border-radius: var(--r-sm); }
.ai-opinion.ok { background: #eef7ee; color: #2e7d32; }
.ai-opinion.no { background: #fdecea; color: #c62828; }
.deliver-box { margin-top: 10px; background: var(--water-mist); border: 1px solid var(--water-bright); border-radius: var(--r-sm); padding: 13px 16px; font-size: 12.5px; color: var(--water-deep); line-height: 1.9; }
.deliver-box code { background: #fff; border: 1px solid var(--water-bright); border-radius: 5px; padding: 2px 9px; font-size: 12px; font-weight: 700; }
.co-flow { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; margin-top: 8px; font-size: 11.5px; }
.co-flow .st { padding: 3px 10px; border-radius: 99px; background: #eef2f4; color: var(--ink-3); }
.co-flow .st.done { background: #e8f5e9; color: #2e7d32; }
.co-flow .st.cur { background: var(--water-mist); color: var(--water-deep); font-weight: 700; }
.trace-note { font-size: 12px; color: var(--ink-3); background: var(--water-foam); border-radius: var(--r-sm); padding: 12px 16px; line-height: 1.9; }

/* ---------- apps.html 创建应用 ---------- */
.app-create-btn {
  position: absolute; top: 30px; right: 36px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), #d9bd7e); color: #3a2c10;
  font-size: 13.5px; font-weight: 700; border: none; border-radius: 99px; padding: 11px 24px;
  box-shadow: 0 8px 22px rgba(196, 163, 90, 0.45); transition: all 0.28s;
}
.app-create-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(196, 163, 90, 0.55); }
.app-create-sub { position: absolute; top: 76px; right: 36px; z-index: 3; font-size: 11px; color: rgba(255, 217, 168, 0.85); letter-spacing: 1px; }
.mk-modal-mask { position: fixed; inset: 0; z-index: 1300; background: rgba(7, 26, 48, 0.5); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mk-modal-mask.open { opacity: 1; pointer-events: auto; }
.mk-modal { width: 640px; max-width: 92vw; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; transform: translateY(26px) scale(0.97); transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1); }
.mk-modal-mask.open .mk-modal { transform: none; }
.mk-head { background: linear-gradient(140deg, var(--water-deep), var(--water-mid)); color: #fff; padding: 22px 30px; display: flex; align-items: center; justify-content: space-between; }
.mk-head h3 { font-family: var(--serif); font-size: 19px; letter-spacing: 1px; }
.mk-head .mk-sub { font-size: 11.5px; color: var(--water-bright); margin-top: 3px; letter-spacing: 1px; }
.mk-close { border: none; background: rgba(255, 255, 255, 0.15); color: #fff; width: 32px; height: 32px; border-radius: 50%; font-size: 15px; }
.mk-close:hover { background: rgba(255, 255, 255, 0.3); }
.mk-body { padding: 26px 30px; min-height: 280px; }
.mk-steps { display: flex; gap: 6px; margin-bottom: 22px; }
.mk-steps .ms { flex: 1; text-align: center; font-size: 11.5px; color: var(--ink-3); padding-top: 10px; border-top: 3px solid var(--line); transition: all 0.3s; }
.mk-steps .ms.on { color: var(--water-deep); border-top-color: var(--water-mid); font-weight: 700; }
.mk-steps .ms.done { color: var(--water-mid); border-top-color: var(--water-bright); }
.mk-opt { display: flex; flex-direction: column; gap: 10px; }
.mk-opt .mo { border: 2px solid var(--line); border-radius: var(--r-sm); padding: 14px 18px; cursor: pointer; transition: all 0.22s; display: flex; align-items: center; gap: 14px; }
.mk-opt .mo:hover { border-color: var(--water-bright); }
.mk-opt .mo.on { border-color: var(--water-mid); background: var(--water-mist); }
.mk-opt .mo b { font-size: 14px; color: var(--ink); }
.mk-opt .mo span { font-size: 11.5px; color: var(--ink-3); display: block; margin-top: 2px; }
.mk-publish .mp-row { display: flex; align-items: center; gap: 14px; padding: 13px 6px; font-size: 13.5px; color: var(--ink-3); transition: all 0.3s; }
.mk-publish .mp-row .mp-dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; color: transparent; transition: all 0.3s; }
.mk-publish .mp-row.doing { color: var(--water-deep); font-weight: 700; }
.mk-publish .mp-row.doing .mp-dot { border-color: var(--water-mid); border-top-color: transparent; animation: spin 0.7s linear infinite; }
.mk-publish .mp-row.done { color: var(--ink-2); }
.mk-publish .mp-row.done .mp-dot { background: #2e7d32; border-color: #2e7d32; color: #fff; }
@keyframes spin { to { transform: rotate(360deg); } }
.mk-foot { display: flex; justify-content: space-between; padding: 16px 30px; border-top: 1px solid var(--line-soft); background: var(--water-foam); }

/* ---------- 标注工作台 ---------- */
.aw-layout { display: grid; grid-template-columns: 290px 1fr 340px; gap: 16px; align-items: start; }
@media (max-width: 1180px) { .aw-layout { grid-template-columns: 1fr; } }
.aw-queue { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); box-shadow: var(--sh-sm); overflow: hidden; }
.aw-queue .awq-head { padding: 14px 16px; border-bottom: 1px solid var(--line-soft); background: var(--water-foam); font-size: 13px; font-weight: 700; color: var(--water-deep); display: flex; justify-content: space-between; align-items: center; }
.aw-task { padding: 13px 15px; border-bottom: 1px solid var(--line-soft); cursor: pointer; transition: all 0.2s; border-left: 3px solid transparent; }
.aw-task:hover { background: var(--water-foam); }
.aw-task.on { background: var(--water-mist); border-left-color: var(--water-mid); }
.aw-task .at-title { font-size: 12.5px; font-weight: 700; color: var(--ink); line-height: 1.5; }
.aw-task .at-meta { font-size: 11px; color: var(--ink-3); margin-top: 4px; display: flex; gap: 8px; flex-wrap: wrap; }
.aw-task .prog-track { margin-top: 8px; height: 5px; }
.aw-panel { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); box-shadow: var(--sh-sm); padding: 20px 24px; }
.aw-doc { background: var(--water-foam); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 22px 26px; font-size: 14.5px; line-height: 2.15; color: var(--ink-2); user-select: text; }
.aw-doc mark { border-radius: 4px; padding: 2px 5px; font-weight: 700; }
.aw-doc mark.mk-人物 { color: #2e7d32; background: #e8f5e9; }
.aw-doc mark.mk-地点 { color: #a3773b; background: var(--gold-mist); }
.aw-doc mark.mk-文化遗存 { color: var(--water-deep); background: var(--water-mist); }
.aw-doc mark.mk-非遗项目 { color: #7c3aed; background: #f3edfd; }
.aw-doc mark.mk-政策术语 { color: #c62828; background: #fdecea; }
.label-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.label-chips .lc { border: 1.5px solid var(--line); border-radius: 99px; padding: 6px 14px; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: all 0.2s; background: #fff; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; }
.label-chips .lc i { width: 9px; height: 9px; border-radius: 50%; }
.label-chips .lc.on { border-color: var(--water-mid); background: var(--water-mist); color: var(--water-deep); }
.anno-item { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line-soft); border-radius: var(--r-sm); padding: 9px 13px; margin-bottom: 8px; font-size: 12.5px; }
.anno-item .an-word { font-weight: 700; color: var(--ink); }
.anno-item .an-x { margin-left: auto; cursor: pointer; color: var(--ink-3); font-weight: 700; }
.anno-item .an-x:hover { color: #c62828; }
.aw-side { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); box-shadow: var(--sh-sm); padding: 20px 22px; }
.aw-side h4 { font-family: var(--serif); font-size: 15px; color: var(--water-deep); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.aw-side h4::before { content: ""; width: 4px; height: 15px; border-radius: 2px; background: linear-gradient(var(--gold), #d9bd7e); }
.qc-check { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 13px; color: var(--ink-2); }
.aw-ai-mask { position: fixed; inset: 0; z-index: 1300; background: rgba(7, 26, 48, 0.5); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.aw-ai-mask.open { opacity: 1; pointer-events: auto; }
.aw-ai { width: 520px; max-width: 90vw; background: #fff; border-radius: var(--r-lg); padding: 30px 34px; box-shadow: var(--sh-lg); }
.aw-ai h3 { font-family: var(--serif); font-size: 18px; color: var(--water-deep); margin-bottom: 6px; }
.aw-ai .aai-sub { font-size: 12px; color: var(--ink-3); margin-bottom: 20px; }
.aai-step { display: flex; align-items: center; gap: 13px; padding: 11px 4px; font-size: 13.5px; color: var(--ink-3); }
.aai-step .as-dot { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--line); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; color: transparent; }
.aai-step.doing { color: var(--water-deep); font-weight: 700; }
.aai-step.doing .as-dot { border-color: var(--water-mid); border-top-color: transparent; animation: spin 0.7s linear infinite; }
.aai-step.done { color: var(--ink-2); }
.aai-step.done .as-dot { background: #2e7d32; border-color: #2e7d32; color: #fff; }

/* 平台保障 */
.role-split { display: inline-flex; gap: 4px; background: #eef6f9; border-radius: 99px; padding: 4px; margin: 14px 0 18px; }
.role-split button { border: none; background: transparent; padding: 8px 20px; border-radius: 99px; font-size: 13px; color: var(--ink-2); }
.role-split button.on { background: linear-gradient(135deg, var(--water-deep), var(--water-mid)); color: #fff; }

/* ===== 标注工作台成果展示（第二轮迭代） ===== */
.an-block { border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 14px 16px; margin: 12px 0; background: #fff; }
.an-h { font-family: var(--serif); font-weight: 700; font-size: 13.5px; color: var(--water-deep); margin-bottom: 6px; }
.an-wave { display: flex; align-items: flex-end; gap: 2px; height: 44px; padding: 6px 10px; background: var(--water-foam); border: 1px solid var(--line-soft); border-radius: 8px; margin: 8px 0 10px; }
.an-wave i { flex: 1; min-width: 2px; background: linear-gradient(180deg, var(--water-bright), var(--water-mid)); border-radius: 2px; opacity: 0.85; }
.an-mark { background: var(--gold-mist); color: var(--gold-deep); padding: 1px 5px; border-radius: 6px; font-weight: 700; }
.an-sent { font-size: 14px; line-height: 2.1; background: var(--water-foam); border-radius: 8px; padding: 10px 14px; margin: 8px 0 10px; }
.tag-row { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border: 1px solid var(--line-soft); border-radius: 10px; margin-bottom: 8px; background: #fff; }
.tag-row .tr-name { font-weight: 700; font-size: 13px; }
.tag-row .tr-n { font-size: 12px; color: var(--ink-3); }
.tag-row .tr-ops { margin-left: auto; display: flex; gap: 6px; flex-shrink: 0; }
.qc-line { display: flex; justify-content: space-between; gap: 10px; font-size: 12.5px; padding: 5px 2px; border-bottom: 1px dashed var(--line-soft); }
.qc-line:last-child { border-bottom: none; }
.rule-off { opacity: 0.55; }
