:root {
  --red: #e4393c;
  --red-dark: #c9272b;
  --blue: #1d428a;
  --bg: #202124;
  --card: #202124;
  --text: #d7dbe3;
  --muted: #8b929e;
  --line: #30333a;
  --soft: #282b31;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: 58px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font: 14px/1.6 "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, calc(100% - 24px));
  max-width: 100%;
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #181a1f;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 58px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
}

.brand-logo {
  width: 34px;
  height: 34px;
}

.nav {
  flex: 1 1 auto;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-list a {
  position: relative;
  display: block;
  padding: 19px 10px;
  font-size: 15px;
  white-space: nowrap;
}

.has-dropdown > a,
.has-dropdown > .nav-row > a {
  padding-right: 22px;
}

.has-dropdown > a::before,
.has-dropdown > .nav-row > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  width: 0;
  height: 0;
  margin-top: -1px;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  opacity: 0.8;
}

.desktop-subnav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  min-width: 98px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #303338;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.desktop-subnav a {
  display: block;
  padding: 11px 28px 11px 30px;
  color: #e4e7ed;
  font-size: 15px;
  line-height: 1.2;
  text-align: left;
}

.desktop-subnav a:hover {
  color: #fff;
  background: #3a3d43;
}

.more-nav .desktop-subnav {
  min-width: 112px;
}

.nav-overflow {
  display: none;
}

.nav-overflow-toggle {
  cursor: default;
}

.nav-overflow > .nav-overflow-toggle {
  padding-right: 10px;
}

.nav-overflow > .nav-overflow-toggle::before {
  display: none;
}

.desktop-subnav a::before,
.desktop-subnav a::after {
  display: none !important;
}

@media (min-width: 769px) {
  .nav {
    overflow: visible;
  }

  .nav-list {
    overflow: visible;
  }

  .nav-overflow.is-visible {
    display: block;
  }

  .has-dropdown:hover > .desktop-subnav {
    display: block;
    animation: navDropdownIn 0.22s ease both;
  }

  .nav-overflow > .desktop-subnav {
    right: 0;
    left: auto;
    min-width: 138px;
    border-radius: 8px;
    background: #303338;
  }

  .nav-overflow > .desktop-subnav > .nav-item {
    position: relative;
  }

  .nav-overflow > .desktop-subnav > .nav-item > a,
  .nav-overflow > .desktop-subnav > .nav-item > .nav-row > a {
    padding: 13px 36px 13px 30px;
    color: #e4e7ed;
  }

  .nav-overflow > .desktop-subnav > .nav-item.has-dropdown > a::before,
  .nav-overflow > .desktop-subnav > .nav-item.has-dropdown > .nav-row > a::before {
    display: block !important;
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 0;
    height: 0;
    margin-top: -2px;
    border-top: 5px solid currentColor;
    border-right: 4px solid transparent;
    border-bottom: 0;
    border-left: 4px solid transparent;
  }

  .nav-overflow > .desktop-subnav > .nav-item > .desktop-subnav {
    top: 0;
    right: 100%;
    left: auto;
    min-width: 126px;
    border-radius: 8px;
  }
}

@keyframes navDropdownIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-list a.active,
.nav-list a:hover {
  color: var(--red);
}

.nav-list a.active::after,
.nav-list a:hover::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--red);
}

.app-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border: 1px solid #2f7dff;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  background: #20242a;
}

.app-open:hover {
  color: #fff;
  border-color: #5d9aff;
}

.nav-search {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #cfd4df;
  cursor: pointer;
}

.nav-search::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.nav-search::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 21px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.nav-search:hover {
  color: #fff;
}

.search-main {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 13vh;
  background: rgba(20, 22, 27, 0.72);
  backdrop-filter: blur(10px);
}

.search-main.is-open {
  display: flex;
}

.search-layer {
  position: relative;
  width: min(900px, calc(100% - 28px));
  padding: 26px;
  border-radius: 8px;
  background: #202124;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.search-close {
  position: absolute;
  top: -46px;
  left: 50%;
  width: 36px;
  height: 36px;
  margin-left: -18px;
  border: 0;
  border-radius: 50%;
  background: #25282e;
  color: #d7dbe3;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.search-tabs button {
  min-width: 72px;
  height: 34px;
  border: 1px solid #30333a;
  border-radius: 4px;
  background: #25282e;
  color: #d7dbe3;
  cursor: pointer;
}

.search-tabs button.active {
  border-color: #2d6bff;
  background: #2d6bff;
  color: #fff;
}

.search-engine-form {
  display: none;
  grid-template-columns: minmax(0, 1fr) 96px;
}

.search-engine-form.active {
  display: grid;
}

.search-engine-form input {
  height: 42px;
  border: 1px solid #30333a;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  padding: 0 14px;
  outline: 0;
  color: #d7dbe3;
  background: #181a1f;
  font-size: 15px;
}

.search-engine-form button {
  border: 0;
  border-radius: 0 4px 4px 0;
  background: #2d6bff;
  color: #fff;
  cursor: pointer;
}

.search-hot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.search-hot a {
  padding: 6px 10px;
  border-radius: 4px;
  background: #25282e;
  color: #b9c0cc;
  font-size: 13px;
}

.search-hot a:hover {
  color: #2d6bff;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
}

.home-layout {
  grid-template-columns: 300px minmax(0, 1fr) 300px;
}

