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

:root {
  --red: #ff0000;
  --red-dark: #cc0000;
  --orange: #ff6600;
  --orange-dark: #e55a00;
  --green: #008000;
  --green-dark: #006600;
  --blue: #0000ff;
  --blue-dark: #000080;
  --gold: #ffcc00;
  --gold-dark: #e6b800;
  --purple: #0000ff;
  --bg: #f0f5f9;
  --white: #fff;
  --text: #000;
  --text-light: #666;
  --border: #efe8e8;
  --ball-red: #ff0000;
  --ball-blue: #0000ff;
  --ball-green: #008000;
  --radius: 5px;
  --radius-sm: 5px;
  --title-size: 26px;
  --content-size: 18pt;
  --content-em: 22pt;
  --box-frame: linear-gradient(to right, #a92be2, #ae40e1, #b75fdf, #bd7eda, #b75fdf, #ae40e1, #a92be2);
  --title-bg: linear-gradient(transparent, #f7f3f3);
  --title-shadow: 0 0 10px #e5e5e5;
  --cell-border: #945920;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  background: #f0f5f9;
  color: var(--text);
  line-height: 1.5;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg);
}

/* ===== 顶部品牌条 ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #ffc04d 0%, #f5a623 55%, #f09820 100%);
  border-bottom: 1px solid #e08a00;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
  text-decoration: none;
}

.site-header-emblem {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #2ecc71 0%, #0d6b3a 45%, #064625 100%);
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  position: relative;
}

.site-header-emblem::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  width: 18px;
  height: 12px;
  margin-left: -9px;
  background: #fff;
  border-radius: 50% 50% 45% 45%;
  box-shadow:
    -8px 2px 0 -2px #fff,
    8px 2px 0 -2px #fff,
    0 6px 0 -1px #fff;
}

.site-header-emblem::after {
  content: "★★★★★";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 34px;
  margin-left: -17px;
  font-size: 5px;
  line-height: 1;
  letter-spacing: 1px;
  color: #ffd700;
  text-align: center;
}

.site-header-logo {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-header-text {
  min-width: 0;
}

.site-header-title {
  font-family: "Microsoft YaHei", "微软雅黑", Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  color: #000;
  text-shadow: var(--title-shadow);
  white-space: nowrap;
}

.site-header-domain {
  margin-top: 2px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.site-domain-red {
  color: #ff0000;
}

.site-domain-blue {
  color: #0000ff;
}

.site-domain-black {
  color: #000;
}

.site-header-seal {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 3px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: #cc0000;
  border: 2px solid #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.site-header-seal span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}

/* ===== 顶部开奖条 ===== */
.draw-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  background: var(--white);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.draw-header-left {
  flex-shrink: 0;
  width: 72px;
  text-align: center;
}

.draw-header-issue {
  font-size: 18px;
  font-weight: bold;
  color: var(--text);
  line-height: 1.15;
}

.draw-header-issue b {
  font-size: 24px;
  color: var(--text);
}

.draw-header-refresh {
  display: block;
  width: 100%;
  margin: 3px 0 0;
  padding: 2px 0;
  border: 1px solid var(--red);
  border-radius: 2px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.2;
  transition: opacity 0.2s;
}

.draw-header-refresh:disabled,
.draw-header-refresh.is-refreshing {
  opacity: 0.75;
  cursor: wait;
}

.draw-header.is-refreshing {
  opacity: 0.92;
}

.draw-header-loading {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  font-size: 16px;
  font-weight: bold;
  color: var(--orange);
}

.draw-header-loading-spin {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(242, 113, 28, 0.25);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: refresh-spin 0.7s linear infinite;
}

.draw-header-balls.refresh-done {
  animation: header-balls-in 0.45s ease;
}

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

@keyframes header-balls-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.page.is-refreshing {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s;
}

.page.refresh-done {
  animation: page-refresh-in 0.45s ease;
}

.page-refresh-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(238, 242, 246, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  pointer-events: none;
}

.page-refresh-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-refresh-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.page-refresh-spin {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 102, 0, 0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: refresh-spin 0.7s linear infinite;
}

.page-refresh-text {
  font-size: 16px;
  font-weight: bold;
  color: var(--text);
}

@keyframes page-refresh-in {
  from { opacity: 0.85; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.draw-header-record {
  display: block;
  margin-top: 3px;
  padding: 1px 0;
  font-size: 15px;
  font-weight: bold;
  color: var(--text);
  text-decoration: none;
  background: #ffff00;
  border-radius: 2px;
  line-height: 1.2;
}

.draw-header-balls {
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4px;
  min-height: 0;
  padding: 0 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.header-ball-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  flex: 1;
  min-width: 0;
  max-width: 50px;
}

.header-ball-wrap.special {
  flex: 1;
  margin-left: 0;
  padding-left: 6px;
  border-left: 1px dashed #999;
}

.header-ball,
.ball {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  color: #111;
  line-height: 1;
  padding: 0;
  box-sizing: border-box;
}

.header-ball {
  width: 42px;
  height: 42px;
  font-size: 18px;
}

.header-ball-label,
.ball-label {
  font-size: 11px;
  color: var(--text-light);
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
}

.header-ball-label {
  font-size: 13px;
}

.draw-header-pending {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--orange);
}

/* ===== 日期 / 最新消息橙条（仿参考站） ===== */
.top-info-strip {
  padding: 1px 2px 2px;
  background: var(--bg);
}

#sections {
  padding: 0 2px 8px;
}

.top-date-bar {
  margin: 5px 0;
  padding: 3px 8px;
  background: var(--box-frame);
  border-radius: 5px;
  color: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Helvetica, sans-serif;
  font-size: 19pt;
  font-weight: bold;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.4px;
  text-shadow: 1px 4px 1px #b99b5f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-news-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 6px;
  background: var(--box-frame);
  border-radius: 5px;
  overflow: hidden;
}

.top-news-label {
  flex-shrink: 0;
  color: #fff;
  font-size: 14pt;
  font-weight: bold;
  white-space: nowrap;
  text-shadow: 1px 4px 1px #b99b5f;
}

.top-news-scroll {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
}

.top-news-scroll span {
  display: inline-block;
  padding-left: 100%;
  color: #ffff00;
  font-size: 14pt;
  font-weight: bold;
  animation: marquee 20s linear infinite;
}

/* ===== 配置图位（独立模块） ===== */
.site-image-strip {
  margin-top: 8px;
  padding: 0;
  background: transparent;
}

.site-image-item {
  display: block;
  margin: 0 0 6px;
  line-height: 0;
}

.site-image-item:last-child {
  margin-bottom: 0;
}

.site-image-item img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
}

