@charset "UTF-8";
/* NBA录像屋 · 球迷屋风格深色主题 */
:root {
  --nba-bg: #0f1115;
  --nba-bg2: #161a22;
  --nba-card: #1c212b;
  --nba-line: #2a3140;
  --nba-text: #f2f4f8;
  --nba-muted: #9aa3b5;
  --nba-blue: #2f7bff;
  --nba-blue2: #1e5fd9;
}

body.nba-theme {
  background: var(--nba-bg) !important;
  background-image: none !important;
  color: var(--nba-text);
  padding-top: 64px;
}
body.nba-theme::before,
body.nba-theme::after {
  display: none !important;
}
body.nba-theme a { color: var(--nba-text); }
body.nba-theme a:hover { color: var(--nba-blue); }

body.nba-theme header {
  display: none;
}
body.nba-theme .nav.nba-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(22, 26, 34, 0.96) !important;
  border-bottom: 1px solid var(--nba-line);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.nba-theme .nba-topbar-wrap {
  width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
body.nba-theme .nba-topbar-wrap > .logo {
  flex: none;
  height: 44px;
  display: flex;
  align-items: center;
}
body.nba-theme .nba-topbar-wrap > .logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
/* 录像屋 · 图标+艺术字 Logo */
body.nba-theme .nba-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  color: #4ea1ff !important;
  height: 44px;
}
body.nba-theme .nba-brand-mark {
  display: inline-flex;
  flex: none;
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 10px rgba(47, 123, 255, 0.45));
}
body.nba-theme .nba-brand-mark svg {
  display: block;
  width: 36px;
  height: 36px;
}
body.nba-theme .nba-brand-text {
  display: inline-flex !important;
  align-items: baseline;
  font-family: "STXingkai", "华文行楷", "FZKai-Z03", "KaiTi", "楷体", "Microsoft YaHei", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  color: #4ea1ff !important;
  -webkit-text-fill-color: #4ea1ff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  text-shadow: 0 0 12px rgba(47, 123, 255, 0.45);
  filter: none;
}
body.nba-theme .nba-brand-text i {
  font-style: normal;
  position: relative;
  color: #4ea1ff !important;
  -webkit-text-fill-color: #4ea1ff !important;
}
body.nba-theme .nba-brand-text i:first-child::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 7px;
  height: 7px;
  margin-left: -3px;
  border-radius: 50%;
  background: #7eb6ff;
  box-shadow: 0 0 8px rgba(47, 123, 255, 0.8);
}
body.nba-theme .nba-brand:hover .nba-brand-text,
body.nba-theme .nba-brand:hover .nba-brand-text i {
  color: #79b4ff !important;
  -webkit-text-fill-color: #79b4ff !important;
}
body.nba-theme .nba-topbar-wrap > .nav-box {
  flex: 1;
  height: 64px;
  display: flex;
  align-items: center;
  min-width: 0;
}
body.nba-theme .nba-topbar-wrap > .search {
  flex: none;
  margin-left: auto;
}
body.nba-theme .nba-topbar-wrap #searchBox {
  height: 36px;
}
body.nba-theme .nba-topbar-wrap #searchBox .searchBox-txt {
  width: 200px;
  height: 36px;
  line-height: 34px;
  background-color: var(--nba-card);
  border: 1px solid var(--nba-line);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  color: var(--nba-text);
  padding-left: 36px;
  background-size: 16px;
  background-position: 12px center;
}
body.nba-theme .nba-topbar-wrap #searchBox .searchBox-btn {
  width: 72px;
  height: 36px;
  line-height: 36px;
  background: var(--nba-blue);
  border-radius: 0 6px 6px 0;
}
body.nba-theme .nba-topbar-wrap #searchBox .searchBox-btn:hover {
  background: var(--nba-blue2);
}
body.nba-theme .nav-box a {
  color: var(--nba-muted) !important;
  background: transparent !important;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 64px;
  padding: 0 22px;
}
body.nba-theme .nav-box a:hover {
  background: transparent !important;
  color: var(--nba-text) !important;
}
body.nba-theme .nav-box a.active {
  background: transparent !important;
  color: var(--nba-blue) !important;
  font-size: 16px !important;
  position: relative;
}
body.nba-theme .nav-box a.active::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  background: var(--nba-blue);
  border-radius: 2px 2px 0 0;
}