.panel {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.panel + .panel {
  margin-top: 14px;
}

.panel-head {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.panel-head h1,
.panel-head h2,
.panel-head h3 {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.panel-head h1::before,
.panel-head h2::before,
.panel-head h3::before {
  content: "";
  width: 4px;
  height: 18px;
  margin-right: 8px;
  border-radius: 2px;
  background: #2f72ff;
}

.panel-more {
  margin-left: auto;
  color: #999;
  font-size: 13px;
}

.hero-news {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 4px;
  background: #ddd;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.hero-carousel .hero-card {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translateX(7%);
  transition: opacity 0.46s ease, transform 0.46s ease;
  pointer-events: none;
}

.hero-carousel .hero-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-carousel .hero-card.is-prev {
  transform: translateX(-7%);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.hero-card strong {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px 14px 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
}

.headline-list,
.text-list,
.match-list,
.media-list,
.topic-list,
.rank-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.headline-list li,
.text-list li,
.rank-list li {
  border-bottom: 1px dashed var(--line);
}

.headline-list a,
.text-list a,
.rank-list a {
  display: block;
  padding: 10px 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.headline-list a::before,
.text-list a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px 3px 0;
  border-radius: 50%;
  background: #bbb;
}

.match-list li {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.match-time {
  color: #888;
  font-size: 13px;
}

.match-teams {
  min-width: 0;
  font-weight: 700;
}

.match-status {
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
}

.media-list li {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
}

.media-link {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
}

.thumb {
  overflow: hidden;
  border-radius: 4px;
  background: #eee;
}

.thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.media-link:hover img,
.card-grid a:hover img {
  transform: scale(1.04);
}

.home-page .news-list-page {
  display: block;
}

.home-page .news-list-page li {
  padding: 16px 14px;
  border-bottom: 1px solid #30333a;
}

.home-page .news-list-page .media-link {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
}

.home-page .news-list-page .media-link > span:last-child {
  display: block;
}

.home-page .news-list-page .thumb {
  grid-column: auto;
  grid-row: auto;
  align-self: start;
  height: 102px;
}

.home-page .news-list-page .thumb img {
  display: block;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.home-page .news-list-page .media-title {
  margin: 0 0 8px;
  color: #dce1ea;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.home-page .news-list-page .media-desc {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: #9aa2af;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.media-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.4;
}

.media-title a,
.media-desc a {
  color: inherit;
}

.media-title a:hover,
.media-desc a:hover,
.meta a:hover {
  color: #2f8df3;
}

.media-desc {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: #9aa2af;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta {
  color: #999;
  font-size: 13px;
}

.meta a {
  color: inherit;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.card-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
}

.card-grid span {
  display: block;
  padding: 8px 9px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.featured-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.featured-news-card,
.side-topic-list a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: #25282e;
}

.featured-news-card img,
.side-topic-list img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.featured-news-card strong,
.side-topic-list strong {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 8px 8px;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.news-badge,
.topic-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  padding: 2px 6px;
  border-radius: 2px;
  color: #fff;
  background: #ef3f4a;
  font-size: 11px;
  line-height: 1.2;
}

.topic-badge {
  right: 6px;
  left: auto;
  background: #0877eb;
}

.news-compact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.news-compact-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 7px 0;
  border-bottom: 1px dashed #30333a;
}

.news-compact-list a {
  min-width: 0;
  overflow: hidden;
  color: #cbd1dc;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-compact-list span {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 5px;
  border: 1px solid #4a515e;
  border-radius: 2px;
  color: #cfd6e3;
  font-size: 11px;
  line-height: 1.2;
}

.news-compact-list em {
  color: #777f8c;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.match-table {
  overflow: hidden;
  border-radius: 3px;
}

.match-date-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 12px;
  color: #d7dbe3;
  background: #2a2d33;
  font-size: 13px;
  font-weight: 700;
}

.match-table-head,
.match-table > a,
.match-table > div:not(.match-date-head) {
  display: grid;
  grid-template-columns: 90px 92px minmax(120px, 1fr) 72px minmax(120px, 1fr) 62px 54px;
  gap: 8px;
  align-items: center;
}

.match-table-head {
  padding: 10px 12px;
  color: #d7dbe3;
  background: #2a2d33;
  font-size: 13px;
  font-weight: 700;
}

.match-table > a,
.match-table > div:not(.match-date-head) {
  min-height: 52px;
  padding: 9px 12px;
  color: #9aa2af;
  border-bottom: 1px solid #30333a;
  font-size: 13px;
}

.match-table a {
  color: inherit;
}

.league-cell {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.league-cell a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.league-cell img {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
}

.match-table strong,
.match-table b {
  overflow: hidden;
  color: #d7dbe3;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.match-table strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.match-table strong img {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  background: #30333a;
}

.match-table .home-team {
  justify-self: end;
  justify-content: flex-end;
  width: 100%;
  text-align: right;
}

.match-table .away-team {
  justify-self: start;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
}

.match-table b {
  color: #cfd6e3;
  text-align: center;
}

.match-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 56px;
  min-height: 28px;
  color: #9aa2af;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.match-state.is-live {
  border-radius: 999px;
  color: #fff;
  background: #e4393c;
  font-size: 12px;
  font-weight: 700;
}

.match-state.is-upcoming {
  border: 1px solid #3a3d45;
  color: #cfd6e3;
  background: #2a2d33;
}

.match-table em,
.recommended-match-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 54px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 2px;
  color: #7db2ff;
  background: #25282e;
  font-size: 12px;
  font-style: normal;
  line-height: 1;
}

.match-table em.live-link {
  min-width: 64px;
  color: #fff;
  background: #0877eb;
  font-weight: 700;
  text-align: center;
}

.match-update-time {
  padding: 10px 12px 14px;
  color: #777f8c;
  font-size: 12px;
  text-align: center;
}

.sub-layout .match-update-time {
  text-align: center;
}

.match-state a,
.match-table em a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: inherit;
  color: inherit;
}

.match-filter {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  max-width: none;
  margin-left: auto;
}

.home-match-panel .panel-head {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
}

.home-match-panel .panel-head h2 {
  min-height: 28px;
}

.home-match-panel .match-filter {
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 12px;
  margin-left: 0;
}

.match-filter.league-tabs {
  padding: 0;
  border: 0;
  background: transparent;
}

.match-filter .league-tab {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  cursor: pointer;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 3px;
  color: #d7dbe3;
  background: #14233d;
  font-size: 12px;
  line-height: 28px;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.match-filter .league-tab:hover,
.match-filter .league-tab:focus-visible {
  color: #fff;
  background: #1e3150;
  outline: none;
}

.match-filter .league-tab.is-hot {
  color: #fff;
  background: #c8102e;
  font-weight: 700;
}

.hot-match-carousel {
  position: relative;
  padding: 0 0 12px;
}

.hot-match-track {
  display: flex;
  gap: 12px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.hot-match-track.is-sliding-next .hot-match-card {
  animation: hotMatchSlideNext 0.28s ease;
}

.hot-match-track.is-sliding-prev .hot-match-card {
  animation: hotMatchSlidePrev 0.28s ease;
}

.hot-match-card {
  display: grid;
  flex: 0 0 calc((100% - 36px) / 4);
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-width: 0;
  min-height: 150px;
  padding: 14px;
  border: 1px solid #303b50;
  border-radius: 16px;
  color: #cfd8e6;
  background: #25282e;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
}

.hot-match-meta,
.hot-match-meta span,
.hot-match-teams,
.hot-match-teams strong,
.hot-match-actions {
  display: flex;
  align-items: center;
}

.hot-match-meta {
  justify-content: space-between;
  gap: 10px;
  color: #d7dbe3;
  font-size: 13px;
}

.hot-match-meta span {
  gap: 8px;
  min-width: 0;
  color: #b8c7dc;
}

.hot-match-meta img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.hot-match-meta em {
  color: #d7dbe3;
  font-style: normal;
  white-space: nowrap;
}

.hot-match-teams {
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.hot-match-teams strong {
  flex: 1 1 0;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  color: #f2f5fb;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hot-match-teams strong:first-child {
  justify-content: flex-end;
}

.hot-match-teams strong:last-child {
  justify-content: flex-start;
}

.hot-match-teams img {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 50%;
  object-fit: cover;
  background: #303849;
}

.hot-match-teams b {
  min-width: 66px;
  color: #ff4d57;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.hot-match-actions {
  justify-content: center;
  gap: 20px;
}

.hot-match-actions i {
  min-width: 58px;
  color: #ff4d57;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.hot-match-actions em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 38px;
  border-radius: 12px;
  color: #fff;
  background: #0877eb;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.hot-match-arrow {
  position: absolute;
  top: 56%;
  z-index: 2;
  width: 28px;
  height: 48px;
  border: 0;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: color 0.18s ease;
}

.hot-match-arrow:hover,
.hot-match-arrow:focus-visible {
  color: #0877eb;
  outline: none;
}

.hot-match-prev {
  left: 4px;
}

.hot-match-next {
  right: 4px;
}

@keyframes hotMatchSlideNext {
  from {
    opacity: 0.72;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hotMatchSlidePrev {
  from {
    opacity: 0.72;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.recommended-match-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #30333a;
}

.recommended-match-card > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.recommended-match-card span {
  color: #9aa2af;
  font-size: 12px;
}

.recommended-match-card small {
  color: #6f7784;
  font-size: 11px;
}

.recommended-match-card strong {
  color: #d7dbe3;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.side-topic-list {
  display: grid;
  gap: 14px;
}

.home-video-panel {
  margin-bottom: 18px;
}

.home-video-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 0;
}

.home-video-list a {
  overflow: hidden;
  border-radius: 3px;
  background: #1f2633;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.video-thumb i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 119, 235, 0.86);
  font-size: 12px;
  font-style: normal;
  transform: translate(-50%, -50%);
}

.home-video-list a:hover img {
  transform: scale(1.04);
}

.home-video-list strong {
  display: block;
  padding: 8px 10px 9px;
  overflow: hidden;
  color: #f2f5fb;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.video-text-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding-top: 6px;
}

.video-text-list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 9px 0;
  border-bottom: 1px solid #30333a;
}

.video-text-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 20px;
  padding: 0 6px;
  border: 1px solid #33425d;
  border-radius: 2px;
  color: #cfe0ff;
  background: #162033;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.video-text-list strong {
  overflow: hidden;
  color: #cfd6e3;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.video-text-list a:hover strong {
  color: #fff;
}

.home-page .topic-section {
  grid-column: 1 / -1;
}

.home-page .home-layout > .main {
  grid-column: 1 / -1;
}

.topic-card-panel .side-topic-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 0;
}

.topic-card-panel .side-topic-list a {
  overflow: visible;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.topic-card-panel .side-topic-list img {
  display: block;
  aspect-ratio: auto;
  height: 86px;
  border-radius: 3px 3px 0 0;
}

.topic-card-panel .side-topic-list strong {
  position: static;
  display: block;
  padding: 8px 10px 9px;
  overflow: hidden;
  color: #f2f5fb;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #1f2633;
}

.topic-tag-panel {
  margin-top: 16px;
  padding: 14px;
  border-radius: 4px;
}

.topic-tag-panel h3 {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  color: #f2f5fb;
  font-size: 15px;
  line-height: 1.2;
}

.topic-tag-panel h3::before {
  content: "";
  width: 3px;
  height: 14px;
  margin-right: 7px;
  border-radius: 2px;
  background: #2f72ff;
}

.topic-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-tag-list a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid #33425d;
  border-radius: 999px;
  color: #cfe0ff;
  font-size: 12px;
}

.topic-tag-list a:hover {
  color: #fff;
  border-color: #2f72ff;
}

.topic-card-panel .topic-badge {
  display: none;
}

.footer {
  margin-top: 20px;
  padding: 34px 0 28px;
  color: #6f7784;
  background: #202124;
  border-top: 1px solid #24272d;
}

.footer-inner {
  max-width: 960px;
}

.footer-groups {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 90px;
  margin-bottom: 44px;
}

.footer-group h3 {
  margin: 0 0 16px;
  color: #aeb5c0;
  font-size: 14px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer-links a {
  color: #6f7784;
  font-size: 12px;
}

.footer-links a:hover {
  color: #d7dbe3;
}

.footer-copy,
.footer-record {
  margin: 0;
  color: #6f7784;
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

.footer-record {
  margin-top: 6px;
}

.tools {
  position: fixed;
  right: 16px;
  bottom: 70px;
  display: grid;
  gap: 8px;
  z-index: 30;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.tools.is-hidden {
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
}

.tools button {
  min-width: 42px;
  min-height: 38px;
  border: 1px solid #2f72ff;
  border-radius: 4px;
  color: #fff;
  background: #0877eb;
  box-shadow: 0 6px 16px rgba(8, 119, 235, 0.28);
  cursor: pointer;
  transition: background-color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}

.tools button:hover {
  border-color: #5fa8ff;
  background: #1f8bff;
  box-shadow: 0 10px 24px rgba(8, 119, 235, 0.38);
  transform: translateY(-2px);
}

.mobile-menu-btn,
.mobile-home-schedule,
.mobile-channel-nav {
  display: none;
}

/* 首页桌面端：贴近球迷屋电脑端的深色信息流样式。 */
@media (min-width: 1025px) {
  body.home-page {
    --bg: #202124;
    --card: #202124;
    --text: #d7dbe3;
    --muted: #8b929e;
    --line: #30333a;
    --soft: #282b31;
    padding-top: 42px;
    background: #202124;
    color: #d7dbe3;
  }

  .home-page .topbar {
    background: #181a1f;
    border-bottom-color: #2b2e34;
    box-shadow: none;
  }

  .home-page .topbar-inner {
    min-height: 42px;
  }

  .home-page .brand {
    color: #2c68ff;
    font-size: 18px;
  }

  .home-page .brand-logo {
    width: 28px;
    height: 28px;
  }

  .home-page .nav-list a {
    padding: 12px 9px;
    color: #d6dae0;
    font-size: 13px;
  }

  .home-page .nav-list a.active,
  .home-page .nav-list a:hover {
    color: #fff;
  }

  .home-page .nav-list a.active::after,
  .home-page .nav-list a:hover::after {
    display: none;
  }

  .home-page .has-dropdown > a::before,
  .home-page .has-dropdown > .nav-row > a::before {
    right: 2px;
    border-top-color: #bfc4ce;
  }

  .home-page .nav-toggle {
    display: none;
  }

  .home-page .nav-item.has-dropdown .nav-row {
    display: block;
    background: transparent;
    overflow: visible;
  }

  .home-page .nav-item.has-dropdown .nav-row > a {
    display: block;
    padding-right: 22px;
    background: transparent;
  }

  .home-page .desktop-subnav {
    left: 0;
    min-width: 98px;
    background: #33363b;
  }

  .home-page .desktop-subnav a {
    padding: 13px 30px;
    color: #e7e9ef;
    font-size: 16px;
  }

  .home-page .desktop-subnav a:hover {
    background: #3d4046;
    color: #fff;
  }

  .home-page .home-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    max-width: 960px;
    padding-top: 18px;
  }

  .home-page .home-layout > .side:first-child {
    display: none;
  }

  .home-page .panel {
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .home-page .panel + .panel {
    margin-top: 28px;
  }

  .home-page .panel-head {
    min-height: 34px;
    padding: 0;
    border: 0;
  }

  .home-page .panel-head h1,
  .home-page .panel-head h2,
  .home-page .panel-head h3 {
    color: #dce1ea;
    font-size: 16px;
  }

  .home-page .panel-head h1::before,
  .home-page .panel-head h2::before,
  .home-page .panel-head h3::before {
    width: 3px;
    height: 14px;
    background: #2f72ff;
  }

  .home-page .hero-news {
    padding: 0;
  }

  .home-page .hero-carousel {
    height: 380px;
  }

  .home-page .hero-card {
    height: 380px;
    min-height: 380px;
    border-radius: 6px;
    background: #111;
  }

  .home-page .hero-card img {
    width: 100%;
    height: 380px;
    min-height: 380px;
    object-fit: cover;
    object-position: 72% center;
    opacity: 0.92;
  }

  .home-page .hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(10, 10, 12, 0.96) 0%, rgba(10, 10, 12, 0.86) 34%, rgba(10, 10, 12, 0.18) 68%, rgba(10, 10, 12, 0.2) 100%);
  }

  .home-page .hero-card strong {
    z-index: 2;
    max-width: 48%;
    padding: 0;
    left: 60px;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-82%);
    color: #fff;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.42;
    background: none;
  }

  .home-page .hero-tag {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 2;
    padding: 7px 19px;
    border-radius: 0 0 4px 4px;
    background: #0877eb;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }

  .home-page .hero-more {
    position: absolute;
    left: 60px;
    bottom: 55px;
    z-index: 2;
    min-width: 116px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #0877eb;
    color: #fff;
    font-size: 13px;
    text-align: center;
  }

  .home-page .hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 34px;
    height: 52px;
    border: 0;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    font-size: 48px;
    line-height: 1;
    transform: translateY(-50%);
    transition: color 0.18s ease;
    cursor: pointer;
  }

  .home-page .hero-arrow:hover,
  .home-page .hero-arrow:focus-visible {
    color: #0877eb;
    outline: none;
  }

  .home-page .hero-prev {
    left: 18px;
  }

  .home-page .hero-next {
    right: 18px;
  }

  .home-page .hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    display: flex;
    gap: 6px;
    transform: translateX(-50%);
  }

  .home-page .hero-dots i,
  .home-page .hero-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    cursor: pointer;
  }

  .home-page .hero-dots i.active,
  .home-page .hero-dots button.active {
    width: 27px;
    background: #0877eb;
  }

  .home-page .headline-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .home-page .headline-list li,
  .home-page .text-list li,
  .home-page .rank-list li {
    border-color: #2d3036;
  }

  .home-page .headline-list a {
    padding: 0;
    color: #d8dde6;
    font-size: 13px;
    white-space: normal;
  }

  .home-page .headline-list a::before {
    display: none;
  }

  .home-page .media-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }

  .home-page .media-list li {
    padding: 0 0 9px;
    border-color: #2c2f36;
  }

  .home-page .media-link {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
  }

  .home-page .media-title {
    margin-bottom: 4px;
    color: #dce1ea;
    font-size: 13px;
    font-weight: 400;
  }

  .home-page .media-desc {
    display: none;
  }

  .home-page .meta,
  .home-page .panel-more {
    color: #777f8c;
  }

  .home-page .match-list li {
    grid-template-columns: 72px 1fr auto;
    padding: 8px 0;
    border-color: #30333a;
  }

  .home-page .match-status {
    background: #143f82;
  }

  .home-page .rank-list a,
  .home-page .text-list a {
    color: #cbd1dc;
  }

  .home-page .card-grid {
    padding: 0;
  }

  .home-page .card-grid a,
  .home-page .quick-grid a,
  .home-page .tag-grid a {
    background: #25282e;
    border-color: #30333a;
    color: #d7dbe3;
  }

  .home-page .footer {
    background: #222429;
    border-color: #30333a;
    color: #8a919d;
  }
}

@media (max-width: 1024px) {
  .topbar-inner {
    flex-wrap: wrap;
    gap: 0 14px;
    padding-top: 8px;
  }

  .nav {
    order: 3;
    flex-basis: 100%;
    margin: 0 -12px;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    -webkit-overflow-scrolling: touch;
  }

  .nav-list {
    width: max-content;
    min-width: 100%;
    padding: 0 8px;
  }

  .nav-list a {
    padding: 11px 9px;
    font-size: 14px;
  }

  .layout,
  .home-layout {
    grid-template-columns: 1fr;
  }

  .side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .side .panel + .panel {
    margin-top: 0;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  body.home-page {
    padding-top: 58px;
  }

  .home-page .topbar-inner {
    flex-wrap: nowrap;
    gap: 12px;
    min-height: 48px;
    padding-top: 0;
  }

  .home-page .brand {
    color: #2c68ff;
    font-size: 18px;
  }

  .home-page .brand-logo {
    width: 28px;
    height: 28px;
  }

  .home-page .nav {
    order: initial;
    flex: 1 1 auto;
    flex-basis: auto;
    min-width: 0;
    margin: 0;
    border-top: 0;
    overflow: visible;
  }

  .home-page .nav-list {
    align-items: center;
    width: auto;
    min-width: 0;
    padding: 0;
  }

  .home-page .nav-list a {
    padding: 12px 9px;
    color: #d6dae0;
    font-size: 13px;
  }

  .home-page .nav-list a.active,
  .home-page .nav-list a:hover {
    color: #fff;
  }

  .home-page .nav-list a.active::after,
  .home-page .nav-list a:hover::after {
    display: none;
  }

  .hot-match-carousel {
    padding-bottom: 16px;
  }

  .hot-match-track {
    gap: 14px;
  }

  .hot-match-card {
    flex: 0 0 calc((100% - 14px) / 2);
    min-height: 164px;
    padding: 16px;
  }

  .hot-match-meta {
    font-size: 14px;
  }

  .hot-match-teams {
    gap: 12px;
  }

  .hot-match-teams strong {
    font-size: 13px;
  }

  .hot-match-teams img {
    width: 32px;
    height: 32px;
  }

  .hot-match-actions {
    gap: 28px;
  }

  .home-page .nav-toggle {
    display: none;
  }

  .home-page .nav-item.has-dropdown .nav-row {
    display: block;
    background: transparent;
    overflow: visible;
  }

  .home-page .nav-item.has-dropdown .nav-row > a {
    display: block;
    padding-right: 22px;
    background: transparent;
  }

  .home-page .has-dropdown > a::before,
  .home-page .has-dropdown > .nav-row > a::before {
    right: 2px;
    border-top-color: #bfc4ce;
  }

  .home-page .has-dropdown:hover > .desktop-subnav {
    display: block;
  }

  .home-page .desktop-subnav {
    left: 0;
    min-width: 98px;
    background: #33363b;
  }

  .home-page .desktop-subnav a {
    padding: 13px 30px;
    color: #e7e9ef;
    font-size: 16px;
  }

  .home-page .home-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 18px;
    max-width: 960px;
    padding-top: 18px;
  }

  .home-page .home-layout > .side:first-child {
    display: none;
  }

  .home-page .panel {
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .home-page .panel + .panel {
    margin-top: 24px;
  }

  .home-page .panel-head {
    min-height: 34px;
    padding: 0;
    border: 0;
  }

  .home-page .hero-news {
    padding: 0;
  }

  .home-page .hero-carousel {
    height: 320px;
  }

  .home-page .hero-card {
    height: 320px;
    min-height: 320px;
    border-radius: 6px;
    background: #111;
  }

  .home-page .hero-card img {
    width: 100%;
    height: 320px;
    min-height: 320px;
    object-fit: cover;
    object-position: 72% center;
    opacity: 0.92;
  }

  .home-page .hero-card strong {
    z-index: 2;
    max-width: 52%;
    padding: 0;
    left: 42px;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-70%);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.42;
    background: none;
  }

  .home-page .hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(10, 10, 12, 0.94) 0%, rgba(10, 10, 12, 0.8) 35%, rgba(10, 10, 12, 0.18) 70%, rgba(10, 10, 12, 0.2) 100%);
  }

  .home-page .hero-tag {
    position: absolute;
    top: 0;
    right: 24px;
    z-index: 2;
    padding: 7px 17px;
    border-radius: 0 0 4px 4px;
    background: #0877eb;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }

  .home-page .hero-more {
    position: absolute;
    left: 42px;
    bottom: 45px;
    z-index: 2;
    min-width: 112px;
    padding: 9px 16px;
    border-radius: 999px;
    background: #0877eb;
    color: #fff;
    font-size: 13px;
    text-align: center;
  }

  .home-page .hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 34px;
    height: 52px;
    border: 0;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    font-size: 48px;
    line-height: 1;
    transform: translateY(-50%);
    transition: color 0.18s ease;
    cursor: pointer;
  }

  .home-page .hero-arrow:hover,
  .home-page .hero-arrow:focus-visible {
    color: #0877eb;
    outline: none;
  }

  .home-page .hero-prev {
    left: 14px;
  }

  .home-page .hero-next {
    right: 14px;
  }

  .home-page .hero-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    display: flex;
    gap: 6px;
    transform: translateX(-50%);
  }

  .home-page .hero-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
  }

  .home-page .hero-dots button.active {
    width: 27px;
    background: #0877eb;
  }

  .home-page .headline-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .home-page .headline-list a {
    padding: 0;
    color: #d8dde6;
    font-size: 13px;
    white-space: normal;
  }

  .home-page .headline-list a::before {
    display: none;
  }
}

