/* 杭州运营中心中台·市场主入口 — 样式（浅色主题） */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --ink: #1c2333;
  --ink-2: #5b6478;
  --ink-3: #9aa3b5;
  --line: #e4e8f0;
  --accent: #2b6cb0;
  --accent-2: #2c7a7b;
  --live-bg: #f0f7ff;
  --pending-bg: #f2f3f6;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* 头部 */
header {
  background: linear-gradient(135deg, #1f3a63 0%, #2b6cb0 60%, #2c7a7b 100%);
  color: #fff;
  padding: 56px 0 48px;
}
.site-title { font-size: 32px; font-weight: 700; letter-spacing: 1px; }
.site-sub { margin-top: 10px; font-size: 16px; opacity: .85; }
.stats { margin-top: 22px; display: flex; gap: 28px; }
.stat-num { font-size: 26px; font-weight: 700; }
.stat-num b { font-weight: 700; color: #ffd76e; }
.stat-label { font-size: 13px; opacity: .8; }

/* 区块标题 */
.section { padding: 44px 0 8px; }
.section h2 { font-size: 22px; margin-bottom: 6px; }
.section .section-desc { font-size: 14px; color: var(--ink-2); margin-bottom: 24px; }

/* 模块卡片网格 */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 24px;
}
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }

.card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px 18px;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-live:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(43,108,176,.16); border-color: var(--accent); }
.card-pending { background: var(--pending-bg); }
.card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.card-no { font-size: 13px; color: var(--ink-3); }
.card-icon { font-size: 26px; }
.badge { margin-left: auto; font-size: 12px; padding: 2px 10px; border-radius: 999px; }
.badge-live { background: #e6f4ea; color: #1e7e34; border: 1px solid #bfe3c8; }
.badge-pending { background: #e8e9ec; color: #7a8194; border: 1px solid #d5d8e0; }
.badge-inner { background: #fff3e0; color: #b26a00; border: 1px solid #f0d9b5; }
.card-name { font-size: 18px; font-weight: 700; }
.card-intro { font-size: 13px; color: var(--ink-2); margin-top: 4px; min-height: 22px; }
.card-cta { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--accent); }
.card-cta-dim { color: var(--ink-3); font-weight: 400; }
.card-live { background: var(--live-bg); }

/* 时间轴 */
.timeline { position: relative; padding: 4px 0 12px 22px; border-left: 2px solid var(--line); margin-left: 8px; }
.tl-item { position: relative; padding: 0 0 26px 18px; }
.tl-item:last-child { padding-bottom: 8px; }
.tl-dot {
  position: absolute; left: -31px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent-2);
}
.tl-todo .tl-dot { border-color: #c3c9d6; }
.tl-date { font-size: 12px; color: var(--ink-3); letter-spacing: .5px; }
.tl-title { font-size: 16px; font-weight: 700; margin-top: 2px; }
.tl-todo .tl-title { color: var(--ink-2); font-weight: 600; }
.tl-desc { font-size: 13px; color: var(--ink-2); margin-top: 2px; }

/* 页脚 */
footer { border-top: 1px solid var(--line); margin-top: 36px; padding: 22px 0 34px; }
.foot-note { text-align: center; font-size: 13px; color: var(--ink-3); }
