/* ============================================================
   人人家办 · 私行风视觉系统
   墨蓝深底 × 香槟金线条 × 衬线标题
   原则：留白与克制（典雅），精密细节与微光（科技感）。
   仅依赖系统字体，微信内嵌浏览器无外部请求。
   ============================================================ */

:root {
  --bg-0: #0a1322;            /* 页面最深底 */
  --bg-1: #101e33;            /* 渐变中段 */
  --panel: rgba(255, 255, 255, 0.035);
  --ink: #e9e2d3;             /* 象牙白主文字 */
  --ink-2: #9aa7b8;           /* 雾蓝次级文字 */
  --gold: #c9a86a;            /* 香槟金 */
  --gold-bright: #e6cf9b;     /* 亮金（数字/强调） */
  --gold-deep: #8a6f3e;       /* 暗金（渐变起点） */
  --gold-line: rgba(201, 168, 106, 0.32);
  --line: rgba(255, 255, 255, 0.08);
  --warn-ink: #d8b56c;
  --radius: 14px;
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", Georgia, serif;
  --sans: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--bg-0); }

body {
  font-family: var(--sans);
  background:
    radial-gradient(1100px 520px at 50% -160px, #1a2c47 0%, var(--bg-1) 48%, var(--bg-0) 100%)
    fixed var(--bg-0);
  color: var(--ink);
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 18px;
}

::selection { background: rgba(201, 168, 106, 0.35); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- 页头：品牌区 ---------- */

.site-header { text-align: center; padding: 34px 0 10px; }

.site-header::before {
  content: "";
  display: block;
  width: 56px; height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.site-header h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-indent: 0.32em;        /* 视觉居中补偿 */
  background: linear-gradient(180deg, #f2e3bd 0%, var(--gold) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);          /* 不支持裁切时的回退色 */
}

.tagline {
  color: var(--ink-2);
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-top: 10px;
}

.site-header::after {
  content: "◆";
  display: block;
  color: var(--gold);
  font-size: 8px;
  margin-top: 18px;
  opacity: 0.85;
}

/* ---------- 免责声明：低调的细字旁注 ---------- */

.disclaimer {
  color: #8d94a5;
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold-line);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 11.5px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin: 18px 0;
}

/* ---------- 进度：精密仪表式步进条 ---------- */

.progress { display: flex; gap: 4px; margin: 22px 0 18px; }

.progress .seg {
  flex: 1;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: #6e7b8d;
  padding: 8px 2px 10px;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.progress .seg.active {
  color: var(--gold-bright);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 10px 18px -12px rgba(201, 168, 106, 0.55);
}

.progress .seg.done { color: var(--gold); border-bottom-color: var(--gold-line); }

/* ---------- 卡片：金色发丝线 + 玻璃面板 ---------- */

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  margin: 18px 0;
  overflow: hidden;
}

.card::before {                /* 卡片顶部的金色发丝线 */
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.card h2 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  margin: 18px 0 8px;
}

/* ---------- 讲义卡：认知内容的仪式感 ---------- */

.lesson {
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.07), rgba(201, 168, 106, 0.025));
  border: 1px solid rgba(201, 168, 106, 0.22);
  border-left: 3px solid var(--gold);
}

.lesson h3 { margin-top: 0; }

.lesson h3::before {
  content: "认知讲义";
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.42em;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 8px;
}

.lesson p { font-size: 14px; color: #d8d2c4; }

.lesson .key-point {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 168, 106, 0.18);
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 14px;
}

/* ---------- 问卷 ---------- */

.q-block { margin: 20px 0; }

.q-title { font-weight: 600; margin-bottom: 10px; font-size: 15px; }

.q-options { display: grid; gap: 9px; }

.q-options button {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.q-options button:hover { border-color: var(--gold-line); }

.q-options button.selected {
  border-color: var(--gold);
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.16), rgba(201, 168, 106, 0.05));
  color: var(--gold-bright);
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(201, 168, 106, 0.25), 0 8px 20px -12px rgba(201, 168, 106, 0.4);
}

.field-row { margin: 18px 0; }

.field-row label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; }

.field-row input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-row input::placeholder { color: #5f6c7e; }

.field-row input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.18);
}

/* ---------- 按钮 ---------- */

.btn-row { display: flex; gap: 12px; margin-top: 22px; }

