@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700&family=Noto+Sans+SC:wght@400;500;700&display=swap");

:root {
  --ink: #070b14;
  --ink2: #0d1524;
  --surface: rgba(18, 28, 46, 0.88);
  --paper: #f4f8ff;
  --muted: #93a4bd;
  --line: rgba(86, 120, 168, 0.28);
  --bronze: #38bdf8;
  --bronze-deep: #0ea5e9;
  --accent: #22d3ee;
  --text: #e8eef8;
  --ok: #34d399;
  --danger: #fb7185;
  --font-display: "Orbitron", "Noto Sans SC", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 560px at 12% -8%, rgba(14, 165, 233, 0.22), transparent 55%),
    radial-gradient(900px 480px at 92% 8%, rgba(34, 211, 238, 0.12), transparent 50%),
    linear-gradient(180deg, #070b14 0%, #0a1220 45%, #070b14 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--bronze); text-decoration: none; transition: color .15s; }
a:hover { color: #7dd3fc; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7, 11, 20, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
}
.brand .site-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.brand .site-name { line-height: 1; }
.nav { display: flex; gap: 26px; }
.nav a {
  color: #b6c5da;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  position: relative;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: right .2s;
}
.nav a:hover::after { right: 0; }
.header-actions { display: flex; gap: 12px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: rgba(14, 165, 233, 0.08);
  color: #dff6ff;
  cursor: pointer;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  border-radius: 10px;
  transition: background .2s, border-color .2s, color .2s, transform .12s;
}
.btn:hover {
  border-color: var(--accent);
  background: rgba(34, 211, 238, 0.16);
  color: #fff;
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-color: transparent;
  color: #04101a;
  font-weight: 700;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  border-color: transparent;
  color: #04101a;
  filter: none;
}
.btn-sm { padding: 7px 14px; font-size: 0.82rem; }

/* Compact top — 不再占满整屏 */
.hero {
  position: relative;
  min-height: 0;
  display: block;
  padding: 28px 0 8px;
  overflow: visible;
  background: transparent;
}
.hero::before { display: none; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  animation: none;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.hero .brand-hero {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  color: var(--paper);
  line-height: 1.2;
  margin-bottom: 4px;
}
.hero p {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  max-width: none;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes mist {
  from { opacity: 0.85; transform: scale(1); }
  to { opacity: 1; transform: scale(1.03); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* 轮播广告：固定比例画布 + contain，避免比例不对时裁切难看 */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1120 / 220;
  max-height: 240px;
  height: auto;
  overflow: hidden;
  margin: 18px 0 10px;
  background: #0a1018;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #0a1018;
}
.carousel-slide .carousel-bg {
  position: absolute;
  inset: -24px;
  background-size: cover;
  background-position: center;
  filter: blur(22px) brightness(0.42);
  transform: scale(1.08);
  pointer-events: none;
}
.carousel-slide a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.carousel-slide .slide-fallback {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #0c4a6e, #082f49);
  color: #e0f2fe;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}
.carousel-dots {
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.carousel-dots button {
  width: 8px; height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(243, 238, 230, 0.35);
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active { background: var(--accent); }
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  background: rgba(7, 11, 20, 0.55);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 10px;
}
.carousel-nav.prev { left: 8px; }
.carousel-nav.next { right: 8px; }

/* 列表内横幅广告 */
.list-banner {
  display: block;
  margin: 12px 0;
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 12px;
  background: #0a1018;
  aspect-ratio: 1120 / 120;
  max-height: 120px;
}
.list-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.list-banner .banner-fallback {
  height: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}

/* Sections */
.section { padding: 22px 0 10px; }
.section-bid {
  margin-top: 16px;
  padding: 18px 18px 10px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.12), rgba(8, 47, 73, 0.25));
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(2, 132, 199, 0.12);
  animation: fadeUp .5s ease both;
}
.section-bid .section-head {
  border-bottom-color: rgba(56, 189, 248, 0.28);
}
.section-bid .section-head h2 { color: #7dd3fc; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: #f0f9ff;
  font-weight: 700;
}
.section-head a {
  color: #9fb4cc;
  font-size: 0.88rem;
}
.section-head a:hover { color: var(--accent); }

/* Server list */
.server-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.server-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: inherit;
  transition: border-color 0.15s, background 0.15s, transform .12s, box-shadow .15s;
}
.server-item:hover {
  background: rgba(30, 48, 78, 0.9);
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
.section-bid .server-item {
  background: rgba(8, 47, 73, 0.45);
  border-color: rgba(56, 189, 248, 0.28);
}
.section-bid .server-item:hover {
  background: rgba(12, 74, 110, 0.55);
  border-color: #38bdf8;
}
.server-item .name {
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.server-item .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #b7c7db;
  font-size: 0.9rem;
  line-height: 1.5;
}
.server-item .meta .label {
  color: #7f93ad;
  margin-right: 4px;
}
.server-item .meta > div {
  display: inline-flex;
  align-items: center;
  padding: 2px 0;
}
.server-item .meta > div + div::before { content: none; }
.server-item .side-meta {
  text-align: right;
  color: #b7c7db;
  font-size: 0.9rem;
  white-space: nowrap;
}
.countdown {
  color: var(--ok);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
}
.bid-price {
  color: #7dd3fc;
  font-weight: 700;
  font-size: 1.05rem;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  padding: 2px 8px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  color: #e0f2fe;
  background: rgba(14, 165, 233, 0.18);
  letter-spacing: 0;
  font-weight: 600;
  border-radius: 999px;
}
.badge-top { border-color: #38bdf8; background: #0ea5e9; color: #04101a; }
.badge-hot { border-color: #fb7185; background: #e11d48; color: #fff; }
.badge-bid { border-color: #67e8f9; background: rgba(8, 145, 178, 0.35); color: #cffafe; }

.cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.cat-chip {
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.55);
  color: #c9d7ea;
  font-size: 0.88rem;
  letter-spacing: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: .15s;
}
.cat-chip.active, .cat-chip:hover {
  color: #04101a;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  border-color: transparent;
}

.notice-strip {
  padding: 12px 14px;
  margin-top: 12px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--line);
  color: #c9d7ea;
  font-size: 0.92rem;
  border-radius: 12px;
}
.notice-strip strong {
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}
.notice-strip ul {
  display: inline;
  list-style: none;
}
.notice-strip li {
  display: inline;
  color: #dbe7f5;
}
.notice-strip li + li::before {
  content: " / ";
  color: #64748b;
}

.banner-wrap { display: none; }

@media (max-width: 860px) {
  .nav { display: none; }
  .hero { padding: 16px 0 4px; }
  .hero .brand-hero { font-size: 1.35rem; }
  .carousel {
    aspect-ratio: 16 / 5;
    max-height: 160px;
  }
  .list-banner {
    aspect-ratio: 16 / 3;
    max-height: 80px;
  }
  .detail-layout { grid-template-columns: 1fr; gap: 24px; }
  .server-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .server-item .side-meta { text-align: left; }
}

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th, td {
  padding: 16px 8px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
tr:hover td { background: rgba(255, 248, 235, 0.02); }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  padding-top: 40px;
}
.panel {
  padding: 0 0 36px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.panel h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #e0f2fe;
  margin-bottom: 16px;
  font-weight: 700;
}
.rich-content img,
.rich-content video {
  display: block;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  margin: 14px 0;
  border: 1px solid rgba(255,255,255,.08);
  background: #0d0d0d;
  object-fit: contain;
}
.rich-content video {
  width: 100% !important;
  max-height: 520px;
  background: #000;
}
.rich-content p { margin: 0 0 12px; }
.rich-content h1, .rich-content h2, .rich-content h3,
.rich-content h4, .rich-content h5, .rich-content h6 {
  margin: 1.1em 0 0.5em;
  line-height: 1.35;
  color: #f1f5f9;
  font-weight: 700;
}
.rich-content ul, .rich-content ol { margin: 0 0 12px 1.4em; }
.rich-content blockquote {
  margin: 12px 0;
  padding: 8px 14px;
  border-left: 3px solid var(--bronze);
  color: var(--muted);
  background: rgba(255,255,255,.03);
}
.rich-content pre {
  overflow: auto;
  padding: 12px 14px;
  margin: 12px 0;
  background: #0b1220;
  border: 1px solid var(--line);
  font-size: 0.88rem;
}
.rich-content code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.9em;
}
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.shots img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  cursor: zoom-in;
  border: 1px solid var(--line);
  background: #0d0d0d;
  transition: opacity .15s ease, transform .15s ease;
}
.shots img:hover { opacity: 0.92; transform: scale(1.01); }
.cq-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 24px;
  cursor: zoom-out;
}
.cq-lightbox.open { display: flex; }
.cq-lightbox img {
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 12px 48px rgba(0,0,0,.55);
  cursor: default;
}
.cq-lightbox .cq-lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.comment {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.comment .who { color: var(--bronze); font-size: 0.85rem; margin-bottom: 4px; }

.site-footer {
  margin-top: 80px;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.popup-mask {
  position: fixed; inset: 0;
  background: rgba(10, 8, 6, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.popup-mask.show { display: flex; }
.popup {
  background: var(--ink2);
  border: 1px solid var(--line);
  padding: 28px;
  width: min(400px, 90%);
  position: relative;
}
.popup .close {
  position: absolute; right: 14px; top: 8px;
  cursor: pointer; color: var(--muted); font-size: 1.4rem;
}

/* 服名颜色 / 动态字（提高优先级，兼容 flex 布局） */
.server-item .name .title-fx,
.card .title .title-fx,
h1 .title-fx,
.title-fx {
  display: inline-block !important;
  font-weight: 700;
  vertical-align: baseline;
  line-height: 1.2;
}
.server-item .name .title-fx--glow,
.title-fx--glow {
  color: #ffb020;
  text-shadow:
    0 0 4px currentColor,
    0 0 10px currentColor,
    0 0 18px rgba(255, 176, 32, 0.85);
  animation: title-glow-pulse 1.4s ease-in-out infinite;
}
.server-item .name .title-fx--rainbow,
.title-fx--rainbow {
  background: linear-gradient(90deg, #ff3b30, #ff9500, #ffcc00, #34c759, #007aff, #af52de, #ff3b30);
  background-size: 400% 100%;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: title-rainbow 2.2s linear infinite;
}
.server-item .name .title-fx--gradient,
.title-fx--gradient {
  background: linear-gradient(90deg, #c9a227, #fff6c8, #f0d078, #fff, #c9a227);
  background-size: 300% 100%;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: title-rainbow 2s linear infinite;
}
.server-item .name .title-fx--blink,
.title-fx--blink {
  animation: title-blink 0.9s step-start infinite;
}
.server-item .name .title-fx--flash,
.title-fx--flash {
  animation: title-flash 1s ease-in-out infinite;
}
.server-item .name .title-fx--shake,
.title-fx--shake {
  animation: title-shake 0.45s ease-in-out infinite;
}
@keyframes title-rainbow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes title-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.15; }
}
@keyframes title-flash {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 0 transparent); }
  50% { filter: brightness(2.2) drop-shadow(0 0 8px #fff); }
}
@keyframes title-shake {
  0%, 100% { transform: translateX(0) rotate(0); }
  25% { transform: translateX(-3px) rotate(-1deg); }
  75% { transform: translateX(3px) rotate(1deg); }
}
@keyframes title-glow-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}

/* ========== PC 经典黄底开服表 ========== */
body.theme-board {
  --board-yellow: #ffff33;
  --board-head: #1a0a3a;
  --board-contact: #4b1a78;
  --board-contact-text: #ffe600;
  background-color: #0b0618;
  background-image:
    linear-gradient(180deg, rgba(8, 4, 20, 0.35), rgba(8, 4, 20, 0.55)),
    var(--pc-bg-image, none);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #f5f5ff;
}
body.theme-board.has-pc-bg {
  background-image:
    linear-gradient(180deg, rgba(6, 2, 16, 0.28), rgba(6, 2, 16, 0.5)),
    var(--pc-bg-image);
}
body.theme-board .site-header {
  position: sticky;
  top: 0;
  background: rgba(12, 6, 28, 0.78);
  border-bottom: 1px solid rgba(180, 120, 255, 0.25);
  backdrop-filter: blur(10px);
}
body.theme-board .brand,
body.theme-board .brand .site-name { color: #f3e8ff; text-shadow: 0 0 12px rgba(192, 132, 252, 0.55); }
body.theme-board .nav a { color: #e9d5ff; }
body.theme-board .nav a:hover { color: #fff; }
body.theme-board .btn {
  border-color: rgba(216, 180, 254, 0.45);
  background: rgba(88, 28, 135, 0.45);
  color: #faf5ff;
  border-radius: 8px;
}
body.theme-board .btn-primary {
  background: linear-gradient(180deg, #7c3aed, #5b21b6);
  border-color: #a78bfa;
}

.board-hero {
  text-align: center;
  padding: 22px 0 10px;
}
.board-title {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow:
    0 0 8px rgba(192, 132, 252, 0.95),
    0 0 22px rgba(168, 85, 247, 0.85),
    0 2px 0 #3b0764;
  line-height: 1.25;
}
.board-title .site-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.7));
}
.board-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 12px 0 16px;
  padding: 10px 14px;
  background: var(--board-contact);
  border: 1px solid rgba(250, 204, 21, 0.35);
  color: var(--board-contact-text);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
.board-contact span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.kaifu-board {
  margin: 0 0 18px;
  border: 2px solid #111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  overflow: auto;
  background: var(--board-yellow);
}
.kaifu-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--board-yellow);
  color: #111;
  font-size: 12px;
}
.kaifu-table th {
  background: var(--board-head);
  color: #fff;
  font-weight: 700;
  padding: 6px 4px;
  border: 1px solid #0b0618;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
}
.kaifu-table td {
  border: 1px solid #222;
  padding: 4px 4px;
  text-align: center;
  vertical-align: middle;
  background: #ffff33;
  color: #111;
  word-break: break-word;
  line-height: 1.3;
  height: 32px;
  font-size: 12px;
}
.kaifu-table .col-name {
  width: 9.5em;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
}
.kaifu-table .col-name a {
  color: #111;
  font-weight: 700;
  font-size: 12px;
  display: inline;
  white-space: nowrap;
}
.kaifu-table .col-name a:hover { color: #9f1239; }
.kaifu-table .col-intro {
  width: 30%;
  text-align: left;
  padding-left: 8px;
  padding-right: 6px;
  color: #b91c1c;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 0;
  font-size: 12px;
}
.kaifu-table .col-intro .intro-main,
.kaifu-table .col-intro .intro-empty {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-width: 100%;
  font-size: 12px;
}
.kaifu-table .intro-empty { color: #444; font-weight: 500; }
.kaifu-table .col-qq { color: #1d4ed8; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 12px; }
.kaifu-table .col-rec { font-weight: 800; color: #111; white-space: nowrap; font-size: 12px; }
.kaifu-table .empty-cell {
  padding: 28px;
  color: #444;
  background: #fff7a0;
}
.kaifu-table tr.srv-row:hover td { background: #fff566; }
.btn-view {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  background: linear-gradient(180deg, #5b5b5b, #2f2f2f);
  color: #fff !important;
  border: 1px solid #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.btn-view:hover { filter: brightness(1.12); color: #fff !important; }
.t-badge {
  display: inline-block;
  margin-right: 3px;
  padding: 0 3px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 1.4;
  color: #fff;
  vertical-align: middle;
}
.t-badge.bid { background: #db2777; }
.t-badge.top { background: #ea580c; }
.t-badge.hot { background: #dc2626; }
.kaifu-table .ad-row td {
  padding: 0;
  background: #111;
}
.kaifu-table .ad-row img {
  width: 100%;
  max-height: 90px;
  object-fit: contain;
  background: #0a0a0a;
}

body.theme-board .carousel {
  border-radius: 0;
  border: 2px solid #111;
  margin: 0 0 14px;
  box-shadow: none;
  background: #111;
}
body.theme-board .notice-strip {
  background: rgba(76, 29, 149, 0.85);
  border: 1px solid rgba(250, 204, 21, 0.4);
  color: #fef9c3;
  border-radius: 0;
  margin-bottom: 12px;
}
body.theme-board .section-head h2 {
  color: #fef08a;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.45);
  font-family: "Microsoft YaHei", sans-serif;
  letter-spacing: 0.06em;
}
body.theme-board .section-head a { color: #fde047; }
body.theme-board .cat-chip {
  background: rgba(88, 28, 135, 0.65);
  border-color: rgba(250, 204, 21, 0.35);
  color: #fef9c3;
}
body.theme-board .cat-chip:hover,
body.theme-board .cat-chip.active {
  background: #7c3aed;
  color: #fff;
  border-color: #facc15;
}
body.theme-board .site-footer {
  background: rgba(10, 4, 24, 0.75);
  border-top: 1px solid rgba(168, 85, 247, 0.25);
  color: #d8b4fe;
}
body.theme-board .section-bid {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .board-contact { grid-template-columns: 1fr; font-size: 0.85rem; }
  .board-title { font-size: 1.45rem; }
  body.theme-board { background-attachment: scroll; }
}