/* 兼容旧选择器 */
body.nba-theme .headCont { height: 72px; }
body.nba-theme #searchBox .searchBox-txt {
  background-color: var(--nba-card) !important;
  border: 1px solid var(--nba-line) !important;
  border-right: 0 !important;
  color: var(--nba-text) !important;
  box-shadow: none !important;
}
body.nba-theme #searchBox .searchBox-btn {
  background: var(--nba-blue) !important;
  border: 1px solid var(--nba-blue) !important;
  color: #fff !important;
}
body.nba-theme #searchBox .searchBox-btn:hover {
  background: var(--nba-blue2) !important;
  border-color: var(--nba-blue2) !important;
}
body.nba-theme .nav {
  background: var(--nba-bg2) !important;
  border-bottom: 1px solid var(--nba-line);
}

/* 左侧二级目录（球迷屋风格） */
body.nba-theme .nba-layout {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
body.nba-theme .nba-side {
  flex: none;
  width: 148px;
  position: sticky;
  top: 16px;
}
body.nba-theme .nba-side-hero {
  position: relative;
  display: block;
  min-height: 52px;
  margin-bottom: 18px;
  padding: 8px 0 16px;
  border-bottom: 1px solid rgba(47, 123, 255, 0.25);
}
body.nba-theme .nba-side-icon {
  position: absolute;
  left: 0;
  top: 2px;
  width: 48px;
  height: 48px;
  display: block;
  z-index: 0;
  pointer-events: none;
}
body.nba-theme .nba-side-icon .i1,
body.nba-theme .nba-side-icon .i2,
body.nba-theme .nba-side-icon .i3 {
  position: absolute;
  border-radius: 4px;
  background: linear-gradient(135deg, #4f9bff 0%, #1e5fd9 100%);
  box-shadow: 0 0 16px rgba(47, 123, 255, 0.45);
}
body.nba-theme .nba-side-icon .i1 {
  width: 24px;
  height: 24px;
  left: 2px;
  top: 6px;
  transform: rotate(18deg);
  opacity: 0.9;
}
body.nba-theme .nba-side-icon .i2 {
  width: 18px;
  height: 18px;
  left: 20px;
  top: 0;
  transform: rotate(-12deg);
  opacity: 0.7;
  background: linear-gradient(135deg, #7eb6ff 0%, #2f7bff 100%);
}
body.nba-theme .nba-side-icon .i3 {
  width: 8px;
  height: 8px;
  left: 34px;
  top: 26px;
  border-radius: 50%;
  background: #5aa0ff;
  box-shadow: 0 0 10px rgba(90, 160, 255, 0.8);
}
body.nba-theme .nba-side-title {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 10px 0 0 6px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 0 24px rgba(47, 123, 255, 0.35);
}
body.nba-theme .nba-side-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.nba-theme .nba-side-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--nba-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: color .15s ease, background .15s ease;
}
body.nba-theme .nba-side-nav a:hover {
  color: var(--nba-text);
  background: rgba(47, 123, 255, 0.12);
}
body.nba-theme .nba-side-nav a.active {
  color: #fff;
  background: var(--nba-blue);
  box-shadow: 0 6px 18px rgba(47, 123, 255, 0.35);
}
body.nba-theme .nba-main {
  flex: 1;
  min-width: 0;
}
body.nba-theme .nba-main .page-col {
  display: flex;
  gap: 20px;
  width: 100%;
}
body.nba-theme .nba-main .page-col > main {
  flex: 1;
  min-width: 0;
  width: auto !important;
}
body.nba-theme .nba-main .page-col > aside {
  flex: none;
  width: 260px;
}
body.nba-theme .nba-main .page-col > main::after {
  display: none;
}

body.nba-theme .pp-content { padding-top: 8px; padding-bottom: 40px; }
body.nba-theme .pp-crumbs i,
body.nba-theme .pp-crumbs a,
body.nba-theme .pp-crumbs span { color: var(--nba-muted); }
body.nba-theme .pp-crumbs a:hover { color: var(--nba-blue); }

body.nba-theme .pp-area,
body.nba-theme .nba-panel {
  background: var(--nba-card) !important;
  border: 1px solid var(--nba-line) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* 区块标题：球迷屋风格，白字 + 蓝橙竖条，去掉浅色底条 */
body.nba-theme .g-title {
  display: flex;
  align-items: center;
  background: transparent !important;
  background-image: none !important;
  border-bottom: 1px solid var(--nba-line) !important;
  border-radius: 0 !important;
  margin: 0 0 18px !important;
  padding: 0 0 14px !important;
  min-height: 0;
}
body.nba-theme .g-title .h3 {
  position: relative;
  display: inline-block;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: 1px;
  padding: 0 0 0 14px !important;
  margin: 0 !important;
  border: 0 !important;
  border-left: 0 !important;
  border-bottom: 0 !important;
  background: transparent !important;
}
body.nba-theme .g-title .h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(180deg, #2f7bff 0%, #2f7bff 55%, #ff7a3d 55%, #ff7a3d 100%);
}
body.nba-theme .g-title .more {
  margin-left: auto;
  color: var(--nba-muted) !important;
  font-size: 13px;
  font-weight: 500;
}
body.nba-theme .g-title .more:hover { color: var(--nba-blue) !important; }
body.nba-theme .aside-title {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--nba-line) !important;
  margin-bottom: 14px;
  padding-bottom: 12px;
}
body.nba-theme .aside-title .h3 {
  position: relative;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  padding-left: 14px !important;
  border: 0 !important;
}
body.nba-theme .aside-title .h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, #2f7bff 0%, #2f7bff 55%, #ff7a3d 55%, #ff7a3d 100%);
}
body.nba-theme .aside-title .h3::after { display: none !important; }
body.nba-theme .aside-title .more {
  margin-left: auto;
  color: var(--nba-muted) !important;
}
body.nba-theme .aside-title .more:hover { color: var(--nba-blue) !important; }

/* 资讯/预测双列：左图右文紧凑卡（球迷屋风格） */
body.nba-theme .nba-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
body.nba-theme .nba-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
  min-height: 0;
  transition: opacity .2s ease;
}
body.nba-theme .nba-card:hover {
  border-color: transparent;
  transform: none;
  opacity: .92;
}
body.nba-theme .nba-card .cover {
  flex: none;
  display: block;
  position: relative;
  width: 168px;
  height: 112px;
  padding-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--nba-bg2);
}
body.nba-theme .nba-card .cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
body.nba-theme .nba-card:hover .cover img {
  transform: scale(1.05);
}
body.nba-theme .nba-card .body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
body.nba-theme .nba-card .title {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #fff !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.nba-theme .nba-card .title:hover {
  color: var(--nba-blue) !important;
}
body.nba-theme .nba-card .desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--nba-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.nba-theme .nba-card .meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--nba-muted);
  padding-top: 4px;
}
body.nba-theme .nba-card .meta .tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: rgba(47, 123, 255, 0.16);
  color: var(--nba-blue);
  font-weight: 600;
}
body.nba-theme .nba-related-grid {
  gap: 18px 24px;
}
body.nba-theme .nba-related-grid .nba-card .cover {
  width: 176px;
  height: 118px;
}
body.nba-theme .nba-related-grid .nba-card .title {
  font-size: 16px;
}
body.nba-theme .nba-related-grid .nba-card .desc {
  -webkit-line-clamp: 2;
}
body.nba-theme .nba-empty {
  padding: 48px 20px;
  text-align: center;
  color: var(--nba-muted);
  font-size: 14px;
}