.btn {
  flex: 1;
  padding: 13px;
  font-size: 15px;
  letter-spacing: 0.12em;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover { border-color: var(--gold-line); }

.btn.primary {
  background: linear-gradient(135deg, #e2c893 0%, var(--gold) 55%, #a8853f 100%);
  color: #15202f;
  font-weight: 700;
  border: none;
  box-shadow: 0 10px 24px -10px rgba(201, 168, 106, 0.55);
}

.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(201, 168, 106, 0.65); }

.btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

.btn.ghost {
  flex: 0 0 auto;
  font-size: 12.5px;
  padding: 7px 16px;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: transparent;
  letter-spacing: 0.08em;
}

.btn.ghost:hover { background: rgba(201, 168, 106, 0.1); }

/* ---------- 持仓表 ---------- */

table.alloc { width: 100%; border-collapse: collapse; font-size: 13px; margin: 14px 0; }

table.alloc th {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--ink-2);
  padding: 8px 6px;
  border-bottom: 1px solid var(--gold-line);
  text-align: right;
}

table.alloc td {
  padding: 10px 6px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}

table.alloc th:first-child, table.alloc td:first-child { text-align: left; }

table.alloc td:last-child { color: var(--gold-bright); }

/* ---------- 权重条：精密仪表 ---------- */

.bar-row { display: flex; align-items: center; gap: 10px; margin: 9px 0; font-size: 13px; }

.bar-row .bar-label { flex: 0 0 104px; color: #cfd6de; }

.bar-row .bar-track {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  height: 9px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.bar-row .bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 65%, var(--gold-bright));
  box-shadow: 0 0 8px rgba(201, 168, 106, 0.45);
}

.bar-row .bar-pct { flex: 0 0 52px; text-align: right; color: var(--gold-bright); font-weight: 600; }

/* ---------- 杂项 ---------- */

.note { font-size: 13px; color: var(--ink-2); }

.hint { font-size: 13px; color: var(--warn-ink); margin-top: 10px; letter-spacing: 0.03em; }

.tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  padding: 1px 10px;
  border-radius: 999px;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  margin-left: 6px;
}

.tag.satellite { border-color: rgba(154, 167, 184, 0.4); color: var(--ink-2); }

.loading { text-align: center; color: var(--ink-2); letter-spacing: 0.2em; padding: 48px 0; }

/* ---------- AI 答疑面板：暗色玻璃 ---------- */

.ai-panel {
  position: fixed;
  right: 14px; bottom: 14px;
  width: min(400px, calc(100vw - 28px));
  background: rgba(13, 23, 38, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  max-height: 70vh;
  z-index: 50;
}

.ai-panel.hidden { display: none; }

.ai-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gold-line);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
}

.ai-close { border: none; background: none; font-size: 18px; color: var(--ink-2); cursor: pointer; }
.ai-close:hover { color: var(--gold-bright); }

.ai-thread { overflow-y: auto; padding: 12px 16px; flex: 1; font-size: 14px; display: flex; flex-direction: column; }

.ai-thread .msg { margin: 7px 0; padding: 9px 14px; border-radius: 10px; max-width: 92%; }

.ai-thread .msg.user {
  align-self: flex-end;
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.22), rgba(201, 168, 106, 0.12));
  border: 1px solid rgba(201, 168, 106, 0.25);
}

.ai-thread .msg.ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.ai-input-row { display: flex; gap: 10px; padding: 12px; border-top: 1px solid var(--line); }