@media (max-width: 768px) {
  body.home-page {
    --bg: #202124;
    --card: #202124;
    --text: #d7dbe3;
    --muted: #8b929e;
    --line: #30333a;
    --soft: #282b31;
    padding-top: 48px;
    padding-bottom: 0;
    background: #202124;
    color: #d7dbe3;
  }

  .home-page,
  .home-page .topbar,
  .home-page .topbar-inner,
  .home-page .home-layout,
  .home-page .main,
  .home-page .panel,
  .home-page .hero-news,
  .home-page .hero-carousel {
    max-width: 100%;
  }

  body.home-page.mobile-nav-open {
    overflow: hidden;
  }

  .search-layer {
    width: calc(100% - 24px);
    padding: 22px 18px;
    background: #202124;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  }

  .search-close {
    background: #25282e;
    color: #d7dbe3;
  }

  .search-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .search-tabs button {
    min-width: 0;
    width: 100%;
    border-color: #30333a;
    background: #25282e;
    color: #d7dbe3;
  }

  .search-engine-form input {
    border-color: #30333a;
    background: #181a1f;
    color: #d7dbe3;
  }

  .search-hot a {
    background: #25282e;
    color: #b9c0cc;
  }

  .container {
    width: calc(100% - 16px);
  }

  .topbar {
    background: #181a1f;
    border-bottom-color: #2b2e34;
    box-shadow: none;
  }

  .home-page .topbar-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 8px;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding-top: 0;
  }

  .brand {
    font-size: 19px;
  }

  .home-page .brand {
    font-size: 0;
    padding-left: 8px;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #30333a;
    border-radius: 8px;
    background: #20242a;
    color: #d7dbe3;
    font-size: 20px;
  }

  .home-page .app-open {
    display: none;
  }

  .home-page .mobile-channel-nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .mobile-channel-nav a {
    position: relative;
    flex: 0 0 auto;
    padding: 11px 0;
    color: #8b929e;
    font-size: 16px;
    font-weight: 700;
  }

  .home-page .mobile-channel-nav a:first-child {
    color: #fff;
  }

  .home-page .mobile-channel-nav a:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #9aa0a8, #2c6bff);
  }

  .home-page .nav-search {
    grid-column: 3;
    grid-row: 1;
    color: #cfd4df;
  }

  .home-page .nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    overflow: hidden;
    border-top: 0;
  }

  .home-page .nav-list {
    width: 100%;
    min-width: 100%;
    padding: 0;
  }

  .home-page .nav-list a {
    padding: 11px 12px;
    color: #cbd1dc;
    font-size: 18px;
    font-weight: 600;
  }

  .home-page .nav-list a.active {
    color: #fff;
  }

  .home-page .nav-list a.active::after,
  .home-page .nav-list a:hover::after {
    right: 12px;
    left: 12px;
    height: 3px;
    background: #2c6bff;
  }

  .home-page .mobile-menu-btn {
    grid-column: 4;
    grid-row: 1;
  }

  .home-page .nav.is-open {
    display: block;
    max-height: calc(100vh - 56px);
    max-height: calc(100dvh - 56px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 4px 0 10px;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .nav.is-open .nav-list {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 12px;
    touch-action: pan-y;
  }

  .home-page .nav.is-open .nav-item {
    min-width: 0;
  }

  .home-page .nav.is-open .nav-list a {
    padding: 12px 14px;
    text-align: left;
    border-radius: 8px;
    background: #25282e;
    font-size: 16px;
  }

  .home-page .nav.is-open .nav-list a::after {
    display: none;
  }

  .home-page .nav-item.has-dropdown > a::before,
  .home-page .nav-item.has-dropdown > .nav-row > a::before {
    display: none;
  }

  .home-page .nav-item.has-dropdown .nav-row {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 8px;
    background: #25282e;
  }

  .home-page .nav-item.has-dropdown .nav-row > a {
    flex: 1;
    min-width: 0;
    border-radius: 0;
    background: transparent;
  }

  .home-page .nav-toggle {
    flex: 0 0 48px;
    width: 48px;
    border: 0;
    border-left: 1px solid #30333a;
    background: #2b2e34;
    color: #bfc4ce;
    cursor: pointer;
  }

  .home-page .nav-toggle::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid currentColor;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
  }

  .home-page .nav-item.has-dropdown.sub-open .nav-toggle::after {
    transform: rotate(180deg);
  }

  .home-page .nav-item.has-dropdown .desktop-subnav {
    display: none;
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 0;
    border-radius: 8px;
    background: #202124;
    box-shadow: none;
  }

  .home-page .nav-item.has-dropdown.sub-open .desktop-subnav {
    display: block;
  }

  .home-page .nav-item.has-dropdown .desktop-subnav a {
    padding: 11px 14px 11px 22px;
    color: #b9c0cc;
    font-size: 15px;
    font-weight: 400;
    background: #202124;
    border-bottom: 1px solid #30333a;
  }

  .home-page .nav-item.has-dropdown .desktop-subnav li:last-child a {
    border-bottom: 0;
  }

  .desktop-subnav {
    display: none !important;
  }

  .home-page .nav-item.has-dropdown.sub-open .desktop-subnav {
    display: block !important;
  }

  .layout,
  .home-layout {
    margin-top: 8px;
  }

  .home-page .home-layout {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    margin-top: 0;
  }

  .home-page .home-layout > .side:first-child,
  .home-page .home-layout > .side:last-child {
    display: none;
  }

  .home-page .panel {
    border: 0;
    border-radius: 0;
    background: #202124;
  }

  .home-page .panel + .panel {
    margin-top: 8px;
  }

  .home-page .hero-news {
    overflow: hidden;
    padding: 0;
  }

  .home-page .hero-card {
    margin: 0;
    height: 176px;
    min-height: 176px;
    border-radius: 6px;
  }

  .home-page .hero-carousel {
    display: grid;
    grid-template-columns: minmax(0, 10fr) minmax(0, 76fr) minmax(0, 10fr);
    gap: 2%;
    align-items: center;
    width: 100%;
    margin: 10px 0 0;
    height: clamp(132px, 38.8vw, 160px);
    border-radius: 6px;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
  }

  .home-page .hero-carousel.is-dragging {
    cursor: grabbing;
  }

  .home-page .hero-carousel .hero-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: none;
    width: auto;
    height: 100%;
    min-height: 0;
    opacity: 1;
    transform: none;
    transition: opacity 0.32s ease;
    pointer-events: none;
  }

  .home-page .hero-carousel .hero-card.active,
  .home-page .hero-carousel .hero-card.is-before,
  .home-page .hero-carousel .hero-card.is-after {
    display: block;
  }

  .home-page .hero-carousel .hero-card.is-before {
    order: 1;
    height: 84%;
    opacity: 0.85;
  }

  .home-page .hero-carousel .hero-card.active {
    order: 2;
    z-index: 2;
    pointer-events: auto;
  }

  .home-page .hero-carousel .hero-card.is-after {
    order: 3;
    height: 84%;
    opacity: 0.85;
  }

  .home-page .hero-carousel .hero-card.is-prev {
    transform: none;
  }

  .home-page .hero-card img,
  .home-page .hero-carousel .hero-card.is-before img,
  .home-page .hero-carousel .hero-card.is-after img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .home-page .hero-card strong {
    padding: 38px 14px 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.25;
  }

  .home-page .hero-tag,
  .home-page .hero-arrow,
  .home-page .hero-more {
    display: none;
  }

  .home-page .hero-dots {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
  }

  .home-page .hero-dots button {
    width: 10px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
  }

  .home-page .hero-dots button.active {
    width: 18px;
    background: #fff;
  }

  .home-page .headline-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 12px 16px 10px;
    background: #202124;
  }

  .home-page .headline-list li {
    min-width: 0;
    border: 0;
  }

  .home-page .headline-list a {
    max-width: 100%;
    padding: 7px 0;
    overflow: hidden;
    color: #d8dde6;
    font-size: 18px;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .home-page .headline-list a::before {
    content: "置顶";
    width: auto;
    height: auto;
    margin: 0 8px 0 0;
    border-radius: 0;
    color: #ef4b55;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
  }

  .featured-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 8px;
  }

  .featured-news-card strong,
  .side-topic-list strong {
    font-size: 12px;
  }

  .news-compact-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 16px;
  }

  .news-compact-list a {
    font-size: 14px;
  }

  .home-match-panel {
    overflow: hidden;
  }

  .home-match-panel .panel-head {
    display: block;
  }

  .home-match-panel .match-filter {
    max-width: 100%;
    margin: 10px 0 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .home-match-panel .match-filter .league-tab {
    flex: 0 0 auto;
  }

  .hot-match-carousel {
    padding: 0 0 14px;
  }

  .hot-match-track {
    gap: 10px;
    overflow-x: hidden;
  }

  .hot-match-card {
    flex: 0 0 100%;
    min-height: 150px;
    padding: 14px;
  }

  .hot-match-arrow {
    top: 50%;
    width: 28px;
    height: 48px;
    font-size: 42px;
  }

  .hot-match-prev {
    left: 6px;
  }

  .hot-match-next {
    right: 6px;
  }

  .match-table {
    display: grid;
    gap: 10px;
    padding: 0 12px 12px;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
  }

  .match-date-head {
    display: none;
  }

  .match-table-head {
    width: 760px;
  }

  .match-table > a,
  .match-table > div:not(.match-date-head) {
    display: grid;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas:
      "league time time"
      "home score away"
      ". actions .";
    gap: 10px 8px;
    align-items: center;
    width: auto;
    max-width: 100%;
    min-height: 150px;
    padding: 14px;
    overflow: hidden;
    border: 1px solid #303b50;
    border-radius: 16px;
    color: #cfd8e6;
    background: #25282e;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
    font-size: 13px;
  }

  .match-table .league-cell {
    grid-area: league;
    justify-self: start;
    gap: 8px;
    color: #b8c7dc;
    font-size: 13px;
  }

  .match-table .league-cell img {
    width: 24px;
    height: 24px;
  }

  .match-table > a > span:nth-of-type(2),
  .match-table > div:not(.match-date-head) > span:nth-of-type(2) {
    grid-area: time;
    justify-self: start;
    color: #d7dbe3;
    font-size: 15px;
  }

  .match-table .home-team {
    grid-area: home;
    min-width: 0;
    justify-self: end;
    justify-content: flex-end;
  }

  .match-table .away-team {
    grid-area: away;
    min-width: 0;
    justify-self: start;
    justify-content: flex-start;
  }

  .match-table strong {
    width: 100%;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
    color: #f2f5fb;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
  }

  .match-table strong img {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    padding: 4px;
    background: #303849;
  }

  .match-table b {
    grid-area: score;
    min-width: 66px;
    overflow: visible;
    color: #ff4d57;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: clip;
  }

  .match-state,
  .match-state.is-live {
    grid-area: actions;
    justify-self: center;
    transform: translateX(-54px);
    min-width: auto;
    min-height: auto;
    color: #ff4d57;
    background: transparent;
    font-size: 14px;
    font-weight: 800;
  }

  .match-table em,
  .match-table em.live-link {
    grid-area: actions;
    justify-self: center;
    transform: translateX(54px);
    min-width: 98px;
    min-height: 38px;
    border-radius: 12px;
    color: #fff;
    background: #0877eb;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-home-schedule {
    display: block;
    margin-top: 8px;
    background: #202124;
  }

  .mobile-schedule-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    color: #8fb0ff;
    background: #25282e;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-schedule-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-schedule-list li {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-height: 74px;
    padding: 12px 16px;
    border-bottom: 1px solid #30333a;
  }

  .mobile-game-time {
    color: #8d95a1;
    font-size: 15px;
  }

  .mobile-team {
    overflow: hidden;
    color: #d7dbe3;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mobile-team.live {
    color: #d83a42;
  }

  .mobile-team.right {
    text-align: right;
  }

  .mobile-schedule-list strong {
    min-width: 72px;
    color: #fff;
    font-size: 22px;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-schedule-list em {
    color: #9db7ed;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
  }

  .mobile-schedule-list small {
    position: absolute;
    top: 10px;
    right: 16px;
    color: #a0a5af;
    font-size: 13px;
  }

  .home-page .panel-head {
    min-height: 42px;
    padding: 0 16px;
    border-bottom: 1px solid #30333a;
  }

  .home-page .panel-head h2 {
    font-size: 17px;
  }

  .home-page .panel-head h2::before {
    width: 3px;
    height: 16px;
    background: #2c6bff;
  }

  .media-link {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 10px;
  }

  .media-list li {
    padding: 12px 10px;
  }

  .home-page .media-list li {
    padding: 14px 16px;
    border-color: #30333a;
  }

  .home-page .media-link {
    grid-template-columns: minmax(0, 1fr) 144px;
  }

  .home-page .media-link .thumb {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .home-page .media-link > span:last-child {
    display: contents;
  }

  .home-page .media-title {
    grid-column: 1;
    margin: 0;
    color: #dce1ea;
    font-size: 19px;
    line-height: 1.45;
  }

  .home-page .media-desc {
    display: none;
  }

  .home-page .meta {
    grid-column: 1;
    color: #b0b4bc;
    font-size: 14px;
  }

  .home-page .footer {
    padding: 24px 0 22px;
    background: #202124;
    border-color: #24272d;
    color: #8a919d;
  }

  .footer-groups {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  .footer-links {
    gap: 10px 14px;
  }

  .footer-record {
    padding: 0 8px;
  }

  .home-page .tools button {
    border-color: #2f72ff;
    background: #0877eb;
    color: #fff;
  }

  .media-title {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .media-desc {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.45;
  }

  .side {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .media-link {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .media-desc {
    display: none;
  }

  .match-list li {
    grid-template-columns: 58px 1fr;
  }

  .match-status {
    grid-column: 2;
    width: max-content;
  }
}

@media (max-width: 1024px) {
  .home-page .home-layout > .side.topic-section {
    display: block;
    width: 100%;
  }

  .home-page .topic-section .topic-card-panel {
    width: 100%;
  }

  .home-video-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 10px 0 0;
  }

  .video-thumb img {
    height: 88px;
  }

  .topic-card-panel .side-topic-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 10px 0 0;
  }

  .topic-card-panel .side-topic-list img {
    width: 100%;
    height: 88px;
  }

  .topic-tag-panel {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .home-page .home-layout > .side.topic-section {
    display: block;
    width: 100%;
    margin-top: 8px;
  }

  .home-video-panel {
    margin-bottom: 8px;
  }

  .home-video-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 12px;
  }

  .video-text-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 6px 12px 0;
  }

  .video-thumb img {
    height: 82px;
  }

  .topic-card-panel .side-topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 12px;
  }

  .topic-card-panel .side-topic-list img {
    height: 82px;
  }

  .topic-tag-panel {
    margin: 10px 12px 0;
    padding: 12px;
  }
}

/* Sub pages */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px auto;
  color: #8b929e;
  font-size: 13px;
}

