:root {
  --primary: #4F8A4F;
  --primary-dark: #356B3A;
  --primary-light: #EAF4EA;
  --accent: #E08A4B;
  --accent-soft: #FBEAD9;
  --bg: #F4F7F2;
  --card: #FFFFFF;
  --text: #26302A;
  --text-secondary: #76807A;
  --border: #E9EDE6;
  --danger: #D2604F;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(40, 70, 40, 0.05);
  --shadow: 0 8px 24px rgba(40, 70, 40, 0.08);
  --shadow-lg: 0 16px 42px rgba(30, 60, 25, 0.14);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body {
  margin: 0; padding: 0; height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(900px 500px at 110% -10%, rgba(79, 138, 79, 0.10), transparent 60%),
    radial-gradient(700px 480px at -10% 110%, rgba(224, 138, 75, 0.08), transparent 60%);
  background-attachment: fixed;
  color: var(--text); font-size: 15px; -webkit-font-smoothing: antialiased; line-height: 1.5;
}
button { font-family: inherit; border: none; cursor: pointer; }
input { font-family: inherit; }
.hidden { display: none !important; }

.screen { min-height: 100vh; }

/* ---------- 登录页 ---------- */
.login-screen {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: linear-gradient(160deg, #4F8A4F 0%, #6BA258 52%, #8FBE6E 100%);
}
.login-screen::before, .login-screen::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(2px);
  opacity: 0.5; pointer-events: none;
}
.login-screen::before {
  width: 240px; height: 240px; top: -70px; right: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), rgba(255,255,255,0) 70%);
  animation: orbFloat 9s ease-in-out infinite;
}
.login-screen::after {
  width: 300px; height: 300px; bottom: -110px; left: -80px;
  background: radial-gradient(circle at 60% 40%, rgba(224,138,75,0.45), rgba(224,138,75,0) 70%);
  animation: orbFloat 11s ease-in-out infinite reverse;
}
@keyframes orbFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-18px) scale(1.06); } }

