/* ============================================================
   zb24.css - 24直播网 暗色主题（首页/公共头部页脚）
   布局参考: xlkyapp.cn 风格（顶栏 + 日期页签赛程 + 右侧栏）
   ============================================================ */

:root {
  --zb-bg: #0a0f1f;
  --zb-surface: #121a2f;
  --zb-surface-soft: #18233f;
  --zb-text: #f4f6fb;
  --zb-muted: #a8b0c4;
  --zb-primary: #1d428a;
  --zb-primary-light: #2f6fd6;
  --zb-accent: #c8102e;
  --zb-line: rgba(255, 255, 255, 0.1);
  --zb-live: #ff4d4f;
}

/* ---------- 基础（仅对启用主题的页面生效） ---------- */
body.gfdhgdtr360zb-theme {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--zb-text);
  background-color: #060a15;
  background-image: linear-gradient(160deg, #060a15 0%, #0d1529 60%, #141e36 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}
body.gfdhgdtr360zb-theme a { color: inherit; text-decoration: none; }
body.gfdhgdtr360zb-theme ul, body.gfdhgdtr360zb-theme ol { list-style: none; margin: 0; padding: 0; }
body.gfdhgdtr360zb-theme h1, body.gfdhgdtr360zb-theme h2, body.gfdhgdtr360zb-theme h3, body.gfdhgdtr360zb-theme h4 { margin: 0; }

.gfdhgdtr360zb-container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- 顶栏 ---------- */
.gfdhgdtr360zb-topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 13, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.gfdhgdtr360zb-topbar-inner {
  min-height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.gfdhgdtr360zb-brand { display: flex; align-items: center; flex-shrink: 0; line-height: 0; }
.gfdhgdtr360zb-brand img { height: 44px; width: auto; display: block; }
.gfdhgdtr360zb-brand-name {
  margin-left: 10px; font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.06em; color: #fff; line-height: 1.2;
}

.gfdhgdtr360zb-nav { flex: 1; display: flex; justify-content: flex-end; }
.gfdhgdtr360zb-nav-list { display: flex; gap: 4px; flex-wrap: wrap; }
.gfdhgdtr360zb-nav-item { position: relative; }
.gfdhgdtr360zb-nav-item > a {
  display: inline-block; padding: 8px 12px; border-radius: 8px;
  color: var(--zb-muted); font-size: 15px; white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.gfdhgdtr360zb-nav-item > a:hover, .gfdhgdtr360zb-nav-item.on > a { color: #fff; background: rgba(255, 255, 255, 0.06); }
.gfdhgdtr360zb-nav-item.has-sub > a::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-left: 6px; vertical-align: 2px;
}
.gfdhgdtr360zb-subnav {
  display: none; position: absolute; left: 0; top: 100%; min-width: 140px; z-index: 20;
  background: rgba(12, 20, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px; padding: 8px 0;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.gfdhgdtr360zb-nav-item:hover > .gfdhgdtr360zb-subnav { display: block; }
.gfdhgdtr360zb-subnav a { display: block; padding: 8px 14px; color: #dce3f6; font-size: 14px; white-space: nowrap; }
.gfdhgdtr360zb-subnav a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }

.gfdhgdtr360zb-menu-toggle {
  display: none; width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--zb-line); border-radius: 10px;
  background: transparent; padding: 11px 9px; cursor: pointer;
}
.gfdhgdtr360zb-menu-toggle span { display: block; height: 2px; border-radius: 999px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.gfdhgdtr360zb-menu-toggle span + span { margin-top: 6px; }
.gfdhgdtr360zb-topbar.menu-open .gfdhgdtr360zb-menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.gfdhgdtr360zb-topbar.menu-open .gfdhgdtr360zb-menu-toggle span:nth-child(2) { opacity: 0; }
.gfdhgdtr360zb-topbar.menu-open .gfdhgdtr360zb-menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* 移动端抽屉导航 */
.gfdhgdtr360zb-mobile-nav {
  position: fixed; top: 0; right: -300px; z-index: 99;
  width: 280px; max-width: 84vw; height: 100vh; overflow-y: auto;
  background: rgba(10, 16, 32, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 76px 0 30px;
  transition: right .25s ease;
}
.gfdhgdtr360zb-topbar.menu-open + .gfdhgdtr360zb-mobile-nav, .gfdhgdtr360zb-mobile-nav.open { right: 0; }
.gfdhgdtr360zb-mobile-nav a { display: block; padding: 11px 22px; color: #dce3f6; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,.05); }
.gfdhgdtr360zb-mobile-nav a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.gfdhgdtr360zb-mobile-nav .gfdhgdtr360zb-mn-group { padding: 11px 22px 5px; color: #8a96b5; font-size: 13px; }
.gfdhgdtr360zb-mobile-nav .gfdhgdtr360zb-mn-sub a { padding-left: 40px; font-size: 14px; color: #aeb9d2; }
.gfdhgdtr360zb-nav-mask {
  display: none; position: fixed; inset: 0; z-index: 98;
  background: rgba(0, 0, 0, 0.5);
}
.gfdhgdtr360zb-nav-mask.show { display: block; }

/* ---------- 面包屑 ---------- */
.gfdhgdtr360zb-breadcrumb-bar { padding: 14px 0 0; }
.gfdhgdtr360zb-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
  padding: 10px 14px; font-size: 13px; color: #b8c3df;
  background: rgba(13, 21, 40, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.gfdhgdtr360zb-breadcrumb a { color: #e3e9fa; }
.gfdhgdtr360zb-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.gfdhgdtr360zb-breadcrumb .gfdhgdtr360zb-sep { color: rgba(255, 255, 255, 0.28); margin: 0 4px; }

/* ---------- 首页主体 ---------- */
.gfdhgdtr360zb-main { padding: 16px 0 30px; }
.gfdhgdtr360zb-hero-title { font-size: 1.15rem; font-weight: 700; color: var(--zb-text); margin-bottom: 14px; }
.gfdhgdtr360zb-hero-title small { font-size: .8rem; color: var(--zb-muted); font-weight: 400; margin-left: 8px; }

.gfdhgdtr360zb-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px; align-items: start;
}
.gfdhgdtr360zb-content, .gfdhgdtr360zb-side { min-width: 0; }

/* 日期页签 */
.gfdhgdtr360zb-datebar { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 14px; }
.gfdhgdtr360zb-datebar::-webkit-scrollbar { height: 4px; }
.gfdhgdtr360zb-datebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 2px; }
.gfdhgdtr360zb-dtab {
  flex: 0 0 auto; text-align: center; min-width: 58px;
  padding: 6px 8px; border-radius: 10px; cursor: pointer;
  background: var(--zb-surface); border: 1px solid var(--zb-line);
  color: var(--zb-muted); font-size: .76rem;
}
.gfdhgdtr360zb-dtab b { display: block; color: var(--zb-text); font-size: .92rem; margin-top: 2px; }
.gfdhgdtr360zb-dtab.on { background: var(--zb-primary); border-color: var(--zb-primary); color: #fff; }
.gfdhgdtr360zb-dtab.on b { color: #fff; }

/* 热门赛事条 */
.gfdhgdtr360zb-hotbar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  background: var(--zb-surface); border: 1px solid var(--zb-line);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 14px;
}
.gfdhgdtr360zb-hotbar .gfdhgdtr360zb-hotbar-t { font-weight: 700; color: var(--zb-text); margin-right: 4px; white-space: nowrap; }
.gfdhgdtr360zb-hotbar a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 999px; font-size: .78rem;
  background: var(--zb-surface-soft); border: 1px solid var(--zb-line); color: var(--zb-muted);
  transition: all .18s ease;
}
.gfdhgdtr360zb-hotbar a:hover { color: #fff; border-color: var(--zb-primary-light); background: rgba(47, 111, 214, 0.18); }
.gfdhgdtr360zb-hotbar a b { color: var(--zb-live); font-weight: 700; }

/* 面板 */
.gfdhgdtr360zb-panel {
  background: var(--zb-surface); border: 1px solid var(--zb-line);
  border-radius: 12px; overflow: hidden;
}
.gfdhgdtr360zb-panel + .gfdhgdtr360zb-panel { margin-top: 18px; }
.gfdhgdtr360zb-panel-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; font-weight: 700; color: var(--zb-text);
  border-bottom: 1px solid var(--zb-line);
}
.gfdhgdtr360zb-panel-head .gfdhgdtr360zb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--zb-accent); flex-shrink: 0; }
.gfdhgdtr360zb-panel-head .gfdhgdtr360zb-panel-more { margin-left: auto; font-size: .78rem; font-weight: 400; color: var(--zb-muted); }
.gfdhgdtr360zb-panel-head .gfdhgdtr360zb-panel-more:hover { color: #fff; }
.gfdhgdtr360zb-panel-body { padding: 14px 16px; }

/* 比赛行 */
.gfdhgdtr360zb-match {
  display: grid; grid-template-columns: 58px minmax(0, 1fr) 64px 76px;
  align-items: center; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid var(--zb-line);
  transition: background .15s ease;
}
.gfdhgdtr360zb-match:hover { background: rgba(255, 255, 255, 0.03); }
.gfdhgdtr360zb-match:last-child { border-bottom: 0; }
.gfdhgdtr360zb-m-time { text-align: center; font-size: .78rem; color: var(--zb-muted); }
.gfdhgdtr360zb-m-time .gfdhgdtr360zb-st { display: block; margin-top: 3px; font-size: .72rem; }
.gfdhgdtr360zb-st.gfdhgdtr360zb-live { color: var(--zb-live); font-weight: 700; }
.gfdhgdtr360zb-st.gfdhgdtr360zb-finished { color: #7a8299; }
.gfdhgdtr360zb-st.gfdhgdtr360zb-scheduled { color: #7fa7e8; }
.gfdhgdtr360zb-center { min-width: 0; }
.gfdhgdtr360zb-comp {
  font-size: .72rem; color: var(--zb-muted); margin-bottom: 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gfdhgdtr360zb-comp .gfdhgdtr360zb-tag {
  display: inline-block; background: var(--zb-surface-soft);
  border: 1px solid var(--zb-line); border-radius: 4px;
  padding: 0 5px; margin-right: 5px; color: #cdd5ea;
}
.gfdhgdtr360zb-teams .gfdhgdtr360zb-team { display: flex; align-items: center; gap: 8px; min-width: 0; padding: 2px 0; }
.gfdhgdtr360zb-teams .gfdhgdtr360zb-team img {
  width: 22px; height: 22px; object-fit: contain; flex: 0 0 auto;
  background: #fff; border-radius: 4px;
}
.gfdhgdtr360zb-teams .gfdhgdtr360zb-team .gfdhgdtr360zb-nm {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--zb-text); font-size: .9rem;
}
.gfdhgdtr360zb-score { text-align: center; font-weight: 700; font-size: 1rem; color: var(--zb-text); }
.gfdhgdtr360zb-score .gfdhgdtr360zb-g { display: block; line-height: 1.35; }
.gfdhgdtr360zb-score.gfdhgdtr360zb-pre { color: var(--zb-accent); font-weight: 800; letter-spacing: 1px; }
.gfdhgdtr360zb-act { text-align: right; }
.gfdhgdtr360zb-act a {
  display: inline-block; padding: 5px 12px; border-radius: 18px;
  font-size: .78rem; color: #fff;
  background: linear-gradient(135deg, var(--zb-primary), var(--zb-primary-light));
}
.gfdhgdtr360zb-act a.gfdhgdtr360zb-play { background: linear-gradient(135deg, #c8102e, #ff5a3c); animation: zb-pulse 1.4s infinite; }
@keyframes zb-pulse { 0% { transform: scale(1); } 50% { transform: scale(1.06); } 100% { transform: scale(1); } }

.gfdhgdtr360zb-empty { padding: 40px 16px; text-align: center; color: var(--zb-muted); }

/* 资讯卡片网格 */
.gfdhgdtr360zb-newsgrid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.gfdhgdtr360zb-newsgrid.gfdhgdtr360zb-newsgrid-2col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gfdhgdtr360zb-news-card {
  display: flex; gap: 10px;
  background: var(--zb-surface); border: 1px solid var(--zb-line);
  border-radius: 10px; padding: 10px;
  transition: border-color .18s ease, transform .18s ease;
}
.gfdhgdtr360zb-news-card:hover { border-color: var(--zb-primary-light); transform: translateY(-2px); }
.gfdhgdtr360zb-news-card img { width: 96px; height: 66px; object-fit: cover; border-radius: 6px; flex: 0 0 auto; background: var(--zb-surface-soft); }
.gfdhgdtr360zb-news-card .gfdhgdtr360zb-info { min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.gfdhgdtr360zb-news-card .gfdhgdtr360zb-info h4 {
  font-size: .92rem; font-weight: 600; color: var(--zb-text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gfdhgdtr360zb-news-card:hover .gfdhgdtr360zb-info h4 { color: #93c5fd; }
.gfdhgdtr360zb-news-card .gfdhgdtr360zb-meta { font-size: .72rem; color: #8a96b5; margin-top: 6px; }

/* 录像/专题列表 */
.gfdhgdtr360zb-text-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 18px; }
.gfdhgdtr360zb-text-list li { min-width: 0; }
.gfdhgdtr360zb-text-list li a {
  display: block; padding: 8px 6px; border-radius: 8px;
  color: #dce3f6; font-size: .88rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gfdhgdtr360zb-text-list li a:hover { background: rgba(255, 255, 255, 0.06); color: #93c5fd; }
.gfdhgdtr360zb-text-list li a::before { content: "·"; color: var(--zb-accent); font-weight: 700; margin-right: 6px; }

/* ---------- 右侧栏 ---------- */
.gfdhgdtr360zb-side-panel {
  background: rgba(18, 26, 47, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px; padding: 14px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  margin-bottom: 16px;
}
.gfdhgdtr360zb-side-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.gfdhgdtr360zb-side-title { font-size: 1.05rem; font-weight: 700; color: #e8ecf8; }
.gfdhgdtr360zb-side-more { font-size: .78rem; color: var(--zb-muted); }
.gfdhgdtr360zb-side-more:hover { color: #fff; }
.gfdhgdtr360zb-side-desc { margin: 0 0 10px; font-size: .78rem; color: #8a96b5; line-height: 1.45; }

.gfdhgdtr360zb-league-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.gfdhgdtr360zb-league-pill {
  display: flex; align-items: center; justify-content: center;
  min-height: 36px; padding: 6px 8px; border-radius: 8px;
  font-size: .8rem; font-weight: 600; color: #fff; text-align: center;
  background: var(--zb-accent);
  transition: filter .2s ease;
}
.gfdhgdtr360zb-league-pill:nth-child(2n) { background: var(--zb-primary); }
.gfdhgdtr360zb-league-pill:hover { filter: brightness(1.15); }

.gfdhgdtr360zb-news-list { display: grid; gap: 4px; }
.gfdhgdtr360zb-news-list li { min-width: 0; }
.gfdhgdtr360zb-news-list li a {
  display: block; padding: 8px 6px; border-radius: 8px;
  color: #dce3f6; font-size: .86rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gfdhgdtr360zb-news-list li a:hover { background: rgba(255, 255, 255, 0.06); color: #93c5fd; }

.gfdhgdtr360zb-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.gfdhgdtr360zb-tag-chip {
  display: inline-block; padding: 4px 10px; border-radius: 4px;
  background: var(--zb-accent); color: #fff; font-size: .8rem; line-height: 1.4;
  transition: background .18s ease;
}
.gfdhgdtr360zb-tag-chip:nth-child(2n) { background: var(--zb-primary); }
.gfdhgdtr360zb-tag-chip:hover { filter: brightness(1.15); }

/* ---------- 页脚 ---------- */
footer.gfdhgdtr360zb-footer {
  margin-top: 26px; padding: 0; background: transparent;
  border: 0; border-top: 0;
}
.gfdhgdtr360zb-footer-dark {
  background: linear-gradient(180deg, rgba(13, 20, 37, 0.66), rgba(10, 15, 28, 0.85));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.gfdhgdtr360zb-footer-inner { min-height: 150px; padding: 22px 0 16px; color: #aeb9d2; text-align: center; }
.gfdhgdtr360zb-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; margin-bottom: 14px; }
.gfdhgdtr360zb-footer-links a { color: #c3cde6; font-size: .84rem; }
.gfdhgdtr360zb-footer-links a:hover { color: #fff; text-decoration: underline; }
.gfdhgdtr360zb-footer-desc { margin: 0 auto 12px; max-width: 900px; font-size: .84rem; line-height: 1.8; color: #9aa7c4; }
.gfdhgdtr360zb-footer-desc a { color: #93c5fd; }
.gfdhgdtr360zb-footer-desc a:hover { text-decoration: underline; }
.gfdhgdtr360zb-footer-copy { margin: 0; font-size: .8rem; color: #8a96b5; }
.gfdhgdtr360zb-footer-copy a { color: #8a96b5; }
.gfdhgdtr360zb-footer-copy a:hover { color: #fff; }

/* 返回顶部 */
.gfdhgdtr360zb-totop {
  display: none; position: fixed; right: 18px; bottom: 40px; z-index: 90;
  width: 40px; height: 40px; border-radius: 10px; cursor: pointer;
  background: rgba(18, 26, 47, 0.9); border: 1px solid var(--zb-line);
  color: #fff; text-align: center; line-height: 38px; font-size: 18px;
  backdrop-filter: blur(8px);
}
.gfdhgdtr360zb-totop:hover { background: var(--zb-primary); }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .gfdhgdtr360zb-layout { grid-template-columns: 1fr; }
  .gfdhgdtr360zb-side { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
  .gfdhgdtr360zb-side-panel { margin-bottom: 0; }
}
@media (max-width: 860px) {
  .gfdhgdtr360zb-nav { display: none; }
  .gfdhgdtr360zb-menu-toggle { display: block; }
  .gfdhgdtr360zb-topbar-inner { min-height: 56px; }
  .gfdhgdtr360zb-brand img { height: 38px; }
}
@media (max-width: 640px) {
  .gfdhgdtr360zb-side { grid-template-columns: 1fr; }
  .gfdhgdtr360zb-match { position: relative; grid-template-columns: 48px minmax(0, 1fr) 56px; padding: 10px 12px; }
  .gfdhgdtr360zb-act { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 2; }
  .gfdhgdtr360zb-act a,
  .gfdhgdtr360zb-act a.gfdhgdtr360zb-play {
    display: block; width: 100%; height: 100%;
    padding: 0; border-radius: 0; background: transparent;
    animation: none; font-size: 0; color: transparent;
  }
  .gfdhgdtr360zb-text-list { grid-template-columns: minmax(0, 1fr); }
  .gfdhgdtr360zb-newsgrid.gfdhgdtr360zb-newsgrid-2col { grid-template-columns: 1fr; }
  .gfdhgdtr360zb-hero-title small { display: block; margin: 4px 0 0; }
}

/* ============================================================
   内页组件（列表/详情/联赛导航/球队/搜索等）
   ============================================================ */

.gfdhgdtr360zb-page { padding: 16px 0 30px; }
.gfdhgdtr360zb-page-header { margin-bottom: 16px; }
.gfdhgdtr360zb-page-title { font-size: 1.3rem; font-weight: 700; color: var(--zb-text); }
.gfdhgdtr360zb-page-desc { margin: 6px 0 0; font-size: .84rem; color: var(--zb-muted); }

.gfdhgdtr360zb-section { margin-top: 18px; }
.gfdhgdtr360zb-section:first-child { margin-top: 0; }
.gfdhgdtr360zb-section-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.02rem; font-weight: 700; color: var(--zb-text);
  margin-bottom: 10px;
}
.gfdhgdtr360zb-section-title::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--zb-accent); flex-shrink: 0; }

/* 内页双栏布局（复用首页 zb-layout 尺寸） */
.gfdhgdtr360zb-page .gfdhgdtr360zb-layout { grid-template-columns: minmax(0, 1fr) 320px; }

/* 简单比赛行（联赛导航页/赛程页） */
.gfdhgdtr360zb-smatch {
  display: grid; grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center; gap: 10px;
  padding: 11px 16px; border-bottom: 1px solid var(--zb-line);
  color: var(--zb-text); transition: background .15s ease;
}
.gfdhgdtr360zb-smatch:last-child { border-bottom: 0; }
.gfdhgdtr360zb-smatch:hover { background: rgba(255, 255, 255, 0.03); }
.gfdhgdtr360zb-smatch .gfdhgdtr360zb-sm-time { text-align: center; font-size: .8rem; color: var(--zb-muted); }
.gfdhgdtr360zb-smatch .gfdhgdtr360zb-sm-time b { display: block; color: var(--zb-text); font-size: .9rem; }
.gfdhgdtr360zb-smatch .gfdhgdtr360zb-sm-teams {
  min-width: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .9rem;
}
.gfdhgdtr360zb-smatch .gfdhgdtr360zb-sm-teams .gfdhgdtr360zb-nm { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.gfdhgdtr360zb-smatch .gfdhgdtr360zb-sm-teams .gfdhgdtr360zb-vs { color: var(--zb-accent); font-weight: 800; font-size: .8rem; }
.gfdhgdtr360zb-smatch .gfdhgdtr360zb-sm-teams .gfdhgdtr360zb-score { color: var(--zb-live); font-weight: 700; }
.gfdhgdtr360zb-smatch .gfdhgdtr360zb-sm-league { font-size: .72rem; color: var(--zb-muted); margin-top: 2px; }
.gfdhgdtr360zb-smatch .gfdhgdtr360zb-sm-act { text-align: right; white-space: nowrap; }

/* 状态徽章 */
.gfdhgdtr360zb-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .74rem; font-weight: 600; }
.gfdhgdtr360zb-badge.gfdhgdtr360zb-live { background: rgba(255, 77, 79, 0.16); color: var(--zb-live); border: 1px solid rgba(255, 77, 79, 0.4); }
.gfdhgdtr360zb-badge.gfdhgdtr360zb-upcoming { background: rgba(47, 111, 214, 0.16); color: #93c5fd; border: 1px solid rgba(47, 111, 214, 0.4); }
.gfdhgdtr360zb-badge.gfdhgdtr360zb-ended { background: rgba(255, 255, 255, 0.06); color: #8a96b5; border: 1px solid var(--zb-line); }

/* 详情大图对阵卡片 */
.gfdhgdtr360zb-hero-match {
  background: linear-gradient(160deg, rgba(19, 30, 55, 0.9), rgba(14, 22, 40, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px; padding: 26px 18px;
}
.gfdhgdtr360zb-hero-teams { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.gfdhgdtr360zb-hero-team { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 110px; }
.gfdhgdtr360zb-hero-team .gfdhgdtr360zb-logo-ring {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; background: #fff;
}
.gfdhgdtr360zb-hero-team .gfdhgdtr360zb-logo-ring img { width: 48px; height: 48px; object-fit: contain; }
.gfdhgdtr360zb-hero-team .gfdhgdtr360zb-name { font-size: 1rem; font-weight: 700; color: #fff; text-align: center; }
.gfdhgdtr360zb-hero-mid { text-align: center; min-width: 130px; }
.gfdhgdtr360zb-hero-score { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: 2px; }
.gfdhgdtr360zb-hero-score .gfdhgdtr360zb-vs-sm { font-size: 1rem; color: var(--zb-accent); margin: 0 8px; }
.gfdhgdtr360zb-hero-league { margin-top: 6px; font-size: .82rem; }
.gfdhgdtr360zb-hero-league a { color: #93c5fd; }
.gfdhgdtr360zb-hero-league a:hover { text-decoration: underline; }
.gfdhgdtr360zb-hero-time { margin-top: 4px; font-size: .78rem; color: var(--zb-muted); }
.gfdhgdtr360zb-hero-status { margin-top: 8px; }

/* 文章详情 */
.gfdhgdtr360zb-article {
  background: var(--zb-surface); border: 1px solid var(--zb-line);
  border-radius: 12px; padding: 22px 24px;
}
.gfdhgdtr360zb-article-title { font-size: 1.35rem; font-weight: 700; color: var(--zb-text); line-height: 1.4; }
.gfdhgdtr360zb-article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 12px 0; font-size: .8rem; color: #8a96b5; padding-bottom: 12px; border-bottom: 1px solid var(--zb-line); }
.gfdhgdtr360zb-article-cover { margin: 14px 0; text-align: center; }
.gfdhgdtr360zb-article-cover img { max-width: 100%; border-radius: 8px; }
.gfdhgdtr360zb-article-content { font-size: .95rem; line-height: 1.9; color: #dce3f6; word-break: break-all; }
.gfdhgdtr360zb-article-content p { margin: 0 0 14px; }
.gfdhgdtr360zb-article-content img { max-width: 100%; height: auto; border-radius: 6px; display: block; margin: 10px auto; }
.gfdhgdtr360zb-article-content a { color: #93c5fd; }
.gfdhgdtr360zb-article-content a:hover { text-decoration: underline; }
.gfdhgdtr360zb-article-tags { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--zb-line); }
.gfdhgdtr360zb-article-tags h3 { font-size: .95rem; color: var(--zb-text); margin-bottom: 10px; }
.gfdhgdtr360zb-article-tags .gfdhgdtr360zb-tag-list { gap: 8px; }
.gfdhgdtr360zb-article-nav { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--zb-line); display: grid; gap: 8px; }
.gfdhgdtr360zb-article-nav > div { font-size: .86rem; color: var(--zb-muted); min-width: 0; }
.gfdhgdtr360zb-article-nav span { color: #8a96b5; }
.gfdhgdtr360zb-article-nav a { color: #dce3f6; }
.gfdhgdtr360zb-article-nav a:hover { color: #93c5fd; }

/* 信号按钮 / 快捷入口 */
.gfdhgdtr360zb-signal-btns { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 4px; }
.gfdhgdtr360zb-signal-btn {
  display: inline-block; padding: 8px 20px; border-radius: 8px;
  background: linear-gradient(135deg, var(--zb-primary), var(--zb-primary-light));
  color: #fff; font-size: .88rem; font-weight: 600;
  transition: filter .18s ease, transform .18s ease;
}
.gfdhgdtr360zb-signal-btn:hover { filter: brightness(1.15); transform: translateY(-1px); }
.gfdhgdtr360zb-quick-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.gfdhgdtr360zb-quick-link {
  display: inline-block; padding: 7px 14px; border-radius: 8px;
  background: var(--zb-surface-soft); border: 1px solid var(--zb-line);
  color: #cdd5ea; font-size: .84rem; transition: all .18s ease;
}
.gfdhgdtr360zb-quick-link:hover { border-color: var(--zb-primary-light); color: #fff; background: rgba(47, 111, 214, 0.18); }

/* 聚合页入口按钮 */
.gfdhgdtr360zb-hub-btn {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.16), rgba(255, 90, 60, 0.12));
  border: 1px solid rgba(255, 90, 60, 0.35);
  color: #ffd8d0; font-size: .9rem; transition: all .18s ease;
}
.gfdhgdtr360zb-hub-btn:hover { background: linear-gradient(135deg, rgba(200, 16, 46, 0.3), rgba(255, 90, 60, 0.2)); }
.gfdhgdtr360zb-hub-btn .gfdhgdtr360zb-hub-arrow { margin-left: auto; font-weight: 700; }

/* 录像/视频观看链接 */
.gfdhgdtr360zb-video-links { margin: 14px 0; }
.gfdhgdtr360zb-video-links h3 { font-size: .98rem; color: var(--zb-text); margin-bottom: 10px; }
.gfdhgdtr360zb-video-links ul { display: flex; flex-wrap: wrap; gap: 10px; }
.gfdhgdtr360zb-video-links ul a {
  display: inline-block; padding: 8px 18px; border-radius: 8px;
  background: linear-gradient(135deg, #c8102e, #ff5a3c);
  color: #fff; font-size: .86rem; font-weight: 600;
}
.gfdhgdtr360zb-video-links ul a:hover { filter: brightness(1.12); }

/* 分页（兼容 TP 输出结构） */
.gfdhgdtr360zb-pagination { margin-top: 16px; text-align: center; }
.gfdhgdtr360zb-pagination ul { display: inline-flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.gfdhgdtr360zb-pagination li { display: inline-block; }
.gfdhgdtr360zb-pagination a, .gfdhgdtr360zb-pagination span, .gfdhgdtr360zb-pagination li > a, .gfdhgdtr360zb-pagination li > span {
  display: inline-block; min-width: 34px; padding: 6px 12px;
  border-radius: 8px; font-size: .84rem;
  background: var(--zb-surface); border: 1px solid var(--zb-line); color: var(--zb-muted);
}
.gfdhgdtr360zb-pagination a:hover { color: #fff; border-color: var(--zb-primary-light); }
.gfdhgdtr360zb-pagination .active span, .gfdhgdtr360zb-pagination .active > span, .gfdhgdtr360zb-pagination span.current, .gfdhgdtr360zb-pagination li.active a {
  background: var(--zb-primary); border-color: var(--zb-primary); color: #fff;
}
.gfdhgdtr360zb-pagination .disabled span, .gfdhgdtr360zb-pagination .disabled > span { opacity: .45; }

/* 球队网格 */
.gfdhgdtr360zb-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.gfdhgdtr360zb-team-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 8px; border-radius: 10px; text-align: center;
  background: var(--zb-surface); border: 1px solid var(--zb-line);
  transition: all .18s ease;
}
.gfdhgdtr360zb-team-card:hover { border-color: var(--zb-primary-light); transform: translateY(-2px); }
.gfdhgdtr360zb-team-card img { width: 44px; height: 44px; object-fit: contain; background: #fff; border-radius: 50%; padding: 3px; }
.gfdhgdtr360zb-team-card .gfdhgdtr360zb-name { font-size: .84rem; color: var(--zb-text); }

/* 表格（积分榜等） */
.gfdhgdtr360zb-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--zb-line); }
.gfdhgdtr360zb-table { width: 100%; border-collapse: collapse; background: var(--zb-surface); font-size: .86rem; }
.gfdhgdtr360zb-table th, .gfdhgdtr360zb-table td { padding: 10px 12px; text-align: center; border-bottom: 1px solid var(--zb-line); white-space: nowrap; }
.gfdhgdtr360zb-table thead th { background: var(--zb-surface-soft); color: var(--zb-text); font-weight: 700; }
.gfdhgdtr360zb-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.gfdhgdtr360zb-table td { color: #cdd5ea; }
.gfdhgdtr360zb-table a { color: #93c5fd; }
.gfdhgdtr360zb-table a:hover { text-decoration: underline; }

/* 搜索框 */
.gfdhgdtr360zb-search-box { display: flex; gap: 10px; margin: 14px 0; }
.gfdhgdtr360zb-search-box input {
  flex: 1; min-width: 0; padding: 11px 16px; border-radius: 10px;
  background: var(--zb-surface); border: 1px solid var(--zb-line);
  color: var(--zb-text); font-size: .92rem; outline: none;
}
.gfdhgdtr360zb-search-box input:focus { border-color: var(--zb-primary-light); }
.gfdhgdtr360zb-search-box input::placeholder { color: #6b7690; }
.gfdhgdtr360zb-search-box button {
  padding: 11px 26px; border: 0; border-radius: 10px; cursor: pointer;
  background: linear-gradient(135deg, var(--zb-primary), var(--zb-primary-light));
  color: #fff; font-size: .92rem; font-weight: 600;
}
.gfdhgdtr360zb-search-box button:hover { filter: brightness(1.12); }

/* 入口卡片（JRS/平台导航页） */
.gfdhgdtr360zb-entrance-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gfdhgdtr360zb-entrance-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 20px 10px; border-radius: 12px; text-align: center;
  background: var(--zb-surface); border: 1px solid var(--zb-line);
  transition: all .18s ease;
}
.gfdhgdtr360zb-entrance-card:hover { border-color: var(--zb-accent); transform: translateY(-2px); background: var(--zb-surface-soft); }
.gfdhgdtr360zb-entrance-card .gfdhgdtr360zb-icon { font-size: 1.7rem; line-height: 1; }
.gfdhgdtr360zb-entrance-card .gfdhgdtr360zb-title { font-size: .96rem; font-weight: 700; color: var(--zb-text); }
.gfdhgdtr360zb-entrance-card .gfdhgdtr360zb-desc { font-size: .74rem; color: var(--zb-muted); }

/* FAQ */
.gfdhgdtr360zb-faq-item { background: var(--zb-surface); border: 1px solid var(--zb-line); border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; }
.gfdhgdtr360zb-faq-item h3 { font-size: .94rem; color: var(--zb-text); margin-bottom: 6px; }
.gfdhgdtr360zb-faq-item p { margin: 0; font-size: .85rem; color: var(--zb-muted); line-height: 1.7; }

/* 介绍文案区 */
.gfdhgdtr360zb-intro { background: var(--zb-surface); border: 1px solid var(--zb-line); border-radius: 12px; padding: 18px 20px; }
.gfdhgdtr360zb-intro h2 { font-size: 1.05rem; color: var(--zb-text); margin-bottom: 10px; }
.gfdhgdtr360zb-intro p { margin: 0 0 10px; font-size: .88rem; color: #c3cde6; line-height: 1.8; }
.gfdhgdtr360zb-intro p:last-child { margin-bottom: 0; }

/* 编号列表（侧栏排行） */
.gfdhgdtr360zb-rank-list { display: grid; gap: 4px; }
.gfdhgdtr360zb-rank-list li { min-width: 0; }
.gfdhgdtr360zb-rank-list li a {
  display: flex; align-items: baseline; gap: 8px;
  padding: 8px 6px; border-radius: 8px; font-size: .86rem; color: #dce3f6;
}
.gfdhgdtr360zb-rank-list li a:hover { background: rgba(255, 255, 255, 0.06); color: #93c5fd; }
.gfdhgdtr360zb-rank-list li a strong {
  flex: 0 0 auto; width: 20px; text-align: center; font-style: normal;
  color: #8a96b5; font-weight: 700; font-size: .8rem;
}
.gfdhgdtr360zb-rank-list li:nth-child(-n+3) a strong { color: var(--zb-accent); }
.gfdhgdtr360zb-rank-list li a .gfdhgdtr360zb-t { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }

/* 资讯行列表（带图，列表页用） */
.gfdhgdtr360zb-news-rows { display: grid; gap: 10px; }
.gfdhgdtr360zb-news-row {
  display: flex; gap: 12px; padding: 12px;
  background: var(--zb-surface); border: 1px solid var(--zb-line); border-radius: 10px;
  transition: border-color .18s ease;
}
.gfdhgdtr360zb-news-row:hover { border-color: var(--zb-primary-light); }
.gfdhgdtr360zb-news-row img { width: 132px; height: 88px; object-fit: cover; border-radius: 6px; flex: 0 0 auto; background: var(--zb-surface-soft); }
.gfdhgdtr360zb-news-row .gfdhgdtr360zb-info { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.gfdhgdtr360zb-news-row .gfdhgdtr360zb-info h3 {
  font-size: .98rem; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gfdhgdtr360zb-news-row .gfdhgdtr360zb-info h3 a { color: var(--zb-text); }
.gfdhgdtr360zb-news-row:hover .gfdhgdtr360zb-info h3 a { color: #93c5fd; }
.gfdhgdtr360zb-news-row .gfdhgdtr360zb-date { font-size: .74rem; color: #8a96b5; }

/* 侧栏直播条目 */
.gfdhgdtr360zb-side-live { display: grid; gap: 10px; }
.gfdhgdtr360zb-side-live li { background: var(--zb-surface-soft); border: 1px solid var(--zb-line); border-radius: 10px; padding: 10px 12px; }
.gfdhgdtr360zb-side-live .gfdhgdtr360zb-sl-head { display: flex; justify-content: space-between; gap: 8px; font-size: .74rem; color: #8a96b5; margin-bottom: 6px; }
.gfdhgdtr360zb-side-live .gfdhgdtr360zb-sl-head a { color: #93c5fd; }
.gfdhgdtr360zb-side-live .gfdhgdtr360zb-sl-teams { font-size: .86rem; color: var(--zb-text); margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gfdhgdtr360zb-side-live .gfdhgdtr360zb-sl-btn {
  display: inline-block; padding: 4px 14px; border-radius: 999px; font-size: .76rem; color: #fff;
  background: linear-gradient(135deg, #c8102e, #ff5a3c);
}

@media (max-width: 1024px) {
  .gfdhgdtr360zb-page .gfdhgdtr360zb-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gfdhgdtr360zb-smatch { grid-template-columns: 64px minmax(0, 1fr); }
  .gfdhgdtr360zb-smatch .gfdhgdtr360zb-sm-act { display: none; }
  .gfdhgdtr360zb-entrance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gfdhgdtr360zb-news-row img { width: 96px; height: 66px; }
  .gfdhgdtr360zb-article { padding: 16px 14px; }
  .gfdhgdtr360zb-hero-teams { gap: 14px; }
  .gfdhgdtr360zb-search-box { flex-direction: column; }
}

/* 新闻分类徽标 */
.gfdhgdtr360zb-cate-badge {
  display: inline-block; padding: 1px 8px; border-radius: 4px;
  font-size: .7rem; font-weight: 600; margin-right: 8px; vertical-align: 1px;
}
.gfdhgdtr360zb-cate-badge.gfdhgdtr360zb-lq { background: rgba(255, 144, 56, 0.15); color: #ffb072; border: 1px solid rgba(255, 144, 56, 0.4); }
.gfdhgdtr360zb-cate-badge.gfdhgdtr360zb-zq { background: rgba(61, 220, 132, 0.12); color: #7fe6ae; border: 1px solid rgba(61, 220, 132, 0.35); }

/* 新闻详情对阵队徽 */
.gfdhgdtr360zb-news-vs { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 16px 0 4px; flex-wrap: wrap; }
.gfdhgdtr360zb-nvs-team { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 90px; }
.gfdhgdtr360zb-nvs-team .gfdhgdtr360zb-logo-ring { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #fff; }
.gfdhgdtr360zb-nvs-team .gfdhgdtr360zb-logo-ring img { width: 42px; height: 42px; object-fit: contain; }
.gfdhgdtr360zb-nvs-team .gfdhgdtr360zb-name { font-size: .88rem; font-weight: 600; color: var(--zb-text); }
.gfdhgdtr360zb-nvs-vs { font-size: 1.1rem; font-weight: 800; color: var(--zb-accent); }

/* 新闻行摘要 */
.gfdhgdtr360zb-news-row .gfdhgdtr360zb-desc {
  margin: 2px 0 4px; font-size: .8rem; color: #a8b0c4; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