.breadcrumb span:not(:last-child)::after,
.breadcrumb a:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: #596170;
}

.sub-layout {
  margin-bottom: 24px;
}

.sub-layout .panel {
  background: #202124;
  border-color: #30333a;
}

.sub-layout .panel-head {
  background: #202124;
  border-bottom-color: #30333a;
}

.sub-layout .panel-head h1::before,
.sub-layout .panel-head h2::before,
.sub-layout .panel-head h3::before {
  background: #2f72ff;
}

.sub-layout .side {
  gap: 8px;
}

.sub-layout .side .panel + .panel {
  margin-top: 8px;
}

.sub-layout .side .panel-head {
  min-height: 32px;
  padding: 0 10px;
}

.sub-layout .side .panel-head h2,
.sub-layout .side .panel-head h3 {
  font-size: 14px;
}

.sub-layout .side .panel-head h2::before,
.sub-layout .side .panel-head h3::before {
  width: 3px;
  height: 12px;
  margin-right: 6px;
}

.sub-layout .side .text-list a {
  padding: 7px 10px;
  font-size: 12px;
  line-height: 1.35;
}

.sub-layout .side .text-list a::before {
  margin-right: 6px;
}

.sub-layout .side .tag-grid {
  gap: 4px;
  padding: 6px 8px;
}

