/* 前台站点公共样式：彩民网原创界面（独立设计系统，非第三方克隆） */
* { box-sizing: border-box; }
:root {
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.07);
    --shadow-lg: 0 18px 48px rgba(15, 23, 42, 0.1);
    --surface-canvas: #eef2f6;
    --surface-elevated: #ffffff;
    --surface-muted: #f8fafc;
    --border-subtle: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --accent-soft: #ccfbf1;
    --accent-ring: rgba(13, 148, 136, 0.35);
    --focus-ring: 2px solid var(--accent);
    --lot-win: #b45309;
    --lot-draw: #0f766e;
    --lot-lose: #1d4ed8;
    --apple-bg: var(--surface-canvas);
    --apple-panel: var(--surface-elevated);
    --apple-border: var(--border-subtle);
    --apple-text: var(--text-primary);
    --apple-subtext: var(--text-secondary);
    --apple-accent: var(--accent);
    /* 与首页 .container / .hp-wrap 一致的全站内容宽度 */
    --site-container-width: 1200px;
    --site-container-gutter: 12px;
    --channel-sidebar-width: 300px;
    --channel-shell-gap: 14px;
    --auth-card-max-width: 420px;
}
body {
    margin: 0;
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    background: var(--surface-canvas);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}
.page-channel {
    background: linear-gradient(180deg, #e8eef4 0%, var(--surface-canvas) 42%, #f1f5f9 100%);
    min-height: 100vh;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: var(--focus-ring);
    outline-offset: 2px;
}
a { text-decoration: none; color: inherit; }
.container {
    width: 100%;
    max-width: var(--site-container-width);
    margin: 0 auto;
    padding: 0 var(--site-container-gutter);
}

.site-topline {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 12px;
    color: var(--text-muted);
}
.site-topline .inner { height: 36px; display: flex; align-items: center; justify-content: space-between; }
.site-topline a { color: var(--text-muted); margin-left: 12px; }
.site-topline a:hover { color: var(--accent); }

.site-head {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}
/* 顶栏：LOGO 与主导航同一行，底部对齐 */
.site-head-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    /* 横向几乎贴住；负边距只抵消 LOGO 图里的透明边，避免真重叠 */
    gap: 6px 4px;
    min-height: 76px;
    height: auto;
    padding: 10px 0 14px;
    box-sizing: border-box;
}
.site-head-bar .site-logo-brand {
    line-height: 0;
    margin-right: -4px;
}
.site-head .site-nav.site-nav-bar {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-self: flex-end;
    gap: 6px 4px;
    padding: 0 0 4px;
    margin: 0 0 0 -5px;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border-bottom: none;
}
/* 顶栏内一级菜单：与全站主导航字号一致，略紧凑横向间距 */
.site-head .site-nav.site-nav-bar > a {
    margin-right: 0;
    padding: 9px 12px;
    font-size: 15px;
    line-height: 1.35;
}
.site-head .site-nav.site-nav-bar > a:last-child {
    margin-right: 0;
}
.site-logo { font-size: 30px; color: var(--accent); font-weight: 700; }
.site-logo span { color: #0f172a; font-size: 13px; margin-left: 8px; font-weight: 500; }
.site-head .quick a { color: #334155; font-size: 13px; margin-left: 10px; }

.site-nav {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 252, 0.88) 100%);
    backdrop-filter: saturate(160%) blur(10px);
    border-top: 0;
    border-bottom: 1px solid #f0f2f6;
    color: var(--apple-text);
    box-shadow: none;
}
.site-nav .inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 2px;
    padding: 5px 0;
}
.site-nav a {
    margin-right: 6px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    padding: 9px 13px;
    border: 1px solid #0000;
    border-radius: 999px;
    opacity: 1;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.site-nav a:hover {
    color: var(--accent-hover);
    background: rgba(13, 148, 136, 0.1);
    border-color: transparent;
    box-shadow: none;
    transform: none;
}
.site-nav a.nav-active {
    font-weight: 700;
    color: var(--accent);
    background: rgba(13, 148, 136, 0.07);
    border-color: transparent;
    box-shadow: none;
}
.site-nav a.nav-active:hover {
    color: var(--accent-hover);
    background: rgba(13, 148, 136, 0.12);
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.site-footer {
    margin-top: var(--space-5);
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
    color: var(--text-muted);
    border-top: 1px solid var(--border-subtle);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.site-footer .f-inner {
    width: 100%;
    max-width: var(--site-container-width);
    margin: 0 auto;
    padding: 22px var(--site-container-gutter) 18px;
}
.f-links { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; margin-bottom: 10px; }
.f-links a { color: #4b5563; }
.f-links a:hover { color: var(--apple-accent); }
.f-copy { font-size: 12px; line-height: 1.9; color: #9ca3af; }

/* 频道：主区 + 侧栏（无 .channel-sidebar 时主区占满，避免空出 300px 列） */
.channel-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--channel-sidebar-width);
    gap: var(--channel-shell-gap);
    margin-top: 14px;
    align-items: start;
}
.channel-shell:not(:has(.channel-sidebar)),
.channel-shell.channel-shell--solo {
    grid-template-columns: 1fr;
}
.channel-shell.channel-shell--with-sidebar,
.channel-shell:has(> .channel-sidebar) {
    grid-template-columns: minmax(0, 1fr) var(--channel-sidebar-width);
}
.channel-shell.container {
    width: 100%;
    max-width: var(--site-container-width);
    box-sizing: border-box;
}
.channel-shell > .channel-main {
    width: 100%;
    max-width: none;
}
.channel-shell > .channel-main > .box,
.channel-shell > .channel-main > .box.cp-panel,
.channel-shell > .channel-main .draw-panel-table-wrap,
.channel-shell > .channel-main .draw-panel-table {
    width: 100%;
    max-width: none;
}
/* 双色球走势专页：去掉频道侧栏后主区占满整栏 */
.page-channel.ssq1to1-body .channel-shell,
.page-channel.special-datachart-body .channel-shell {
    grid-template-columns: 1fr;
    gap: 0;
}
.page-channel.ssq1to1-body .channel-shell.container,
.page-channel.special-datachart-body .channel-shell.container,
.page-channel.ssq1to1-body .container.hp-wrap.datachart-shell,
.page-channel.special-datachart-body .container.hp-wrap.datachart-shell {
    width: 100%;
    max-width: 1380px;
    margin-top: 10px;
    min-height: calc(100vh - 118px);
    display: flex;
    flex-direction: column;
}
.page-channel.ssq1to1-body .sssqq-page-title,
.page-channel.special-datachart-body .sssqq-page-title {
    margin-bottom: 4px;
}
.page-channel.ssq1to1-body .sssqq-page-title h1,
.page-channel.special-datachart-body .sssqq-page-title h1 {
    font-size: 20px;
}
.page-channel.ssq1to1-body .sssqq-sub,
.page-channel.special-datachart-body .sssqq-sub {
    font-size: 11px;
    line-height: 1.4;
}
.page-channel.ssq1to1-body .sssqq-subnav,
.page-channel.special-datachart-body .sssqq-subnav {
    margin-bottom: 6px;
}
.page-channel.ssq1to1-body .ssq1to1-toolbar,
.page-channel.special-datachart-body .ssq1to1-toolbar {
    margin-bottom: 4px;
}
/* 与 .sssqq-toolbar-inner 左右 12px 一致，基本走势区与期数范围内容右缘对齐 */
.page-channel.ssq1to1-body .ssq1to1-matrix-panel > .title,
.page-channel.special-datachart-body .ssq1to1-matrix-panel > .title {
    padding: 6px 12px;
    font-size: 14px;
}
.page-channel.ssq1to1-body .sssqq-colbar,
.page-channel.special-datachart-body .sssqq-colbar {
    padding: 4px 12px 6px;
    gap: 6px 10px;
}
.page-channel.ssq1to1-body .sssqq-help,
.page-channel.special-datachart-body .sssqq-help {
    padding: 6px 12px;
    font-size: 11px;
    line-height: 1.55;
}
/* 基本走势矩阵：略收紧列宽与行高（仅 tab=trend 渲染该表） */
.page-channel.ssq1to1-body .sssqq-matrix-table,
.page-channel.special-datachart-body .sssqq-matrix-table {
    min-width: 990px;
    font-size: 9px;
}
.page-channel.ssq1to1-body .sssqq-th-num.red,
.page-channel.ssq1to1-body .sssqq-th-num.blue,
.page-channel.special-datachart-body .sssqq-th-num.red,
.page-channel.special-datachart-body .sssqq-th-num.blue {
    width: 13px;
    min-width: 13px;
    max-width: 13px;
}
.page-channel.ssq1to1-body .sssqq-th-draw,
.page-channel.special-datachart-body .sssqq-th-draw {
    width: 122px;
    min-width: 122px;
    max-width: 122px;
}
.page-channel.ssq1to1-body .sssqq-matrix-table tbody td,
.page-channel.special-datachart-body .sssqq-matrix-table tbody td {
    height: 11px;
    line-height: 9px;
    padding: 1px 0;
}
.page-channel.ssq1to1-body .sssqq-matrix-table thead th,
.page-channel.special-datachart-body .sssqq-matrix-table thead th {
    padding: 2px 0;
    font-size: 9px;
}
.page-channel.ssq1to1-body .sssqq-matrix-table tbody td.ssq1to1-hit.red,
.page-channel.ssq1to1-body .sssqq-matrix-table tbody td.ssq1to1-hit.blue,
.page-channel.special-datachart-body .sssqq-matrix-table tbody td.ssq1to1-hit.red,
.page-channel.special-datachart-body .sssqq-matrix-table tbody td.ssq1to1-hit.blue {
    width: 13px;
    min-width: 13px;
    max-width: 13px;
    height: 13px;
    max-height: 13px;
    line-height: 13px;
}
.page-channel.ssq1to1-body .ssq1to1-wrap .sssqq-matrix-table thead .sssqq-tr-head2 th,
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-matrix-table thead .sssqq-tr-head2 th {
    top: 15px;
}
.page-channel.ssq1to1-body .channel-main,
.page-channel.special-datachart-body .channel-main,
.page-channel.ssq1to1-body .datachart-shell > .channel-main,
.page-channel.special-datachart-body .datachart-shell > .channel-main {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    width: 100%;
}
.page-channel.ssq1to1-body .ssq1to1-wrap,
.page-channel.special-datachart-body .ssq1to1-wrap {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    width: 100%;
}
.page-channel.ssq1to1-body .sssqq-matrix-layout,
.page-channel.special-datachart-body .sssqq-matrix-layout {
    /* basis 0：走势区内部只有绝对定位子元素时，1 1 auto 会把可用高宽算成 0 */
    flex: 1 1 0%;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.page-channel.ssq1to1-body .sssqq-matrix-main,
.page-channel.special-datachart-body .sssqq-matrix-main {
    flex: 1 1 0%;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.page-channel.ssq1to1-body .ssq1to1-matrix-panel,
.page-channel.special-datachart-body .ssq1to1-matrix-panel {
    flex: 1 1 0%;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.page-channel.ssq1to1-body .ssq1to1-matrix-panel > .title,
.page-channel.ssq1to1-body .ssq1to1-matrix-panel > .datachart-latest-draw,
.page-channel.ssq1to1-body .ssq1to1-matrix-panel > .kj-expert-panel,
.page-channel.ssq1to1-body .ssq1to1-matrix-panel > .sssqq-colbar,
.page-channel.ssq1to1-body .ssq1to1-matrix-panel > .sssqq-help,
.page-channel.special-datachart-body .ssq1to1-matrix-panel > .title,
.page-channel.special-datachart-body .ssq1to1-matrix-panel > .datachart-latest-draw,
.page-channel.special-datachart-body .ssq1to1-matrix-panel > .kj-expert-panel,
.page-channel.special-datachart-body .ssq1to1-matrix-panel > .sssqq-colbar,
.page-channel.special-datachart-body .ssq1to1-matrix-panel > .sssqq-help {
    flex-shrink: 0;
}
.channel-main { min-width: 0; }
.channel-sidebar { position: sticky; top: 8px; }
.sb-panel { background: var(--surface-elevated); border: 1px solid rgba(148, 163, 184, 0.35); border-radius: var(--radius-md); margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.sb-title { padding: 12px 14px; border-bottom: 1px solid #eef2f7; font-size: 15px; font-weight: 700; color: #0f172a; }
.sb-list { padding: 6px 12px 12px; }
.sb-list a {
    display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
    font-size: 13px; padding: 10px 0; border-bottom: 1px dashed #e5e7eb;
    line-height: 1.5; color: #334155;
}
.sb-list a:last-child { border-bottom: 0; }
.sb-list a:hover { color: var(--apple-accent); }
.sb-list .sb-tit { min-width: 0; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sb-list .sb-time { flex-shrink: 0; color: #94a3b8; font-size: 11px; }
.sb-empty { padding: 14px; font-size: 13px; color: #94a3b8; text-align: center; }

/* 热点资讯 · 统一列表（侧栏 / 首页 / 资讯频道） */
.cp-hot-news-panel {
    background: var(--surface-elevated);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.cp-hot-news-panel.cp-surface {
    border-color: var(--apple-border);
}
.cp-hot-news-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 14px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-subtle);
}
.cp-hot-news-hd::before {
    content: '';
    display: none;
}
.cp-hot-news-hd-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    padding-left: 12px;
}
.cp-hot-news-hd-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--accent);
    border-radius: 2px;
}
.cp-hot-news-more {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    transition: background 0.15s ease, color 0.15s ease;
}
.cp-hot-news-more:hover {
    color: #fff;
    background: var(--accent);
}
.cp-hot-news-list {
    list-style: none;
    margin: 0;
    padding: 8px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cp-hot-news-list--sidebar { padding: 8px 10px 12px; }
.cp-hot-news-list--home { padding: 8px 12px 12px; }
.cp-hot-news-item { margin: 0; }
.cp-hot-news-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}
.cp-hot-news-list--sidebar .cp-hot-news-link,
.cp-hot-news-list--home .cp-hot-news-link {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.cp-hot-news-link:hover {
    background: #f8fafc;
    border-color: var(--border-subtle);
    box-shadow: var(--shadow-sm);
}
.cp-hot-news-link:hover .cp-hot-news-title { color: var(--accent); }
.cp-hot-news-title {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.14s ease;
}
.cp-hot-news-list--home .cp-hot-news-title {
    -webkit-line-clamp: 1;
    white-space: nowrap;
    display: block;
    text-overflow: ellipsis;
}
.cp-hot-news-date {
    flex-shrink: 0;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
    white-space: nowrap;
    margin-top: 2px;
}
.cp-hot-news-empty {
    margin: 0;
    padding: 20px 14px 22px;
    text-align: center;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}
.cp-hot-news-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cp-hot-news-card {
    margin: 0;
    padding: 0;
    border: 0;
}
.cp-hot-news-card-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 12px 14px;
    padding: 16px 18px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: var(--surface-elevated);
    box-shadow: var(--shadow-sm);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.cp-hot-news-card-link:hover {
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.cp-hot-news-card-link:hover .cp-hot-news-card-title { color: var(--accent); }
.cp-hot-news-badge {
    margin-top: 2px;
    border-radius: 6px;
    font-size: 10px;
    letter-spacing: 0.02em;
}
.cp-hot-news-card-body { min-width: 0; }
.cp-hot-news-card-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text-primary);
    transition: color 0.14s ease;
}
.cp-hot-news-card-sum {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cp-hot-news-card-date {
    margin-top: 4px;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
    white-space: nowrap;
}
@media (max-width: 640px) {
    .cp-hot-news-card-link {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
    }
    .cp-hot-news-card-date {
        grid-row: 3;
        margin-top: 0;
    }
    .cp-hot-news-list--sidebar .cp-hot-news-link {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .cp-hot-news-date { align-self: flex-start; }
}

@media (max-width: 1260px) {
    :root {
        --site-container-gutter: 16px;
    }
}
@media (max-width: 980px) {
    .channel-shell { grid-template-columns: 1fr; }
    .channel-sidebar { position: static; }
    .site-nav .inner,
    .site-head .site-nav.site-nav-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        flex-wrap: nowrap;
        gap: 8px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .site-nav .inner::-webkit-scrollbar,
    .site-head .site-nav.site-nav-bar::-webkit-scrollbar { display: none; }
}

/* 频道主内容：表格、筛选、分页 */
.channel-main .box { margin-top: 0; }
.box { background: #fff; border: 1px solid #e5e7eb; border-radius: 6px; }
.cp-panel {
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.cp-panel > .title {
    position: relative;
    padding-left: 22px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-bottom-color: #e2e8f0;
}
.cp-panel > .title::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 22px;
    background: var(--apple-accent);
    border-radius: 2px;
}
.title { padding: 14px 16px; border-bottom: 1px solid #eef2f7; font-size: 20px; font-weight: 700; }
.filter { padding: 12px 16px; border-bottom: 1px solid #eef2f7; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter input, .filter select { height: 34px; border: 1px solid #d1d5db; border-radius: 4px; padding: 0 10px; }
.filter button { height: 34px; border: 0; background: var(--apple-accent); color: #fff; border-radius: 4px; padding: 0 14px; cursor: pointer; }
.channel-main table { width: 100%; border-collapse: collapse; }
.channel-main th, .channel-main td { padding: 11px 8px; border-bottom: 1px solid #eef2f7; text-align: center; font-size: 13px; }
.channel-main th { background: #f8fafc; color: #64748b; }
.channel-main td.team { text-align: left; }
.channel-main td.odds { color: var(--apple-accent); font-weight: 700; }
.channel-main .live { color: var(--apple-accent); font-weight: 700; }
.pager { padding: 12px 16px; }
.pager ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.pager li a, .pager li span { display: inline-block; border: 1px solid #e5e7eb; padding: 6px 11px; border-radius: 4px; background: #fff; font-size: 12px; color: #334155; text-decoration: none; }
.pager .active span { border-color: var(--apple-accent); color: var(--apple-accent); }
.row-empty { text-align: center; color: #94a3b8; padding: 22px 0; }

/* 资讯列表/详情 */
.news-page-inner { padding-bottom: 24px; }
.head { margin-bottom: 16px; }
.head h1 { margin: 0; font-size: 28px; }
.card { background: #fff; border-radius: 8px; padding: 18px 20px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); margin-bottom: 12px; border: 1px solid #e5e7eb; }
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card h3 a { color: #1f6feb; text-decoration: none; }
.card h3 a:hover { text-decoration: underline; }
.meta { color: #8a8f99; font-size: 13px; margin-bottom: 10px; }
.summary { line-height: 1.8; color: #555; }
.empty { text-align: center; color: #999; padding: 40px 0; }
.article { background: #fff; border-radius: 8px; padding: 24px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); border: 1px solid #e5e7eb; }
.article h1 { margin: 0 0 8px; font-size: 30px; line-height: 1.4; }
.content { line-height: 1.9; font-size: 16px; color: #444; word-break: break-word; }
.content img { max-width: 100%; height: auto; }
.tools { margin-top: 24px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.tools a { color: #1f6feb; text-decoration: none; }
.tools a:hover { text-decoration: underline; }

/* 首页一级导航高亮（与频道红条风格一致） */
.nav1 a.nav-active-home { font-weight: 700; box-shadow: inset 0 -2px 0 #fff; }

/* 顶栏：品牌与主导航 */
.site-top-left a { margin-right: 12px; }
.site-logo-brand {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0 10px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}
.site-logo-image {
    display: block;
    width: auto;
    max-width: 200px;
    max-height: 48px;
    height: auto;
    object-fit: contain;
    object-position: left bottom;
}
.site-logo-brand .num {
    font-size: 42px;
    font-weight: 800;
    color: var(--apple-accent);
    line-height: 1;
    letter-spacing: -2px;
}
.site-logo-brand .txt {
    font-size: 26px;
    font-weight: 700;
    color: #222;
}
.site-logo-brand .sub {
    width: 100%;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}
.site-subnav {
    background: #ffffffcc;
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 0;
    font-size: 13px;
}
.site-subnav .inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 0;
    padding: 7px 0;
}
.site-subnav a {
    margin-right: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    color: var(--apple-subtext);
    transition: color 0.2s ease, background-color 0.2s ease;
}
.site-subnav a:hover { color: var(--accent-hover); background: var(--accent-soft); }
.site-subnav a.hot {
    color: var(--accent-hover);
    font-weight: 700;
    background: #ccfbf1;
}

.site-footer .f-copy strong { color: #374151; }

/* 首页内容模块 */
.page-home {
    background: var(--apple-bg);
}
.hp-wrap { padding-bottom: 20px; }
.cp-surface {
    background: var(--surface-elevated);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.hp-panel-hd {
    background: var(--surface-muted);
    border-bottom: 1px solid var(--apple-border);
    padding: 10px 14px;
    font-weight: 600;
    font-size: 14px;
    color: var(--apple-text);
    letter-spacing: 0.02em;
}
.hp-home-grid {
    display: grid;
    grid-template-columns: minmax(235px, 260px) minmax(560px, 1fr) minmax(305px, 330px);
    gap: 12px;
    margin-top: 10px;
    align-items: stretch;
}
.hp-home-center {
    display: grid;
    gap: 6px;
    min-width: 0;
}
.hp-home-right {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 100%;
}
.hp-login-form { padding: 12px; }
.hp-inp {
    width: 100%;
    height: 28px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    padding: 0 8px;
    font-size: 13px;
    box-sizing: border-box;
}
.hp-login-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.hp-btn-primary {
    background: var(--apple-accent);
    color: #fff;
    border: 0;
    padding: 6px 18px;
    font-size: 13px;
    cursor: pointer;
}
.hp-link { font-size: 12px; color: var(--accent); }
.hp-quick-ico {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    border-top: 1px dashed #ddd;
    padding-top: 10px;
}
.hp-quick-ico a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #333;
}
.hp-quick-ico .qiu {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #1a7f37;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
}
.hp-quick-ico .qiu.lan { background: #1565c0; }
.hp-quick-ico .qiu.dan { background: #e65100; }
.hp-quick-ico .qiu.ti { background: var(--apple-accent); }
.hp-quick-ico .qiu.zu { background: #6a1b9a; }
.hp-quick-ico em { font-style: normal; }

.hp-lottery {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}
.hp-lot-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    background: #fafafa;
}
.hp-lot-tabs button {
    flex: 1;
    padding: 10px 0;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}
.hp-lot-tabs button.active {
    color: var(--apple-accent);
    background: #fff;
    border-bottom-color: var(--apple-accent);
}
.hp-lottery .row-title {
    background: #f5f5f7;
    color: #1d1d1f;
    border-bottom-color: #e5e5ea;
    font-size: 15px;
    letter-spacing: 0;
}
.hp-lot-body {
    padding: 10px 10px 12px;
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f8f9fc;
}
.hp-lot-block {
    border: 1px solid #ececf1;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.05);
    padding: 8px 8px 7px;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.45;
}
.hp-lot-block:last-child { margin-bottom: 0; }
.hp-lot-block:hover {
    border-color: #dddde3;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
.hp-lot-ticket {
    position: relative;
    border-color: #ececf1;
    background: #fff;
    overflow: hidden;
}
.hp-lot-ticket::before,
.hp-lot-ticket::after {
    display: none;
}
.hp-lot-ticket::before { left: -7px; }
.hp-lot-ticket::after { right: -7px; }
.hp-lot-ticket::selection { background: rgba(200, 20, 30, 0.18); }
.hp-lot-line1 {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px solid #efeff4;
    padding-bottom: 4px;
}
.hp-chart {
    color: #06c;
    margin-right: 8px;
    font-size: 12px;
}
.hp-name {
    color: #1d1d1f;
    font-weight: 700;
    margin-right: 6px;
    flex: 1;
    min-width: 0;
    font-size: 13px;
    text-decoration: none;
}
.hp-name:hover { color: var(--apple-accent); text-decoration: underline; }
.hp-period {
    color: #6e6e73;
    font-size: 11px;
    background: #f6f7fb;
    border: 1px solid #eaecf2;
    border-radius: 999px;
    padding: 1px 7px;
    white-space: nowrap;
}
.hp-draw {
    color: #222;
    font-weight: 700;
    letter-spacing: 1px;
}
.hp-drawline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 9px;
    background: #f6f8fc;
    border: 1px solid #e5e5ea;
    font-family: "Consolas", "Courier New", monospace;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #1d1d1f;
}
.hp-lot-ticket .hp-drawline::before {
    content: "开奖";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    color: #6e6e73;
    background: #ffffff;
    border: 1px solid #e5e5ea;
    margin-right: 2px;
}
.hp-lot-ticket:not(.hp-lot-digital) .hp-drawline::before { content: "赛果"; }
.hp-lot-ticket.hp-lot-digital .hp-drawline::before { display: none; }
.hp-lot-block.hp-lot-digital {
    padding: 7px 8px 6px;
    margin-bottom: 5px;
}
.hp-lot-ticket.hp-lot-digital .hp-lot-line1 {
    margin-bottom: 3px;
    padding-bottom: 3px;
}
.hp-lot-ticket.hp-lot-digital .hp-drawline {
    flex-wrap: nowrap;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 8px;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}
.hp-lot-ticket.hp-lot-digital .hp-drawline::-webkit-scrollbar {
    display: none;
}
.hp-lot-ticket.hp-lot-digital .hp-drawline.hp-drawline-k8 {
    flex-wrap: wrap;
    white-space: normal;
    overflow-x: visible;
    gap: 4px;
}
.hp-lot-ticket.hp-lot-digital .hp-drawline::before {
    min-width: 30px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
}
.hp-draw.balls {
    color: #c8141e;
    background: #f8f8fa;
    border-color: #e8e8ee;
}
.lot-ball {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08), 0 1px 3px rgba(15, 23, 42, 0.1);
}
.lot-ball-red {
    color: #fff;
    background: linear-gradient(180deg, #ff5b6e 0%, #d7263d 100%);
}
.lot-ball-blue {
    color: #fff;
    background: linear-gradient(180deg, #61a0ff 0%, #2f6fd1 100%);
}
.hp-lot-ticket.hp-lot-digital .lot-ball {
    width: 24px;
    height: 24px;
    font-size: 12px;
}
.lot-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    color: #334155;
    background: #f2f2f7;
    border: 1px solid #d9d9df;
    box-shadow: none;
}
.lot-chip-win {
    color: #fff;
    background: #ef4444;
    border-color: #dc2626;
}
.lot-chip-draw {
    color: #fff;
    background: #f59e0b;
    border-color: #d97706;
}
.lot-chip-lose {
    color: #fff;
    background: #3b82f6;
    border-color: #2563eb;
}
.lot-sep {
    color: #64748b;
    font-size: 12px;
    margin: 0 1px;
}
.hp-prize {
    color: #334155;
    font-size: 12px;
    margin-top: 7px;
    line-height: 1.62;
    border-top: 1px solid #efeff4;
    padding-top: 6px;
}
.hp-prize p { margin: 0 0 2px; }
.hp-prize p:last-child { margin-bottom: 0; }
.hp-prize .eng {
    color: #b91c1c;
    font-weight: 700;
    font-family: "Consolas", "Courier New", monospace;
}
.hp-note { color: #64748b; font-size: 11px; margin-top: 4px; }

@media (max-width: 1100px) {
    .hp-home-grid { align-items: start; }
    .hp-lottery { height: auto; }
    .hp-lot-body {
        flex: none;
        height: auto;
        min-height: 0;
        overflow: visible;
    }
}

.hp-app-panel .hp-app-body { padding: 14px; text-align: center; }
.hp-qr {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    background: repeating-linear-gradient(45deg, #eee, #eee 4px, #f5f5f5 4px, #f5f5f5 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    border: 1px solid #ddd;
}
.hp-app-tip { font-size: 12px; color: #888; margin: 0; line-height: 1.5; }

.hp-welcome-ad {
    margin-top: 10px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #dbe7ff;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.08);
}
.hp-welcome-ad-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 12px 16px;
    text-decoration: none;
    color: #1f2937;
    background: linear-gradient(98deg, #e6f0ff 0%, #f3f8ff 38%, #fff7ee 72%, #ffeede 100%);
}
.hp-welcome-ad-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.55) 48%, transparent 82%);
    transform: translateX(-120%);
    transition: transform 0.75s ease;
    pointer-events: none;
}
.hp-welcome-ad-link .tag {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 23px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff9b2e 0%, #ff6a00 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}
.hp-welcome-ad-link strong {
    font-size: 18px;
    font-weight: 700;
    color: #1447b8;
    letter-spacing: 0.2px;
}
.hp-welcome-ad-link em {
    margin-left: auto;
    font-style: normal;
    font-size: 12px;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-welcome-ad-link .cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #0f4cc7;
    border: 1px solid #c6dcff;
    background: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
}
.hp-welcome-ad-link .cta b {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}
.hp-welcome-ad-link:hover {
    background: linear-gradient(98deg, #ddeaff 0%, #eef6ff 38%, #fff2e2 72%, #ffe6cf 100%);
}
.hp-welcome-ad-link:hover::before {
    transform: translateX(120%);
}
.hp-welcome-ad-link:hover .cta {
    border-color: #a8c9ff;
    background: rgba(255, 255, 255, 0.95);
}

.hp-banner {
    margin-top: 0;
    overflow: hidden;
    line-height: 0;
    background: #e9eef5;
}
.hp-banner.cp-surface {
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
.hp-banner-viewport {
    position: relative;
    width: 100%;
    height: 186px;
    background: #e9eef5;
    border-radius: 0;
    overflow: hidden;
    isolation: isolate;
}
.hp-banner-track {
    position: absolute;
    inset: 0;
}
.hp-banner-slide {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.36s ease;
    pointer-events: none;
    overflow: hidden;
}
.hp-banner-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.hp-banner-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: translateZ(0);
}
.hp-banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 44px;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    background: rgba(29, 29, 31, 0.34);
    transition: background 0.2s ease;
    z-index: 3;
}
.hp-banner-nav:hover { background: rgba(29, 29, 31, 0.52); }
.hp-banner-nav.prev { left: 8px; border-radius: 999px; }
.hp-banner-nav.next { right: 8px; border-radius: 999px; }
.hp-banner-dots {
    position: absolute;
    right: 14px;
    bottom: 10px;
    display: flex;
    gap: 7px;
    z-index: 3;
}
.hp-banner-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
}
.hp-banner-dots button.is-active { background: var(--apple-accent); }

.hp-notice { margin-top: 10px; }
.hp-home-right .hp-notice { margin-top: 0; }
.hp-notice-tabs {
    display: flex;
    border-bottom: 1px solid var(--apple-border);
    background: #f5f5f7;
}
.hp-notice-tabs button {
    flex: 1;
    max-width: 160px;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: var(--apple-subtext);
    cursor: pointer;
    margin-bottom: -1px;
    border-bottom: 2px solid transparent;
}
.hp-notice-tabs button.active {
    background: #fff;
    color: var(--apple-accent);
    border-bottom-color: var(--apple-accent);
}
.hp-notice-hd {
    padding: 8px 12px;
    background: #fafafa;
    border-bottom: 1px solid #ddd;
    font-weight: 700;
    font-size: 14px;
}
.hp-notice-list {
    list-style: none;
    margin: 0;
    padding: 10px 14px;
}
.hp-notice-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #efeff4;
    font-size: 13px;
}
.hp-notice-list li:last-child { border-bottom: 0; }
.hp-notice-list a {
    color: #374151;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-notice-list a:hover { color: var(--apple-accent); }
.hp-notice-list .dt { color: #9ca3af; flex-shrink: 0; font-size: 12px; }

.hp-hot-match {
    margin-top: 12px;
    background: #fff;
    border-color: var(--apple-border);
}
.hp-home-center .hp-hot-match { margin-top: 0; }
.hp-hot-match .hp-section-hd {
    background: #f5f5f7;
    border-bottom-color: var(--apple-border);
}
.hp-section-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #fafafa;
    border-bottom: 1px solid #ddd;
}
.hp-section-hd h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--apple-text);
}
.hp-match-grid {
    padding: 12px 12px 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.hp-car-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
    min-height: 116px;
    padding: 10px;
    border: 1px solid var(--apple-border);
    border-radius: 10px;
    background: #fff;
    font-size: 13px;
    color: #1f2937;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.hp-car-item:hover {
    border-color: #d7d7dc;
    color: #1f2937;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}
.hp-car-item .t1 {
    color: var(--apple-subtext);
    font-size: 11px;
    background: #f5f5f7;
    border: 1px solid var(--apple-border);
    border-radius: 8px;
    padding: 2px 6px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-car-item .t2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    font-weight: 700;
    color: #1f2937;
    min-width: 0;
}
.hp-car-item .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 0;
    flex: 1;
}
.hp-car-item .team em {
    font-style: normal;
    width: 100%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    font-size: 12px;
}
.hp-car-item .team-logo {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #e5e5ea;
    background: #fff;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.hp-car-item .vs {
    font-size: 11px;
    color: #9ca3af;
    letter-spacing: 0.6px;
    flex-shrink: 0;
}
.hp-car-item .t3 {
    color: var(--apple-accent);
    align-self: center;
    font-weight: 700;
    background: #eef5ff;
    border: 1px solid #cfe3ff;
    border-radius: 10px;
    padding: 2px 8px;
}

.hp-red .hp-section-hd {
    background: #f5f5f7;
    border-bottom-color: var(--apple-border);
}
.hp-red .hp-section-hd h2 { color: var(--apple-text); }
.hp-red-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
    border-bottom: 1px solid #efeff4;
    margin-bottom: 0;
    background: #fff;
}
.hp-red-quick a {
    color: var(--apple-subtext);
    font-weight: 500;
    padding: 0;
    border: 0;
    background: transparent;
}
.hp-red-quick a:hover { color: var(--apple-accent); text-decoration: underline; }

.hp-red-list, .hp-mini-news, .hp-expert-list {
    list-style: none;
    margin: 0;
    padding: 10px 14px 14px;
}
.hp-red-list li {
    padding: 8px 2px;
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid #efeff4;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
    line-height: 1.55;
}
.hp-red-list li:last-child { border-bottom: 0; }
.hp-red-list li:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}
.hp-mini-news li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 13px;
    line-height: 1.5;
}
.hp-red-list .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 1px 6px;
    font-size: 11px;
    margin-right: 8px;
    border-radius: 8px;
    border: 1px solid #d6e6fb;
    color: #1f5ea8;
    font-weight: 500;
    background: #f5f9ff;
    vertical-align: middle;
}
.hp-red-list a {
    color: #374151;
    font-weight: 500;
}
.hp-red-list a:hover { color: var(--apple-accent); text-decoration: underline; }
.hp-news-expert.cp-hot-news-panel .hp-section-hd.cp-hot-news-hd {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-bottom-color: var(--apple-border);
    padding: 11px 14px;
}
.hp-news-expert.cp-hot-news-panel .cp-hot-news-hd-title {
    font-size: 15px;
}
.hp-expert-hd {
    padding: 8px 14px 0;
    font-weight: 700;
    font-size: 14px;
    border-top: 1px solid #eee;
}
.hp-ex-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
    flex-shrink: 0;
    background: #f5f5f5;
}
.hp-expert-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 13px;
}
.hp-expert-list .n { font-weight: 700; color: #333; min-width: 0; flex: 1; }
.hp-expert-list .s { color: #666; flex: 1; }
.hp-expert-list .d { color: var(--apple-accent); font-weight: 700; }
.hp-right-expert {
    margin: 0;
    padding-top: 0;
    border-top: 0;
    background: transparent;
    border-radius: 0;
}
.hp-right-expert-panel {
    overflow: hidden;
    display: flex;
}
.hp-right-expert {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.hp-right-expert .hp-expert-hd {
    padding: 10px 12px;
    border-top: 0;
    border-bottom: 1px solid var(--apple-border);
    background: #f5f5f7;
}
.hp-expert-list-side {
    padding: 8px 12px 12px;
    flex: 1;
    overflow: auto;
}
.hp-expert-list-side li {
    gap: 8px;
    border-bottom: 1px solid #efeff4;
    padding: 8px 2px;
}
.hp-expert-list-side li:last-child { border-bottom: 0; }
.hp-expert-list-side .hp-ex-avatar {
    width: 32px;
    height: 32px;
}
.hp-expert-list-side .n {
    flex: 0 1 auto;
    max-width: 84px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #374151;
}
.hp-expert-list-side .n:hover { color: var(--apple-accent); text-decoration: underline; }
.hp-expert-list-side .s {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #6b7280;
    font-size: 12px;
}
.hp-expert-list-side .d {
    flex-shrink: 0;
    min-width: 18px;
    text-align: right;
}
.hp-expert-more {
    text-align: center;
    padding: 4px 0 10px;
}
.hp-expert-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 28px;
    padding: 0 12px;
    font-size: 12px;
    color: var(--apple-accent);
    background: #f3f8ff;
    border: 1px solid #d7e7ff;
    border-radius: 999px;
}
.hp-expert-more a:hover {
    background: #e9f3ff;
    border-color: #bfd8ff;
}
.hp-bigdata {
    padding: 10px 14px 14px;
    font-size: 12px;
    border-top: 1px solid #eee;
}
.hp-bigdata .lbl { display: block; font-weight: 700; margin-bottom: 8px; color: #333; }
.hp-bigdata a {
    display: inline-block;
    margin-right: 12px;
    color: #06c;
}

.hp-duizhen { margin-top: 10px; }
.hp-dz-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--apple-border);
    background: #f5f5f7;
}
.hp-dz-tabs button {
    padding: 10px 18px;
    border: 0;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    color: var(--apple-subtext);
    margin-bottom: -1px;
    border-bottom: 2px solid transparent;
}
.hp-dz-tabs button.active {
    background: #fff;
    color: var(--apple-accent);
    font-weight: 700;
    border-bottom-color: var(--apple-accent);
}
.hp-dz-sub {
    padding: 8px 12px;
    background: #f8f8fa;
    border-bottom: 1px solid #efeff4;
    font-size: 13px;
}
.hp-dz-sub a {
    margin-right: 14px;
    color: var(--apple-subtext);
}
.hp-dz-sub a.on { font-weight: 700; color: var(--apple-accent); }
.hp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.hp-table th, .hp-table td {
    padding: 10px 8px;
    border: 1px solid #efeff4;
    text-align: center;
}
.hp-table th { background: #f5f5f7; color: var(--apple-subtext); font-weight: 600; }
.hp-table td.left { text-align: left; }
.hp-table td.odds { color: var(--apple-accent); font-weight: 700; }
.hp-table td.empty { color: #999; padding: 24px; }
.hp-placeholder { padding: 24px 16px; color: #888; font-size: 13px; margin: 0; }
.hp-foot-tip {
    margin-top: 12px;
    padding: 14px 16px;
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}
.hp-foot-tip strong { color: #333; }
.hp-right-foot-tip { margin-top: 0; }
.hp-foot-hot,
.hp-foot-today {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}
.hp-foot-hot {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}
.hp-foot-hot li {
    border: 1px solid #e8ebf1;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    min-height: 112px;
    overflow: hidden;
}
.hp-foot-today li {
    border-bottom: 1px solid #efeff4;
    padding: 6px 0;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-foot-hot li:last-child,
.hp-foot-today li:last-child { border-bottom: 0; }
.hp-foot-hot a {
    color: #374151;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 112px;
    padding: 10px 6px;
    text-align: center;
}
.hp-foot-hot a img {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    object-fit: cover;
    flex-shrink: 0;
}
.hp-foot-hot a span {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    line-height: 1.2;
}
.hp-foot-hot a:hover { color: var(--apple-accent); text-decoration: underline; }
.hp-foot-today li:first-child {
    color: #1d1d1f;
    font-weight: 700;
}
.hp-foot-more {
    margin: 8px 0 0;
    text-align: right;
}
.hp-foot-more a { color: var(--apple-accent); }
.hp-foot-more a:hover { text-decoration: underline; }

.hp-tools-tip {
    margin-top: 12px;
    padding: 14px 16px;
    font-size: 12px;
    color: #666;
}
.hp-tools-tip strong { color: #333; }
.hp-tools-bottom {
    margin-top: auto;
}
.hp-right-big-ad {
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 188px;
    border-color: #dfe8ff;
}
.hp-right-big-ad-link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    min-height: 188px;
    padding: 16px;
    text-decoration: none;
    background: linear-gradient(160deg, #eaf2ff 0%, #f3f8ff 36%, #fff5ea 72%, #ffe9d1 100%);
    color: #1f2937;
}
.hp-right-big-ad-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.65) 0, rgba(255, 255, 255, 0) 46%);
    pointer-events: none;
}
.hp-right-big-ad-link .ad-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 24px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #ff9c30 0%, #ff6a00 100%);
    box-shadow: 0 5px 10px rgba(255, 106, 0, 0.25);
}
.hp-right-big-ad-link strong {
    font-size: 20px;
    line-height: 1.25;
    color: #1549bc;
    letter-spacing: 0.3px;
}
.hp-right-big-ad-link em {
    font-style: normal;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}
.hp-right-big-ad-link .ad-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 30px;
    border-radius: 999px;
    color: #0f4cc7;
    border: 1px solid #c3d8ff;
    background: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}
.hp-right-big-ad-link:hover {
    background: linear-gradient(160deg, #deebff 0%, #edf5ff 36%, #ffeedf 72%, #ffe2c2 100%);
}
.hp-right-big-ad-link:hover .ad-cta {
    background: rgba(255, 255, 255, 0.96);
    border-color: #a8c8ff;
}
.hp-tools-grid {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}
.hp-tools-grid li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 6px 8px;
    border: 1px solid #e8ebf1;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-tools-grid li a:hover {
    color: var(--apple-accent);
    border-color: #d6e3ff;
    background: #f2f7ff;
}

@media (max-width: 1100px) {
    .hp-home-grid { grid-template-columns: 1fr; }
    .hp-home-right {
        align-self: start;
        display: grid;
        min-height: 0;
    }
    .site-search { max-width: none; width: 100%; margin-left: 0; }
    .hp-banner-viewport { height: clamp(148px, 28vw, 186px) !important; }
    .hp-match-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hp-right-big-ad {
        flex: none;
        min-height: 128px;
    }
    .hp-right-big-ad-link {
        min-height: 128px;
        padding: 12px 14px;
    }
    .hp-right-big-ad-link strong {
        font-size: 17px;
    }
    .hp-tools-bottom {
        margin-top: 0;
    }
    .hp-welcome-ad-link {
        flex-wrap: wrap;
        row-gap: 6px;
    }
    .hp-welcome-ad-link em {
        margin-left: 0;
        width: calc(100% - 86px);
    }
    .hp-welcome-ad-link .cta {
        margin-left: auto;
    }
}
@media (max-width: 760px) {
    .hp-match-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .hp-match-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
    .site-head-bar { flex-direction: column; align-items: flex-start; }
    .site-head .site-nav.site-nav-bar {
        align-self: stretch;
        width: 100%;
        max-width: 100%;
        padding-bottom: 8px;
    }
    .site-subnav .inner {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }
    .site-subnav .inner::-webkit-scrollbar { display: none; }
}

/* 开奖三 Tab */
.hp-lot-tabs-3 button { max-width: 33.33%; font-size: 13px; }

/* 足彩多期工具条 */
.hp-zc-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    padding: 10px 12px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}
.hp-zc-lbl { color: #666; }
.hp-zc-sel {
    min-width: 120px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0 8px;
}
.hp-zc-hint { color: #999; font-size: 12px; }
.hp-zc-scroll { overflow-x: auto; }
.hp-table-zc { min-width: 880px; }

/* 资讯列表与详情 */
.site-news-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 16px 0 36px;
}
.site-news-crumb {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.site-news-crumb a { color: var(--accent); text-decoration: none; }
.site-news-crumb a:hover { color: var(--accent-hover); text-decoration: underline; }
.site-news-crumb .sep { margin: 0 6px; color: #cbd5e1; }
.site-news-head:not(.site-news-art-hd) {
    border-bottom: 2px solid var(--accent);
    padding-bottom: 14px;
    margin-bottom: 20px;
}
.page-news-list .site-news-head {
    position: relative;
    padding: 0 0 16px 14px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border-subtle);
}
.page-news-list .site-news-head::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 16px;
    width: 4px;
    border-radius: 2px;
    background: var(--accent);
}
.site-news-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.site-news-sub {
    margin: 10px 0 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}
.site-news-stats {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}
.site-news-stats strong {
    color: var(--accent);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.site-news-feed {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.site-news-card { margin: 0; }
.site-news-card-link {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 0 16px;
    padding: 14px 16px 14px 14px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: var(--radius-md);
    background: var(--surface-elevated);
    box-shadow: var(--shadow-sm);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
.site-news-card-link:hover {
    border-color: rgba(13, 148, 136, 0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.site-news-card-link:hover .site-news-card-title { color: var(--accent); }
.site-news-card-link:hover .site-news-card-arrow {
    color: var(--accent);
    transform: translateX(2px);
}
.site-news-card-thumb {
    align-self: center;
    width: 112px;
    height: 76px;
    aspect-ratio: 112 / 76;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: linear-gradient(145deg, var(--accent-soft) 0%, #e0f2fe 48%, #f8fafc 100%);
    border: 1px solid rgba(13, 148, 136, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-news-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.site-news-thumb-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.12);
    position: relative;
}
.site-news-thumb-icon::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 8px;
    width: 18px;
    height: 14px;
    border: 2px solid var(--accent);
    border-radius: 2px 2px 0 0;
    opacity: 0.85;
}
.site-news-thumb-icon::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 14px;
    width: 12px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    box-shadow: 0 4px 0 var(--accent), 0 8px 0 var(--accent);
    opacity: 0.55;
}
.site-news-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px 0;
}
.site-news-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 8px;
}
.site-news-tag {
    flex-shrink: 0;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.3;
}
.site-news-tag.tag-sync {
    background: var(--accent-soft);
    color: var(--accent-hover);
    border: 1px solid rgba(13, 148, 136, 0.22);
}
.site-news-tag.tag-local {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}
.site-news-tag.tag-expert {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid rgba(217, 119, 6, 0.35);
    font-weight: 700;
}
.site-news-tag.tag-unlocked {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.site-news-price {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 700;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 999px;
}
.site-news-art-badges {
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.site-news-preview-text {
    margin: 0 0 1.25em;
    font-size: 16px;
    line-height: 1.85;
    color: #334155;
    white-space: pre-wrap;
}
.site-news-full {
    margin-top: 4px;
}
.site-news-full-title {
    margin: 0 0 14px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
}
.site-news-full-body {
    font-size: 16px;
    line-height: 1.85;
    color: #334155;
}
.site-news-paywall {
    margin-top: 8px;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(245, 158, 11, 0.35);
    background: linear-gradient(180deg, #fffbeb 0%, #fff 72%);
}
.site-news-paywall-lead {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.65;
    color: #78350f;
}
.site-news-paywall-price {
    margin: 0 0 16px;
    font-size: 14px;
    color: #92400e;
}
.site-news-paywall-price strong {
    font-size: 22px;
    color: #b45309;
}
.site-news-paywall-points {
    font-size: 13px;
    color: #a16207;
    font-weight: 500;
}
.site-news-paywall-form,
.site-news-paywall-actions {
    margin: 0 0 12px;
}
.site-news-paywall-btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(180, 83, 9, 0.25);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.site-news-paywall-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.32);
}
.site-news-paywall-hint {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: #a16207;
}
.site-news-paywall-hint a {
    color: var(--accent);
    font-weight: 600;
}
.site-news-wxpay {
    margin-bottom: 14px;
}
.site-news-wxpay-panel {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: #fffbeb;
    border: 1px dashed #f59e0b;
}
.site-news-wxpay-tip {
    margin: 0 0 12px;
    font-size: 14px;
    color: #92400e;
}
.site-news-wxpay-qr-wrap {
    text-align: center;
    margin-bottom: 10px;
}
.site-news-wxpay-qr {
    display: inline-block;
    border: 4px solid #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.site-news-wxpay-order {
    margin: 0 0 10px;
    font-size: 12px;
    color: #78716c;
    word-break: break-all;
}
.site-news-paywall-maint {
    margin: 0.75rem 0 0;
    padding: 0.75rem 1rem;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 6px;
    font-size: 0.95rem;
}

.site-news-wxpay-mock-btn {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 16px;
    font-size: 13px;
    color: #fff;
    background: #059669;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
}
.site-news-wxpay-mock-btn:hover {
    background: #047857;
}
.site-news-paywall-demo {
    margin-top: 12px;
    font-size: 13px;
}
.site-news-paywall-demo summary {
    cursor: pointer;
    color: var(--accent);
    font-weight: 600;
}
.site-news-paywall-btn-secondary {
    background: linear-gradient(135deg, #78716c, #57534e);
}
.site-news-card-time {
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
    white-space: nowrap;
}
.site-news-card-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.14s ease;
}
.site-news-card-excerpt {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.site-news-card-arrow {
    align-self: center;
    flex-shrink: 0;
    font-size: 22px;
    line-height: 1;
    font-weight: 300;
    color: #cbd5e1;
    padding-left: 4px;
    transition: color 0.14s ease, transform 0.14s ease;
}
.site-news-empty {
    text-align: center;
    padding: 52px 24px;
    margin-top: 4px;
    border: 1px dashed rgba(148, 163, 184, 0.55);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.site-news-empty-icon {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--accent-soft);
    position: relative;
}
.site-news-empty-icon::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -58%);
    width: 22px;
    height: 16px;
    border: 2px solid var(--accent);
    border-radius: 2px;
    opacity: 0.7;
}
.site-news-empty-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.site-news-empty-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.site-news-pager {
    margin-top: 28px;
    padding-top: 8px;
    border-top: 1px solid var(--border-subtle);
}
.site-news-pager.pager { padding: 16px 0 4px; }
.site-news-pager ul {
    justify-content: center;
    gap: 6px;
}
.site-news-pager li a,
.site-news-pager li span {
    min-width: 36px;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: border-color 0.14s ease, color 0.14s ease, background 0.14s ease;
}
.site-news-pager li a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}
.site-news-pager .active span {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 600;
}
@media (max-width: 720px) {
    .site-news-wrap { padding: 12px 0 28px; }
    .site-news-title { font-size: 24px; }
    .site-news-card-link {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }
    .site-news-card-thumb {
        width: 100%;
        height: 120px;
    }
    .site-news-card-arrow { display: none; }
    .site-news-card-meta { margin-bottom: 6px; }
}
@media (max-width: 480px) {
    .site-news-card-title { font-size: 16px; -webkit-line-clamp: 3; }
    .site-news-card-excerpt { -webkit-line-clamp: 3; }
}

.site-news-art-hd {
    padding-bottom: 14px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
}
.site-news-art-title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.35;
    color: #111;
}
.site-news-art-meta {
    margin: 0;
    font-size: 13px;
    color: #888;
}
.zx-article-content {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    word-break: break-word;
}
.zx-article-content p { margin: 0 0 1em; text-indent: 2em; }
.zx-article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 12px auto;
}
.site-news-art-nav {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #555;
}
.site-news-art-nav a { color: var(--accent); }
.site-news-back { margin-top: 16px; font-size: 13px; }
.site-news-back a { color: var(--apple-accent); font-weight: 700; }

/* 数据洞察页 */
.data-insight-box { margin-bottom: 20px; }
.data-insight-highlights {
    margin: 0;
    padding-left: 1.25em;
    line-height: 1.75;
    font-size: 14px;
    color: #334155;
}
.data-insight-note {
    margin: 0 0 12px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}
.data-insight-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #475569;
}
.data-insight-kpis strong { color: #0f172a; font-size: 15px; }
.data-insight-cats {
    margin: 0 0 12px;
    padding-left: 1.2em;
    line-height: 1.8;
    font-size: 14px;
    color: #334155;
}
.data-insight-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.data-insight-table th,
.data-insight-table td {
    border: 1px solid #e5e7eb;
    padding: 8px 10px;
    text-align: left;
}
.data-insight-table th { background: #f8fafc; color: #475569; font-weight: 600; }
.data-insight-table .row-empty { text-align: center; color: #94a3b8; padding: 20px; }
.data-insight-table-compact td:first-child { font-family: ui-monospace, monospace; font-size: 12px; color: #64748b; }

/* 足球资料页 */
.margin-top-12 { margin-top: 12px; }
.page-football .football-section .title.football-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.football-more-link {
    font-size: 13px;
    font-weight: 600;
    color: #1f5ea8;
}
.football-more-link:hover { color: var(--apple-accent); }
.football-section-hint {
    margin: 0 0 12px;
    padding: 0 16px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}
.football-empty-wide { grid-column: 1 / -1; }

/* 顶栏 */
.football-hero {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(125deg, #ecfdf5 0%, #eff6ff 38%, #f8fafc 100%);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
.football-hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 18px 20px;
}
.football-hero-title {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.football-hero-desc {
    margin: 0;
    max-width: 520px;
    font-size: 13px;
    color: #475569;
    line-height: 1.65;
}
.football-quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.football-quick-nav a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.football-quick-nav a:hover {
    border-color: #93c5fd;
    color: #1d4ed8;
    background: #fff;
}

/* 热门联赛卡片 */
.football-hot-cards {
    padding: 14px 16px 18px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.football-hot-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 10px 14px;
    border: 1px solid #dbe7ff;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
    color: #334155;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}
.football-hot-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
    color: #0f172a;
}
.football-hot-card-logo {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.football-hot-card-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.football-hot-card-title {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}
.football-hot-card-go {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: #1f5ea8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* 焦点对阵 */
.football-focus-grid {
    padding: 4px 16px 18px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}
.football-focus-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.football-focus-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}
.football-focus-meta {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.02em;
}
.football-focus-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.football-focus-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
    text-align: center;
}
.football-focus-side em {
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    word-break: break-word;
}
.football-focus-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}
.football-focus-vs {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 800;
    color: #94a3b8;
}
.football-focus-plans {
    font-size: 11px;
    color: #1f5ea8;
    font-weight: 600;
}

/* 今日赛程卡片 */
.football-today-wrap { padding: 12px 16px 18px; }
.football-league-block { margin-bottom: 16px; }
.football-league-block:last-child { margin-bottom: 0; }
.football-league-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e2e8f0;
}
.football-match-cards {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.football-match-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    padding: 10px 14px;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    background: linear-gradient(180deg, #fcfcfd 0%, #f8fafc 100%);
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
}
.football-match-time {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: #1d4ed8;
    font-variant-numeric: tabular-nums;
}
.football-match-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.football-match-team { font-weight: 700; color: #0f172a; }
.football-match-delim {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
}

/* 竞彩预览表 */
.football-jczq-table-wrap {
    padding: 0 16px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.football-jczq-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 13px;
}
.football-jczq-table th,
.football-jczq-table td {
    border: 1px solid #e8edf5;
    padding: 8px 10px;
    text-align: left;
}
.football-jczq-table th {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: #475569;
    font-weight: 700;
    white-space: nowrap;
}
.football-jczq-table tbody tr:nth-child(even) { background: #fafbfc; }
.football-jczq-team { font-weight: 600; color: #0f172a; }
.football-jczq-odds {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: #b45309;
}

/* 资讯列表 */
.football-news-list {
    margin: 0;
    padding: 8px 16px 16px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.football-news-item {
    border: 1px solid #eef2f7;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
.football-news-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    transition: background 0.12s ease;
}
.football-news-link:hover {
    background: #f8fafc;
}
.football-news-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
}
.football-news-summary {
    font-size: 12px;
    color: #64748b;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.football-hot-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.football-hot-card-meta {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

/* 联赛资料页 */
.page-football-league .football-league-banner {
    position: relative;
    margin-top: 12px;
    min-height: 168px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #0f766e;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(13, 148, 136, 0.35);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}
.football-league-banner-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 118, 110, 0.92) 0%, rgba(30, 64, 175, 0.55) 55%, rgba(15, 23, 42, 0.35) 100%);
}
.football-league-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
}
.football-league-banner-logo,
.football-league-logo-lg {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.65);
    padding: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.football-league-banner-title,
.football-league-hero-title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.football-league-banner-meta,
.football-league-hero-meta {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #e0f2fe;
}
.football-league-banner-meta span,
.football-league-hero-meta span {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.football-league-hero {
    border-radius: 14px;
    border: 1px solid rgba(13, 148, 136, 0.25);
    background: linear-gradient(125deg, #ecfdf5 0%, #eff6ff 50%, #f8fafc 100%);
}
.football-league-hero-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
}
.page-football-league .football-league-hero-title { color: #0f172a; }
.page-football-league .football-league-hero-meta span {
    color: #0f766e;
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.25);
}
.football-league-intro {
    margin: 0;
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.75;
    color: #475569;
}
.football-team-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 16px 18px;
}
.football-team-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 72px;
    padding: 8px 6px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
}
.football-team-strip-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.football-team-strip-item em {
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    color: #334155;
    text-align: center;
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.football-standings-wrap {
    padding: 0 16px 16px;
    overflow-x: auto;
}
.football-standings-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 13px;
}
.football-standings-table th,
.football-standings-table td {
    border: 1px solid #e8edf5;
    padding: 8px 10px;
    text-align: center;
}
.football-standings-table th {
    background: linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 100%);
    color: #0f766e;
    font-weight: 700;
}
.football-standings-table th:nth-child(2),
.football-standings-team { text-align: left; }
.football-standings-team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #0f172a;
}
.football-standings-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8fafc;
}
.football-standings-rank { font-weight: 800; color: #64748b; }
.football-standings-pts { font-weight: 800; color: #0d9488; }
.football-match-cards-rich { padding: 8px 16px 18px; }
.football-match-main-badges {
    justify-content: center;
    gap: 12px;
}
.football-match-side {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.football-match-badge {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8edf5;
}

@media (max-width: 760px) {
    .football-hot-cards { grid-template-columns: 1fr; }
    .football-focus-grid { grid-template-columns: 1fr; }
    .football-jczq-table { font-size: 12px; }
    .football-hero-inner { flex-direction: column; }
}

/* 全国开奖：与首页 .container.hp-wrap 同宽（1200px 通栏，主区不再被侧栏栅格挤压） */
.page-kaijiang .kj-shell {
    margin-top: 10px;
}
.page-kaijiang .kj-draw-panel {
    width: 100%;
    max-width: none;
}
.page-kaijiang .kj-draw-panel .draw-panel-block,
.page-kaijiang .kj-draw-panel .draw-panel-anchor,
.page-kaijiang .kj-draw-panel .draw-panel-table-wrap {
    width: 100%;
    max-width: none;
}

/* 频道通栏：无 common/sidebar，主区与首页 .container.hp-wrap 同宽（1200px） */
.container.hp-wrap.channel-full {
    margin-top: 10px;
}
.container.hp-wrap.channel-full > .channel-main,
.container.hp-wrap.channel-full > .data-chart-wrap,
.container.hp-wrap.channel-full > .site-news-wrap,
.container.hp-wrap.channel-full > .box.cp-panel {
    width: 100%;
    max-width: none;
}
.page-chart .chart-shell {
    margin-top: 10px;
}
.page-chart .data-chart-wrap,
.page-chart .data-chart-top,
.page-chart .data-chart-panel,
.page-chart .data-chart-layout {
    width: 100%;
    max-width: none;
}

/* 全国开奖频道 */
.draw-panel-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid #eef2f7;
    font-size: 12px;
    color: #6b7280;
    background: #fafbff;
}
.draw-panel-anchor {
    display: flex;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid #eef2f7;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 5;
}
.draw-panel-anchor a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #d9e6fb;
    background: #f4f8ff;
    color: #1f5ea8;
    font-size: 12px;
    font-weight: 600;
}
.draw-panel-anchor a:hover {
    border-color: #c0d6fb;
    background: #eaf2ff;
}
.draw-panel-block {
    padding: 10px 16px 16px;
    border-bottom: 1px solid #eef2f7;
}
.draw-panel-block:last-child {
    border-bottom: 0;
}
.draw-panel-hd {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.draw-panel-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--apple-accent);
}
.draw-panel-more:hover {
    text-decoration: underline;
}
.draw-panel-expert-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}
.draw-panel-expert-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 8px 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
}
.draw-panel-ex-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    background: #fff;
    flex-shrink: 0;
}
.draw-panel-expert-list .n {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    color: #374151;
    font-size: 12px;
    text-align: center;
}
.draw-panel-expert-list .n:hover {
    color: var(--apple-accent);
    text-decoration: underline;
}
.draw-panel-expert-list .s {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #6b7280;
    font-size: 11px;
    text-align: center;
}
/* 开奖频道：彩种行下专家解读条 */
.kj-expert-strip-row td {
    padding: 6px 12px 10px;
    background: #fafbff;
    border-top: 0;
}
.expert-lottery-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.expert-lottery-strip-label {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    color: #b45309;
}
.expert-lottery-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
    font-size: 12px;
    line-height: 1.35;
    text-decoration: none;
}
.expert-lottery-card:hover {
    border-color: #fbbf24;
    background: #fef3c7;
}
.expert-lottery-card-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 280px;
}
.expert-lottery-card-price,
.expert-lottery-card-badge {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 700;
}
.expert-lottery-card-price {
    color: #c2410c;
}
.expert-lottery-card-badge.is-unlocked {
    color: #15803d;
}
.page-kaijiang .kj-lottery-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 14px;
    align-items: start;
}
.page-kaijiang .kj-lottery-main {
    min-width: 0;
}
.kj-expert-panel {
    padding: 12px 14px;
}
.kj-expert-panel-hd,
.lot-topic-expert-panel .lot-topic-side-hd {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}
.kj-expert-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.kj-expert-panel-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #eef2f7;
}
.kj-expert-panel-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.kj-expert-panel-link {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    color: #1e3a5f;
    line-height: 1.4;
}
.kj-expert-panel-link:hover {
    color: var(--apple-accent);
}
.kj-expert-panel-price {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    color: #c2410c;
}
.kj-expert-panel-tag.is-unlocked {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 700;
    color: #15803d;
}
.lot-topic-side .lot-topic-expert-panel {
    margin-bottom: 12px;
}
@media (max-width: 900px) {
    .page-kaijiang .kj-lottery-layout {
        grid-template-columns: 1fr;
    }
    .expert-lottery-card-title {
        max-width: 200px;
    }
}

.draw-panel-expert-list .d {
    min-width: 40px;
    text-align: center;
    color: var(--apple-accent);
    font-weight: 700;
    font-size: 11px;
    border: 1px solid #cfe0ff;
    background: #edf4ff;
    border-radius: 999px;
    padding: 1px 8px;
}
.draw-panel-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.draw-panel-table-wrap {
    overflow-x: auto;
}
.draw-panel-table th,
.draw-panel-table td {
    padding: 10px 8px;
    border: 1px solid #edf1f7;
    text-align: center;
    font-size: 13px;
    line-height: 1.55;
    vertical-align: top;
}
.draw-panel-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 700;
}
.draw-panel-table tbody tr:nth-child(even) {
    background: #fcfdff;
}
.draw-panel-table td.left {
    text-align: left;
}
.draw-panel-table td.draw-panel-code {
    color: #1f2937;
    font-weight: 700;
    word-break: break-word;
}
.draw-panel-code a,
.draw-panel-table td.left a {
    color: #1f5ea8;
}
.draw-panel-table td.left a:hover {
    color: #0b4ea2;
    text-decoration: underline;
}
.draw-panel-code-balls,
.draw-panel-code-chip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}
.draw-panel-code-k8 {
    align-items: flex-start;
}
.kj-ball {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 5px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}
.kj-ball-red {
    background: linear-gradient(180deg, #ff6171 0%, #d02639 100%);
}
.kj-ball-blue {
    background: linear-gradient(180deg, #65a9ff 0%, #2f72d6 100%);
}
.kj-ball-k8 {
    min-width: 22px;
    height: 22px;
    padding: 0 4px;
    font-size: 11px;
}
.kj-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 12px;
    color: #334155;
    border: 1px solid #d9d9df;
    background: #f2f2f7;
}
.kj-chip-win {
    color: #fff;
    background: #ef4444;
    border-color: #dc2626;
}
.kj-chip-draw {
    color: #fff;
    background: #f59e0b;
    border-color: #d97706;
}
.kj-chip-lose {
    color: #fff;
    background: #3b82f6;
    border-color: #2563eb;
}
.kj-sep {
    color: #64748b;
    font-size: 12px;
    margin: 0 1px;
}
.draw-panel-table td.draw-panel-prize {
    color: #334155;
}
.draw-panel-table td.draw-panel-prize .eng {
    color: #b91c1c;
    font-weight: 700;
}
@media (max-width: 980px) {
    .draw-panel-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .draw-panel-expert-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .draw-panel-expert-list li {
        aspect-ratio: auto;
        min-height: 104px;
    }
    .draw-panel-table {
        min-width: 760px;
    }
}

/* 数据图表页（重做版） */
.chart-hub-intro {
    margin-bottom: 12px;
    padding: 14px 16px;
}
.chart-hub-title {
    margin: 0 0 8px;
    font-size: 20px;
    color: #0f172a;
}
.chart-hub-lead {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
}
.chart-hub-lead a {
    color: #1f5ea8;
}
.chart-hub-section {
    margin-bottom: 12px;
}
.chart-hub-section-hd {
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #eef2f7;
    color: #0f172a;
}
.chart-hub-table .numbers {
    font-family: ui-monospace, Consolas, monospace;
    font-size: 12px;
}
.chart-hub-actions {
    white-space: nowrap;
}
.chart-hub-actions a {
    margin-right: 10px;
    color: #1f5ea8;
    font-size: 12px;
}
.chart-hub-actions a:last-child {
    margin-right: 0;
}
.chart-hub-side {
    margin-top: 12px;
}
.chart-hub-back {
    margin-right: 12px;
    font-size: 12px;
    font-weight: 400;
    color: #1f5ea8;
}
.chart-detail-special-link {
    margin: 0;
    padding: 0 12px 10px;
    font-size: 12px;
}
.chart-detail-special-link a {
    color: #1f5ea8;
}
.data-chart-wrap {
    max-width: 100%;
}
.data-chart-top {
    margin-bottom: 12px;
}
.data-chart-top-hd {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #eef2f7;
    color: #0f172a;
}
.data-chart-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px 12px;
}
.data-chart-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid #dbe7ff;
    border-radius: 6px;
    background: #f5f9ff;
    color: #1f5ea8;
    font-size: 12px;
    padding: 4px 8px;
}
.data-chart-nav a.active {
    border-color: #9ec1ff;
    background: #eaf2ff;
    font-weight: 700;
}
.data-chart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 12px;
}
.data-chart-main {
    display: grid;
    gap: 12px;
}
.data-chart-panel .title {
    margin-bottom: 0;
}
.data-chart-tabs {
    display: inline-flex;
    gap: 0;
    margin: 10px 12px 0;
    border: 1px solid #d9e6fb;
    border-radius: 4px;
    overflow: hidden;
}
.data-chart-tabs span {
    min-width: 66px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #64748b;
    font-size: 12px;
    border-right: 1px solid #d9e6fb;
    cursor: pointer;
}
.data-chart-tabs span:last-child {
    border-right: 0;
}
.data-chart-tabs span.on {
    background: #edf4ff;
    color: #1f5ea8;
    font-weight: 700;
}
.data-chart-body {
    padding: 10px 12px 12px;
}
.data-chart-current {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}
.data-chart-current strong {
    font-size: 15px;
    color: #0f172a;
}
.data-chart-current em {
    font-style: normal;
    font-size: 12px;
    color: #64748b;
}
.data-chart-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.data-chart-trend-pane {
    display: none;
}
.data-chart-trend-pane.active {
    display: block;
}
.data-chart-line {
    height: 320px;
    margin-bottom: 10px;
    border: 1px solid #edf1f7;
    border-radius: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.data-chart-table th,
.data-chart-table td {
    border: 1px solid #edf1f7;
    padding: 8px 8px;
    font-size: 12px;
    text-align: center;
    line-height: 1.6;
}
.data-chart-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 700;
}
.data-chart-table .numbers {
    text-align: left;
    color: #b91c1c;
    font-family: "Consolas", "Courier New", monospace;
}
.data-chart-help {
    padding: 10px 12px 12px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.8;
}
.data-chart-help p {
    margin: 0;
}
.data-chart-side {
    padding-bottom: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.data-chart-side-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #eef2f7;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}
.data-chart-side-hd a {
    font-size: 12px;
    font-weight: 600;
    color: var(--apple-accent);
}
.data-chart-open-list {
    list-style: none;
    margin: 0;
    padding: 8px 12px;
    display: grid;
    gap: 6px;
}
.data-chart-open-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "name period"
        "draw draw";
    gap: 4px 8px;
    align-items: start;
    padding: 8px 10px;
    border: 1px solid #edf1f7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
    font-size: 12px;
}
.data-chart-open-list li:last-child {
    margin-bottom: 0;
}
.data-chart-open-list .n {
    grid-area: name;
    color: #1f2937;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.data-chart-open-list .n:hover {
    color: var(--apple-accent);
}
.data-chart-open-list .p {
    grid-area: period;
    color: #64748b;
    white-space: nowrap;
    text-align: right;
    border: 1px solid #dbe7ff;
    background: #f3f8ff;
    border-radius: 999px;
    padding: 0 8px;
    line-height: 20px;
    height: 20px;
    font-size: 11px;
}
.data-chart-open-list .d {
    grid-area: draw;
    color: #b42318;
    font-family: "Consolas", "Courier New", monospace;
    white-space: normal;
    word-break: break-word;
    line-height: 1.5;
    background: #fff6f6;
    border: 1px solid #ffe1e1;
    border-radius: 6px;
    padding: 4px 6px;
    letter-spacing: 0.2px;
}

/* 双色球专页 */
.lot-topic-wrap {
    max-width: 100%;
}
.lot-topic-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px;
    margin-bottom: 12px;
    background: linear-gradient(92deg, #f8fbff 0%, #fff7f7 100%);
}
.lot-topic-head h1 {
    margin: 0;
    font-size: 20px;
    color: #0f172a;
}
.lot-topic-head p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #64748b;
}
.lot-topic-win-tabs {
    display: inline-flex;
    border: 1px solid #d9e6fb;
    border-radius: 6px;
    overflow: hidden;
}
.lot-topic-win-tabs a {
    min-width: 74px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 12px;
    color: #64748b;
    background: #fff;
    border-right: 1px solid #d9e6fb;
}
.lot-topic-win-tabs a:last-child {
    border-right: 0;
}
.lot-topic-win-tabs a.on {
    color: #1f5ea8;
    font-weight: 700;
    background: #edf4ff;
}
.lot-topic-navbox {
    margin-bottom: 12px;
}
.lot-topic-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
}
.lot-topic-nav a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 36px;
    border: 1px solid #dbe7ff;
    border-radius: 6px;
    background: #f7faff;
    color: #1f5ea8;
    font-size: 13px;
}
.lot-topic-nav a.active {
    background: #e9f1ff;
    border-color: #9ec1ff;
    font-weight: 700;
}
.lot-topic-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 12px;
}
.lot-topic-main {
    display: grid;
    gap: 12px;
}
.lot-topic-panel .title {
    margin-bottom: 0;
}
.lot-topic-chart {
    height: 300px;
    margin: 10px 12px 12px;
    border: 1px solid #edf1f7;
    border-radius: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.lot-topic-chart-blue {
    height: 240px;
}
.lot-topic-table-wrap {
    padding: 10px 12px 12px;
}
.lot-topic-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.lot-topic-table th,
.lot-topic-table td {
    border: 1px solid #edf1f7;
    padding: 8px;
    text-align: center;
    font-size: 12px;
}
.lot-topic-table th {
    background: #f8fafc;
    color: #64748b;
}
.lot-topic-history-table .numbers {
    text-align: left;
    color: #b42318;
    font-family: "Consolas", "Courier New", monospace;
}
.lot-topic-history-pane {
    display: none;
    padding: 10px 12px 12px;
}
.lot-topic-history-pane.active {
    display: block;
}
.lot-topic-side {
    padding-bottom: 8px;
}
.lot-topic-side-hd {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    padding: 10px 12px;
    border-bottom: 1px solid #eef2f7;
}
.lot-topic-overview {
    padding: 8px 12px 10px;
    display: grid;
    gap: 8px;
}
.lot-topic-overview dl {
    margin: 0;
    border: 1px solid #edf1f7;
    background: #fff;
    border-radius: 6px;
    padding: 7px 8px;
}
.lot-topic-overview dt {
    color: #64748b;
    font-size: 12px;
}
.lot-topic-overview dd {
    margin: 4px 0 0;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
}
@media (max-width: 1200px) {
    .lot-topic-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* 双色球 datachart 1:1 走势矩阵（命名空间 ssq1to1 + sssqq-*） */
.ssq1to1-body,
.special-datachart-body {
    background: #f4f7fb;
}

/* 快乐8 等宽表：略降低最小宽度约束，由表格列数撑开横向滚动 */
.ssq1to1-wrap.special-datachart-wide-table .sssqq-matrix-table {
    min-width: 1980px;
}
.page-channel.special-datachart-body .ssq1to1-wrap.special-datachart-wide-table .sssqq-matrix-table {
    min-width: 2010px;
}
.ssq1to1-wrap {
    max-width: 100%;
}
.ssq1to1-page-title,
.ssq1to1-wrap .sssqq-page-title {
    margin-bottom: 8px;
}
.ssq1to1-wrap .sssqq-page-title h1,
.ssq1to1-page-title h1 {
    margin: 0 0 4px;
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 700;
}
.ssq1to1-sub,
.ssq1to1-wrap .sssqq-sub {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}
.ssq1to1-wrap .sssqq-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 0 10px;
    background: #fff;
    border: 1px solid #d0d8e8;
    border-radius: 2px;
    overflow: hidden;
}
.ssq1to1-wrap .sssqq-subnav-item {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    border-right: 1px solid #e5e5e5;
    cursor: default;
}
.ssq1to1-wrap .sssqq-subnav-item.on {
    background: #e8f1ff;
    color: #1f5ea8;
    font-weight: 700;
}
.ssq1to1-muted {
    color: #999 !important;
    background: #fafafa;
}
.ssq1to1-toolbar {
    margin-bottom: 8px;
    padding: 0;
    overflow: hidden;
}
.ssq1to1-wrap .sssqq-toolbar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid #eef2f7;
    background: #fafcff;
}
.ssq1to1-wrap .sssqq-toolbar-label {
    font-size: 13px;
    color: #444;
    margin-right: 8px;
}
.ssq1to1-wrap .sssqq-expect-link {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    color: #1f5ea8;
    border: 1px solid #bcd4ff;
    border-radius: 3px;
    margin-right: 6px;
    background: #fff;
}
.ssq1to1-wrap .sssqq-expect-link:hover {
    background: #eef5ff;
}
.ssq1to1-wrap .sssqq-expect-link.active {
    background: #1f5ea8;
    color: #fff;
    border-color: #1f5ea8;
    font-weight: 700;
}
.ssq1to1-wrap .sssqq-navbox {
    padding: 8px 12px 10px;
}
.ssq1to1-wrap .sssqq-nav-title {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 6px;
}
.ssq1to1-wrap .sssqq-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ssq1to1-wrap .sssqq-nav-links a {
    padding: 4px 10px;
    font-size: 12px;
    border: 1px solid #dbe7ff;
    border-radius: 4px;
    color: #1f5ea8;
    background: #f7fbff;
}
.ssq1to1-wrap .sssqq-nav-links a.active {
    border-color: #1f5ea8;
    font-weight: 700;
    background: #e9f1ff;
}
.ssq1to1-matrix-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}
.ssq1to1-matrix-panel .title {
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #eef2f7;
    margin: 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.ssq1to1-wrap .datachart-latest-draw {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    padding: 12px 14px;
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #334155;
    background: linear-gradient(100deg, #f8fafc 0%, #f1f5f9 45%, #eff6ff 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    border-left: 3px solid var(--apple-accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.ssq1to1-wrap .datachart-latest-label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: #1e40af;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.ssq1to1-wrap .datachart-latest-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    min-width: 0;
}
.ssq1to1-wrap .datachart-latest-period {
    font-weight: 800;
    color: #0f172a;
    font-size: 14px;
}
.ssq1to1-wrap .datachart-latest-period-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.ssq1to1-wrap .datachart-latest-balls {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    min-width: 0;
}
.ssq1to1-wrap .datachart-latest-ball {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 30px;
    height: 30px;
    padding: 0 7px;
    border-radius: 50%;
    font-family: Tahoma, Arial, "Microsoft YaHei", sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    border: 1px solid transparent;
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.ssq1to1-wrap .datachart-latest-ball--front {
    background: linear-gradient(145deg, #fecaca 0%, #ef4444 48%, #b91c1c 100%);
    border-color: rgba(185, 28, 28, 0.45);
}
.ssq1to1-wrap .datachart-latest-ball--back {
    background: linear-gradient(145deg, #bfdbfe 0%, #3b82f6 52%, #1d4ed8 100%);
    border-color: rgba(29, 78, 216, 0.4);
}
.ssq1to1-wrap .datachart-latest-ball--pool {
    background: linear-gradient(145deg, #ddd6fe 0%, #7c3aed 50%, #5b21b6 100%);
    border-color: rgba(91, 33, 182, 0.35);
}
.ssq1to1-wrap .datachart-latest-ball--digit {
    min-width: 28px;
    height: 28px;
    font-size: 14px;
    background: linear-gradient(145deg, #fde68a 0%, #f59e0b 50%, #b45309 100%);
    border-color: rgba(180, 83, 9, 0.4);
}
.ssq1to1-wrap .datachart-latest-ball--neutral {
    color: #f8fafc;
    background: linear-gradient(145deg, #cbd5e1 0%, #64748b 52%, #334155 100%);
    border-color: rgba(51, 65, 85, 0.35);
}
.ssq1to1-wrap .datachart-latest-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    color: #64748b;
}
.ssq1to1-wrap .datachart-latest-numbers {
    font-family: Tahoma, Arial, "Microsoft YaHei", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.07em;
    color: #0f172a;
    word-break: break-all;
}
.ssq1to1-wrap .datachart-latest-empty {
    color: #94a3b8;
    font-size: 13px;
    font-style: italic;
}
.ssq1to1-wrap .sssqq-matrix-scroll {
    position: relative;
    overflow-x: auto;
    overflow-y: auto;
    max-width: 100%;
    max-height: min(78vh, 920px);
    border: 1px solid #d0d8e8;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: #c5d0e0 #f1f5f9;
}
.page-channel.ssq1to1-body .ssq1to1-matrix-scroll-inset,
.page-channel.special-datachart-body .ssq1to1-matrix-scroll-inset {
    flex: 1 1 0%;
    min-height: 0;
    min-width: 0;
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.page-channel.ssq1to1-body .ssq1to1-matrix-scroll-inset .sssqq-matrix-scroll,
.page-channel.special-datachart-body .ssq1to1-matrix-scroll-inset .sssqq-matrix-scroll {
    position: relative;
    flex: 1 1 0%;
    align-self: stretch;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: min(48vh, 520px);
    max-height: none;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: #c5d0e0 #f1f5f9;
}
.ssq1to1-wrap .sssqq-matrix-scroll.is-scrolled {
    box-shadow: inset 0 10px 8px -10px rgba(15, 23, 42, 0.12);
}

/* 双色球：蓝球区走势折线（按期号自上而下连接各期开奖蓝球格） */
.ssq1to1-wrap .ssq1to1-matrix-table-wrap {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.ssq1to1-wrap .ssq1to1-blue-trend-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}
.ssq1to1-wrap .ssq1to1-matrix-table-wrap > table {
    position: relative;
    z-index: 2;
}
.ssq1to1-wrap .ssq1to1-blue-trend-path {
    filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff);
}

.ssq1to1-wrap .sssqq-matrix-table {
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 1380px;
    font-family: Tahoma, Arial, "Microsoft YaHei", sans-serif;
    font-size: 11px;
}
.ssq1to1-wrap .sssqq-matrix-table thead th {
    background: #f0f4fa;
    border: 1px solid #c9d6e8;
    color: #333;
    font-weight: 700;
    text-align: center;
    padding: 3px 1px;
    white-space: nowrap;
}

/* 表头双行吸顶 + 统计列显隐 */
.ssq1to1-wrap .sssqq-matrix-table thead .sssqq-tr-head1 th {
    position: sticky;
    z-index: 6;
    top: 0;
    box-shadow: 0 1px 0 #c9d6e8;
}
.ssq1to1-wrap .sssqq-matrix-table thead .sssqq-tr-head2 th {
    position: sticky;
    z-index: 5;
    top: 21px;
    box-shadow: 0 1px 0 #c9d6e8;
}
.ssq1to1-wrap .sssqq-matrix-table .sssqq-col-stat.is-hidden,
.ssq1to1-wrap .sssqq-matrix-table .sssqq-th-stat.is-hidden,
.ssq1to1-wrap .sssqq-matrix-table .sssqq-td-stat.is-hidden,
.ssq1to1-wrap .sssqq-matrix-table .sssqq-td-stat-foot.is-hidden {
    display: none !important;
}
.ssq1to1-wrap .sssqq-colbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 6px 12px 8px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 12px;
    color: #334155;
}
.ssq1to1-wrap .sssqq-colbar label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
}

.ssq1to1-wrap .sssqq-th-zone.reds {
    background: #ffe8e8;
}
.ssq1to1-wrap .sssqq-th-zone.blues {
    background: #e8f1ff;
}
.ssq1to1-wrap .sssqq-th-num.red {
    background: #fff0f0;
    color: #c41e3a;
    width: 17px;
    min-width: 17px;
    max-width: 17px;
}
.ssq1to1-wrap .sssqq-th-num.blue {
    background: #f0f7ff;
    color: #165c9e;
    width: 17px;
    min-width: 17px;
    max-width: 17px;
}
.ssq1to1-wrap .sssqq-th-period {
    width: 58px;
    min-width: 58px;
}
.ssq1to1-wrap .sssqq-th-draw {
    width: 168px;
    min-width: 168px;
    box-sizing: border-box;
}
.ssq1to1-wrap .sssqq-th-stat {
    width: 34px;
    min-width: 34px;
}
.ssq1to1-wrap .sssqq-matrix-table tbody td {
    border: 1px solid #d8dde6;
    text-align: center;
    padding: 1px 0;
    height: 16px;
    line-height: 12px;
}
.ssq1to1-wrap .sssqq-td-period {
    font-weight: 700;
    color: #333;
    background: #fafafa;
}
.ssq1to1-wrap .sssqq-td-draw {
    text-align: left;
    padding-left: 6px;
    padding-right: 4px;
    white-space: nowrap;
    background: #fafafa;
    width: 168px;
    min-width: 168px;
    max-width: 168px;
    box-sizing: border-box;
    overflow: visible;
    font-size: 10px;
}
.ssq1to1-wrap .sssqq-red-str {
    color: #c41e3a;
    letter-spacing: 0.4px;
}
.ssq1to1-wrap .sssqq-blue-str {
    display: inline-block;
    margin-left: 8px;
    padding-left: 10px;
    border-left: 1px solid #d8e0eb;
    color: #165c9e;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.ssq1to1-wrap .sssqq-cell.red {
    background: #fff;
    color: #333;
}
.ssq1to1-wrap .sssqq-cell.blue {
    background: #fff;
}
/* 走势命中格：水晶球质感（高光 + 径向渐变 + 内阴影） */
.ssq1to1-wrap .sssqq-matrix-table tbody td.ssq1to1-hit.red,
.ssq1to1-wrap .sssqq-matrix-table tbody td.ssq1to1-hit.blue {
    box-sizing: border-box;
    width: 17px;
    min-width: 17px;
    max-width: 17px;
    height: 17px;
    max-height: 17px;
    padding: 0;
    font-size: 10px;
    line-height: 17px;
    vertical-align: middle;
    border-radius: 50%;
    font-weight: 700;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -4px 10px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(15, 23, 42, 0.08);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}
.ssq1to1-wrap .sssqq-matrix-table tbody td.ssq1to1-hit.red {
    background:
        radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 235, 235, 0.45) 16%, transparent 42%),
        radial-gradient(circle at 50% 118%, rgba(185, 28, 28, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse 85% 90% at 50% 52%, #fff5f5 0%, #fecdd3 52%, #fb7185 100%);
    color: #9f1239;
    border: 1px solid rgba(251, 113, 133, 0.55);
}
.ssq1to1-wrap .sssqq-matrix-table tbody td.ssq1to1-hit.blue {
    background:
        radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.98) 0%, rgba(224, 242, 254, 0.5) 16%, transparent 42%),
        radial-gradient(circle at 50% 118%, rgba(30, 64, 175, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse 85% 90% at 50% 52%, #f0f9ff 0%, #bfdbfe 52%, #3b82f6 100%);
    color: #1e3a8a;
    border: 1px solid rgba(59, 130, 246, 0.55);
}
.ssq1to1-wrap .sssqq-tr-footer td {
    background: #f7fafc;
    font-weight: 600;
    color: #334155;
}
.ssq1to1-wrap .sssqq-tr-footer .sssqq-cell.foot.red {
    background: #fff5f5;
    color: #b91c1c;
}
.ssq1to1-wrap .sssqq-tr-footer .sssqq-cell.foot.blue {
    background: #eff6ff;
    color: #1e40af;
}
.ssq1to1-wrap .sssqq-td-foot-label {
    text-align: center;
    background: #eef2f7 !important;
    color: #475569;
}
.ssq1to1-wrap .sssqq-td-foot-empty {
    background: #f8fafc !important;
}
.ssq1to1-wrap .sssqq-td-stat {
    background: #fafafa;
    font-weight: 600;
    color: #444;
}
.ssq1to1-wrap .sssqq-help {
    padding: 10px 12px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.7;
    border-top: 1px solid #eef2f7;
}

/* 走势专题：整体面板与氛围（special-datachart 页） */
.page-channel.special-datachart-body {
    background: linear-gradient(165deg, #e2e8f0 0%, #eef2f7 18%, #f4f7fb 45%, #f8fafc 100%);
    background-attachment: fixed;
}
.page-channel.special-datachart-body .sssqq-page-title h1 {
    color: #0f172a;
    letter-spacing: -0.02em;
    font-weight: 800;
}
.page-channel.special-datachart-body .sssqq-sub {
    color: #64748b;
    font-size: 12px;
}
.page-channel.special-datachart-body .ssq1to1-wrap .box.cp-panel.ssq1to1-toolbar {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.07),
        0 1px 3px rgba(15, 23, 42, 0.04);
}
.page-channel.special-datachart-body .ssq1to1-wrap .ssq1to1-matrix-panel.box.cp-panel {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.09),
        0 2px 10px rgba(15, 23, 42, 0.05);
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-subnav {
    border-radius: 10px;
    border-color: rgba(148, 163, 184, 0.45);
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-toolbar-inner {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-expect-link {
    border-radius: 8px;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-expect-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.18);
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-nav-links a {
    border-radius: 8px;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-nav-links a:hover {
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.12);
}
.page-channel.special-datachart-body .special-datachart-grid {
    margin-top: 12px;
    align-items: start;
}
.page-channel.special-datachart-body .ssq1to1-matrix-panel > .kj-expert-panel {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.page-channel.special-datachart-body .ssq1to1-matrix-panel > .kj-expert-panel .kj-expert-panel-hd {
    padding-top: 2px;
}
.lot-topic-main > .kj-expert-panel {
    margin: 0;
}
.lot-topic-grid--single {
    grid-template-columns: minmax(0, 1fr);
}
.page-channel.special-datachart-body .special-datachart-grid .sssqq-matrix-layout {
    min-width: 0;
}
.page-channel.special-datachart-body .ssq1to1-matrix-layout {
    gap: 14px;
}
.page-channel.special-datachart-body .ssq1to1-matrix-panel.cp-panel > .title {
    padding: 12px 16px 12px 28px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #0f172a;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-colbar {
    padding: 8px 14px 10px;
    background: linear-gradient(180deg, #fcfcfd 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-colbar label {
    padding: 3px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-matrix-scroll {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 14%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.page-channel.special-datachart-body .ssq1to1-matrix-scroll-inset .sssqq-matrix-scroll {
    border-radius: 10px;
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-matrix-table thead th {
    background: linear-gradient(180deg, #f8fafc 0%, #e8edf3 100%);
    border-color: rgba(148, 163, 184, 0.45);
    color: #1e293b;
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-th-zone.reds {
    background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%);
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-th-zone.blues {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-th-num.red {
    background: #fff5f5;
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-th-num.blue {
    background: #f0f9ff;
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-matrix-table tbody td {
    border-color: rgba(148, 163, 184, 0.35);
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-td-period,
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-td-draw {
    background: linear-gradient(180deg, #fafbfc 0%, #f4f4f5 100%);
}
.page-channel.special-datachart-body .ssq1to1-wrap .sssqq-help {
    padding: 12px 16px;
    font-size: 12px;
    line-height: 1.75;
    color: #475569;
    background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 0 0 12px 12px;
}
/* 即时比分页 */
.live-score-wrap {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
}
.live-score-wrap .title {
    margin-bottom: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
    color: #1e3a8a;
    letter-spacing: 0.3px;
}
.live-score-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: linear-gradient(92deg, #edf5ff 0%, #f5f9ff 38%, #fff8f0 100%);
    border-bottom: 1px solid #e6edf8;
}
.live-score-headline-left strong {
    display: block;
    color: #1e3a8a;
    font-size: 16px;
    line-height: 1.3;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.live-score-headline-left span {
    display: block;
    color: #64748b;
    font-size: 12px;
    margin-top: 2px;
}
.live-score-headline-left {
    min-width: 0;
}
.live-score-headline-right {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.live-score-pill {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #2f6fed 0%, #1e4ec9 100%);
}
.live-score-pill-subtle {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}
.live-score-kpi {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #e8eef8;
    background: #fff;
}
.live-score-kpi-card {
    min-height: 54px;
    border: 1px solid #e6edf8;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}
.live-score-kpi-card span {
    color: #64748b;
    font-size: 11px;
}
.live-score-kpi-card strong {
    color: #1e3a8a;
    font-size: 18px;
    line-height: 1.1;
}
.live-score-kpi-card.is-live strong {
    color: #dc2626;
}
.live-score-kpi-card.is-finished strong {
    color: #475569;
}
.live-score-kpi-card.is-future strong {
    color: #1d4ed8;
}
.live-score-subtitle {
    padding: 10px 14px;
    border-bottom: 1px solid #eef2f7;
    color: #64748b;
    font-size: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.live-score-table-wrap {
    overflow-x: hidden;
    max-width: 100%;
    padding: 0 12px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}
.live-score-table {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.live-score-table th,
.live-score-table td {
    border-right: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    padding: 9px 6px;
    text-align: center;
    font-size: 12px;
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
.live-score-table th:last-child,
.live-score-table td:last-child {
    border-right: none;
}
/* 列宽：总和 100%；赛事略宽便于联赛名单行显示 */
.live-score-table th:nth-child(1) {
    width: 11%;
    white-space: nowrap;
}
.live-score-table td:nth-child(1) {
    width: 11%;
}
.live-score-table th:nth-child(2),
.live-score-table td:nth-child(2) { width: 6.5%; }
.live-score-table th:nth-child(3),
.live-score-table td:nth-child(3) { width: 10%; }
.live-score-table th:nth-child(4),
.live-score-table td:nth-child(4) { width: 10.5%; }
.live-score-table th:nth-child(5),
.live-score-table td:nth-child(5) { width: 11.5%; }
.live-score-table th:nth-child(6),
.live-score-table td:nth-child(6) { width: 7%; }
.live-score-table th:nth-child(7),
.live-score-table td:nth-child(7) { width: 11.5%; }
.live-score-table th:nth-child(8),
.live-score-table td:nth-child(8) { width: 5.5%; }
.live-score-table th:nth-child(9),
.live-score-table td:nth-child(9) { width: 9%; }
.live-score-table th:nth-child(10),
.live-score-table td:nth-child(10) { width: 4%; }
.live-score-table th:nth-child(11),
.live-score-table td:nth-child(11) { width: 8%; }
.live-score-table th:nth-child(12),
.live-score-table td:nth-child(12) { width: 6%; }
.live-score-table td.team {
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
    text-align: left;
    padding-left: 8px;
    padding-right: 8px;
}
.live-score-table td.live-score-league {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    padding-left: 12px;
    padding-right: 10px;
}
.live-score-table td.live-score-league a {
    white-space: nowrap;
}
.live-score-table th:first-child,
.live-score-table td:first-child {
    border-left: none;
}
.live-score-table thead th {
    border-top: none;
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: #475569;
    border-bottom: 2px solid #dbeafe;
}
.live-score-table tbody tr:last-child td {
    border-bottom: none;
}
.live-score-table th {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1;
}
.live-score-table tbody tr:nth-child(even) {
    background: #fafbfd;
}
.live-score-table tbody tr:hover {
    background: linear-gradient(90deg, #eff6ff 0%, #f8fafc 100%);
    box-shadow: inset 0 0 0 1px #e2e8f0;
}
.live-score-table tbody td:nth-child(6) {
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, #f8fbff 0%, #f0f6ff 100%);
    font-weight: 700;
}
.live-score-table tbody td:nth-child(8) {
    font-variant-numeric: tabular-nums;
    color: #475569;
    font-size: 11px;
}
.live-score-table tbody td:nth-child(2) {
    color: #64748b;
    font-size: 11px;
}
.live-score-no {
    color: #1e3a8a;
    font-weight: 700;
    font-family: "Consolas", "Courier New", monospace;
}
.live-score-league a {
    color: #1f5ea8;
    font-weight: 600;
}
.live-score-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    height: 26px;
    padding: 0 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #334155;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
}
.live-score-score a {
    color: #0f4cc7;
    font-weight: 700;
}
.live-score-score {
    color: #1d4ed8;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.live-score-status {
    font-weight: 700;
    position: relative;
}
.live-score-table th:nth-child(4) {
    white-space: nowrap;
}
.live-score-table td.live-score-status {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.45;
    padding-left: 6px;
    padding-right: 6px;
}
.live-score-status.is-live {
    color: #dc2626;
}
.live-score-status.is-live::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    margin-right: 5px;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
    animation: score-live-pulse 1.6s infinite;
    vertical-align: middle;
}
.live-score-status.is-finished {
    color: #475569;
}
.live-score-status.is-future {
    color: #1d4ed8;
}
.live-score-extra {
    max-width: 100%;
    color: #475569;
    font-size: 11px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.live-score-table td.live-score-mini-link {
    padding-left: 4px;
    padding-right: 4px;
}
.live-score-table td.live-score-analysis-links {
    white-space: normal;
    overflow: visible;
    line-height: 1.55;
}
.live-score-table td.live-score-analysis-links a {
    margin: 0 2px;
}
.live-score-table .row-empty {
    color: #94a3b8;
    padding: 18px 8px;
}
.live-score-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #fbfdff 0%, #f6faff 100%);
}
.live-score-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #dbe7ff;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
    color: #334155;
    font-size: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: all 0.2s ease;
}
.live-score-tabs a span {
    color: #64748b;
    font-weight: 700;
    font-size: 11px;
}
.live-score-tabs a:hover {
    transform: translateY(-1px);
    border-color: #b8d3ff;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.15);
}
.live-score-tabs a.is-active {
    border-color: #9ec1ff;
    background: linear-gradient(180deg, #eaf2ff 0%, #deebff 100%);
    color: #1f5ea8;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(59, 130, 246, 0.2);
}
.live-score-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #eef2f7;
    background: #fff;
}
.live-score-search input[type="text"] {
    width: 260px;
    height: 32px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0 10px;
}
.live-score-search button {
    height: 32px;
    border: 0;
    border-radius: 4px;
    background: #2563eb;
    color: #fff;
    padding: 0 12px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.25);
}
.live-score-search a {
    color: #64748b;
    font-size: 12px;
}
.live-score-search a:hover {
    color: #1f5ea8;
}
.live-score-table td a {
    color: #1f5ea8;
}
.live-score-table td a:hover {
    text-decoration: underline;
}
.live-score-mini-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    color: #1f5ea8;
    background: linear-gradient(180deg, #f1f6ff 0%, #e2edff 100%);
    border: 1px solid #cfe1ff;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(59, 130, 246, 0.16);
}
.live-score-mini-link a:hover {
    background: #dcecff;
}
@keyframes score-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
    70% { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
@media (max-width: 980px) {
    .live-score-kpi {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .live-score-search {
        flex-wrap: wrap;
    }
    .live-score-search input[type="text"] {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}
.chart-empty {
    color: #94a3b8;
    font-size: 12px;
}
@media (max-width: 980px) {
    .data-chart-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .data-chart-layout {
        grid-template-columns: 1fr;
    }
}

.channel-hint { font-size: 12px; color: var(--apple-subtext); margin: 0 0 10px; line-height: 1.5; }
.channel-hint code { background: #f1f5f9; padding: 1px 5px; border-radius: 4px; }
.bet-cell { vertical-align: top; min-width: 200px; }
.bet-inline-form { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.bet-pick, .bet-stake-input { font-size: 12px; max-width: 5rem; }
.bet-submit-btn {
    font-size: 12px;
    padding: 4px 8px;
    border: 1px solid var(--accent);
    background: #fff;
    color: var(--accent);
    border-radius: 4px;
    cursor: pointer;
}
.bet-submit-btn:hover { background: var(--accent); color: #fff; }
.site-flash-ok { background: #ecfdf5; color: #047857; padding: 8px 12px; margin: 0 0 8px; border-radius: 6px; font-size: 13px; }
.site-flash-err { background: #fef2f2; color: #b91c1c; padding: 8px 12px; margin: 0 0 8px; border-radius: 6px; font-size: 13px; }
/* 登录 / 注册 */
.page-auth .container.inner > .site-flash-ok,
.page-auth .container.inner > .site-flash-err { display: none; }
.auth-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5) var(--space-4) var(--space-6);
}
.auth-page-inner {
    width: 100%;
    max-width: var(--site-container-width);
    margin: 0 auto;
}
.auth-page-inner .auth-card {
    width: 100%;
    max-width: var(--auth-card-max-width);
    margin-left: auto;
    margin-right: auto;
}
.auth-card {
    margin: 0;
    padding: 0;
}
.auth-card.cp-panel > .title { display: none; }
.auth-card-head {
    padding: var(--space-5) var(--space-5) var(--space-3);
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, #fff 0%, var(--surface-muted) 100%);
}
.auth-card-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}
.auth-card-lead {
    margin: var(--space-2) 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.auth-flash {
    margin: var(--space-4) var(--space-5) 0;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    line-height: 1.45;
}
.auth-flash-err {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.auth-flash-ok {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-5);
    margin: 0;
}
.auth-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.auth-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.auth-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--apple-border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    line-height: 1.4;
    color: var(--text-primary);
    background: var(--surface-elevated);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.auth-input::placeholder { color: #94a3b8; }
.auth-input:hover { border-color: #cbd5e1; }
.auth-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-ring);
}
.auth-actions { margin-top: var(--space-1); }
.auth-submit {
    width: 100%;
    padding: 12px 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.15s ease, transform 0.1s ease;
}
.auth-submit:hover { background: var(--accent-hover); }
.auth-submit:active { transform: translateY(1px); }
.auth-card-foot {
    padding: var(--space-3) var(--space-5) var(--space-5);
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    background: var(--surface-muted);
}
.auth-card-foot p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.auth-link {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
}
.auth-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}
.page-auth {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.page-auth .site-footer { margin-top: auto; }
@media (max-width: 480px) {
    .auth-page { padding: var(--space-4) var(--space-3) var(--space-5); }
    .auth-card-head { padding: var(--space-4) var(--space-4) var(--space-3); }
    .auth-form { padding: var(--space-4); }
    .auth-flash { margin-left: var(--space-4); margin-right: var(--space-4); }
    .auth-card-foot { padding: var(--space-3) var(--space-4) var(--space-4); }
}

/* 用户中心 */
.page-account {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.page-account .site-footer { margin-top: auto; }
.page-account .channel-shell { display: block; }
.account-page {
    flex: 1;
    padding: var(--space-5) var(--space-4) var(--space-6);
}
.account-page-inner {
    width: 100%;
    max-width: var(--site-container-width);
    margin: 0 auto;
}
.account-layout {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}
.account-sidebar {
    flex: 0 0 200px;
    width: 200px;
    position: sticky;
    top: var(--space-3);
}
.account-main {
    flex: 1;
    min-width: 0;
}
.account-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5);
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, #fff 0%, #f0fdfa 55%, #ecfeff 100%);
    border: 1px solid var(--border-subtle);
}
.account-hero.cp-panel > .title { display: none; }
.account-hero-main {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    min-width: 0;
}
.account-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent) 0%, #0f766e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
.account-avatar-letter {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.account-hero-name {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
}
.account-hero-meta {
    margin: var(--space-1) 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.account-hero-wallet {
    text-align: right;
}
.account-wallet-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.account-wallet-balance {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
    margin: 2px 0 var(--space-3);
}
.account-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: flex-end;
}
.account-inline-form { margin: 0; display: inline; }
.account-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.account-btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.account-btn-primary:hover { background: var(--accent-hover); }
.account-btn-outline {
    background: #fff;
    color: var(--accent);
    border-color: #99f6e4;
}
.account-btn-outline:hover {
    background: #f0fdfa;
    border-color: var(--accent);
}
.account-btn-muted {
    background: var(--surface-muted);
    color: var(--text-muted);
    border-color: var(--border-subtle);
    cursor: default;
}
.account-btn-sm { padding: 6px 12px; font-size: 0.8125rem; }
.account-flash {
    margin: 0 0 var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}
.account-flash-err {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.account-flash-ok {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}
.account-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: var(--space-2);
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.account-nav-link {
    display: block;
    text-align: left;
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.account-nav-link:hover {
    color: var(--accent);
    background: #f0fdfa;
}
.account-nav-link.is-active {
    background: #f0fdfa;
    color: var(--accent);
    border-left-color: var(--accent);
    font-weight: 600;
}
.account-panel {
    padding: var(--space-5);
}
.account-panel.cp-panel > .title { display: none; }
.account-panel-head {
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-subtle);
}
.account-panel-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}
.account-panel-lead {
    margin: var(--space-2) 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}
.account-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-4);
    background: var(--surface-muted);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.account-stat-card:hover {
    border-color: #99f6e4;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.12);
}
.account-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}
.account-stat-label {
    margin-top: var(--space-1);
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.account-section { margin-bottom: var(--space-5); }
.account-section-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
}
.account-section-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}
.account-link {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}
.account-link:hover { color: var(--accent-hover); text-decoration: underline; }
.account-muted { color: var(--text-muted); font-size: 0.875rem; }
.account-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}
.account-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.account-table th,
.account-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: middle;
}
.account-table th {
    background: var(--surface-muted);
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}
.account-table tbody tr:last-child td { border-bottom: none; }
.account-table tbody tr:hover td { background: #fafafa; }
.account-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.8125rem;
}
.account-cell-title {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
}
.account-cell-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.account-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.account-badge.is-paid { background: #ecfdf5; color: #047857; }
.account-badge.is-pending { background: #fffbeb; color: #b45309; }
.account-badge.is-closed { background: #f1f5f9; color: #64748b; }
.account-badge.is-refund { background: #fef2f2; color: #b91c1c; }
.account-badge.is-default { background: #f1f5f9; color: #475569; }
.account-tag {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 6px;
    font-size: 0.6875rem;
    background: #fef3c7;
    color: #b45309;
    border-radius: 4px;
    vertical-align: middle;
}
.account-delta.is-plus { color: #047857; font-weight: 600; }
.account-delta.is-minus { color: #b91c1c; font-weight: 600; }
.account-actions { white-space: nowrap; }
.account-empty,
.account-empty-row {
    text-align: center;
    color: var(--text-muted);
    padding: var(--space-5) var(--space-4);
    font-size: 0.875rem;
}
.account-empty-row td { border-bottom: none !important; }
.account-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-subtle);
}
.account-quick-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
}
.account-quick-link:hover { color: var(--accent); }
.account-filter {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}
.account-filter-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.account-filter-select {
    padding: 8px 12px;
    border: 1px solid var(--apple-border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    background: #fff;
    color: var(--text-primary);
}
.account-pager { margin-top: var(--space-4); }
.account-pager.pager { padding: 0; }
.account-settings-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.account-settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border-subtle);
}
.account-settings-item:last-child { border-bottom: none; }
.account-settings-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.account-settings-text strong {
    font-size: 0.9375rem;
    color: var(--text-primary);
}
.account-settings-text span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.account-settings-item--danger .account-settings-text strong { color: #b91c1c; }
.account-form-narrow {
    max-width: 420px;
    padding: 0;
    margin: 0;
}
@media (max-width: 768px) {
    .account-hero { flex-direction: column; align-items: stretch; }
    .account-hero-wallet { text-align: left; }
    .account-hero-actions { justify-content: flex-start; }
    .account-stats { grid-template-columns: 1fr; }
    .account-layout { flex-direction: column; gap: var(--space-3); }
    .account-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }
    .account-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding: var(--space-2);
        gap: var(--space-1);
    }
    .account-nav-link {
        flex: 0 0 auto;
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 8px 12px;
        font-size: 0.8125rem;
    }
    .account-nav-link.is-active {
        border-left-color: transparent;
        border-bottom-color: var(--accent);
    }
    .account-table--orders th:nth-child(5),
    .account-table--orders td:nth-child(5) { display: none; }
}
@media (max-width: 480px) {
    .account-page { padding: var(--space-4) var(--space-3); }
    .account-panel { padding: var(--space-4); }
    .account-hero { padding: var(--space-4); }
}

/* 专题走势：子 Tab、遗漏表、历史开奖、K 线图 */
.ssq1to1-wrap .sssqq-subnav-item {
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.ssq1to1-wrap .sssqq-subnav-item:hover {
    background: #f0f6ff;
    color: #1f5ea8;
}
.ssq1to1-wrap .sssqq-subnav-item.on {
    cursor: default;
}
.datachart-tab-desc {
    margin: 0 12px 10px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.55;
}
.datachart-table-scroll {
    margin: 0 12px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.datachart-stats-table {
    width: 100%;
    min-width: 320px;
    border-collapse: collapse;
    font-size: 13px;
    background: #fff;
}
.datachart-stats-table th,
.datachart-stats-table td {
    border: 1px solid #e2e8f0;
    padding: 6px 10px;
    text-align: center;
}
.datachart-stats-table thead th {
    background: #f1f5f9;
    color: #334155;
    font-weight: 600;
}
.datachart-stats-table tbody tr:nth-child(even) {
    background: #fafcff;
}
.datachart-stats-table .num.red {
    color: #c41e3a;
    font-weight: 600;
}
.datachart-stats-table .num.blue {
    color: #165c9e;
    font-weight: 600;
}
.datachart-stats-table .col-numbers,
.datachart-history-table .numbers {
    text-align: left;
    font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
    letter-spacing: 0.02em;
}
.datachart-stats-table .col-period {
    white-space: nowrap;
}
.datachart-empty {
    padding: 24px !important;
    color: #94a3b8;
}
.datachart-omission-zone-title {
    margin: 12px 12px 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}
.datachart-omission-dual .datachart-omission-zone-title:first-child {
    margin-top: 4px;
}
.datachart-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    border-top: 1px solid #eef2f7;
}
.datachart-page-link {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    color: #1f5ea8;
    background: #f0f6ff;
    border: 1px solid #c7d9f5;
    border-radius: 2px;
    text-decoration: none;
}
.datachart-page-link:hover {
    background: #e0edff;
}
.datachart-page-info {
    font-size: 13px;
    color: #64748b;
}
.datachart-kline-wrap {
    margin: 0 12px 12px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 2px;
}
.datachart-kline-canvas {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
.datachart-kline-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
    padding: 0 4px;
    font-size: 12px;
    color: #475569;
}
.datachart-kline-legend .lg::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 0;
    margin-right: 6px;
    vertical-align: middle;
    border-top: 2px solid currentColor;
}
.datachart-kline-legend .lg-sum::before { color: #c41e3a; }
.datachart-kline-legend .lg-span::before {
    color: #1f5ea8;
    border-top-style: dashed;
}
.datachart-kline-legend .lg-back::before {
    color: #0d9488;
    border-top-style: dotted;
}