/* 回放网格 */
body.nba-theme .nba-replay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
body.nba-theme .nba-replay-card {
  background: var(--nba-bg2);
  border: 1px solid var(--nba-line);
  border-radius: 10px;
  overflow: hidden;
}
body.nba-theme .nba-replay-card:hover { border-color: var(--nba-blue); }
body.nba-theme .nba-replay-card .cover {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
}
body.nba-theme .nba-replay-card .cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.nba-theme .nba-replay-card .play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  background: rgba(47, 123, 255, 0.9);
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
body.nba-theme .nba-replay-card .play::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 14px;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
}
body.nba-theme .nba-replay-card .tag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(47, 123, 255, 0.95);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
}
body.nba-theme .nba-replay-card .title {
  display: block;
  padding: 10px 12px 14px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--nba-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 首页热门轮播 */
body.nba-theme .nba-banner {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--nba-line);
  background: var(--nba-card);
}
body.nba-theme .nba-banner .swiper-container {
  width: 100%;
  height: 380px;
}
body.nba-theme .nba-banner-slide {
  position: relative;
  display: block;
  width: 100%;
  height: 380px;
  overflow: hidden;
  color: #fff !important;
}
body.nba-theme .nba-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease;
}
body.nba-theme .swiper-slide-active .nba-banner-bg {
  transform: scale(1.08);
}
body.nba-theme .nba-banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,10,16,.88) 0%, rgba(8,10,16,.55) 42%, rgba(8,10,16,.18) 72%, rgba(8,10,16,.35) 100%),
              linear-gradient(0deg, rgba(8,10,16,.55) 0%, transparent 45%);
  pointer-events: none;
}
body.nba-theme .nba-banner-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 4px;
  background: var(--nba-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
body.nba-theme .nba-banner-body {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
}
body.nba-theme .nba-banner-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
  margin-bottom: 12px;
}
body.nba-theme .nba-banner-meta {
  color: rgba(242,244,248,.78);
  font-size: 13px;
  margin-bottom: 18px;
}
body.nba-theme .nba-banner-btn {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--nba-blue);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(47,123,255,.35);
  transition: background .2s ease, transform .2s ease;
}
body.nba-theme .nba-banner-slide:hover .nba-banner-btn {
  background: var(--nba-blue2);
  transform: translateY(-1px);
}
body.nba-theme .nba-banner .swiper-button-prev,
body.nba-theme .nba-banner .swiper-button-next {
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  background: rgba(15,17,21,.35);
  color: #fff;
  transition: background .2s ease;
}
body.nba-theme .nba-banner .swiper-button-prev:hover,
body.nba-theme .nba-banner .swiper-button-next:hover {
  background: rgba(47,123,255,.85);
}
body.nba-theme .nba-banner .swiper-button-prev::after,
body.nba-theme .nba-banner .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}
body.nba-theme .nba-banner .swiper-pagination {
  bottom: 16px !important;
}
body.nba-theme .nba-banner .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  background: rgba(255,255,255,.45);
  opacity: 1;
  border-radius: 999px;
  transition: width .25s ease, background .25s ease;
}
body.nba-theme .nba-banner .swiper-pagination-bullet-active {
  width: 22px;
  background: var(--nba-blue);
}