.sub-layout .side .tag-grid a {
  padding: 4px 5px;
  border-radius: 3px;
  font-size: 11px;
  line-height: 1.15;
}

.league-index-layout .league-main {
  min-width: 0;
}

.league-index-layout .league-main > .panel + .panel {
  margin-top: 8px;
}

.league-index-layout .panel-head {
  min-height: 34px;
  padding: 0 12px;
  background: #25282e;
  border-radius: 4px;
}

.league-index-layout .league-tag-list {
  gap: 10px;
  padding: 10px;
}

.article {
  padding: 24px 28px;
}

.article h1 {
  margin: 0 0 12px;
  color: #f2f5fb;
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #30333a;
  color: #8b929e;
}

.article-cover {
  margin: 18px auto;
  overflow: hidden;
  border-radius: 8px;
}

.article-cover img {
  width: 100%;
  display: block;
}

.article-body {
  color: #d7dbe3;
  font-size: 16px;
  line-height: 1.9;
}

.article-body p {
  margin: 0 0 16px;
}

.article-tags {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #30333a;
}

.article-tags h2 {
  margin: 0 0 12px;
  color: #f2f5fb;
  font-size: 18px;
}

.article-tags .tag-grid {
  padding: 0;
}

.video-player {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background: #15171c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.video-player::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(9, 13, 22, 0.42), rgba(9, 13, 22, 0.68));
}

