:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --line: #eaf1fb;
  --primary: #1677ff;
  --primary-dark: #0f5fd1;
  --primary-soft: #69aeff;
  --text: #1b2436;
  --muted: #6f7f96;
  --soft: #f4f8ff;
  --content-pad-x: 10px;
  --main-pad-top: 0px;
  --main-pad-bottom: 10px;
  --space-banner-grid: 16px;
  --space-grid-footer: 16px;
  --warm-shadow: 0 12px 32px rgba(22, 119, 255, 0.12);
  --card-shadow: 0 3px 10px rgba(22, 119, 255, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body, .app-shell { overflow-x: hidden; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  background: #ffffff;
  color: var(--text);
}
a { text-decoration: none; color: inherit; }

.app-shell {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  min-height: 100vh;
  background: #ffffff;
}

/* ── 顶部品牌区 ── */
.topbar {
  padding: 0;
}
.topbar-inner,
.main {
  max-width: 100%;
  margin: 0 auto;
}
.brand-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 8px var(--content-pad-x) 12px;
  border-radius: 0;
  background: #ffffff;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.brand-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.brand-logo-shell {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 4px 12px rgba(22, 119, 255, .10);
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 999px;
  display: block;
}
.brand-fallback { font-size: 18px; font-weight: 700; color: var(--primary); }
.hidden { display: none !important; }
.brand-copy { min-width: 0; }
#siteTitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #122033;
}
.brand-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-inline-badge {
  font-size: 10px;
  color: #fff;
  background: linear-gradient(135deg, #ff9a2f, #ff7b00);
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: none;
}
.brand-metric {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.2;
  color: #8b97ad;
  font-weight: 400;
}

/* ── 主内容区 ── */
.main {
  padding: var(--main-pad-top) var(--content-pad-x) var(--main-pad-bottom);
}

/* ── 轮播图 ── */
.hero-banner {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  border: none;
  overflow: hidden;
  position: relative;
  min-height: 146px;
  background: linear-gradient(135deg, #69aeff 0%, #1677ff 55%, #0f5fd1 100%);
  box-shadow: 0 6px 16px rgba(22, 119, 255, .12);
}
.hero-item {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 18px 16px;
  background-size: cover;
  background-position: center;
}
.hero-item.active { opacity: 1; pointer-events: auto; transform: translateX(0); }
.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,25,56,.04), rgba(7,25,56,.16));
}
.hero-banner-copy { position: relative; z-index: 1; }
.hero-banner-title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #1a1a1a;
}
.hero-item .hero-banner-title { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.15); }
.hero-banner-subtitle {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}
.hero-item .hero-banner-subtitle { color: #fff8ee; }
.hero-dots {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
}
.dot.active { background: #fff; }

/* ── 模块区块 ── */
.section-block {
  margin-top: 16px;
  background: #ffffff;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.section-featured {
  margin-top: var(--space-banner-grid);
  margin-bottom: var(--space-grid-footer);
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 8px;
}
.section-head-compact {
  margin-bottom: 4px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1a2438;
  letter-spacing: 0;
}
.section-head-tip {
  font-size: 11px;
  line-height: 1;
  color: #7c97ba;
  white-space: nowrap;
}
.section-title::before {
  content: '';
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, #69aeff, #1677ff);
}

/* ── 公告 ── */
.notice-list {
  display: grid;
  gap: 10px;
}
.notice-item {
  display: block;
  padding: 10px 12px;
  border: 1px solid #e7eef9;
  border-radius: 8px;
  background: #f8fbff;
}
.notice-item-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  color: #243a61;
}
.notice-item-summary {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.55;
  color: #6b7f9f;
}
.notice-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 34px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #e8f1ff;
  color: var(--primary);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}