/* ===== 主导航 ===== */
.main-nav {
  display: flex;
  overflow-x: auto;
  background: var(--orange);
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid var(--orange-dark);
}

.main-nav::-webkit-scrollbar { display: none; }

.main-nav a {
  flex-shrink: 0;
  padding: 8px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:first-child {
  background: var(--orange-dark);
}

/* ===== 滚动公告（最新消息等） ===== */
.notice-tag {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  padding: 2px 6px;
  border-radius: 0;
  font-size: 12px;
  font-weight: bold;
}

.notice-scroll {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  color: #333;
}

.notice-scroll span {
  display: inline-block;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ===== 图标网格 ===== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 2px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 2px;
  text-decoration: none;
  color: var(--text);
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #f5f5f5;
  border: 1px solid var(--border);
}

.icon-item:nth-child(even) .icon-circle {
  background: #f0f0f0;
  border-color: var(--border);
}

.icon-item:nth-child(3n) .icon-circle {
  background: #f5f5f5;
  border-color: var(--border);
}

.icon-label {
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  line-height: 1.3;
  color: var(--text);
}

.bottom-icons {
  margin-top: 6px;
  border-top: 1px solid var(--border);
  margin-left: 6px;
  margin-right: 6px;
  overflow: hidden;
}

/* ===== 开奖区 ===== */
.lottery-block {
  margin: 5px 0;
  background: transparent;
  overflow: hidden;
  border: none;
}

.lottery-tabs {
  display: flex;
  background: #f0f0f0;
  border-bottom: 1px solid var(--border);
}

.lottery-tabs .tab {
  flex: 1;
  padding: 8px 4px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-family: inherit;
  color: var(--text-light);
  cursor: pointer;
  font-weight: normal;
  border-right: 1px solid var(--border);
}

.lottery-tabs .tab:last-child {
  border-right: none;
}

.lottery-tabs .tab.active {
  background: var(--red);
  color: #fff;
  font-weight: bold;
}

.draw-panel {
  padding: 0;
  background: transparent;
}

.draw-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.draw-top b {
  color: var(--red);
  font-size: 18px;
  font-weight: bold;
}

.countdown {
  font-size: 13px;
  color: var(--text-light);
}

.countdown b {
  color: var(--orange);
  font-size: 15px;
}

.balls-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
}

.ball-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ball-wrap.special {
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px dashed #999;
}

.ball-wrap.special .ball {
  border: none;
}

.draw-bottom {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.status-ok {
  color: var(--green);
  font-weight: bold;
  font-size: 13px;
}

/* ===== 官网域名提示 ===== */
.domain-notice {
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  background-image: var(--box-frame);
  padding: 4px;
}

.domain-notice-bar {
  background: var(--title-bg);
  color: #000;
  text-align: center;
  font-size: 16pt;
  font-weight: bold;
  letter-spacing: 4px;
  padding: 4px 0;
  line-height: 1;
  text-shadow: var(--title-shadow);
}

.domain-notice-body {
  padding: 8px 6px 4px;
  text-align: center;
  background: #fff;
}

.domain-line {
  font-size: 18pt;
  line-height: 1.35;
  color: #000;
  margin-bottom: 0;
  padding: 4px 4px 5px;
  border-bottom: 1px solid #efe8e8;
  font-weight: bold;
}

.domain-line-main {
  font-weight: bold;
  font-size: 18pt;
}

.domain-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 0;
  font-weight: bold;
  font-size: inherit;
  margin: 0 2px;
}

.domain-badge-dark {
  background: #333;
  color: var(--gold);
}

.domain-badge-blue {
  background: #0000ff;
  color: #fff;
}