.video-player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0877eb;
  font-size: 32px;
  transform: translate(-50%, -50%);
}

.video-playlist {
  margin: 18px 0;
  padding: 18px 20px;
  border-radius: 8px;
  background: #202124;
}

.video-playlist h2 {
  margin: 0 0 16px;
  color: #f2f5fb;
  font-size: 20px;
  line-height: 1.3;
}

.video-playlist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
}

.video-playlist-links a {
  color: #d7dbe3;
  font-size: 16px;
  line-height: 1.6;
}

.video-playlist-links a:hover {
  color: #2f72ff;
}

.video-list-page {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 16px;
  list-style: none;
}

.video-list-page a {
  display: flex;
  flex-direction: column;
  height: 218px;
  overflow: hidden;
  border: 1px solid #30333a;
  border-radius: 8px;
  background: #282b31;
}

.video-cover {
  position: relative;
  display: block;
  flex: 0 0 118px;
  overflow: hidden;
  background: #15171c;
}

.video-cover::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 119, 235, 0.88);
  transform: translate(-50%, -50%);
  font-size: 18px;
}

.video-cover img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.video-list-page a:hover .video-cover img {
  transform: scale(1.04);
}

.video-list-page strong {
  display: -webkit-box;
  flex: 0 0 auto;
  box-sizing: border-box;
  height: 58px;
  padding: 9px 10px 5px;
  overflow: hidden;
  color: #f2f5fb;
  font-size: 14px;
  line-height: 22px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.video-list-page em {
  display: block;
  flex: 0 0 auto;
  padding: 0 10px 12px;
  color: #8b929e;
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .video-list-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-list-page a {
    height: 226px;
  }

  .video-cover {
    flex-basis: 126px;
  }
}

.quick-grid,
.tag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5px;
  padding: 5px;
}

