/* SteelSynapse Ai - Mobile Website Styles */
/* 主色：商务蓝 #1E3A5F */
/* 辅色：中国红 #C41E3A */

:root {
  --primary-blue: #1E3A5F;
  --secondary-red: #C41E3A;
  --light-blue: #2C5282;
  --bg-gray: #F5F7FA;
  --text-dark: #1A202C;
  --text-gray: #718096;
  --white: #FFFFFF;
  --border: #E2E8F0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-gray);
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
}

/* 通用容器 */
.container {
  padding: 16px;
}

/* 头部导航 */
.header {
  background: var(--primary-blue);
  color: var(--white);
  padding: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h1 {
  font-size: 18px;
  font-weight: 600;
}

.header-back {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 底部导航 */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 100;
}

.tab-item {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tab-item.active {
  color: var(--primary-blue);
}

.tab-item .icon {
  font-size: 20px;
}

/* 卡片列表 */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 80px;
}

.news-card {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.tag-variety {
  background: #EBF4FF;
  color: var(--primary-blue);
}

.tag-direction {
  background: #FED7D7;
  color: var(--secondary-red);
}

.tag-strength {
  background: #FEEBC8;
  color: #C05621;
}

.card-time {
  font-size: 11px;
  color: var(--text-gray);
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.card-summary {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 详情页 */
.detail-section {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.detail-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.detail-meta {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}

.detail-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* 驱动分析模块 */
.drive-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.drive-item:last-child {
  border-bottom: none;
}

.drive-score {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.drive-score.bearish {
  background: #C41E3A;
}

.drive-score.bullish {
  background: #1E3A5F;
}

.drive-score.neutral {
  background: #718096;
}

.drive-info {
  flex: 1;
}

.drive-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.drive-desc {
  font-size: 13px;
  color: var(--text-gray);
}

/* 交易策略模块 */
.strategy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.strategy-table th {
  background: var(--bg-gray);
  padding: 10px 8px;
  text-align: left;
  font-weight: 600;
  color: var(--primary-blue);
  border-bottom: 1px solid var(--border);
}

.strategy-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
}

.strategy-table tr:last-child td {
  border-bottom: none;
}

.direction-tag {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.direction-tag.long {
  background: #FED7D7;
  color: var(--secondary-red);
}

.direction-tag.short {
  background: #EBF4FF;
  color: var(--primary-blue);
}

.direction-tag.watch {
  background: #FEEBC8;
  color: #C05621;
}

/* 风控建议 */
.risk-list {
  list-style: none;
}

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.risk-item:last-child {
  border-bottom: none;
}

.risk-icon {
  color: var(--secondary-red);
  font-size: 16px;
  flex-shrink: 0;
}

/* 复盘验证模块 */
.verification-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.verification-table th {
  background: var(--bg-gray);
  padding: 8px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.verification-table td {
  padding: 8px;
  border-bottom: 1px solid var(--border);
}

.result-tag {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.result-tag.correct {
  background: #C6F6D5;
  color: #276749;
}

.result-tag.wrong {
  background: #FED7D7;
  color: var(--secondary-red);
}

.result-tag.partial {
  background: #FEEBC8;
  color: #C05621;
}

/* 登录/注册页面 */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 40px;
}

.auth-logo h1 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 8px;
}

.auth-logo p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.auth-form {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  flex: 1;
}

.form-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}

.btn-primary:active {
  background: var(--light-blue);
}

.auth-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-gray);
}

.auth-switch a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

/* 加载状态 */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.loading::after {
  content: '';
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 空状态 */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-gray);
}

.empty-state .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-state p {
  font-size: 14px;
}

/* 模块标题 */
.module-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.module-title::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--primary-blue);
  border-radius: 2px;
}

/* 分隔线 */
.section-divider {
  height: 12px;
  background: var(--bg-gray);
  margin: 0 -16px;
}

/* 隐藏类 */
.hidden {
  display: none !important;
}

/* 页面容器 padding调整 */
.page {
  padding-bottom: 80px;
}

/* 行情区域样式 */
.section {
  margin-bottom: 24px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding: 0 16px;
}

/* 期货行情网格 */
.futures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 16px;
}