.domain-purple { color: #0000ff; font-weight: bold; }
.domain-orange { color: #ff6600; font-weight: bold; }
.domain-red { color: #ff0000; font-weight: bold; }
.domain-pink { color: #000; font-weight: normal; font-size: 18pt; }

.domain-flash-row {
  font-size: 18pt;
  line-height: 1.35;
  color: #000;
  margin-top: 0;
  min-height: auto;
  padding: 12px 4px;
  border-bottom: none;
  font-weight: bold;
}

.domain-flash-row .prefix {
  color: #ff0000;
  font-weight: bold;
  font-size: 18pt;
}

.domain-flash-row .suffix {
  display: inline-block;
  background: #ff0000;
  color: var(--gold);
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 0;
  font-size: 18pt;
}

.domain-flash-row.flash-blink {
  animation: url-flash 0.5s ease;
}

@keyframes url-flash {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* ===== 链接网格 ===== */
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--border);
  margin: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.link-grid a {
  display: block;
  padding: 10px 4px;
  text-align: center;
  background: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  border: 1px solid var(--border);
}

.link-grid a.red { color: var(--red); }
.link-grid a.blue { color: var(--blue); }
.link-grid a.green { color: var(--green); }
.link-grid a.purple { color: var(--purple); }

.link-grid-2 { margin-top: 0; }

/* ===== 横幅 ===== */
.banner {
  margin: 6px;
  padding: 12px 14px;
  border-radius: 0;
  text-decoration: none;
  display: block;
  border: 1px solid var(--border);
}

.banner.red { background: var(--red); color: #fff; border-color: var(--red-dark); }
.banner.green { background: var(--green); color: #fff; border-color: var(--green-dark); }
.banner.gold { background: var(--gold); color: #333; border-color: var(--gold-dark); }
.banner.blue { background: var(--blue); color: #fff; border-color: var(--blue-dark); }

.banner-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 4px;
}

.banner-sub {
  font-size: 12px;
}

/* ===== 双列链接 ===== */
.two-col-block {
  margin: 6px;
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border);
}

.two-col-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.two-col-row:last-child { border-bottom: none; }

.two-col-row a {
  flex: 1;
  padding: 10px 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  color: var(--blue);
  text-align: center;
  border-right: 1px solid var(--border);
}

.two-col-row a:last-child { border-right: none; }

/* ===== 内容区块 ===== */
.block {
  margin: 5px 0;
  background-image: var(--box-frame);
  overflow: hidden;
  border: none;
  border-radius: 5px;
  padding: 4px;
}

.block .block-list,
.block .pred-table,
.block .data-table {
  background: #fff;
}

.block-header {
  padding: 4px 10px;
  height: 28px;
  line-height: 23px;
  color: #000;
  font-size: var(--title-size);
  font-weight: bold;
  text-align: center;
  background: var(--title-bg);
  text-shadow: var(--title-shadow);
  border-bottom: 1px solid #738e9f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.block-header.green,
.block-header.orange,
.block-header.blue,
.block-header.red {
  background: var(--title-bg);
  color: #000;
}

.block-list a {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border-bottom: 1px solid #efe8e8;
  text-decoration: none;
  color: #0000ff;
  font-size: 16pt;
  font-weight: bold;
  gap: 6px;
  background: #fff;
}

.block-list a:last-child { border-bottom: none; }

.item-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.4;
}

.item-tag {
  flex-shrink: 0;
  padding: 2px 6px;
  border-radius: 0;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #999;
}

.item-tag.hot,
.item-tag.热 { background: var(--red); }
.item-tag.准 { background: var(--green); }
.item-tag.荐 { background: var(--orange); }
.item-tag.新 { background: var(--blue); }
.item-tag.VIP { background: #660099; }
.item-tag.顶 { background: var(--red-dark); }
.item-tag.中 { background: var(--green); }
.item-tag.稳 { background: var(--green-dark); }

.block-list a.hot-item .item-text {
  color: #ff0000;
  font-weight: bold;
}

/* ===== API 预测数据 ===== */
.api-loading {
  margin: 10px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  background: var(--white);
  border: 1px solid var(--border);
}

.api-error {
  margin: 10px;
  padding: 12px;
  font-size: 13px;
  color: var(--red);
  background: #fff5f5;
  border: 1px solid #cc0000;
}

.api-meta-bar {
  margin: 6px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--text-light);
  background: #fffde7;
  border: 1px solid #ddd;
}

.api-meta-bar b { color: var(--red); }

.group-title {
  margin: 8px 6px 4px;
  padding: 6px 8px;
  font-size: var(--title-size);
  font-weight: bold;
  color: #000;
  background: var(--title-bg);
  text-shadow: var(--title-shadow);
  text-align: center;
  border-bottom: 1px solid #738e9f;
  border-radius: 5px 5px 0 0;
}

/* ===== 计划模块（平特一尾等） ===== */
.plan-module {
  margin: 5px 0;
  background-image: var(--box-frame);
  border: none;
  border-radius: 5px;
  overflow: hidden;
  padding: 4px;
}

.plan-module-header {
  padding: 4px 8px;
  height: 28px;
  line-height: 23px;
  text-align: center;
  font-size: var(--title-size);
  font-weight: bold;
  background: var(--title-bg);
  border-bottom: 1px solid #738e9f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-shadow: var(--title-shadow);
}

.plan-domain-num {
  color: #000;
  font-weight: bold;
}

.plan-domain-suf {
  color: #000;
  font-weight: bold;
}

.plan-module-title {
  color: #000;
  font-weight: bold;
}

.plan-module-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  color: #ff0000;
}

.plan-module-table td {
  padding: 5px 2px;
  border: 1px solid var(--cell-border);
  text-align: center;
  vertical-align: middle;
  font-size: var(--content-size);
  line-height: 1.3;
  font-weight: bold;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.plan-module-table tr:nth-child(even) td {
  background: #fff;
}

.plan-module-table tr.pending td {
  background: #fffde7;
}

.plan-col-period {
  width: 18%;
  color: #000;
  font-weight: bold;
  font-size: var(--content-size);
}

.plan-col-pred {
  color: #0000ff;
  font-weight: bold;
  font-size: var(--content-em);
}

.plan-pred-main {
  color: #0000ff;
  font-weight: bold;
  background-color: #ffff00;
}

.plan-pred-slogan {
  color: #000;
  font-weight: bold;
  font-size: var(--content-size);
}

.plan-col-result {
  width: 22%;
  color: #000;
  font-weight: bold;
  font-size: var(--content-size);
}

/* ===== 单行列表模块（单双中特等） ===== */
.feature-module {
  margin: 5px 0;
  background-image: var(--box-frame);
  border: none;
  border-radius: 5px;
  overflow: hidden;
  padding: 4px;
}

.feature-module-header {
  padding: 4px 8px;
  height: 28px;
  line-height: 23px;
  text-align: center;
  font-size: var(--title-size);
  font-weight: bold;
  background: var(--title-bg);
  border-bottom: 1px solid #738e9f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-shadow: var(--title-shadow);
}

.feature-domain-num {
  color: #000;
  font-weight: bold;
}

.feature-domain-suf {
  color: #000;
  font-weight: bold;
}

.feature-module-title {
  color: #000;
  font-weight: bold;
}

.feature-list {
  background: #fff;
  color: #ff0000;
}

.feature-row {
  padding: 5px 8px;
  text-align: center;
  font-size: var(--content-size);
  line-height: 1.35;
  border-bottom: 1px solid var(--cell-border);
  font-weight: bold;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

#nav-odd_even_special .feature-row {
  font-size: var(--content-size);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row.pending {
  background: #fffde7;
}

.feature-period {
  color: #000;
  font-weight: bold;
}

.feature-pred {
  margin: 0 2px;
}

.feature-bracket {
  color: #0000ff;
  font-weight: bold;
  font-size: var(--content-em);
}

.feature-prefix {
  color: #0000ff;
  font-weight: bold;
  font-size: var(--content-em);
}

.feature-part {
  color: #0000ff;
  font-weight: bold;
  font-size: var(--content-em);
}

.feature-part-hit {
  background: #ffff00;
  color: #0000ff;
}

.feature-kai {
  color: #000;
  font-weight: bold;
}

.feature-hit {
  color: #000;
  font-weight: bold;
}

/* ===== 大小中特表格模块 ===== */
.bs-module {
  margin: 5px 0;
  background-image: var(--box-frame);
  border: none;
  border-radius: 5px;
  overflow: hidden;
  padding: 4px;
}

.bs-module-header {
  padding: 4px 8px;
  height: 28px;
  line-height: 23px;
  text-align: center;
  font-size: var(--title-size);
  font-weight: bold;
  background: var(--title-bg);
  border-bottom: 1px solid #738e9f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-shadow: var(--title-shadow);
}

.bs-domain-num {
  color: #000;
  font-weight: bold;
}

.bs-domain-suf {
  color: #000;
  font-weight: bold;
}

.bs-module-title {
  color: #000;
  font-weight: bold;
}

.bs-module-table-wrap {
  border: none;
  background: #fff;
}

.bs-module-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #ff0000;
}

.bs-module-table td {
  padding: 5px 2px;
  border: 1px solid var(--cell-border);
  text-align: center;
  vertical-align: middle;
  font-size: var(--content-size);
  font-weight: bold;
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.bs-module-table tr:nth-child(even) td {
  background: #fff;
}

.bs-module-table tr.pending td {
  background: #fffde7;
}

.bs-col-issue {
  width: 28%;
  color: #000;
  font-weight: bold;
  font-size: var(--content-size);
}

.bs-col-pred {
  color: #0000ff;
  font-weight: bold;
  font-size: var(--content-em);
}

.bs-col-result {
  width: 25%;
  color: #000;
  font-weight: bold;
  font-size: var(--content-size);
}

/* ===== 三头中特表格模块 ===== */
.th-module {
  margin: 5px 0;
  background-image: var(--box-frame);
  border: none;
  border-radius: 5px;
  overflow: hidden;
  padding: 4px;
}

.th-module-header {
  padding: 4px 8px;
  height: 28px;
  line-height: 23px;
  text-align: center;
  font-size: var(--title-size);
  font-weight: bold;
  background: var(--title-bg);
  border-bottom: 1px solid #738e9f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-shadow: var(--title-shadow);
}

.th-domain-num {
  color: #000;
  font-weight: bold;
}

.th-domain-suf {
  color: #000;
  font-weight: bold;
}

.th-module-title {
  color: #000;
  font-weight: bold;
}

.th-module-table-wrap {
  border: none;
  background: #fff;
}

.th-module-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #ff0000;
}

.th-module-table td {
  padding: 5px 2px;
  border: 1px solid var(--cell-border);
  text-align: center;
  vertical-align: middle;
  font-size: var(--content-size);
  font-weight: bold;
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.th-module-table tr:nth-child(even) td {
  background: #fff;
}

.th-module-table tr.pending td {
  background: #fffde7;
}

.th-col-issue {
  width: 28%;
  color: #000;
  font-weight: bold;
  font-size: var(--content-size);
}

.th-col-pred {
  color: #0000ff;
  font-size: var(--content-em);
}

.th-part {
  color: #0000ff;
  font-weight: bold;
}

.th-part-hit {
  background: #ffff00;
  color: #0000ff;
}

.th-col-result {
  width: 25%;
  color: #000;
  font-weight: bold;
  font-size: var(--content-size);
}

/* ===== 绝杀专区表格模块 ===== */
.kz-module {
  margin: 5px 0;
  background-image: var(--box-frame);
  border: none;
  border-radius: 5px;
  overflow: hidden;
  padding: 4px;
}

.kz-module-header {
  padding: 4px 8px;
  height: 28px;
  line-height: 23px;
  text-align: center;
  font-size: var(--title-size);
  font-weight: bold;
  background: var(--title-bg);
  border-bottom: 1px solid #738e9f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-shadow: var(--title-shadow);
}

.kz-domain-num {
  color: #000;
  font-weight: bold;
}

.kz-domain-suf {
  color: #000;
  font-weight: bold;
}

.kz-module-title {
  color: #000;
  font-weight: bold;
}

.kz-module-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: var(--content-size);
  background: #fff;
  color: #ff0000;
}

.kz-module-table thead th {
  padding: 5px 4px;
  border: 1px solid var(--cell-border);
  text-align: center;
  font-weight: bold;
  font-size: 17pt;
  color: #000;
  background: #fff;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.kz-module-table tbody td {
  padding: 5px 4px;
  border: 1px solid var(--cell-border);
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  font-size: var(--content-size);
  line-height: 1.35;
  background: #fff;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.kz-module-table tr.pending td {
  background: #fffde7;
}

.kz-col-period {
  color: #000;
}

.kz-col-pred {
  color: #0000ff;
  word-break: break-word;
}

#nav-lose_all_zodiac .kz-module-table th:first-child,
#nav-lose_all_zodiac .kz-col-period,
#nav-insider_3x .kz-module-table th:first-child,
#nav-insider_3x .kz-col-period {
  width: 46%;
}

/* 内幕家野：期数列收窄、预测列加宽 */
#nav-insider_domestic .kz-module-table th:first-child,
#nav-insider_domestic .kz-col-period {
  width: 30%;
}

#nav-insider_domestic .kz-module-table th:nth-child(2),
#nav-insider_domestic .kz-col-pred {
  width: 46%;
}

#nav-insider_domestic .kz-module-table th:nth-child(3),
#nav-insider_domestic .kz-col-te {
  width: 24%;
}

/* 内幕五肖：期数列 */
#nav-insider_5x .kz-module-table th:first-child,
#nav-insider_5x .kz-col-period {
  width: 30%;
}

#nav-insider_5x .kz-module-table th:nth-child(2),
#nav-insider_5x .kz-col-pred {
  width: 46%;
}