.quick-grid a,
.tag-grid a,
.line-btn,
.pager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #30333a;
  border-radius: 4px;
  background: #282b31;
}

.tag-grid a {
  flex: 0 0 auto;
  min-height: auto;
  padding: 5px;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.quick-grid a:hover,
.tag-grid a:hover,
.line-btn:hover,
.pager a:hover {
  border-color: #2f72ff;
  background: #20345a;
  color: #fff;
}

.league-tag-list {
  gap: 10px;
  padding: 10px;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 18px 14px 22px;
}

.pager a.active {
  border-color: #2f72ff;
  color: #fff;
  background: #0877eb;
}

.live-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 0.9fr) minmax(240px, 1fr);
  align-items: center;
  min-height: 194px;
  overflow: hidden;
  border-radius: 10px;
  color: #f2f5fb;
  background: #17191d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.live-main {
  min-width: 0;
}

.live-main > .panel + .panel {
  margin-top: 14px;
}

.live-detail-panel {
  overflow: hidden;
  border-radius: 10px;
}

.live-detail-card::before,
.live-detail-card::after {
  content: "";
  position: absolute;
  top: -22px;
  bottom: -22px;
  width: 150px;
  opacity: 0.8;
}

.live-detail-card::before {
  left: 70px;
  transform: skewX(-16deg);
  background: linear-gradient(135deg, rgba(218, 63, 70, 0.9), rgba(95, 37, 43, 0.25));
}

.live-detail-card::after {
  right: 70px;
  transform: skewX(16deg);
  background: linear-gradient(225deg, rgba(18, 121, 210, 0.9), rgba(23, 67, 112, 0.25));
}

.live-detail-side,
.live-detail-center {
  position: relative;
  z-index: 1;
}

.live-detail-side {
  display: grid;
  grid-template-columns: 32px 92px minmax(130px, 1fr);
  gap: 14px;
  align-items: center;
  padding: 24px 18px;
}

.live-detail-away {
  grid-template-columns: minmax(130px, 1fr) 92px 32px;
}

.live-detail-side img {
  width: 92px;
  height: 92px;
  min-width: 92px;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  background: #fff;
}

.live-detail-side strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 38px;
  padding: 0 14px;
  overflow: hidden;
  border-radius: 999px;
  color: #f4f7ff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.live-team-mark {
  color: #a8afbd;
  font-size: 13px;
}

.live-detail-away strong {
  grid-column: 1;
  grid-row: 1;
}

.live-detail-away img {
  grid-column: 2;
  grid-row: 1;
}

.live-detail-away .live-team-mark {
  grid-column: 3;
  grid-row: 1;
}

.live-detail-away .live-team-mark {
  text-align: right;
}

.live-detail-center {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 22px 10px;
  text-align: center;
}

.live-detail-league,
.live-detail-center time {
  color: #aeb5c2;
  font-style: normal;
  font-size: 13px;
}

.live-detail-center em {
  color: #0d73d8;
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
}

.live-detail-score {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #fff;
}

.live-detail-score b {
  min-width: 34px;
  font-size: 34px;
  line-height: 1;
}

.live-detail-score span {
  color: #0d73d8;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
}

.live-sources-panel .line-btn,
.backup-sources-panel .line-btn {
  border-color: #0d73d8;
  color: #fff;
  background: #0d73d8;
}

.live-sources-panel .line-btn:hover,
.backup-sources-panel .line-btn:hover {
  border-color: #2f8df3;
  background: #2f8df3;
}

.live-info-list {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.live-info-list p {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 11px 14px;
  border: 1px solid #30333a;
  border-radius: 6px;
  background: #25282e;
}

.live-info-list span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8b929e;
  font-size: 13px;
}

.live-info-list span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #596170;
}

.live-info-list strong {
  min-width: 0;
  color: #f2f5fb;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.live-info-list p:last-child strong {
  color: #0d73d8;
}

.live-info-extra {
  padding: 4px 14px 16px;
  color: #c7cdd8;
  font-size: 14px;
  line-height: 1.9;
}

.live-info-extra p {
  margin: 0 0 12px;
}

.live-info-extra a {
  color: #e23b45;
  font-weight: 700;
}

.live-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 8px 0 18px;
  padding-top: 4px;
}

.live-related-links a {
  color: #c7cdd8;
  font-weight: 400;
  white-space: nowrap;
}

.live-related-links a:hover {
  color: #2f8df3;
}

.live-info-note {
  margin: 0;
  color: #f2f5fb;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.live-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 16px;
  padding: 14px;
}

.live-topic-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid #30333a;
  border-radius: 5px;
  background: #282b31;
}

.live-topic-grid img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.live-topic-grid strong {
  display: block;
  padding: 8px 10px 10px;
  overflow: hidden;
  color: #f2f5fb;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.live-topic-grid a:hover {
  border-color: #2f72ff;
}

.player-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.player-card {
  padding: 14px;
  text-align: center;
  border: 1px solid #30333a;
  border-radius: 6px;
  background: #282b31;
}

.player-card img {
  width: 86px;
  height: 86px;
  margin: 0 auto 10px;
  border-radius: 50%;
  object-fit: cover;
  background: #30333a;
}

.player-card strong {
  display: block;
  color: #f2f5fb;
  font-size: 16px;
}

.player-card span {
  color: #8b929e;
}

.player-profile-panel {
  padding-bottom: 18px;
}

.player-profile-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  margin: 18px;
  padding: 18px;
  border: 1px solid #30333a;
  border-radius: 12px;
  background: #25282e;
}

.player-profile-main {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  min-height: 170px;
  border-radius: 10px;
  background: #202124;
}

.player-profile-main img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  background: #30333a;
}

.player-profile-main strong {
  color: #f2f5fb;
  font-size: 28px;
  line-height: 1.1;
}

.player-profile-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.player-profile-facts div {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid #30333a;
  border-radius: 10px;
  background: #202124;
}

.player-profile-facts span {
  color: #8b929e;
  font-size: 13px;
}