.futures-item {
  background: var(--white);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.futures-item.up {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
}

.futures-item.down {
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
}

.futures-name {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.futures-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.futures-change {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
}

.futures-change.up {
  color: #DC2626;
}

.futures-change.down {
  color: #16A34A;

/* 标签方向样式 */
.tag-direction.bullish {
  background: #FEE2E2;
  color: #DC2626;
}

.tag-direction.bearish {
  background: #DCFCE7;
  color: #16A34A;
}

.tag-direction.neutral {
  background: #F3F4F6;
  color: #6B7280;
}

/* 新闻卡片样式优化 */
.news-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.news-card:active {
  background: #F9FAFB;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  background: var(--bg-gray);
  color: var(--text-gray);
}

.card-time {
  font-size: 12px;
  color: var(--text-gray);
  white-space: nowrap;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.card-summary {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* 详情页样式 */
.detail-section {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.detail-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.detail-content {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================
   新版首页 - 科技感风格
   ============================================ */

/* 粒子画布 */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* 顶部导航 */
.home-main {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,58,95,0.1);
  color: var(--primary-blue);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
}

.logo-s {
  color: var(--secondary-red);
}

.logo-ai {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-red);
  margin-left: 2px;
}

.header-time {
  font-size: 12px;
  color: var(--text-gray);
  font-variant-numeric: tabular-nums;
}

/* Hero全息区域 */
.hero-section {
  text-align: center;
  padding: 40px 16px 24px;
  position: relative;
  background: linear-gradient(180deg, rgba(245,247,250,0.7) 0%, rgba(245,247,250,0) 100%);
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(ellipse at center,
    rgba(196,30,58,0.08) 0%,
    rgba(30,58,95,0.05) 40%,
    transparent 70%);
  pointer-events: none;
}

.hero-title {
  margin: 0;
  line-height: 1;
}

.hero-title-main {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-blue);
  letter-spacing: -1px;
}

.hero-ai {
  color: var(--secondary-red);
}

.glow-s {
  text-shadow:
    0 0 10px rgba(196,30,58,0.6),
    0 0 20px rgba(196,30,58,0.4),
    0 0 40px rgba(196,30,58,0.2);
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 8px;
  letter-spacing: 2px;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-red), var(--primary-blue));
  margin: 16px auto 0;
  border-radius: 1px;
}

/* 全息状态面板 */
.status-panel {
  margin: 0 16px 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(30,58,95,0.15);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(30,58,95,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
}

.status-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--primary-blue), #2a4f7a);
  color: white;
}

.status-panel-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.status-panel-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4ade80;
}

.live-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}

/* 扫描线 */
.scan-line {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(30,58,95,0.3) 30%,
    rgba(30,58,95,0.3) 70%,
    transparent 100%);
  position: relative;
  overflow: hidden;
}

.scan-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30,58,95,0.6), transparent);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% { left: -50%; }
  100% { left: 150%; }
}

.status-grid {
  padding: 8px 0;
}

/* 单个状态项 */
.status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  transition: background 0.2s;
  position: relative;
}

.status-item::before {
  content: '';
  position: absolute;
  left: 16px; right: 16px;
  bottom: 0;
  height: 1px;
  background: rgba(30,58,95,0.06);
}

.status-item:last-child::before { display: none; }

/* 状态指示点 */
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.status-dot.running {
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.7);
}

.status-dot.running::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(74,222,128,0.4);
  animation: ring-pulse 2s ease-out infinite;
}

@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.status-dot.normal {
  background: #60a5fa;
  box-shadow: 0 0 6px rgba(96,165,250,0.7);
}

.status-dot.normal::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(96,165,250,0.4);
  animation: ring-pulse-blue 2.5s ease-out infinite;
}

@keyframes ring-pulse-blue {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.status-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.status-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.status-label {
  font-size: 10px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
}

/* 状态进度条 */
.status-bar {
  width: 48px;
  height: 3px;
  background: rgba(30,58,95,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.status-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-red));
  border-radius: 2px;
  animation: bar-load 1.5s ease-out forwards;
}

@keyframes bar-load {
  from { width: 0 !important; }
}

/* 统计数字卡片 */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 16px 16px;
}

.stat-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(30,58,95,0.1);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 12px rgba(30,58,95,0.06);
}

.stat-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-blue);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 10px;
  color: var(--text-gray);
  letter-spacing: 0.3px;
}

/* Section标题 */
.section {
  margin: 0 16px 16px;
}

.section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 3px solid var(--secondary-red);
  letter-spacing: 0.3px;
}

/* 期货行情网格 */
.futures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.futures-card {
  background: white;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.futures-name {
  font-size: 11px;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.futures-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  font-variant-numeric: tabular-nums;
}

.futures-change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}

.futures-change.up { color: #ef4444; }
.futures-change.down { color: #22c55e; }

/* 新闻列表 */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card {
  background: white;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  display: flex;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.news-thumb {
  width: 60px; height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-gray);
}

.news-info { flex: 1; min-width: 0; }

.news-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.news-meta {
  font-size: 11px;
  color: var(--text-gray);
  margin-top: 4px;
}

/* Tab栏 */
.tab-bar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
}

/* 登录页适配 */
.auth-page {
  background: white;
}

/* 响应式 */
@media (max-width: 375px) {
  .hero-title-main { font-size: 28px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 15px; }
}

/* 首页最新资讯卡片 */
.news-compact-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.news-compact-card:active {
  box-shadow: 0 0 0 2px #1E3A5F;
}
.news-compact-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.news-compact-title {
  font-size: 14px;
  font-weight: 600;
  color: #1A202C;
  line-height: 1.4;
  flex: 1;
  margin-right: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-compact-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-compact-badge.bullish { background: #fde8ec; color: #C41E3A; }
.news-compact-badge.bearish { background: #e8f5f0; color: #2a8a5a; }
.news-compact-badge.neutral { background: #F0F0F0; color: #718096; }
.news-compact-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.news-compact-tag {
  font-size: 11px;
  padding: 1px 6px;
  background: #F5F7FA;
  border-radius: 3px;
  color: #718096;
}
.news-compact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid #F0F0F0;
}
.news-compact-summary {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-right: 8px;
}
.news-compact-date {
  font-size: 11px;
  color: #A0AEC0;
  white-space: nowrap;
}

/* ========== 全局免责声明 ========== */
.disclaimer {
  text-align: center;
  font-size: 10px;
  color: #CBD5E0;
  padding: 16px 12px 20px;
  border-top: 1px solid #F0F0F0;
  margin-top: 8px;
}