#nav-insider_5x .kz-module-table th:nth-child(3),
#nav-insider_5x .kz-col-te {
  width: 24%;
}

/* 三期必出：列宽 */
#nav-triple_must .kz-module-table th:first-child,
#nav-triple_must .kz-col-period {
  width: 34%;
}

#nav-triple_must .kz-module-table th:nth-child(2),
#nav-triple_must .kz-col-pred {
  width: 28%;
}

#nav-triple_must .kz-module-table th:nth-child(3),
#nav-triple_must .kz-col-te {
  width: 38%;
}

/* 最准八肖：八肖列加宽 */
#nav-best_eight_zodiac .kz-module-table th:first-child,
#nav-best_eight_zodiac .kz-col-period {
  width: 18%;
}

#nav-best_eight_zodiac .kz-module-table th:nth-child(2),
#nav-best_eight_zodiac .kz-col-pred {
  width: 58%;
}

#nav-best_eight_zodiac .kz-module-table th:nth-child(3),
#nav-best_eight_zodiac .kz-col-te {
  width: 24%;
}

#nav-insider_odd_even .kz-module-table th:first-child,
#nav-insider_odd_even .kz-col-period {
  width: 30%;
}

#nav-insider_odd_even .kz-module-table th:nth-child(2),
#nav-insider_odd_even .kz-col-pred {
  width: 46%;
}