body.nba-theme .nba-home-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}
body.nba-theme .nba-feat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
body.nba-theme .nba-feat-row .nba-card {
  flex-direction: column;
  gap: 0;
  background: var(--nba-bg2);
  border: 1px solid var(--nba-line);
  border-radius: 10px;
  overflow: hidden;
}
body.nba-theme .nba-feat-row .nba-card:hover {
  border-color: var(--nba-blue);
  opacity: 1;
  transform: translateY(-2px);
}
body.nba-theme .nba-feat-row .nba-card .cover {
  width: 100%;
  height: 0;
  padding-bottom: 56%;
  border-radius: 0;
}
body.nba-theme .nba-feat-row .nba-pin {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: #e25555;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: .5px;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .28);
}
body.nba-theme .nba-feat-row .nba-card .body { padding: 10px 12px 12px; }
body.nba-theme .nba-feat-row .nba-card .title { font-size: 14px; }
body.nba-theme .nba-list-plain {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 0;
  margin-top: 4px;
}
body.nba-theme .nba-list-plain a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--nba-line);
  min-width: 0;
}
body.nba-theme .nba-list-plain a:nth-last-child(-n+2) { border-bottom: 0; }
body.nba-theme .nba-list-plain .thumb {
  flex: none;
  width: 108px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
}
body.nba-theme .nba-list-plain .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.nba-theme .nba-list-plain .t {
  flex: 1;
  min-width: 0;
}
body.nba-theme .nba-list-plain .t h3 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.nba-theme .nba-list-plain .t span {
  font-size: 12px;
  color: var(--nba-muted);
}
body.nba-theme .nba-side-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--nba-line);
  font-size: 14px;
  line-height: 1.45;
  color: var(--nba-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.nba-theme .nba-side-list a:last-child { border-bottom: 0; }
body.nba-theme .nba-side-list a:hover { color: var(--nba-blue); }
body.nba-theme .nba-hot-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
body.nba-theme .nba-hot-list a em {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--nba-bg);
  color: var(--nba-muted);
  font-style: normal;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
body.nba-theme .nba-hot-list a:nth-child(-n+3) em {
  background: var(--nba-blue);
  color: #fff;
}

body.nba-theme .news-list li { border-top-color: var(--nba-line); }
body.nba-theme .news-list li:hover { background: transparent; }
body.nba-theme .news-list-card .cont .h3 { color: var(--nba-text); }
body.nba-theme .news-list-card .cont .h3:hover { color: var(--nba-blue); }
body.nba-theme .news-list-card .cont .p3 { color: var(--nba-muted); }
body.nba-theme .article-head { border-bottom: 1px solid var(--nba-line); margin-bottom: 16px; padding-bottom: 14px; }
body.nba-theme .article-head .h1 { color: #fff !important; font-size: 26px; font-weight: 700; line-height: 1.4; }
body.nba-theme .article-head .infos span { color: var(--nba-muted) !important; }
body.nba-theme .nba-main .page-col > main,
body.nba-theme .nba-main .page-col > aside {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
body.nba-theme .article-module > p { color: #d7dce8; }
body.nba-theme .nba-article-tags {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 6px;
  padding-top: 16px;
  border-top: 1px solid var(--nba-line);
}
body.nba-theme .nba-article-tags-label {
  flex: none;
  margin-top: 4px;
  font-size: 13px;
  color: var(--nba-muted);
}
body.nba-theme .nba-article-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body.nba-theme .nba-kw-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--nba-line);
  border-radius: 6px;
  background: var(--nba-bg2);
  color: var(--nba-text) !important;
  font-size: 13px;
  line-height: 1.4;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
body.nba-theme .nba-kw-tag:hover {
  border-color: var(--nba-blue);
  color: var(--nba-blue) !important;
  background: rgba(47, 123, 255, .12);
}
body.nba-theme .article-module > h3 {
  background: var(--nba-bg2);
  color: var(--nba-blue);
  border-left-color: var(--nba-blue);
}
body.nba-theme .turnPage a {
  background: var(--nba-bg2);
  color: var(--nba-text);
}
body.nba-theme .turnPage a:hover { color: var(--nba-blue); }
body.nba-theme .page .pb-pages a { color: var(--nba-muted); }
body.nba-theme .page .pb-pages a.on {
  background: var(--nba-blue);
  color: #fff;
}
body.nba-theme .page .pb-pages a.btn { border-color: var(--nba-line); }
body.nba-theme footer { background: #0b0d11; }
body.nba-theme .foot > p a:hover { color: var(--nba-blue); }
body.nba-theme .goTop .top-btn { background-color: var(--nba-blue); }
body.nba-theme .card-h-txt .txt-p1,
body.nba-theme .card-wz .txt-a2 { color: var(--nba-text); }
body.nba-theme .card-h-txt:hover .txt-p1,
body.nba-theme .card-wz .txt-a2:hover { color: var(--nba-blue); }

@media (max-width: 1240px) {
  body.nba-theme .pp-content,
  body.nba-theme .nba-topbar-wrap,
  body.nba-theme .nav .nav-wrap,
  body.nba-theme .foot { width: 96%; }
  body.nba-theme .nba-topbar-wrap #searchBox .searchBox-txt { width: 160px; }
  body.nba-theme .nba-home-grid { grid-template-columns: 1fr; }
  body.nba-theme .nba-replay-grid { grid-template-columns: repeat(2, 1fr); }
  body.nba-theme .nba-feat-row { grid-template-columns: repeat(2, 1fr); }
  body.nba-theme .nba-card-grid { grid-template-columns: 1fr; gap: 14px; }
  body.nba-theme .nba-list-plain { grid-template-columns: 1fr; column-gap: 0; }
  body.nba-theme .nba-list-plain a:nth-last-child(-n+2) { border-bottom: 1px solid var(--nba-line); }
  body.nba-theme .nba-list-plain a:last-child { border-bottom: 0; }
  body.nba-theme .nba-card .cover { width: 140px; height: 94px; }
  body.nba-theme .nba-side { width: 120px; }
  body.nba-theme .nba-side-title { font-size: 24px; }
  body.nba-theme .nba-banner .swiper-container,
  body.nba-theme .nba-banner-slide { height: 300px; }
  body.nba-theme .nba-banner-body { left: 28px; right: 28px; bottom: 36px; }
  body.nba-theme .nba-banner-title { font-size: 24px; }
}