.login-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 340px; background: rgba(255,255,255,0.96);
  border-radius: 26px; padding: 38px 24px 28px;
  box-shadow: 0 22px 60px rgba(20, 45, 12, 0.28);
  text-align: center; backdrop-filter: blur(6px);
  animation: cardPop .5s cubic-bezier(.2,.8,.25,1) both;
}
@keyframes cardPop { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
.login-icon { font-size: 48px; margin-bottom: 6px; display: inline-block; animation: floatLeaf 4.5s ease-in-out infinite; }
@keyframes floatLeaf { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-9px) rotate(4deg); } }
.login-card h1 { margin: 0 0 6px; font-size: 24px; color: var(--primary-dark); letter-spacing: 1.5px; font-weight: 800; }
.login-sub { margin: 0 0 10px; color: var(--accent); font-size: 14px; font-weight: 600; min-height: 20px; letter-spacing: .5px; }
.login-foot { margin: 16px 0 0; color: var(--text-secondary); font-size: 11px; opacity: 0.85; }
.form-row { margin-bottom: 14px; }
.form-row input {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px; background: #FBFCF9;
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,138,79,0.12); }
.btn-primary {
  width: 100%; padding: 13px; background: linear-gradient(135deg, #4F8A4F, #6BA258); color: #fff;
  border-radius: var(--radius-sm); font-size: 16px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(79,138,79,0.35); transition: transform .12s, box-shadow .2s;
}
.btn-primary:active { transform: translateY(1px) scale(.99); box-shadow: 0 4px 12px rgba(79,138,79,0.3); }
.login-error { color: var(--danger); font-size: 13px; min-height: 18px; margin: 10px 0 0; }

/* ---------- 主框架 ---------- */
.main-screen { display: flex; flex-direction: column; height: 100vh; overflow: hidden; }
.top-header {
  background: linear-gradient(135deg, #4F8A4F 0%, #5E9A53 100%);
  color: #fff; padding: 12px 14px 16px; flex-shrink: 0;
  text-align: center; position: relative;
  border-bottom-left-radius: 22px; border-bottom-right-radius: 22px;
  box-shadow: 0 6px 18px rgba(40,60,30,0.20);
}
.header-right { position: absolute; top: 10px; right: 10px; display: flex; gap: 6px; }
.btn-ghost {
  background: rgba(255,255,255,0.20); color: #fff; padding: 5px 10px;
  border-radius: 20px; font-size: 12px; backdrop-filter: blur(2px); transition: background .2s;
}
.btn-ghost:active { background: rgba(255,255,255,0.32); }
.btn-ghost.small { padding: 4px 9px; }
.header-date { font-size: 12px; opacity: 0.85; font-weight: 500; letter-spacing: .5px; margin-bottom: 2px; }
.header-sub { font-size: 13px; opacity: 0.95; font-weight: 500; padding-top: 2px; letter-spacing: .5px; }

.progress-bar-wrap {
  background: var(--card); padding: 12px 16px 13px; flex-shrink: 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(40,60,30,0.04);
}
.progress-info { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-secondary); margin-bottom: 7px; }
.progress-percent { font-weight: 800; color: #fff; background: linear-gradient(135deg, #4F8A4F, #E08A4B); padding: 2px 10px; border-radius: 20px; font-size: 12px; box-shadow: 0 2px 6px rgba(79,138,79,0.3); }
.progress-track { height: 9px; background: #E7EDE0; border-radius: 6px; overflow: hidden; }
.progress-fill {
  height: 100%; width: 0%; border-radius: 6px;
  background: linear-gradient(90deg, #4F8A4F, #7FB45F, #E08A4B, #4F8A4F);
  background-size: 220% 100%;
  animation: shimmer 2.6s linear infinite;
  transition: width .5s cubic-bezier(.2,.8,.25,1);
}
@keyframes shimmer { 0% { background-position: 0% 0; } 100% { background-position: 220% 0; } }

.body-wrap { display: flex; flex: 1; overflow: hidden; }
.side-nav {
  width: 82px; background: rgba(238,243,234,0.7); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; flex-shrink: 0; overflow-y: auto; backdrop-filter: blur(4px);
}
.nav-list { flex: 1; padding: 10px 6px; }
.nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 11px 4px; margin-bottom: 6px; border-radius: 16px;
  color: var(--text-secondary); font-size: 11px; text-align: center;
  position: relative; transition: background .18s, color .18s, transform .12s;
}
.nav-item:active { transform: scale(.95); }
.nav-item.active {
  background: linear-gradient(135deg, #4F8A4F, #6BA258); color: #fff;
  box-shadow: 0 8px 18px rgba(79,138,79,0.34);
}
.nav-item.active::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 26px; border-radius: 4px; background: #fff; opacity: .9;
}
.nav-icon { font-size: 22px; margin-bottom: 4px; }
.nav-del, .nav-move {
  position: absolute; top: -4px; right: -2px; width: 16px; height: 16px;
  background: var(--danger); color: #fff; border-radius: 50%; font-size: 10px;
  display: none; align-items: center; justify-content: center; line-height: 1;
}
.nav-move { right: 14px; background: #8E8E8E; }
.side-nav.editing .nav-del, .side-nav.editing .nav-move { display: flex; }
.nav-actions { display: flex; gap: 6px; padding: 8px; border-top: 1px solid var(--border); }
.nav-add, .nav-edit {
  flex: 1; height: 34px; border-radius: 12px; background: #fff;
  border: 1px solid var(--border); color: var(--primary); font-size: 16px; font-weight: 700; transition: transform .12s;
}
.nav-add:active, .nav-edit:active { transform: scale(.94); }
.nav-edit { font-size: 12px; color: var(--text-secondary); }

.content { flex: 1; overflow-y: auto; padding: 14px 13px 28px; -webkit-overflow-scrolling: touch; }
.content.fade-in > * { animation: cardIn .44s cubic-bezier(.2,.8,.25,1) both; }
.content.fade-in > *:nth-child(1) { animation-delay: .02s; }
.content.fade-in > *:nth-child(2) { animation-delay: .07s; }
.content.fade-in > *:nth-child(3) { animation-delay: .12s; }
.content.fade-in > *:nth-child(4) { animation-delay: .17s; }
.content.fade-in > *:nth-child(5) { animation-delay: .22s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.module-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 13px; }
.module-title { font-size: 19px; font-weight: 800; color: var(--primary-dark); letter-spacing: 0.5px; }
.module-actions { display: flex; gap: 6px; }
.btn-text { font-size: 12px; color: var(--primary); background: transparent; padding: 4px 8px; border-radius: 8px; transition: background .18s; }
.btn-text:active { background: var(--primary-light); }

.card {
  background: var(--card); border-radius: var(--radius); padding: 16px;
  margin-bottom: 13px; box-shadow: var(--shadow); border: 1px solid rgba(233,237,230,0.8);
  transition: transform .18s, box-shadow .18s;
}
@media (hover: hover) { .card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } }
.card-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--primary-dark); display: flex; align-items: center; gap: 6px; }
.card-title .group-icon { font-size: 17px; }
.card-sub { font-size: 12px; color: var(--text-secondary); margin-top: 8px; }

/* ---------- 任务清单 ---------- */
.task-item {
  display: flex; align-items: center; gap: 10px; padding: 11px 0;
  border-bottom: 1px solid #F1F3EC; transition: background .2s;
}
.task-item:last-child { border-bottom: none; }
.task-icon { font-size: 20px; width: 26px; text-align: center; flex-shrink: 0; }
.task-check {
  width: 24px; height: 24px; border: 2px solid var(--primary);
  border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; transition: background .2s, border-color .2s, transform .15s;
}
.task-check:active { transform: scale(.88); }
.task-check.checked { background: linear-gradient(135deg, #4F8A4F, #6BA258); border-color: transparent; animation: popIn .28s ease; }
@keyframes popIn { 0% { transform: scale(.5); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }
.task-text { flex: 1; font-size: 15px; line-height: 1.35; }
.task-item.is-done { background: linear-gradient(90deg, rgba(79,138,79,0.06), transparent); }
.task-text.done { text-decoration: line-through; color: var(--text-secondary); }
.task-del { color: #C4C4C4; font-size: 12px; padding: 4px; transition: color .18s; }
.task-del:active { color: var(--danger); }

.add-task { display: flex; gap: 8px; margin-top: 10px; }
.add-task input {
  flex: 1; padding: 9px 12px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; background: #FBFCF9; transition: border-color .2s, box-shadow .2s;
}
.add-task input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,138,79,0.10); }
.add-task button { background: var(--primary); color: #fff; padding: 0 14px; border-radius: var(--radius-sm); font-size: 18px; transition: transform .12s; }
.add-task button:active { transform: scale(.92); }

.empty-tip { text-align: center; color: var(--text-secondary); font-size: 13px; padding: 18px 0; }

/* ---------- 每日新闻 ---------- */
.news-section {
  font-size: 13px; font-weight: 800; color: var(--primary-dark);
  margin: 16px 2px 7px; padding-left: 10px;
  border-left: 3px solid var(--accent); border-radius: 2px;
}
.news-section:first-child { margin-top: 8px; }
.news-meta-card { display: flex; justify-content: space-between; align-items: center; background: var(--primary-light); border: none; }
.news-meta { font-size: 12px; font-weight: 700; color: var(--primary-dark); }
.refresh-meta { font-size: 11px; color: var(--text-secondary); }
.news-list { display: flex; flex-direction: column; gap: 2px; }
.news-item { display: flex; gap: 10px; padding: 12px 4px; border-bottom: 1px solid #F1F3EC; cursor: pointer; transition: background .18s ease, transform .18s ease; border-radius: 10px; }
.news-item:active { background: var(--primary-light); transform: scale(0.985); }
@media (hover: hover) { .news-item:hover { background: var(--primary-light); } }
.news-item:last-child { border-bottom: none; }
.news-num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #EFA968); color: #fff;
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(224,138,75,0.25);
}
.news-body { flex: 1; min-width: 0; }
.news-title { font-size: 15px; font-weight: 700; line-height: 1.4; color: var(--text); }
.news-sum { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-foot { display: flex; align-items: center; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.news-src { font-size: 11px; color: var(--primary); font-weight: 600; }
.news-time { font-size: 11px; color: var(--text-secondary); }
.news-link { font-size: 11px; color: var(--accent); text-decoration: none; font-weight: 600; }
.news-more { flex-shrink: 0; align-self: center; font-size: 22px; line-height: 1; color: var(--text-secondary); font-weight: 700; opacity: .5; transition: transform .2s ease, opacity .2s ease; }
.news-item:active .news-more { transform: translateX(3px); opacity: .85; }
.news-tip { font-size: 11px; color: var(--text-secondary); text-align: center; padding: 12px 0 2px; opacity: .8; }

/* 新闻详情底部抽屉 */
.news-sheet-mask {
  position: fixed; inset: 0; background: rgba(28,40,28,0); backdrop-filter: blur(0);
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 9999; opacity: 0; visibility: hidden; transition: opacity .26s ease, background .26s ease, backdrop-filter .26s ease, visibility .26s ease;
}
.news-sheet-mask.show { opacity: 1; visibility: visible; background: rgba(28,40,28,0.42); backdrop-filter: blur(2px); }
.news-sheet {
  width: 100%; max-width: 560px; max-height: 84vh; overflow-y: auto;
  background: #fff; border-radius: 20px 20px 0 0; padding: 12px 20px calc(22px + env(safe-area-inset-bottom));
  transform: translateY(100%); transition: transform .3s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 -12px 40px rgba(0,0,0,0.18);
}
.news-sheet.show { transform: translateY(0); }
.news-sheet-bar { width: 38px; height: 4px; border-radius: 3px; background: #D8DECF; margin: 4px auto 14px; }
.news-sheet-section { display: inline-block; font-size: 12px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--accent), #EFA968); padding: 3px 11px; border-radius: 20px; margin-bottom: 10px; }
.news-sheet-title { font-size: 19px; font-weight: 800; line-height: 1.38; color: var(--text); margin-bottom: 12px; }
.news-sheet-body { font-size: 15px; line-height: 1.78; color: #2f3a2f; white-space: pre-wrap; word-break: break-word; }
.news-sheet-close {
  width: 100%; margin-top: 18px; padding: 12px; border: none; border-radius: 14px;
  background: var(--primary-light); color: var(--primary-dark); font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background .18s ease;
}
.news-sheet-close:active { background: #E2EAD8; }

/* 忻州新闻：日期分组分隔 */
.xinzhou-list { display: flex; flex-direction: column; gap: 2px; }
.xinzhou-date {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 800; color: var(--primary-dark);
  margin: 18px 2px 8px; padding: 7px 12px;
  background: linear-gradient(135deg, rgba(122,154,105,0.14), rgba(224,138,75,0.12));
  border-radius: 12px; border-left: 3px solid var(--accent);
}
.xinzhou-date:first-child { margin-top: 8px; }
.xz-week { font-size: 12px; font-weight: 700; color: var(--accent); }
.xinzhou-count { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--text-secondary); background: #fff; padding: 2px 9px; border-radius: 20px; }

/* ---------- 每日阅读 ---------- */
.reading-list { display: flex; flex-direction: column; gap: 12px; }
.reading-item {
  background: var(--card); border-radius: var(--radius); padding: 14px;
  box-shadow: var(--shadow); border-left: 4px solid var(--accent); position: relative; transition: transform .18s, box-shadow .18s;
}
@media (hover: hover) { .reading-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } }
.reading-item.read { opacity: 0.6; border-left-color: var(--border); }
.reading-tag {
  display: inline-block; font-size: 11px; font-weight: 700; color: #fff;
  background: var(--primary); padding: 2px 9px; border-radius: 20px; margin-bottom: 8px;
}
.reading-title { font-size: 16px; font-weight: 700; line-height: 1.4; color: var(--text); }
.reading-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-top: 6px; }
.reading-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.reading-min { font-size: 12px; color: var(--text-secondary); }
.btn-read {
  background: var(--primary-light); color: var(--primary-dark); padding: 6px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 600; transition: transform .12s;
}
.btn-read:active { transform: scale(.94); }
.btn-read.on { background: var(--primary); color: #fff; }
.reading-tabs {
  display: flex; gap: 8px; margin-bottom: 12px;
  background: #E8EDE2; padding: 5px; border-radius: 14px;
}
.reading-tab {
  flex: 1; padding: 8px 4px; border-radius: 11px; font-size: 12px; font-weight: 600;
  color: var(--text-secondary); background: transparent; text-align: center;
  transition: .15s;
}
.reading-tab.active { background: #fff; color: var(--primary-dark); box-shadow: 0 2px 8px rgba(40,60,30,0.1); }
.lib-group { margin-bottom: 18px; }
.lib-group-title {
  font-size: 13px; font-weight: 700; color: var(--primary-dark);
  margin-bottom: 8px; padding-left: 6px; border-left: 3px solid var(--accent);
}
.reading-tags { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.reading-tags .reading-tag { margin-bottom: 0; }
.reading-exam {
  font-size: 11px; font-weight: 600; color: var(--accent);
  background: rgba(224,138,75,0.12); padding: 2px 9px; border-radius: 20px;
}
.btn-expand {
  background: var(--accent); color: #fff; padding: 6px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 600; margin-right: 6px; transition: transform .12s;
}
.btn-expand:active { transform: scale(.94); }
.reading-full { margin-top: 10px; }
.reading-full p {
  font-size: 14px; line-height: 1.9; color: var(--text); margin-bottom: 12px;
  text-align: justify; text-indent: 2em;
}
.reading-review {
  margin-top: 4px; padding: 12px 14px; font-size: 13px; line-height: 1.7;
  color: var(--primary-dark); background: var(--primary-light);
  border-radius: 12px; border-left: 3px solid var(--primary);
}

/* ---------- 修行模块 ---------- */
.info-row { margin-bottom: 10px; font-size: 14px; line-height: 1.5; }
.info-row strong { color: var(--primary-dark); }
.btn-refresh { background: var(--primary-light); color: var(--primary-dark); padding: 6px 12px; border-radius: 20px; font-size: 12px; transition: transform .12s; }
.btn-refresh:active { transform: scale(.94); }

.history-list { max-height: 60vh; overflow-y: auto; }
.history-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #F0F0F0; font-size: 14px; }
.history-date { color: var(--text-secondary); }
.history-count { font-weight: 700; color: var(--primary-dark); }

/* ---------- 弹窗 ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.modal.hidden { display: none; }
.modal-mask { position: absolute; inset: 0; background: rgba(20,30,15,0.4); backdrop-filter: blur(2px); }
.modal-card { position: relative; background: var(--card); border-radius: var(--radius); width: 88%; max-width: 360px; max-height: 80vh; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); animation: cardPop .32s ease both; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.modal-header span { font-weight: 700; color: var(--primary-dark); }
.modal-close { background: transparent; font-size: 22px; color: var(--text-secondary); }
.modal-body { padding: 16px; overflow-y: auto; }

.form-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; display: block; }
.form-input { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; font-size: 14px; background: #FBFCF9; }
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,138,79,0.10); }
.modal-body .btn-primary { margin-top: 4px; }

@media (max-width: 360px) {
  .side-nav { width: 68px; }
  .nav-item { font-size: 10px; }
}

/* ---------- 每日财经 ---------- */
.fin-up { color: #C0392B; }      /* 涨 = 红 */
.fin-down { color: #2E8B57; }    /* 跌 = 绿 */
.fin-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fin-price {
  background: linear-gradient(160deg, #EEF6EC, #F7FBF3); border-radius: var(--radius-sm);
  padding: 11px 12px; border: 1px solid rgba(79,138,79,0.12);
}
.fin-price-name { font-size: 12px; color: var(--text-secondary); margin-bottom: 4px; }
.fin-price-val { font-size: 17px; font-weight: 800; color: var(--text); line-height: 1.15; }
.fin-unit { font-size: 11px; font-weight: 500; color: var(--text-secondary); }
.fin-change { font-size: 12px; font-weight: 700; margin-top: 3px; }
.fin-note { font-size: 11px; color: var(--text-secondary); margin-top: 4px; line-height: 1.4; }

.fin-themes { display: flex; flex-direction: column; gap: 9px; }
.fin-theme { display: flex; gap: 9px; align-items: flex-start; }
.fin-theme-rank {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #4F8A4F, #6BA258); color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.fin-theme-body { flex: 1; min-width: 0; }
.fin-theme-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; }
.fin-inst { font-size: 12px; font-weight: 700; color: var(--primary-dark); }
.fin-theme-name { font-size: 13px; font-weight: 700; color: var(--text); }
.fin-theme-reason { font-size: 11.5px; color: var(--text-secondary); margin-top: 2px; line-height: 1.45; }
.fin-summary {
  margin-top: 10px; padding: 9px 11px; background: var(--bg);
  border-radius: var(--radius-sm); font-size: 12px; color: var(--text-secondary); line-height: 1.55;
}

/* 板块多空汇总柱状图 */
.sector-chart { margin-top: 12px; padding: 12px 12px 4px; background: var(--bg); border-radius: var(--radius-sm); }
.sc-head { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.sc-sample { font-size: 11px; color: var(--text-secondary); margin-bottom: 8px; line-height: 1.5; }
.sc-sample b { color: #E23B3B; font-size: 12px; }
.sc-legend { font-size: 11px; color: var(--text-secondary); margin-bottom: 10px; display: flex; gap: 16px; align-items: center; }
.sc-leg { display: inline-block; width: 12px; height: 12px; border-radius: 3px; vertical-align: -2px; }
.sc-leg.sc-bull { background: linear-gradient(135deg, #FF7A7A, #E23B3B); }
.sc-leg.sc-bear { background: linear-gradient(135deg, #3FD093, #1FA86A); }
.sc-row { display: flex; align-items: center; margin: 11px 0 1px; }
.sc-name { width: 92px; flex-shrink: 0; font-size: 12.5px; font-weight: 700; color: var(--text); text-align: right; padding-right: 9px; line-height: 1.25; }
.sc-tag { display: block; font-size: 9.5px; font-weight: 700; margin-top: 2px; }
.sc-tag.sc-strong { color: #C0182B; }
.sc-tag.sc-bull { color: #E23B3B; }
.sc-tag.sc-mid { color: #F0663B; }
.sc-tag.sc-warm { color: #E0962B; }
.sc-tag.sc-diff { color: #8A8A8A; }
.sc-tag.sc-care { color: #1FA86A; }
.sc-tag.sc-less { color: #B0B0B0; }
.sc-track { position: relative; flex: 1; height: 18px; background: rgba(0,0,0,.04); border-radius: 6px; }
.sc-axis { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(0,0,0,.16); }
.sc-bar { position: absolute; top: 2px; height: 14px; border-radius: 4px; }
.sc-bull-bar { left: 50%; background: linear-gradient(135deg, #FF7A7A, #E23B3B); }
.sc-bear-bar { right: 50%; background: linear-gradient(135deg, #3FD093, #1FA86A); }
.sc-foot { display: flex; gap: 10px; align-items: center; margin: 1px 0 0 101px; font-size: 10.5px; font-weight: 600; flex-wrap: wrap; }
.sc-cbull { color: #E23B3B; }
.sc-cbear { color: #1FA86A; }
.sc-cneu { color: #8A8A8A; }
.sc-csamp { color: #B0B0B0; }
.sc-net { margin-left: auto; padding: 1px 7px; border-radius: 10px; font-weight: 800; font-size: 11px; }
.sc-net.pos { color: #fff; background: linear-gradient(135deg, #FF7A7A, #E23B3B); }
.sc-net.neg { color: #fff; background: linear-gradient(135deg, #3FD093, #1FA86A); }
.sc-note { font-size: 11px; color: var(--text-secondary); margin: 2px 0 2px 101px; line-height: 1.5; }

.fin-flows { display: flex; flex-direction: column; gap: 8px; }
.fin-flow {
  display: flex; flex-direction: column;
  padding: 8px 11px; background: var(--bg); border-radius: var(--radius-sm);
}
.fin-flow-sector { font-size: 13px; font-weight: 700; color: var(--text); }
.fin-flow-amt { font-size: 14px; font-weight: 800; margin-top: 2px; }

.fin-advice-card { background: linear-gradient(160deg, #FFFFFF, #F3F8EE); }
.fin-advice { font-size: 13px; line-height: 1.7; color: var(--text); }
.fin-meta { margin-top: 10px; font-size: 11px; }

/* ---------- 财经言论（大佬/机构观点） ---------- */
.voice-card-wrap { background: linear-gradient(160deg, #FFFFFF, #F1F5F9); }
.voice-list { display: flex; flex-direction: column; gap: 10px; }
.voice-item {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(54,96,128,0.14);
  border-radius: 14px;
  padding: 11px 13px;
  box-shadow: 0 2px 10px rgba(31,64,104,0.06);
}
.voice-top { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 6px; }
.voice-stance {
  flex-shrink: 0; font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 999px;
  color: #fff; letter-spacing: 0.5px;
}
.voice-bear { background: linear-gradient(135deg, #E5604D, #C0392B); }
.voice-bull { background: linear-gradient(135deg, #3BAE7A, #1F8A57); }
.voice-warn { background: linear-gradient(135deg, #E8954A, #D97706); }
.voice-neutral { background: linear-gradient(135deg, #5B8FB9, #3B6EA5); }
.voice-speaker { font-size: 13.5px; font-weight: 700; color: var(--text); }
.voice-aff { font-size: 11.5px; color: var(--text-secondary); }
.voice-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 5px; line-height: 1.5; }
.voice-summary { font-size: 12.5px; line-height: 1.65; color: var(--text); margin-bottom: 6px; }
.voice-detail { font-size: 12px; line-height: 1.7; color: var(--text-secondary); }
.voice-foot { margin-top: 7px; display: flex; flex-wrap: wrap; gap: 10px; font-size: 11px; color: #8A97A6; }
.voice-date { font-weight: 600; color: #6B7785; }

/* ---------- 理财智慧 ---------- */
.wis-card { background: linear-gradient(160deg, #FFFDF6, #F4F1E4); border: 1px solid rgba(181,154,74,0.25); }
.wis-person { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.wis-avatar {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(145deg, #B59A4A, #8A6D2B); color: #fff;
  font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(138,109,43,0.28);
}
.wis-person-info { min-width: 0; }
.wis-name { font-size: 16px; font-weight: 800; color: #5C4A1E; }
.wis-en { font-size: 11px; font-weight: 500; color: var(--text-secondary); }
.wis-role { font-size: 11.5px; color: var(--text-secondary); margin-top: 2px; line-height: 1.4; }
.wis-title { font-size: 14.5px; font-weight: 800; color: var(--text); margin: 4px 0 8px; line-height: 1.45; }
.wis-story { font-size: 13px; line-height: 1.85; color: #3A3A3A; text-align: justify; }
.wis-lessons-title { margin-top: 14px; font-size: 13px; font-weight: 800; color: #8A6D2B; }
.wis-lessons { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.wis-lesson { display: flex; gap: 9px; align-items: flex-start; background: rgba(181,154,74,0.10); border-radius: var(--radius-sm); padding: 8px 10px; }
.wis-lesson-num {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: #B59A4A; color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.wis-lesson span:last-child { font-size: 12.5px; line-height: 1.55; color: var(--text); }
.wis-quote {
  margin-top: 14px; padding: 10px 12px; background: #3A3120; color: #F6EFD8;
  border-radius: var(--radius-sm); font-size: 13px; line-height: 1.7; font-style: italic;
}
.wis-source { margin-top: 10px; font-size: 11px; color: var(--text-secondary); }

/* ---------- 破茧职业（冷门新职业） ---------- */
.car-intro { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; background: rgba(70,110,140,0.08); border-left: 3px solid #4A7DA0; padding: 8px 10px; border-radius: var(--radius-sm); }
.car-card { background: linear-gradient(160deg, #F4FAFC, #E7F1F6); border: 1px solid rgba(74,125,160,0.25); }
.car-head { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.car-emoji { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #4A7DA0, #6FA8C7); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; box-shadow: 0 3px 10px rgba(74,125,160,0.28); }
.car-head-info { min-width: 0; }
.car-name { font-size: 16px; font-weight: 800; color: #2C5070; }
.car-en { font-size: 11px; font-weight: 500; color: var(--text-secondary); }
.car-tag { display: inline-block; margin-top: 3px; font-size: 11px; color: #2C5070; background: rgba(74,125,160,0.15); border-radius: 20px; padding: 2px 9px; }
.car-label { margin-top: 14px; font-size: 13px; font-weight: 800; color: #2C5070; }
.car-intro-text { font-size: 13px; line-height: 1.85; color: #3A3A3A; text-align: justify; margin-top: 6px; }
.car-path { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.car-step { display: flex; gap: 9px; align-items: flex-start; background: rgba(74,125,160,0.10); border-radius: var(--radius-sm); padding: 8px 10px; }
.car-step-num { width: 20px; height: 20px; border-radius: 50%; background: #4A7DA0; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.car-step span:last-child { font-size: 12.5px; line-height: 1.55; color: var(--text); }
.car-prospect { font-size: 13px; line-height: 1.85; color: #3A3A3A; text-align: justify; margin-top: 6px; background: rgba(74,125,160,0.08); border-radius: var(--radius-sm); padding: 9px 11px; }
.car-source { margin-top: 10px; font-size: 11px; color: var(--text-secondary); }

/* ---------- 情商·幽默日课 ---------- */
.eq-today {
  background: linear-gradient(160deg, #FFF6EE, #FDEEE2);
  border: 1px solid rgba(224,138,75,0.30);
  cursor: pointer;
}
.eq-badge {
  display: inline-block; font-size: 12px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--accent), #EFA968);
  padding: 3px 12px; border-radius: 20px; margin-bottom: 10px;
}
.eq-title { font-size: 18px; font-weight: 800; color: #3A2C20; line-height: 1.4; }
.eq-tech { display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 700; color: #C2410C; background: #FFF1E6; border: 1px solid #FFD9BE; border-radius: 8px; padding: 5px 11px; line-height: 1.5; }
.eq-scene { margin-top: 12px; font-size: 13.5px; line-height: 1.7; color: #5A4A3A; background: rgba(224,138,75,0.10); border-radius: var(--radius-sm); padding: 10px 12px; }
.eq-open { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 4px; }
.eq-hint { color: var(--text-secondary); line-height: 1.6; }
.eq-list-title { margin: 18px 4px 10px; font-size: 14px; font-weight: 800; color: var(--text); }
.eq-item { cursor: pointer; }
.eq-item:active { background: var(--accent-soft); }

/* ---------- 双鱼座·性格优势与经济变现 ---------- */
.pisces-card {
  background: linear-gradient(165deg, #F6F4FF, #EFECFB);
  border: 1px solid rgba(109, 91, 208, 0.22);
}
.pisces-card .card-title { color: #4A3D8F; }
.pisces-meta { font-size: 12px; color: var(--text-secondary); margin: -4px 0 14px; line-height: 1.6; }
.pisces-sec-title {
  font-size: 14px; font-weight: 800; color: #4A3D8F;
  margin: 18px 0 11px; padding-left: 10px;
  border-left: 4px solid #8B7BE0; line-height: 1.3;
}
.pisces-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pisces-chip {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 91, 208, 0.16);
  border-radius: var(--radius-sm); padding: 11px 12px;
}
.pisces-chip-name { font-size: 13.5px; font-weight: 800; color: #3D327E; margin-bottom: 4px; }
.pisces-chip-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }
.pisces-paths { display: flex; flex-direction: column; gap: 10px; }
.pisces-path { display: flex; gap: 11px; align-items: flex-start; }
.pisces-path-no {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #8B7BE0, #6D5BD0); color: #fff;
  font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pisces-path-title { font-size: 13.5px; font-weight: 700; color: var(--text); line-height: 1.4; }
.pisces-path-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; margin-top: 3px; }
.pisces-cases { display: flex; flex-direction: column; gap: 10px; }
.pisces-case {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 91, 208, 0.18);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.pisces-case.open { border-color: rgba(109, 91, 208, 0.45); box-shadow: var(--shadow-sm); }
.pisces-case-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 13px; cursor: pointer;
}
.pisces-case-head:active { background: rgba(109, 91, 208, 0.08); }
.pisces-case-name { font-size: 14.5px; font-weight: 800; color: #3D327E; }
.pisces-case-sub { font-size: 11.5px; color: var(--text-secondary); margin-top: 2px; }
.pisces-case-trait {
  display: inline-block; margin-top: 6px; font-size: 11.5px; font-weight: 700;
  color: #5B4BB0; background: #ECE8FB; border: 1px solid #D9D1F5;
  border-radius: 8px; padding: 3px 9px; line-height: 1.5;
}
.pisces-case-chev {
  flex-shrink: 0; font-size: 16px; color: #8B7BE0; transition: transform .25s ease;
}
.pisces-case.open .pisces-case-chev { transform: rotate(180deg); }
.pisces-case-body {
  max-height: 0; overflow: hidden; padding: 0 13px;
  transition: max-height .3s ease, padding .3s ease;
}
.pisces-case.open .pisces-case-body { max-height: 640px; padding: 2px 13px 14px; }
.pisces-case-label { font-size: 11px; font-weight: 800; color: #8B7BE0; margin-bottom: 4px; letter-spacing: .3px; }
.pisces-case-story { font-size: 13px; color: var(--text); line-height: 1.72; }
.pisces-case-lesson {
  margin-top: 11px; font-size: 13px; line-height: 1.7; color: #3D327E;
  background: rgba(139, 123, 224, 0.10); border-radius: 10px; padding: 10px 12px;
}
.pisces-lesson-tag { display: block; font-size: 11.5px; font-weight: 800; color: #6D5BD0; margin-bottom: 3px; }
.pisces-hint { text-align: center; font-size: 11.5px; color: var(--text-secondary); margin-top: 10px; }
.pisces-feas { background: rgba(255, 255, 255, 0.6); border-radius: var(--radius-sm); padding: 12px 14px; }
.pisces-feas ul { margin: 0; padding-left: 18px; }
.pisces-feas li { font-size: 12.5px; color: var(--text); line-height: 1.68; margin-bottom: 9px; }
.pisces-feas li:last-child { margin-bottom: 0; }

/* ===== 每日好文 · 建议与分享 ===== */
.good-article { border-left: 4px solid var(--accent); }
.ga-meta { font-size: 11.5px; color: var(--text-secondary); margin-bottom: 6px; }
.ga-title { font-size: 17px; font-weight: 800; color: var(--text); line-height: 1.4; margin-bottom: 8px; }
.ga-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.ga-tag {
  font-size: 11px; font-weight: 700; color: #C0712E;
  background: var(--accent-soft); border: 1px solid #F0D4B8;
  border-radius: 8px; padding: 2px 9px; line-height: 1.6;
}
.ga-excerpt { font-size: 13.5px; color: var(--text); font-style: italic; line-height: 1.66; margin-bottom: 10px; padding-left: 11px; border-left: 3px solid var(--border); }
.ga-body { font-size: 13.5px; color: var(--text); line-height: 1.78; margin-bottom: 12px; }
.ga-why {
  font-size: 13px; line-height: 1.66; color: #8A5A2B;
  background: rgba(224, 138, 75, 0.10); border-radius: 10px; padding: 10px 12px;
}
.ga-why-tag { display: block; font-size: 11.5px; font-weight: 800; color: var(--accent); margin-bottom: 3px; }

/* ===== 每日睿语 ===== */
.daily-quote { border-left: 4px solid var(--primary); background: linear-gradient(160deg, #FFFFFF 0%, var(--primary-light) 100%); }
.dq-text { font-size: 16.5px; font-weight: 700; color: var(--text); line-height: 1.6; margin: 4px 0 10px; }
.dq-author { font-size: 12.5px; color: var(--primary-dark); font-weight: 700; text-align: right; margin-bottom: 12px; }
.dq-use {
  font-size: 13px; line-height: 1.66; color: #356B3A;
  background: rgba(79, 138, 79, 0.10); border-radius: 10px; padding: 10px 12px;
}
.dq-use-tag { display: block; font-size: 11.5px; font-weight: 800; color: var(--primary); margin-bottom: 3px; }

/* ===== 康波周期（Kondratiev 长波）知识卡 ===== */
.kangbo-card {
  background: linear-gradient(165deg, #EAF2FB, #DCEBF7);
  border: 1px solid rgba(31, 78, 121, 0.22);
}
.kangbo-card .card-title { color: #1F4E79; }
.kangbo-meta { font-size: 12px; color: var(--text-secondary); margin: -4px 0 14px; line-height: 1.6; }
.kangbo-intro {
  font-size: 13px; line-height: 1.72; color: var(--text); margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.72); border-radius: 10px; padding: 11px 13px;
}
.kangbo-clarify {
  font-size: 11.5px; line-height: 1.66; color: #7A5A2E; margin-bottom: 14px;
  background: rgba(224, 138, 75, 0.12); border-left: 3px solid #D97706;
  border-radius: 8px; padding: 9px 11px;
}
.kangbo-sec { margin-bottom: 6px; }
.kangbo-sec-title {
  font-size: 14px; font-weight: 800; color: #1F4E79;
  margin: 18px 0 11px; padding-left: 10px;
  border-left: 4px solid #3B7BB5; line-height: 1.3;
}
.kangbo-facts { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.kangbo-fact {
  display: flex; gap: 9px; align-items: baseline;
  background: rgba(255, 255, 255, 0.7); border-radius: 8px; padding: 8px 11px;
}
.kf-label { flex-shrink: 0; font-size: 12px; font-weight: 800; color: #2E6FA3; width: 64px; }
.kf-val { font-size: 12.5px; color: var(--text); line-height: 1.55; }
.kangbo-phases { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kangbo-phase {
  background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(31, 78, 121, 0.14);
  border-radius: var(--radius-sm); padding: 10px 11px;
}
.kp-head { display: flex; flex-direction: column; gap: 2px; margin-bottom: 5px; }
.kp-phase { font-size: 13px; font-weight: 800; color: #1F4E79; }
.kp-years { font-size: 11px; color: var(--text-secondary); }
.kp-desc { font-size: 11.5px; color: var(--text-secondary); line-height: 1.55; }
.kangbo-history { display: flex; flex-direction: column; gap: 9px; }
.kangbo-wave {
  display: flex; gap: 10px; align-items: stretch;
  background: rgba(255, 255, 255, 0.7); border-radius: 10px; padding: 10px 11px;
}
.kw-no {
  flex-shrink: 0; width: 64px; font-size: 12.5px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #3B7BB5, #1F4E79);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4px;
}
.kw-body { flex: 1; min-width: 0; }
.kw-head { display: flex; flex-wrap: wrap; gap: 7px; align-items: baseline; margin-bottom: 4px; }
.kw-years { font-size: 12px; font-weight: 700; color: #2E6FA3; }
.kw-tech { font-size: 12.5px; font-weight: 700; color: var(--text); }
.kw-note { font-size: 11.5px; color: var(--text-secondary); line-height: 1.55; }
.kangbo-position {
  font-size: 13px; line-height: 1.7; color: var(--text); font-weight: 600;
  background: rgba(59, 123, 181, 0.10); border-radius: 10px; padding: 10px 12px; margin-bottom: 12px;
}
.kangbo-sub { font-size: 12.5px; font-weight: 800; color: #1F4E79; margin: 4px 0 7px; }
.kangbo-list { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.kangbo-list li { font-size: 12.5px; line-height: 1.62; color: var(--text); }
.kangbo-list-rec li { color: #2C5A2E; }
.kangbo-quotes { display: flex; flex-direction: column; gap: 11px; }
.kangbo-quote {
  background: rgba(255, 255, 255, 0.78); border-left: 3px solid #3B7BB5;
  border-radius: 8px; padding: 10px 12px;
}
.kq-top { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 6px; }
.kq-who { font-size: 12.5px; font-weight: 800; color: #1F4E79; }
.kq-tag {
  font-size: 10.5px; font-weight: 700; color: #7A5A2E;
  background: rgba(224, 138, 75, 0.16); border-radius: 6px; padding: 2px 7px;
}
.kq-text { font-size: 13px; line-height: 1.7; color: var(--text); }
.kq-note { font-size: 11px; color: var(--text-secondary); margin-top: 5px; }

/* ===== 未来已来 · 科技前沿 ===== */
.future-hint { line-height: 1.6; }
.future-today {
  border: 1px solid rgba(67, 97, 238, 0.22);
  background: linear-gradient(160deg, #fff, #EEF1FE);
  border-radius: 14px; padding: 14px 14px 12px; margin-top: 4px; cursor: pointer;
  box-shadow: 0 4px 14px rgba(67, 97, 238, 0.08);
}
.future-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 7px; }
.future-cat {
  font-size: 11px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #4361EE, #6E8BFF); border-radius: 20px; padding: 2px 10px;
}
.future-region {
  font-size: 10.5px; font-weight: 700; color: #3A4FB0;
  background: rgba(67, 97, 238, 0.12); border-radius: 20px; padding: 2px 9px;
}
.future-title { font-size: 17px; font-weight: 800; line-height: 1.4; color: var(--text); margin-bottom: 6px; }
.future-summary { font-size: 13px; line-height: 1.65; color: var(--text-secondary); }
.future-open {
  margin-top: 9px; font-size: 12.5px; font-weight: 700; color: #4361EE;
  display: flex; align-items: center; gap: 4px;
}
.future-list-title {
  font-size: 12.5px; font-weight: 800; color: var(--text); margin: 16px 0 4px;
  padding-left: 2px;
}
.future-cat-row { margin-top: 11px; }
.future-cat-tag {
  display: inline-block; font-size: 11.5px; font-weight: 800; color: #3A4FB0;
  background: rgba(67, 97, 238, 0.10); border-radius: 8px; padding: 3px 10px;
}
.future-item .news-title { font-size: 14.5px; }

/* ===== 城镇观察（每日一城） ===== */
.town-card { background: linear-gradient(180deg, #fff 0%, #f7fbf9 100%); border: 1px solid rgba(46, 125, 91, 0.18); }
.town-meta {
  font-size: 11px; font-weight: 800; letter-spacing: .3px; color: #1f7a52;
  background: rgba(46, 125, 91, 0.12); display: inline-block; border-radius: 20px; padding: 3px 11px; margin: 2px 0 4px;
}
.town-name { font-size: 22px; font-weight: 900; line-height: 1.3; color: var(--text); margin: 2px 0 8px; }
.town-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 11px; }
.town-tag {
  font-size: 11px; font-weight: 700; color: #2e7d5b;
  background: rgba(46, 125, 91, 0.10); border: 1px solid rgba(46, 125, 91, 0.16);
  border-radius: 8px; padding: 3px 9px;
}
.town-summary {
  font-size: 13.5px; line-height: 1.7; color: var(--text-secondary);
  background: rgba(46, 125, 91, 0.06); border-left: 3px solid #2e7d5b;
  padding: 9px 12px; border-radius: 0 10px 10px 0; margin-bottom: 14px;
}
.town-sec-title {
  font-size: 14px; font-weight: 800; color: var(--text);
  margin: 15px 0 7px; padding-left: 9px; border-left: 3px solid #2e7d5b;
}
.town-text { font-size: 13px; line-height: 1.72; color: var(--text-secondary); white-space: pre-line; }
.town-list { margin: 0 0 4px; padding-left: 20px; }
.town-list li { font-size: 13px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 5px; }
.town-list-opp li::marker { color: #2e7d5b; }
.town-list-ch li::marker { color: #c2410c; }
.town-insight {
  font-size: 13.5px; line-height: 1.75; color: #1f7a52; font-weight: 600;
  background: rgba(46, 125, 91, 0.08); border-radius: 10px; padding: 11px 13px;
}
.town-source { font-size: 11px; color: var(--text-tertiary, #9aa3ad); margin-top: 13px; line-height: 1.5; }
.town-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 16px; padding-top: 13px; border-top: 1px dashed rgba(46, 125, 91, 0.22);
}
.town-count { font-size: 11.5px; font-weight: 700; color: #2e7d5b; }