#nav-insider_odd_even .kz-module-table th:nth-child(3),
#nav-insider_odd_even .kz-col-te {
  width: 24%;
}

.kz-col-nums {
  font-size: 16pt;
  font-weight: bold;
  word-break: break-word;
}

.kz-val-red {
  color: #ff0000;
}

.kz-wave-red {
  color: #ff0000;
}

.kz-wave-green {
  color: #008000;
}

.kz-wave-blue {
  color: #0000ff;
}

.kz-part {
  color: #0000ff;
}

.kz-part-hit {
  background: #ffff00;
  color: #0000ff;
}

.kz-prefix {
  color: #ff0000;
}

.kz-empty {
  color: #999;
  font-weight: normal;
}

.kz-module-history {
  margin: 6px;
}

.pred-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--content-size);
  background: #fff;
  color: #000;
}

.pred-table th {
  background: #fff;
  padding: 5px 5px;
  border: 1px solid var(--cell-border);
  font-weight: bold;
  font-size: 17pt;
  text-align: center;
  color: #000;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.pred-table td {
  padding: 5px 5px;
  border: 1px solid var(--cell-border);
  vertical-align: middle;
  font-size: var(--content-size);
  font-weight: bold;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.pred-table tr:nth-child(even) td { background: #fff; }
.pred-table tr.pending td { background: #fffde7; }

.pred-period {
  text-align: center;
  color: #000;
  font-weight: bold;
  font-size: var(--content-size);
  width: 28%;
}

.pred-content {
  text-align: center;
  line-height: 1.45;
  font-size: var(--content-em);
  font-weight: bold;
  color: #0000ff;
}

.pred-result {
  text-align: center;
  font-weight: bold;
  font-size: var(--content-size);
  width: 22%;
  color: #000;
}

/* 五尾10码：预测列加宽 */
#nav-five_tails_ten .pred-period {
  width: 16%;
}

#nav-five_tails_ten .pred-content {
  width: 58%;
}

#nav-five_tails_ten .pred-result {
  width: 26%;
}