.player-profile-facts strong {
  color: #f2f5fb;
  font-size: 15px;
}

.player-bio,
.player-team-section {
  margin: 0 18px;
  padding-top: 20px;
  border-top: 1px solid #30333a;
}

.player-bio h2,
.player-team-section h2 {
  margin: 0 0 14px;
  color: #f2f5fb;
  font-size: 22px;
}

.player-bio p {
  margin: 0 0 20px;
  color: #b9c0cc;
  font-size: 14px;
  line-height: 1.9;
}

.player-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.player-team-grid a {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 108px;
  padding: 16px 10px 14px;
  border: 1px solid #30333a;
  border-radius: 10px;
  background: #25282e;
}

.player-team-grid img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  background: #30333a;
}

.player-team-grid strong {
  overflow: hidden;
  max-width: 100%;
  color: #f2f5fb;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.player-team-grid span {
  color: #25b66f;
  font-size: 12px;
}

.player-team-grid a:hover {
  border-color: #2f72ff;
}

.topic-hero {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.topic-hero img {
  width: 100%;
  border-radius: 8px;
}

.topic-hero h1 {
  margin: 0 0 8px;
  color: #f2f5fb;
  font-size: 28px;
}

.topic-hero p {
  color: #aeb6c4;
  line-height: 1.75;
}

.topic-live-sources {
  padding: 0 18px 8px;
}

.topic-live-sources h2 {
  margin: 0 0 10px;
  color: #f2f5fb;
  font-size: 18px;
}

.topic-live-sources .live-lines {
  padding: 0;
}

.topic-live-sources .line-btn {
  border-color: #0d73d8;
  color: #fff;
  background: #0d73d8;
}

.topic-live-sources .line-btn:hover {
  border-color: #2f8df3;
  background: #2f8df3;
}

.topic-news-list {
  margin: 0;
  padding: 4px 18px 18px;
  list-style: none;
}

.topic-news-list li {
  border-bottom: 1px dashed #30333a;
}

.topic-news-list li:last-child {
  border-bottom: 0;
}

.topic-news-list a {
  display: block;
  overflow: hidden;
  padding: 11px 0;
  color: #d7dbe3;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.topic-news-list a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px 3px 0;
  border-radius: 50%;
  background: #596170;
}

.topic-news-list a:hover {
  color: #2f8df3;
}

.topic-featured-section {
  padding-top: 4px;
}

.topic-featured-section h2 {
  margin: 0;
  padding: 0 18px 4px;
  color: #f2f5fb;
  font-size: 18px;
}

@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }

  .sub-layout {
    margin-top: 8px;
  }

  .article {
    padding: 16px 12px;
  }

  .article h1,
  .topic-hero h1 {
    font-size: 22px;
    text-align: left;
  }

  .article-meta {
    justify-content: flex-start;
  }

  .video-player {
    min-height: 220px;
  }

  .video-playlist {
    margin: 14px 0;
    padding: 14px 12px;
  }

  .video-playlist h2 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .video-playlist-links {
    display: grid;
    gap: 8px;
  }

  .video-playlist-links a {
    font-size: 14px;
  }

  .video-list-page {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .video-list-page a {
    height: 214px;
  }

  .video-cover {
    flex-basis: 116px;
  }

  .video-list-page strong {
    font-size: 14px;
  }

  .live-detail-card {
    grid-template-columns: minmax(90px, 1fr) minmax(120px, 1.2fr) minmax(90px, 1fr);
    min-height: 152px;
  }

  .live-detail-card::before,
  .live-detail-card::after {
    width: 80px;
  }

  .live-detail-card::before {
    left: 20px;
  }

  .live-detail-card::after {
    right: 20px;
  }

  .live-detail-side {
    grid-template-columns: 22px minmax(48px, 68px);
    justify-items: center;
    gap: 8px;
    padding: 16px 8px;
  }

  .live-detail-away {
    grid-template-columns: minmax(48px, 68px) 22px;
  }

  .live-detail-side strong {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 28px;
    padding: 0 8px;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .live-detail-away strong {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .live-detail-away img {
    grid-column: 1;
    grid-row: 1;
  }

  .live-detail-away .live-team-mark {
    grid-column: 2;
    grid-row: 1;
  }

  .live-detail-side img {
    width: 68px;
    height: 68px;
    min-width: 68px;
  }

  .live-team-mark,
  .live-detail-league,
  .live-detail-center time,
  .live-detail-center em {
    font-size: 11px;
  }

  .live-detail-center {
    gap: 8px;
    padding: 14px 4px;
  }

  .live-detail-score {
    gap: 10px;
  }

  .live-detail-score b {
    min-width: 24px;
    font-size: 26px;
  }

  .live-detail-score span {
    font-size: 13px;
  }

  .live-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
  }

  .live-topic-grid img {
    height: 82px;
  }

  .live-topic-grid strong {
    padding: 7px 8px 8px;
    font-size: 12px;
  }

  .player-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .player-profile-card {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 12px;
    padding: 12px;
  }

  .player-profile-main {
    min-height: 150px;
  }

  .player-profile-main img {
    width: 96px;
    height: 96px;
  }

  .player-profile-main strong {
    font-size: 24px;
  }

  .player-profile-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .player-profile-facts div {
    min-height: 64px;
    padding: 10px 12px;
  }

  .player-bio,
  .player-team-section {
    margin: 0 12px;
    padding-top: 16px;
  }

  .player-bio h2,
  .player-team-section h2 {
    font-size: 20px;
  }

  .player-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .topic-hero {
    grid-template-columns: 1fr;
    padding: 12px;
  }
}

.home-page .news-list-page {
  display: block;
  grid-template-columns: none;
  gap: 0;
}

.home-page .news-list-page li {
  padding: 16px 14px;
  border-bottom: 1px solid #30333a;
}

.home-page .news-list-page .media-link {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
}

.home-page .news-list-page .media-link .thumb {
  grid-column: auto;
  grid-row: auto;
}

.home-page .news-list-page .media-link > span:last-child {
  display: block;
}

.home-page .news-list-page .media-title {
  margin: 0 0 8px;
  color: #dce1ea;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.home-page .news-list-page .media-desc {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: #9aa2af;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
  .home-page .news-list-page li {
    padding: 12px;
  }

  .home-page .news-list-page .media-link {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 10px;
  }

  .home-page .news-list-page .thumb {
    height: 118px;
  }

  .home-page .news-list-page .media-title {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .home-page .news-list-page .media-link {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .home-page .news-list-page .thumb {
    height: 108px;
  }

  .home-page .news-list-page .media-title {
    font-size: 14px;
    line-height: 1.35;
  }
}

.home-page .tools {
  position: fixed;
  right: 16px;
  bottom: 70px;
  z-index: 30;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .video-list-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
  }

  .video-list-page a {
    height: 214px;
  }

  .video-cover {
    flex-basis: 116px;
  }
}

@media (max-width: 768px) {
  .video-list-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
  }

  .video-list-page a {
    height: 196px;
    border-radius: 6px;
  }

  .video-cover {
    flex-basis: 104px;
  }

  .video-cover::after {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .video-list-page strong {
    height: 52px;
    padding: 8px 8px 4px;
    font-size: 13px;
    line-height: 20px;
  }

  .video-list-page em {
    padding: 0 8px 10px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .video-list-page {
    gap: 8px;
    padding: 8px;
  }

  .video-list-page a {
    height: 188px;
  }

  .video-cover {
    flex-basis: 98px;
  }
}

.zhibo_btn a {
    background: #fe2d2d;
    color: #ffffff;
    border-radius: 18px;
    text-align: center;
    padding: 0px 18px;
    line-height: 36px;
    font-size: 16px;
    margin: 0px 5px 10px 0;
    display: inline-block;
    text-indent: 0;
    font-weight: 600;
    transition: transform 0.5s;
    animation: spring-animation 1s infinite alternate;
}
.zhibo_btn a:active {
  transform: scale(0.9);
}
 
@keyframes spring-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}