.marquee {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  width: 100%;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 38px;
  animation: marquee 12s linear infinite;
}
.marquee-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding-right: 24px;
  white-space: nowrap;
}
.marquee-text,
.marquee-link {
  font-size: 12px;
  color: #4c6488;
  font-weight: 600;
}
.marquee-link { text-decoration: none; }
.marquee-sep { color: #9dc6ff; font-size: 12px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 宫格入口 ── */
.icon-grid,
.mini-grid,
.featured-grid {
  display: grid;
  gap: 10px;
  padding: 0;
}
.featured-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mini-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.icon-btn,
.mini-btn,
.entry-btn {
  min-height: 66px;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 5px 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(15, 54, 120, 0.06);
  transition: transform .15s ease;
}
.icon-btn.featured,
.entry-btn.featured {
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(15, 54, 120, 0.08);
}
.icon-btn:active,
.mini-btn:active,
.entry-btn:active {
  transform: scale(.97);
}
.icon-badge,
.mini-badge,
.entry-icon,
.mini-icon {
  width: 50px;
  height: 48px;
  border-radius: 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: none;
}
.entry-icon svg,
.mini-icon svg,
.entry-icon img,
.mini-icon img {
  width: 52px;
  height: 52px;
  display: block;
}
.entry-btn.shake,
.mini-btn.shake {
  position: relative;
  animation: iconFloatY 2s ease-in-out infinite;
}
@keyframes iconFloatY {
  0%, 100% { transform: translateY(0) scale(1.05); }
  25% { transform: translateY(-5px) translateX(-3px) scale(1); }
  50% { transform: translateY(0) scale(1.05); }
  75% { transform: translateY(-5px) translateX(3px) scale(1); }
}
.icon-text,
.mini-text,
.entry-text {
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  color: #23385d;
}
.icon-state,
.mini-state,
.entry-state {
  font-size: 7px;
  line-height: 1;
  padding: 1px 4px;
  border-radius: 999px;
  font-weight: 700;
}
.state-testing { background: #fff3d6; color: #9a6700; }
.state-coming { background: #f0f0f0; color: #666; }

/* ── 分类列表 ── */
.category-list {
  display: grid;
  gap: 10px;
}
.category-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.category-group-title {
  font-size: 12px;
  font-weight: 700;
  color: #555;
}

.empty-block {
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 12px;
  font-size: 12px;
  color: var(--muted);
}

/* ── 后台管理 ── */
.admin-body { padding: 20px 16px; }
.login-card { max-width: 420px; margin: 60px auto; padding: 24px; background:#fff; border:1px solid var(--line); border-radius:14px; }
.input { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: #fff; }
.error-msg { color: #dc2626; min-height: 20px; }
.admin-panel { padding: 18px; background:#fff; border:1px solid var(--line); border-radius:14px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.admin-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tab-btn { padding: 10px 14px; border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.tab-btn.active, .tab-pane.active { display: block; }
.tab-pane { display: none; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.toolbar, .upload-row { margin-bottom: 12px; }
.table-card { padding: 14px; margin-bottom: 10px; background:#fff; border:1px solid var(--line); border-radius:12px; }
.table-row { display: grid; grid-template-columns: 2fr 1.2fr 1fr 1fr auto; gap: 10px; align-items: center; }
.small { font-size: 12px; color: var(--muted); }
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.45); display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal-card { width: min(760px,100%); padding: 18px; background:#fff; border-radius:14px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 14px; }

/* ── 底部浮动按钮 ── */
.floating-actions {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 40;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 7px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(235,242,255,.85), rgba(255,255,255,.7));
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 4px 24px rgba(0,0,0,.08), inset 0 0 0 1px rgba(255,255,255,.6);
  border: 1px solid rgba(200,215,240,.3);
}
.fab {
  border: none;
  text-decoration: none;
  min-width: 72px;
  height: 40px;
  padding: 0 20px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #2F6FDB;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.fab:active { transform: scale(.95); }
.fab-content {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.fab-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  margin-right: 4px;
}
.fab-icon svg { width: 100%; height: 100%; display: block; }
.fab + .fab::before {
  display: none;
}
.fab-divider {
  width: 1px;
  height: 18px;
  background: rgba(47,111,219,.12);
  margin: 0 8px;
  flex-shrink: 0;
}
.fab-consult-content {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.fab-home { color: #2F6FDB; }
.fab-home:hover { background: rgba(47,111,219,.08); color: #1a5fd1; }
.fab-consult {
  color: #2F6FDB;
  cursor: pointer;
  background: rgba(255,255,255,.6);
}
.fab-consult:hover { background: rgba(47,111,219,.08); color: #1a5fd1; }

/* 咨询按钮小红点 */
.fab-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff4d4f;
  box-shadow: 0 0 6px rgba(255,77,79,.5);
  pointer-events: none;
}

/* 咨询按钮背景呼吸 - 微妙版 */
.fab-consult-pulse {
  animation: fabBreath 2s ease-in-out infinite;
}
@keyframes fabBreath {
  0%, 100% { background: transparent; }
  50% { background: rgba(22,119,255,.04); }
}

/* 咨询按钮晃动 - 与热门入口一致 */
.shake-xy {
  display: inline-flex;
  animation: iconFloatY 2s ease-in-out infinite;
  transform-origin: 50% 60%;
}

/* 备案号链接样式 */
.oc-icp-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color .2s ease;
}
.oc-icp-link:hover { color: #1677ff; }

/* 宫格入口热门角标 — 加大加强 */
.entry-hot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 10px;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7b00, #ff4d4f);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(255,77,79,.4);
  pointer-events: none;
  z-index: 2;
  letter-spacing: 0.5px;
}

/* 热门卡片呼吸发光（仅热门入口显示） */
.entry-btn.shake:has(.entry-hot-badge),
.mini-btn.shake:has(.entry-hot-badge) {
  animation: iconFloatY 2s ease-in-out infinite, hotBreath 2s ease-in-out infinite;
}
@keyframes hotBreath {
  0%, 100% { box-shadow: 0 4px 10px rgba(15, 54, 120, 0.06); }
  50% { box-shadow: 0 4px 16px rgba(22, 119, 255, 0.18), 0 0 12px rgba(22, 119, 255, 0.08); }
}

/* ── 公告弹窗 ── */
.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 58;
}
.notice-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}
.notice-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(86vw, 320px);
  max-height: min(72vh, 520px);
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.14);
}
.notice-card-title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  text-align: center;
}
.notice-card-body {
  max-height: min(48vh, 360px);
  overflow-y: auto;
}
.notice-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.notice-card-actions .btn {
  flex: 1;
  width: 50%;
  margin-top: 0;
}
.notice-close-btn {
  background: #fff;
  color: #7b8798;
  border: 1px solid #d8dee8;
}
.notice-today-btn {
  background: linear-gradient(135deg, #4da3ff, #1677ff);
  color: #fff;
  border: none;
}

/* ── 咨询弹窗 ── */
.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}
.consult-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
}
.consult-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(88vw, 320px);
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.consult-header {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1677ff;
}
.consult-qr-wrap {
  margin-bottom: 14px;
}
.consult-qr {
  width: 180px;
  max-width: 60vw;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  margin: 0 auto;
  display: block;
}
.consult-info {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.consult-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
.consult-row + .consult-row {
  border-top: 1px dashed #eee;
}
.consult-icon {
  font-size: 16px;
  flex-shrink: 0;
}
.consult-label {
  font-size: 12px;
  color: #999;
  flex-shrink: 0;
  width: 28px;
}
.consult-text {
  flex: 1;
  text-align: left;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.consult-copy-btn {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #1677ff;
  background: transparent;
  color: #1677ff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}
.consult-copy-btn:active {
  transform: scale(.95);
}
.consult-copy-btn.copied {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}
.consult-close-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 32px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}
.consult-close-btn:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.btn {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #4da3ff, #1677ff);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ── 桌面端 ── */
@media (min-width: 769px) {
  body { background: #ffffff; }
  .app-shell {
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    margin-top: 0;
    margin-bottom: 0;
  }
}
/* FRESH-2336b */
/* FORCE-2341 */

/* ====== 内容区块 (content_sections) 样式 ====== */
.section-block.section-cards {
  padding: 0;
}

.sections-grid {
  /* grid moved to .section-card-list */
}

/* ── 志愿时间线 ── */
.tl-section-bg {
  background: #fff;
  padding: 0;
}

/* 步骤条/时间线节点 */
.tl-pills {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 0 20px;
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, #e8f0fe 0%, #f0f5ff 60%, #fff 100%);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(47,111,219,.08);
  position: relative;
}
.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  min-width: 56px;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.tl-step:active .tl-step-dot {
  transform: scale(0.9);
}
.tl-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #cdd5e0;
  background: #fff;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.tl-step-dot::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: #fff;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.tl-step.active .tl-step-dot {
  border-color: transparent;
  background: linear-gradient(135deg, #1a5fd1, #4d8ef7);
  box-shadow: 0 4px 14px rgba(47,111,219,.45), 0 0 0 3px rgba(47,111,219,.1);
  transform: scale(1.05);
}
.tl-step.active .tl-step-dot::after {
  transform: translate(-50%, -50%) scale(1);
}
.tl-step-label {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  color: #aeb6c2;
  white-space: nowrap;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.tl-step.active .tl-step-label {
  color: #1440a8;
  font-weight: 700;
  font-size: 12px;
}
.tl-step-line {
  flex: 1;
  height: 3px;
  background: #dde3ed;
  margin-top: 13px;
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  min-width: 14px;
  position: relative;
  overflow: hidden;
}
.tl-step-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1a5fd1, #69aeff);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.tl-step-line.active-left::after {
  transform: scaleX(1);
}
.tl-step-line.active-left {
  background: transparent;
}
.tl-step-line.active-left {
  background: transparent;
}
}

/* 行列表 */
.tl-list {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(15, 54, 120, 0.06);
  overflow: hidden;
}

.tl-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-bottom: 1px solid #f2f4f7;
  transition: background 0.15s;
}
.tl-row:last-child {
  border-bottom: none;
}
.tl-row:active {
  background: #f8f9fc;
}

/* 信息区 */
.tl-info {
  flex: 1;
  min-width: 0;
}
.tl-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}
.tl-meta {
  margin-top: 3px;
}
.tl-date {
  font-size: 12px;
  color: #999;
}

/* 倒计时 */
.tl-cd {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: #2F6FDB;
  background: #eef3ff;
  white-space: nowrap;
  margin-left: 10px;
  align-self: center;
  border-radius: 10px;
  padding: 3px 10px;
}
.tl-cd-today {
  color: #ff6b35;
  background: #fff5f0;
}
.tl-cd-past {
  color: #bbb;
  background: #f8f8f8;
}

/* 已过期行变灰 */
.tl-row-past .tl-title {
  color: #bbb;
}
.tl-row-past .tl-date {
  color: #ccc;
}

.tl-empty {
  text-align: center;
  padding: 30px;
  color: #ccc;
  font-size: 13px;
}

















/* 夏考时间 卡片 */
/* 夏考时间 卡片 */
/* 夏考时间 卡片 */
.sk-schedule-card {
  background: #fff;
  border-radius: 16px;
  margin: 6px 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(47,111,219,.1);
}
.sk-day-row {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid #f5f5f8;
}
.sk-day-row:last-child { border-bottom: none; }
.sk-day-label {
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}
.sk-day-num {
  font-size: 12px;
  font-weight: 700;
  color: #2F6FDB;
}
.sk-day-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  flex: 1;
  margin-left: 8px;
}
.sk-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 7px 6px;
  flex: 1;
  border: 1px solid;
  box-sizing: border-box;
}
.sk-tag-name { font-size: 12px; font-weight: 600; color: #333; white-space: nowrap; line-height: 1.2; }
.sk-tag-time { font-size: 9px; color: #999; margin-top: 2px; white-space: nowrap; }
.sk-am { background: #FFF7ED; border-color: #FED7AA; }
.sk-pm { background: #EFF6FF; border-color: #BFDBFE; }
.sk-empty { visibility: hidden; border: none; background: none; }

/* ====== 时间线卡片升级（非夏考时间tab） ====== */
.tl-section-card {
  background: #fff;
  border-radius: 16px;
  margin: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(47,111,219,.1);
}

/* 卡片内的 tl-list 去掉原有阴影（卡片自带） */
.tl-section-card .tl-list {
  border-radius: 0;
  box-shadow: none;
}

/* 左侧蓝色竖条 + 加大间距 */
.tl-section-card .tl-row {
  padding: 16px;
  border-bottom: 1px solid #f0f3f8;
  position: relative;
}
.tl-section-card .tl-row::before {
  display: none;
}
.tl-section-card .tl-row:last-child {
  border-bottom: none;
}

/* 倒计时胶囊升级 */
.tl-section-card .tl-cd {
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #eef3ff, #e0eaff);
  color: #2F6FDB;
  letter-spacing: 0.3px;
}
.tl-section-card .tl-cd-today {
  background: linear-gradient(135deg, #fff5f0, #ffe8dc);
  color: #ff6b35;
}
.tl-section-card .tl-cd-past {
  background: #f5f5f5;
  color: #c0c0c0;
}

/* 标题样式增强 */
.tl-section-card .tl-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a2438;
  line-height: 1.5;
}
.tl-section-card .tl-date {
  font-size: 12px;
  color: #8b97ad;
}

/* 底部备案信息 */
#ocFooter {
  text-align: center;
  padding: 4px 16px 0;
  margin-bottom: 82px;
  font-size: 11px;
  color: #9ca3af;
}