/* 30码中特：期别列收窄 */
#nav-thirty_nums .pred-period {
  width: 16%;
}

#nav-thirty_nums .pred-content {
  width: 62%;
}

#nav-thirty_nums .pred-result {
  width: 22%;
}

.pred-highlight {
  background: #ffff00;
  color: #0000ff;
  padding: 0 2px;
}

.result-hit { color: #ff0000; }
.result-miss { color: #008000; }
.result-pending { color: #999; font-weight: normal; }

/* 准 / 错 标记：只会出现一个；准用黄底标出 */
.result-flag {
  display: inline;
  font-weight: 900;
  margin-left: 1px;
}

.result-flag-hit {
  color: #cc0000;
  background: #ffff00;
  padding: 0 3px;
}

.result-flag-miss {
  color: #008000;
  background: transparent;
  padding: 0;
}

.feature-body {
  color: #000;
  font-weight: bold;
}

.result-body-hit {
  background: #ffff00;
  color: #cc0000;
  font-weight: 900;
  padding: 0 2px;
}

.feature-hit {
  color: #000;
  font-weight: bold;
}

.kill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.kill-tag {
  display: inline-block;
  padding: 2px 6px;
  font-size: 17px;
  font-weight: bold;
  border: 1px solid var(--border);
  background: #f5f5f5;
}

.triple-results {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.8;
}

.triple-hit-tag {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 6px;
  font-size: 14px;
  color: #fff;
  background: var(--red);
}

.triple-miss-tag {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 6px;
  font-size: 14px;
  color: #fff;
  background: var(--green);
}

.pred-subtitle {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 4px;
}

.pred-line {
  margin-bottom: 4px;
}

.pred-main-nums {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 4px;
}

.pred-main-label {
  color: var(--red);
  font-weight: bold;
}

.pred-num-grid {
  display: grid;
  gap: 2px;
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}

.pred-num-cell {
  padding: 3px 0;
  font-size: 16px;
  font-weight: bold;
}

.kill-tag.kill-empty {
  color: #999;
  background: #fafafa;
}

.draw-status-pending {
  color: var(--orange);
  font-weight: bold;
}

/* ===== 表格 ===== */
.table-block {
  margin: 6px;
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border);
}

.table-block .block-header { position: sticky; left: 0; top: 0; z-index: 1; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--content-size);
  color: #000;
}

.data-table th {
  background: #fff;
  padding: 5px 6px;
  border: 1px solid var(--cell-border);
  font-weight: bold;
  font-size: 17pt;
  text-align: center;
  color: #000;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.data-table td {
  padding: 5px 6px;
  border: 1px solid var(--cell-border);
  text-align: center;
  font-size: var(--content-size);
  font-weight: bold;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.data-table tr:nth-child(even) td { background: #fff; }

.td-hot { color: var(--red); font-weight: bold; }
.td-cold { color: var(--blue); font-weight: bold; }
.td-up { color: var(--red); font-weight: bold; }
.td-down { color: var(--green); font-weight: bold; }

.wave-red { color: var(--ball-red); font-weight: bold; }
.wave-blue { color: var(--ball-blue); font-weight: bold; }
.wave-green { color: var(--ball-green); font-weight: bold; }

/* ===== 底部彩先知中转列表 ===== */
.cx-transfer {
  margin: 8px 6px 6px;
  border: 2px solid #2e7d32;
  border-radius: 6px;
  overflow: hidden;
  background: #f3fff3;
  font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
}

.cx-transfer-title {
  padding: 10px 8px;
  text-align: center;
  font-size: var(--title-size);
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, #66bb6a 0%, #43a047 45%, #2e7d32 100%);
  border-bottom: 1px solid #1b5e20;
}

.cx-transfer-list {
  padding: 8px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cx-transfer-item {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 8px;
  text-align: center;
  font-size: var(--content-size);
  font-weight: bold;
  line-height: 1.35;
  color: #111;
  background: #fff;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  text-decoration: none;
  cursor: default;
  word-break: break-word;
}

.cx-transfer-item.is-link {
  cursor: pointer;
}

.cx-transfer-item.is-link:active {
  background: #f7fff7;
}

.cx-transfer-period,
.cx-transfer-prefix,
.cx-transfer-suffix {
  color: #111;
  font-size: var(--content-size);
  font-weight: bold;
}

.cx-transfer-keyword {
  font-size: var(--content-em);
  font-weight: 900;
  padding: 0 2px;
}

@media (max-width: 480px) {
  .cx-transfer-title {
    font-size: var(--title-size);
    padding: 9px 6px;
  }

  .cx-transfer-item,
  .cx-transfer-period,
  .cx-transfer-prefix,
  .cx-transfer-suffix {
    font-size: 16pt;
    padding: 9px 6px;
  }

  .cx-transfer-keyword {
    font-size: 18pt;
  }
}

/* ===== 页脚 ===== */
.footer {
  text-align: center;
  padding: 16px 12px 20px;
  font-size: 16px;
  line-height: 1.5;
  background: #333;
  color: #999;
  margin-top: 6px;
}

.footer p:first-child {
  color: var(--gold);
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-sub {
  margin-top: 6px;
  font-size: 14px;
}

/* ===== 悬浮回到顶部 ===== */
.scroll-top-btn {
  position: fixed;
  right: max(12px, calc(50% - 360px + 12px));
  bottom: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffc04d 0%, #f5a623 45%, #e88a00 100%);
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  box-shadow:
    0 4px 14px rgba(232, 138, 0, 0.45),
    0 2px 4px rgba(0, 0, 0, 0.12);
  transform: translateY(16px) scale(0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:active {
  transform: translateY(0) scale(0.94);
  box-shadow:
    0 2px 8px rgba(232, 138, 0, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.scroll-top-icon {
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.scroll-top-text {
  display: block;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

@media (min-width: 481px) {
  .page {
    min-height: 100vh;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  /* 电脑版：24 模块期数/期别列统一 25% */
  #sections .plan-col-period,
  #sections .bs-col-issue,
  #sections .th-col-issue,
  #sections .pred-period,
  #sections .pred-table thead th:first-child,
  #sections .kz-module-table thead th:first-child,
  #sections .kz-col-period {
    width: 25%;
  }

  /* 30码中特：电脑端结果列加宽 */
  #sections #nav-thirty_nums .pred-content {
    width: 47%;
  }

  #sections #nav-thirty_nums .pred-result {
    width: 28%;
  }
}

/* 手机端：标题/正文字号对齐参考站响应式 */
@media (max-width: 610px) {
  .top-date-bar {
    font-size: 15pt;
  }

  #sections .group-title,
  #sections .plan-module-header,
  #sections .feature-module-header,
  #sections .bs-module-header,
  #sections .th-module-header,
  #sections .kz-module-header,
  #sections .block-header {
    font-size: 20px;
  }

  #sections .plan-module-table td,
  #sections .bs-module-table td,
  #sections .th-module-table td,
  #sections .feature-row,
  #sections .kz-module-table tbody td,
  #sections .pred-table td,
  #sections .pred-period,
  #sections .pred-result,
  #sections .data-table,
  #sections .data-table th,
  #sections .data-table td {
    font-size: 16pt;
  }

  #sections .plan-col-pred,
  #sections .plan-col-pred .plan-pred-main,
  #sections .feature-bracket,
  #sections .feature-prefix,
  #sections .feature-part,
  #sections .bs-col-pred,
  #sections .th-col-pred,
  #sections .pred-content {
    font-size: 19pt;
  }
}

@media (max-width: 505px) {
  .top-date-bar {
    font-size: 12pt;
  }

  #sections .group-title,
  #sections .plan-module-header,
  #sections .feature-module-header,
  #sections .bs-module-header,
  #sections .th-module-header,
  #sections .kz-module-header,
  #sections .block-header {
    font-size: 18px;
  }

  #sections .plan-module-table td,
  #sections .bs-module-table td,
  #sections .th-module-table td,
  #sections .feature-row,
  #sections #nav-odd_even_special .feature-row,
  #sections .kz-module-table,
  #sections .kz-module-table thead th,
  #sections .kz-module-table tbody td,
  #sections .pred-table,
  #sections .pred-table th,
  #sections .pred-table td,
  #sections .pred-period,
  #sections .pred-result,
  #sections .plan-col-period,
  #sections .bs-col-issue,
  #sections .th-col-issue,
  #sections .plan-col-result,
  #sections .bs-col-result,
  #sections .th-col-result {
    font-size: 16pt;
  }

  #sections .plan-col-pred,
  #sections .plan-col-pred .plan-pred-main,
  #sections .plan-col-pred .plan-pred-slogan,
  #sections .feature-bracket,
  #sections .feature-prefix,
  #sections .feature-part,
  #sections .bs-col-pred,
  #sections .th-col-pred,
  #sections .pred-content {
    font-size: 18pt;
  }

  #sections .kz-col-nums,
  #sections .kill-tag,
  #sections .triple-results,
  #sections .pred-main-nums {
    font-size: 13pt;
  }

  #sections .triple-hit-tag,
  #sections .triple-miss-tag {
    font-size: 11px;
  }

  #sections .pred-subtitle {
    font-size: 12px;
  }

  #sections .pred-num-cell {
    font-size: 12px;
  }

  #sections .data-table,
  #sections .data-table th,
  #sections .data-table td {
    font-size: 14pt;
  }

  /* 结果列：加宽一点 */
  #sections .plan-col-result {
    width: 26%;
    min-width: 4.5em;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
  }

  #sections .bs-col-result,
  #sections .th-col-result {
    width: 30%;
    min-width: 4.5em;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
  }

  #sections .pred-result,
  #sections .kz-col-te {
    width: 26%;
    min-width: 4.5em;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
  }

  #sections .feature-result {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* 最准八肖：八肖列加宽 */
  #sections #nav-best_eight_zodiac .kz-col-period {
    width: 1%;
    min-width: 0;
    white-space: nowrap;
  }

  #sections #nav-best_eight_zodiac .kz-col-pred {
    width: auto;
    min-width: 55%;
  }

  #sections #nav-best_eight_zodiac .kz-col-te {
    width: 1%;
    min-width: 3.5em;
  }

  /* 五尾10码：预测列加宽 */
  #sections #nav-five_tails_ten .pred-period {
    width: 1%;
    min-width: 0;
    white-space: nowrap;
  }

  #sections #nav-five_tails_ten .pred-content {
    width: auto;
    min-width: 58%;
  }

  #sections #nav-five_tails_ten .pred-result {
    width: 1%;
    min-width: 3.5em;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
  }

  /* 30码中特：期别列收窄 */
  #sections #nav-thirty_nums .pred-period {
    width: 1%;
    min-width: 0;
    white-space: nowrap;
    padding-left: 2px;
    padding-right: 2px;
  }

  /* 三期必出：列宽 */
  #sections #nav-triple_must .kz-module-table th:first-child,
  #sections #nav-triple_must .kz-col-period {
    width: auto;
    min-width: 6.2em;
    white-space: nowrap;
    padding-left: 5px;
    padding-right: 5px;
  }

  #sections #nav-triple_must .kz-col-pred {
    width: 30%;
    max-width: 30%;
  }

  #sections #nav-triple_must .kz-col-te {
    width: auto;
    min-width: 5.5em;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
  }

  /* 内幕五肖：期数列 */
  #sections #nav-insider_5x .kz-module-table th:first-child,
  #sections #nav-insider_5x .kz-col-period {
    width: 30%;
    white-space: nowrap;
    padding-left: 4px;
    padding-right: 4px;
  }

  #sections #nav-insider_5x .kz-col-pred {
    width: auto;
    min-width: 46%;
  }

  #sections #nav-insider_5x .kz-col-te {
    width: 1%;
    min-width: 3.5em;
    white-space: nowrap;
  }

  /* 内幕单双：期数列收窄、预测列加宽 */
  #sections #nav-insider_odd_even .kz-module-table th:first-child,
  #sections #nav-insider_odd_even .kz-col-period {
    width: 30%;
    white-space: nowrap;
    padding-left: 4px;
    padding-right: 4px;
  }

  #sections #nav-insider_odd_even .kz-col-pred {
    width: auto;
    min-width: 46%;
  }

  #sections #nav-insider_odd_even .kz-col-te {
    width: 1%;
    min-width: 3.5em;
    white-space: nowrap;
  }

  /* 内幕家野：期数列收窄、预测列加宽 */
  #sections #nav-insider_domestic .kz-module-table th:first-child,
  #sections #nav-insider_domestic .kz-col-period {
    width: 30%;
    white-space: nowrap;
    padding-left: 4px;
    padding-right: 4px;
  }

  #sections #nav-insider_domestic .kz-col-pred {
    width: auto;
    min-width: 46%;
  }

  #sections #nav-insider_domestic .kz-col-te {
    width: 1%;
    min-width: 3.5em;
    white-space: nowrap;
  }
}