.ai-input-row input {
  flex: 1;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.ai-input-row input::placeholder { color: #5f6c7e; }

.ai-input-row input:focus { outline: none; border-color: var(--gold); }

.ai-input-row button {
  padding: 9px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #e2c893, var(--gold));
  color: #15202f;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
}

/* ---------- 方案卡：象牙底的「私行文书」 ---------- */

.plan-card {
  background: linear-gradient(180deg, #faf6ec 0%, #f0e9d6 100%);
  border: 1px solid #c2ab78;
  box-shadow:
    inset 0 0 0 1px rgba(160, 130, 70, 0.28),
    inset 0 0 0 5px rgba(250, 246, 236, 0.9),
    inset 0 0 0 6px rgba(160, 130, 70, 0.22),
    0 18px 44px -18px rgba(0, 0, 0, 0.5);
  padding: 30px 26px;
}

.plan-card::before { display: none; }

.plan-card h2 {
  color: #6b572b;
  text-align: center;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  font-size: 20px;
}

.plan-card h2::after {
  content: "";
  display: block;
  width: 64px; height: 1px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, #a8855a, transparent);
}

.plan-card pre { color: #2c3445; line-height: 1.9; margin-top: 14px; }

.plan-card .btn { border-color: #c2ab78; color: #6b572b; letter-spacing: 0.1em; }

.plan-card .btn:hover { background: rgba(160, 130, 70, 0.08); }

.plan-card .btn.primary {
  background: linear-gradient(135deg, #d9bd85, #b5904e);
  color: #20283a;
  border: none;
}

.plan-card .hint { color: #8a7340; }

/* ---------- 页脚 ---------- */

.site-footer { margin: 44px 0 18px; text-align: center; font-size: 11px; color: #76828f; }

.site-footer::before {
  content: "";
  display: block;
  width: 56px; height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.site-footer p { margin-top: 10px; letter-spacing: 0.12em; }

/* ---------- 窄屏 ---------- */

@media (max-width: 480px) {
  body { padding: 14px 12px; }
  .site-header h1 { font-size: 30px; }
  .tagline { font-size: 11.5px; letter-spacing: 0.1em; }
  .card { padding: 20px 16px; }
  .card::before { left: 16px; right: 16px; }
  .bar-row .bar-label { flex: 0 0 92px; font-size: 12px; }
  .progress .seg { font-size: 10.5px; letter-spacing: 0; }
}

/* ---------- 打印：方案卡为主角 ---------- */

@media print {
  body { background: #fff; color: #1a2433; max-width: none; }
  .ai-panel, .progress, .btn-row, .site-header::before, .site-header::after { display: none !important; }
  .card { border-color: #ccc; background: #fff; }
  .plan-card { box-shadow: none; }
}

/* ============================================================
   内容层：顶部导航 / 文章页 / 列表页 / CTA（私行风延续）
   ============================================================ */

.top-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 14px 0 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  position: relative;
}

.top-nav a {
  color: var(--ink-2);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.top-nav a:hover { color: var(--gold-bright); }

.top-nav a.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

/* ---------- 分享按钮（右上角）+ 邀请海报弹层 ---------- */

.share-fab {
  position: absolute;
  right: 0;
  top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(201, 168, 106, 0.06);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.share-fab:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.12);
}
.share-fab svg { display: block; }
.share-fab.floating { position: fixed; right: 14px; top: 12px; z-index: 50; }

@media (max-width: 420px) {
  .share-fab { padding: 5px 10px; }
  .share-fab span { display: none; }   /* 窄屏只留图标，避让导航 */
}

.share-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(6, 11, 20, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: share-fade 0.18s ease;
}
@keyframes share-fade { from { opacity: 0; } to { opacity: 1; } }

.share-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
}
.share-img {
  max-width: min(86vw, 360px);
  max-height: 70vh;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.share-x {
  position: absolute;
  top: -42px;
  right: -2px;
  width: 34px; height: 34px;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.share-x:hover { color: var(--ink); }
.share-hint {
  margin: 16px 0 12px;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.share-actions { display: flex; gap: 12px; }
.share-act {
  padding: 9px 20px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.share-act:hover { border-color: var(--gold-line); color: var(--gold-bright); }
.share-act.primary {
  color: #1a1206;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-color: var(--gold);
  font-weight: 600;
}

.page-head { text-align: center; padding: 30px 0 6px; }

.page-kicker {
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-head h1 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.page-meta { color: var(--ink-2); font-size: 12.5px; letter-spacing: 0.08em; margin-top: 8px; }

/* 文章正文排版 */

.article { padding: 28px 26px; }

.article h2 {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  margin: 26px 0 10px;
}

.article h2:first-child { margin-top: 0; }

.article h3 { margin: 20px 0 8px; }

.article p { font-size: 15px; color: #ddd6c8; margin: 12px 0; }

.article li { font-size: 15px; color: #ddd6c8; margin: 6px 0 6px 1.4em; }

.article blockquote {
  margin: 16px 0;
  padding: 12px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 168, 106, 0.07);
  border-radius: 0 10px 10px 0;
}

.article blockquote p { color: var(--gold-bright); margin: 0; font-size: 14.5px; }

.article hr {
  border: none;
  height: 1px;
  margin: 24px auto;
  width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.article a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--gold-line); }

.article strong { color: var(--gold-bright); font-weight: 600; }

/* 列表（学堂/月报索引） */

.list { display: grid; gap: 10px; margin-top: 12px; }

.list-item {
  display: block;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

a.list-item:hover { border-color: var(--gold-line); background: rgba(201, 168, 106, 0.05); }

.list-title { display: block; color: var(--ink); font-weight: 600; font-size: 15px; }

a.list-item .list-title { color: var(--gold-bright); }

.list-summary { display: block; color: var(--ink-2); font-size: 13px; margin-top: 4px; }

.list-item.upcoming { opacity: 0.55; border-style: dashed; }

/* CTA 卡 */

.cta-card { text-align: center; }

.cta-card h3 { margin-top: 0; }

.cta-card p { color: var(--ink-2); font-size: 14px; }

.cta-card .btn-row { justify-content: center; }

.cta-card .btn {
  display: inline-block;
  flex: 0 1 auto;
  padding: 13px 30px;
  text-decoration: none;
  text-align: center;
}

/* 讲义卡的延伸阅读链接 */
.more-link { margin-top: 10px; font-size: 13px; }
.more-link a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
}
.more-link a:hover { border-bottom-color: var(--gold-bright); }

/* 卡片内行内链接（隐私说明等） */
.note a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--gold-line); }

/* ---------- 风险体感 · 真实危机盲投（feel.html） ---------- */
.feel-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.feel-lead { color: var(--ink-2); font-size: 14.5px; margin: 10px 0 4px; }
.feel-lead b, .feel-news b, .feel-reveal b { color: var(--ink); font-weight: 600; }
.feel-fine { font-size: 12px; color: var(--ink-2); opacity: 0.8; margin-top: 14px; }

.feel-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 6px;
}
.feel-preset {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.1s ease;
}
.feel-preset:hover { border-color: var(--gold); background: rgba(201, 168, 106, 0.08); }
.feel-preset:active { transform: scale(0.98); }
.fp-key { font-family: var(--serif); font-size: 20px; color: var(--gold-bright); }
.fp-w { font-size: 12px; color: var(--gold); letter-spacing: 0.04em; }
.fp-desc { font-size: 11.5px; color: var(--ink-2); line-height: 1.5; }
@media (max-width: 480px) {
  .feel-presets { grid-template-columns: 1fr; }
  .feel-preset { flex-direction: row; align-items: baseline; justify-content: flex-start; gap: 10px; text-align: left; }
}

.feel-stats { display: flex; gap: 10px; margin: 4px 0 8px; }
.fs {
  flex: 1;
  text-align: center;
  background: rgba(10, 19, 34, 0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 4px;
}
.fs-l { display: block; font-size: 11px; color: var(--ink-2); }
.fs-v { display: block; font-size: 19px; font-variant-numeric: tabular-nums; margin-top: 2px; }
.feel-news {
  text-align: center;
  color: var(--ink-2);
  font-size: 13.5px;
  min-height: 40px;
  line-height: 1.6;
  margin: 8px 4px 14px;
}

.btn-bail {
  width: 100%;
  padding: 14px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #e7b0b0;
  background: rgba(150, 60, 60, 0.12);
  border: 1px solid rgba(176, 80, 80, 0.55);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-bail:hover { background: rgba(160, 64, 64, 0.22); border-color: rgba(200, 96, 96, 0.8); }

.feel-reveal { margin: 6px 0 4px; }
.feel-reveal p { color: var(--ink-2); font-size: 14px; line-height: 1.75; margin: 10px 0; }
.feel-budget {
  border-left: 2px solid var(--gold);
  padding: 10px 0 10px 14px;
  margin-top: 14px !important;
  color: var(--ink) !important;
}
.feel-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.feel-actions .btn { flex: 1 1 auto; }
.feel-src { font-size: 11.5px; color: var(--ink-2); opacity: 0.75; margin-top: 16px; line-height: 1.6; }

/* 多决策回合：操作按钮 + 画像条 */
.feel-q { text-align: center; color: var(--ink); font-size: 15px; margin: 14px 0 10px; }
.feel-acts { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.feel-act {
  flex: 1 1 28%;
  min-width: 96px;
  padding: 12px 8px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--gold-bright);
  background: rgba(201, 168, 106, 0.06);
  border: 1px solid var(--gold-line);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
}
.feel-act:hover { background: rgba(201, 168, 106, 0.14); border-color: var(--gold); }
.feel-act:active { transform: scale(0.97); }
.feel-act.danger { color: #e7b0b0; border-color: rgba(176, 80, 80, 0.5); background: rgba(150, 60, 60, 0.1); }
.feel-act.danger:hover { background: rgba(160, 64, 64, 0.2); border-color: rgba(200, 96, 96, 0.8); }
.feel-act.hold { color: var(--ink-2); border-color: var(--line); background: transparent; flex-basis: 100%; }
.feel-act.hold:hover { color: var(--ink); border-color: var(--gold-line); background: rgba(255,255,255,0.03); }
.feel-fine a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--gold-line); }

.feel-bar { display: flex; align-items: center; gap: 10px; margin: 9px 0; font-size: 13px; }
.fb-l { flex: 0 0 130px; color: var(--ink-2); }
.fb-track { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.fb-fill { display: block; height: 100%; border-radius: 4px; }
.fb-v { flex: 0 0 22px; text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