@media (max-width: 409px) {
  .top-date-bar {
    font-size: 11pt;
  }

  #sections .group-title,
  #sections .plan-module-header,
  #sections .feature-module-header,
  #sections .bs-module-header,
  #sections .th-module-header,
  #sections .kz-module-header,
  #sections .block-header {
    font-size: 17px;
  }

  #sections .plan-module-table td,
  #sections .bs-module-table td,
  #sections .th-module-table td,
  #sections .feature-row,
  #sections .kz-module-table tbody td,
  #sections .pred-table td,
  #sections .pred-period,
  #sections .pred-result {
    font-size: 14pt;
  }

  #sections .plan-col-pred,
  #sections .feature-bracket,
  #sections .feature-prefix,
  #sections .feature-part,
  #sections .bs-col-pred,
  #sections .th-col-pred,
  #sections .pred-content {
    font-size: 16pt;
  }
}

@media (max-width: 374px) {
  .top-date-bar {
    font-size: 10pt;
  }

  #sections .group-title,
  #sections .plan-module-header,
  #sections .feature-module-header,
  #sections .bs-module-header,
  #sections .th-module-header,
  #sections .kz-module-header,
  #sections .block-header {
    font-size: 15px;
  }

  #sections .plan-module-table td,
  #sections .bs-module-table td,
  #sections .th-module-table td,
  #sections .feature-row,
  #sections .kz-module-table tbody td,
  #sections .pred-table td {
    font-size: 11pt;
  }

  #sections .plan-col-pred,
  #sections .feature-bracket,
  #sections .feature-prefix,
  #sections .feature-part,
  #sections .bs-col-pred,
  #sections .th-col-pred,
  #sections .pred-content {
    font-size: 15pt;
  }
}
