:root {
    --tp6-accent: #f4511e;
    --tp6-accent-dark: #d83c0c;
    --tp6-accent-soft: #fff2ed;
    --tp6-live-blue: #2388d7;
    --tp6-ink: #202124;
    --tp6-ink-soft: #424750;
    --tp6-muted: #777c84;
    --tp6-page: #fdfdfd;
    --tp6-surface: #fdfdfd;
    --tp6-surface-soft: #f7f7f7;
    --tp6-line: #e2e2e2;
    --tp6-radius: 2px;
    --tp6-shell: 1200px;
    --tp6-container: var(--tp6-shell);
    --tp6-shadow: 0 4px 12px rgba(34, 34, 34, .07);
    --tp6-font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

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

html {
    color-scheme: light;
    background: var(--tp6-page);
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--tp6-ink);
    background: var(--tp6-page);
    font-family: var(--tp6-font);
    font-size: 14px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: var(--tp6-font);
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

a:hover {
    color: var(--tp6-accent);
}

button {
    color: inherit;
}

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

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid rgba(238, 77, 45, .35);
    outline-offset: 3px;
}

.tp6-container,
.tp6-home-shell,
.tp6-page-title,
.tp6-two-col,
.tp6-standings-shell,
.tp6-page-shell {
    width: min(var(--tp6-container), calc(100% - 32px));
    margin-inline: auto;
}

.tp6-header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 70px;
    background: rgba(251, 251, 252, .96);
    box-shadow: 0 7px 22px rgba(48, 55, 68, .12);
    backdrop-filter: blur(12px);
}

.tp6-nav {
    display: flex;
    align-items: center;
    width: min(var(--tp6-container), calc(100% - 32px));
    height: 70px;
    margin-inline: auto;
    gap: 28px;
}

.tp6-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-width: 180px;
    max-width: 260px;
    gap: 10px;
    color: var(--tp6-accent);
}

.tp6-brand:hover {
    color: var(--tp6-accent-dark);
}

.tp6-logo {
    width: auto;
    max-width: 220px;
    height: 42px;
    object-fit: contain;
}

.tp6-logo-mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: var(--tp6-radius);
    color: #fff8f4;
    background: var(--tp6-accent);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.tp6-logo-text {
    overflow: hidden;
    color: var(--tp6-accent);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp6-nav-items {
    display: flex;
    min-width: 0;
    align-self: stretch;
    align-items: center;
    gap: 2px;
}

.tp6-nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 70px;
    padding: 0 17px;
    color: #4c5360;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.tp6-nav-item::after {
    position: absolute;
    right: 17px;
    bottom: 0;
    left: 17px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--tp6-accent);
    content: "";
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .18s ease, transform .18s ease;
}

.tp6-nav-item:hover,
.tp6-nav-item.nav-selected {
    color: var(--tp6-accent);
}

.tp6-nav-item:hover::after,
.tp6-nav-item.nav-selected::after {
    opacity: 1;
    transform: scaleX(1);
}

.tp6-header-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 38px;
    margin-left: auto;
    padding: 0 14px;
    border-radius: var(--tp6-radius);
    color: var(--tp6-muted);
    background: var(--tp6-surface-soft);
    font-weight: 600;
    white-space: nowrap;
}

.tp6-header-link:hover {
    color: var(--tp6-accent);
    background: var(--tp6-accent-soft);
}

.tp6-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface-soft);
    cursor: pointer;
}

.tp6-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--tp6-ink);
    transition: transform .18s ease, opacity .18s ease;
}

.tp6-nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.tp6-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.tp6-nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.tp6-bread {
    display: flex;
    align-items: center;
    min-height: 52px;
    gap: 8px;
    color: var(--tp6-muted);
    font-size: 13px;
}

.tp6-bread b {
    color: var(--tp6-ink-soft);
    font-weight: 650;
}

.tp6-bread em {
    color: #a8adb6;
    font-style: normal;
}

.tp6-page-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    min-height: 102px;
    margin-bottom: 18px;
    padding: 20px 24px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface);
    box-shadow: var(--tp6-shadow);
}

.tp6-page-title h1 {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -.03em;
}

.tp6-page-title p {
    max-width: 620px;
    color: var(--tp6-muted);
    text-align: right;
}

.tp6-hero {
    margin-top: 28px;
    padding: 20px 22px 22px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface);
    box-shadow: var(--tp6-shadow);
}

.tp6-hero-head,
.tp6-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tp6-hero-head {
    margin-bottom: 16px;
}

.tp6-hero-head > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.tp6-hero-head span {
    color: var(--tp6-accent);
    font-weight: 750;
}

.tp6-hero-head h1 {
    font-size: 22px;
    line-height: 1.25;
}

.tp6-rail-controls {
    display: flex;
    gap: 8px;
}

.tp6-rail-controls button {
    min-width: 72px;
    min-height: 36px;
    border: 0;
    border-radius: var(--tp6-radius);
    color: var(--tp6-ink-soft);
    background: var(--tp6-page);
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
}

.tp6-rail-controls button:hover {
    color: #fff8f4;
    background: var(--tp6-accent);
}

.tp6-match-rail {
    display: grid;
    grid-auto-columns: 230px;
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 4px;
    scrollbar-width: none;
    scroll-snap-type: inline mandatory;
}

.tp6-match-rail::-webkit-scrollbar {
    display: none;
}

.tp6-rail-card {
    display: flex;
    min-height: 184px;
    padding: 14px;
    flex-direction: column;
    border-radius: var(--tp6-radius);
    background: var(--tp6-page);
    scroll-snap-align: start;
}

.tp6-rail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--tp6-muted);
    font-size: 12px;
}

.tp6-rail-meta a {
    color: var(--tp6-ink-soft);
    font-weight: 700;
}

.tp6-rail-teams {
    display: grid;
    min-height: 94px;
    flex: 1;
    grid-template-columns: 1fr 34px 1fr;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.tp6-rail-teams span {
    display: grid;
    min-width: 0;
    justify-items: center;
    gap: 7px;
}

.tp6-rail-teams img,
.tp6-rail-teams b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: contain;
}

.tp6-rail-teams b {
    display: grid;
    place-items: center;
    color: var(--tp6-accent);
    background: var(--tp6-accent-soft);
}

.tp6-rail-teams em {
    display: block;
    overflow: hidden;
    max-width: 78px;
    font-size: 12px;
    font-style: normal;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp6-rail-teams strong {
    color: #8e949e;
    font-size: 13px;
}

.tp6-rail-action {
    display: inline-flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(238, 77, 45, .28);
    border-radius: var(--tp6-radius);
    color: var(--tp6-accent-dark);
    background: var(--tp6-surface);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.tp6-rail-action:hover {
    color: #fff8f4;
    background: var(--tp6-accent);
}

.tp6-feature-grid {
    display: grid;
    margin-top: 18px;
    grid-template-columns: minmax(0, 2fr) 390px;
    gap: 15px;
}

.tp6-feature-media,
.tp6-feature-news,
.tp6-live-board,
.tp6-side-block,
.tp6-main-col,
.tp6-standings-content,
.tp6-sitemap-group {
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface);
    box-shadow: var(--tp6-shadow);
}

.tp6-feature-media,
.tp6-feature-news {
    padding: 20px;
}

.tp6-section-head {
    position: relative;
    min-height: 42px;
    margin-bottom: 14px;
    padding-left: 14px;
}

.tp6-section-head::before,
.tp6-gradient-title::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 22px;
    border-radius: 2px;
    background: var(--tp6-accent);
    content: "";
    transform: translateY(-50%);
}

.tp6-section-head h2,
.tp6-gradient-title .tit-text {
    font-size: 20px;
    font-weight: 780;
    letter-spacing: -.02em;
}

.tp6-section-head > a,
.tp6-gradient-title .tp6-more,
.tp6-more {
    color: var(--tp6-accent);
    font-size: 13px;
    font-weight: 700;
}

.tp6-home-video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 132px);
    gap: 10px;
}

.tp6-feature-card {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--tp6-radius);
    color: #fff8f4;
    background: #343b47;
}

.tp6-feature-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.tp6-feature-cover,
.tp6-feature-cover img {
    display: block;
    width: 100%;
    height: 100%;
}

.tp6-feature-cover img {
    object-fit: cover;
    transition: transform .25s ease;
}

.tp6-feature-card::after {
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(27, 32, 40, .88));
    content: "";
    pointer-events: none;
}

.tp6-feature-card strong {
    position: absolute;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 2;
    display: -webkit-box;
    overflow: hidden;
    color: #fff8f4;
    font-size: 13px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp6-feature-card:first-child strong {
    font-size: 18px;
}

.tp6-feature-card:hover {
    color: #fff8f4;
}

.tp6-feature-card:hover img {
    transform: scale(1.035);
}

.tp6-video-play-icon,
.tp6-play-icon {
    position: absolute;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(238, 77, 45, .92);
    box-shadow: 0 6px 18px rgba(48, 55, 68, .18);
}

.tp6-video-play-icon {
    top: 12px;
    left: 12px;
}

.tp6-video-play-icon::after,
.tp6-play-icon::after {
    position: absolute;
    top: 50%;
    left: 53%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #fff8f4;
    content: "";
    transform: translate(-50%, -50%);
}

.tp6-feature-news-list,
.tp6-side-list,
.tp6-live-side-list,
.tp6-ranked-list {
    display: grid;
}

.tp6-feature-news-list a,
.tp6-side-list > a,
.tp6-live-side-list > a,
.tp6-ranked-list > a {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 42px;
    padding: 10px 4px 10px 16px;
    border-bottom: 1px solid var(--tp6-line);
    color: var(--tp6-ink-soft);
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp6-feature-news-list a:last-child,
.tp6-side-list > a:last-child,
.tp6-live-side-list > a:last-child,
.tp6-ranked-list > a:last-child {
    border-bottom: 0;
}

.tp6-feature-news-list a::before,
.tp6-side-list > a::before {
    position: absolute;
    top: 19px;
    left: 2px;
    width: 5px;
    height: 5px;
    border: 1px solid #adb2bb;
    border-radius: 1px;
    content: "";
    transform: rotate(45deg);
}

.tp6-feature-news-list a:hover,
.tp6-side-list > a:hover,
.tp6-live-side-list > a:hover,
.tp6-ranked-list > a:hover {
    color: var(--tp6-accent);
}

.tp6-home-layout {
    display: grid;
    width: 100%;
    margin-top: 18px;
    grid-template-columns: minmax(0, 955px) 280px;
    align-items: start;
    gap: 15px;
}

.tp6-home-main,
.tp6-home-side {
    display: grid;
    min-width: 0;
    gap: 15px;
}

.tp6-live-board {
    min-width: 0;
    padding: 20px;
}

.tp6-live-tabs {
    flex-wrap: wrap;
}

.tp6-live-tabs > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tp6-live-tabs button,
.tp6-hot-tabs button {
    min-height: 34px;
    padding: 0 14px;
    border: 0;
    border-radius: var(--tp6-radius);
    color: var(--tp6-muted);
    background: var(--tp6-page);
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}

.tp6-live-tabs button.active,
.tp6-live-tabs button:hover,
.tp6-hot-tabs button.active,
.tp6-hot-tabs button:hover {
    color: #fff8f4;
    background: var(--tp6-accent);
}

.tp6-date {
    display: flex;
    align-items: center;
    min-height: 44px;
    margin-top: 8px;
    padding: 0 14px;
    gap: 10px;
    color: var(--tp6-ink-soft);
    background: var(--tp6-page);
}

.tp6-date strong,
.tp6-date time,
.start-min,
.tp6-standings-table td,
.tp6-standings-table th,
.points-num {
    font-variant-numeric: tabular-nums;
}

.tp6-date em {
    margin-left: auto;
    color: var(--tp6-muted);
    font-style: normal;
    font-size: 12px;
}

.tp6-match-list {
    overflow: hidden;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface);
}

.tp6-match-row {
    display: grid;
    min-height: 66px;
    padding: 0 14px;
    grid-template-columns: 72px 130px 72px minmax(0, 1fr) 96px;
    align-items: center;
    border-bottom: 1px solid var(--tp6-line);
    background: var(--tp6-surface);
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

.tp6-match-row:nth-child(even) {
    background: var(--tp6-surface-soft);
}

.tp6-match-row:last-child {
    border-bottom: 0;
}

.tp6-match-row:hover,
.tp6-match-row:focus-visible {
    background: var(--tp6-accent-soft);
}

.tp6-match-row:active {
    transform: translateY(1px);
}

.start-min {
    color: var(--tp6-ink);
    font-size: 15px;
    font-weight: 760;
}

.round {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
}

.sport-icon-link {
    display: grid;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    place-items: center;
}

.sport-icon {
    display: block;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.sport-icon.sport-zuqiu {
    background-image: url("../img/football.webp");
}

.sport-icon.sport-lanqiu {
    background-image: url("../img/basketball.webp");
}

.match-league-name {
    display: block;
    overflow: hidden;
    min-width: 0;
    color: var(--tp6-ink-soft);
    font-size: 13px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp6-status {
    color: var(--tp6-muted);
    font-size: 12px;
}

.status-live .tp6-status,
.status-playing .tp6-status {
    color: var(--tp6-accent);
    font-weight: 750;
}

.match-info {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
}

.team-a,
.team-b {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.team-a {
    justify-content: flex-end;
    text-align: right;
}

.team-b {
    justify-content: flex-start;
    text-align: left;
}

.team-a img,
.team-b img {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.teama-name,
.teamb-name {
    display: block;
    overflow: hidden;
    min-width: 0;
    font-weight: 680;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vs-score-wrap {
    min-width: 0;
    text-align: center;
}

.feature {
    overflow: hidden;
    color: var(--tp6-ink-soft);
    font-size: 14px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tv-list {
    margin: 0;
    text-align: right;
}

.tv-list a,
.tp6-live-signal,
.tp6-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(238, 77, 45, .35);
    border-radius: var(--tp6-radius);
    color: var(--tp6-accent-dark);
    background: var(--tp6-surface);
    font-weight: 720;
    white-space: nowrap;
}

.tv-list a:hover,
.tp6-live-signal:hover,
.tp6-load-more:hover {
    color: #fff8f4;
    background: var(--tp6-accent);
}

.tv-list.is-placeholder {
    color: var(--tp6-muted);
    font-size: 12px;
}

.tp6-load-more {
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
    cursor: pointer;
}

.tp6-load-more:disabled {
    cursor: wait;
    opacity: .65;
}

.tp6-side-block {
    overflow: hidden;
    padding: 18px;
}

.tp6-side-block + .tp6-side-block,
.tp6-live-side-block + .tp6-live-side-block,
.tp6-other-news + .tp6-other-news {
    margin-top: 15px;
}

.tp6-tag-cloud,
.tp6-live-tag-list,
.tp6-list-tags,
.tp6-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tp6-tag-cloud a,
.tp6-live-tag-list a,
.tp6-list-tags a,
.tp6-mini-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: var(--tp6-radius);
    color: var(--tp6-ink-soft);
    background: var(--tp6-page);
    font-size: 12px;
    font-weight: 650;
}

.tp6-tag-cloud a:hover,
.tp6-tag-cloud a.is-recommended,
.tp6-live-tag-list a:hover,
.tp6-list-tags a:hover,
.tp6-mini-tags a:hover {
    color: var(--tp6-accent-dark);
    background: var(--tp6-accent-soft);
}

.tp6-hot-tabs {
    display: grid;
    margin: -18px -18px 14px;
    padding: 12px 14px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--tp6-surface-soft);
}

.tp6-ranked-list {
    counter-reset: tp6-rank;
}

.tp6-ranked-list > a {
    min-height: 50px;
    padding-left: 34px;
    white-space: normal;
}

.tp6-ranked-list > a::before {
    position: absolute;
    top: 12px;
    left: 0;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: var(--tp6-radius);
    color: var(--tp6-muted);
    background: var(--tp6-page);
    content: counter(tp6-rank);
    counter-increment: tp6-rank;
    font-size: 12px;
    font-weight: 800;
    transform: none;
}

.tp6-ranked-list > a:nth-child(-n + 3)::before {
    color: #fff8f4;
    background: var(--tp6-accent);
}

.tp6-two-col {
    display: grid;
    margin-bottom: 30px;
    grid-template-columns: minmax(0, 930px) 300px;
    align-items: start;
    gap: 20px;
}

.tp6-news-layout,
.tp6-news-detail-layout {
    grid-template-columns: minmax(0, 930px) 300px;
}

.tp6-main-col {
    min-width: 0;
    padding: 22px;
}

.tp6-main-col > section + section,
.tp6-standings-round + .tp6-standings-round {
    margin-top: 24px;
}

.tp6-side-col {
    min-width: 0;
}

.tp6-gradient-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    margin-bottom: 14px;
    padding-left: 14px;
    border-bottom: 1px solid var(--tp6-line);
}

.tp6-gradient-title em {
    color: var(--tp6-muted);
    font-style: normal;
    font-size: 12px;
}

.tp6-league-pills {
    display: flex;
    overflow: hidden;
    max-height: none;
    margin-bottom: 15px;
    padding: 14px;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface);
    box-shadow: var(--tp6-shadow);
}

.tp6-league-pills.is-collapsed {
    max-height: 112px;
}

.tp6-league-pills a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 11px;
    border-radius: var(--tp6-radius);
    color: var(--tp6-ink-soft);
    background: var(--tp6-page);
    font-size: 12px;
    font-weight: 650;
}

.tp6-league-pills a.active,
.tp6-league-pills a:hover {
    color: #fff8f4;
    background: var(--tp6-accent);
}

.tp6-league-pills em {
    margin-left: 4px;
    font-style: normal;
    opacity: .75;
}

.tp6-league-pills-toggle {
    display: block;
    min-height: 36px;
    margin: -6px auto 15px;
    padding: 0 15px;
    border: 0;
    border-radius: var(--tp6-radius);
    color: var(--tp6-accent-dark);
    background: var(--tp6-accent-soft);
    cursor: pointer;
}

.tp6-video-grid,
.tp6-cover-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 14px;
}

.tp6-cover-card {
    min-width: 0;
}

.tp6-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--tp6-radius);
    color: var(--tp6-surface);
    background: #3b424f;
}

.tp6-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.tp6-cover > span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.tp6-cover:hover img {
    transform: scale(1.035);
}

.tp6-play-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tp6-cover-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 45px;
    margin-top: 9px;
    font-weight: 700;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp6-video-card-meta,
.tp6-meta {
    display: flex;
    align-items: center;
    color: var(--tp6-muted);
    font-size: 12px;
    gap: 10px;
}

.tp6-video-card-meta {
    justify-content: space-between;
    margin-top: 5px;
}

.tp6-video-tags {
    margin-top: 8px;
}

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

.tp6-grid-cards > section {
    position: relative;
    min-width: 0;
    padding: 16px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface-soft);
}

.tp6-grid-cards h3 {
    margin-bottom: 9px;
    color: var(--tp6-ink);
    font-size: 17px;
}

.tp6-grid-cards li,
.tp6-row-link {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 7px 0 7px 13px;
    color: var(--tp6-ink-soft);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp6-grid-cards li::before,
.tp6-row-link::before {
    position: absolute;
    top: 12px;
    left: 1px;
    width: 2px;
    height: 10px;
    border-radius: 1px;
    background: #a9afb8;
    content: "";
}

.tp6-news-title-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.tp6-news-title-link {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 39px;
    padding: 8px 54px 8px 15px;
    border-bottom: 1px solid var(--tp6-line);
    color: var(--tp6-ink-soft);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp6-news-title-link::before {
    position: absolute;
    top: 17px;
    left: 1px;
    width: 5px;
    height: 5px;
    border: 1px solid #a5abb4;
    border-radius: 1px;
    content: "";
    transform: rotate(45deg);
}

.tp6-card-list {
    display: grid;
    gap: 14px;
}

.tp6-news-card {
    display: grid;
    min-width: 0;
    padding: 14px;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface-soft);
}

.tp6-news-card-cover {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--tp6-radius);
    background: #3c4350;
}

.tp6-news-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp6-news-card-cover > span {
    display: grid;
    height: 100%;
    place-items: center;
    color: #fff8f4;
}

.tp6-news-card-body {
    min-width: 0;
}

.tp6-news-card h2 {
    margin: 8px 0;
    font-size: 19px;
    line-height: 1.4;
}

.tp6-news-card-body > p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--tp6-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp6-pagination {
    display: flex;
    margin-top: 22px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tp6-pagination a,
.tp6-pagination span {
    display: inline-grid;
    min-width: 38px;
    min-height: 38px;
    padding: 0 10px;
    place-items: center;
    border-radius: var(--tp6-radius);
    color: var(--tp6-muted);
    background: var(--tp6-page);
}

.tp6-pagination a:hover,
.tp6-pagination .is-current {
    color: #fff8f4;
    background: var(--tp6-accent);
}

.tp6-article {
    max-width: 100%;
}

.tp6-article > header {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--tp6-line);
}

.tp6-article h1 {
    max-width: 860px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.35;
    letter-spacing: -.035em;
}

.tp6-article .tp6-meta {
    margin-top: 15px;
}

.tp6-article .tp6-meta span {
    color: var(--tp6-accent-dark);
    font-weight: 700;
}

.tp6-article-summary {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: var(--tp6-radius);
    color: var(--tp6-ink-soft);
    background: var(--tp6-page);
}

.tp6-mini-tags {
    margin-top: 13px;
}

.tp6-article-content {
    max-width: 760px;
    margin: 24px auto 0;
    color: #323946;
    font-size: 17px;
    line-height: 1.95;
    overflow-wrap: anywhere;
}

.tp6-article-content p,
.tp6-article-content figure,
.tp6-article-content blockquote,
.tp6-article-content .news-video-player {
    margin: 0 0 20px;
}

.tp6-article-content img,
.tp6-article-content video,
.tp6-article-content iframe {
    max-width: 100%;
    border-radius: var(--tp6-radius);
}

.tp6-article-content img {
    height: auto;
    margin-inline: auto;
    cursor: zoom-in;
}

.tp6-article-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.news-video-player {
    display: grid;
    overflow: hidden;
    min-height: 260px;
    place-items: center;
    border-radius: var(--tp6-radius);
    background: #252b36;
}

.news-video-player video {
    display: block;
    width: 100%;
    max-height: 74vh;
}

.news-video-player.is-portrait-video video {
    width: auto;
    max-width: 100%;
}

.tp6-article-end {
    margin: 30px 0;
    color: var(--tp6-muted);
    text-align: center;
}

.tp6-article-prev-next {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tp6-article-prev-next a,
.tp6-article-prev-next span {
    display: block;
    overflow: hidden;
    padding: 12px 14px;
    border-radius: var(--tp6-radius);
    color: var(--tp6-muted);
    background: var(--tp6-page);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp6-detail-updates {
    display: grid;
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tp6-detail-update-block {
    min-width: 0;
    padding: 16px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface-soft);
}

.tp6-image-lightbox {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: grid;
    padding: 5vw;
    place-items: center;
    background: rgba(28, 33, 42, .92);
}

.tp6-image-lightbox img {
    max-width: min(1200px, 90vw);
    max-height: 86vh;
    border-radius: var(--tp6-radius);
}

.tp6-image-lightbox button {
    position: absolute;
    top: 22px;
    right: 22px;
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: var(--tp6-radius);
    color: #fff8f4;
    background: var(--tp6-accent);
    cursor: pointer;
}

.tp6-lightbox-open {
    overflow: hidden;
}

.tp6-live-detail {
    display: grid;
    margin-bottom: 30px;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 20px;
}

.tp6-live-left,
.tp6-live-right {
    min-width: 0;
}

.tp6-live-left {
    padding: 22px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface);
    box-shadow: var(--tp6-shadow);
}

.tp6-play-match-info,
.tp6-scoreboard {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 230px;
    padding: 28px 40px 56px;
    grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
    align-items: center;
    border-radius: var(--tp6-radius);
    background: linear-gradient(rgba(18, 24, 24, .18), rgba(18, 24, 24, .52)), url("../img/match-grass.webp") center / cover;
}

.tp6-scoreboard::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 42px;
    padding: 10px 18px;
    color: #fff8f4;
    background: var(--tp6-accent);
    content: "直播信息以页面实际信号为准";
    font-size: 12px;
    text-align: center;
}

.tp6-team-info {
    min-width: 0;
    color: var(--tp6-ink);
    text-align: center;
}

.tp6-team-info:hover {
    color: var(--tp6-accent);
}

.tp6-team-info dl {
    display: grid;
    justify-items: center;
    gap: 10px;
}

.tp6-team-info dt,
.tp6-team-info dt img,
.tp6-team-info dt span {
    width: 74px;
    height: 74px;
}

.tp6-team-info dt img {
    object-fit: contain;
}

.tp6-team-info dt span {
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--tp6-accent);
    background: var(--tp6-accent-soft);
    font-size: 24px;
    font-weight: 800;
}

.tp6-team-info dd {
    overflow: hidden;
    max-width: 210px;
    font-size: 16px;
    font-weight: 760;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp6-match-info-detail {
    text-align: center;
}

.tp6-match-info-detail .time {
    color: var(--tp6-muted);
    font-size: 12px;
}

.tp6-match-info-detail .score-vs {
    margin: 6px 0;
    color: var(--tp6-ink);
    font-size: 46px;
    font-weight: 840;
    line-height: 1.2;
}

.tp6-match-info-detail .status {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    min-height: 30px;
    padding: 0 12px;
    align-items: center;
    border-radius: var(--tp6-radius);
    color: var(--tp6-accent-dark);
    background: var(--tp6-accent-soft);
    font-weight: 700;
}

.tp6-tab-toggle {
    margin-top: 18px;
}

.tp6-tab-toggle p {
    min-height: 48px;
    padding: 0 16px;
    border-radius: var(--tp6-radius);
    color: #fff8f4;
    background: var(--tp6-accent);
    font-size: 18px;
    font-weight: 760;
    line-height: 48px;
}

.tp6-tab-content {
    padding: 18px 0;
}

.tp6-live-signal-box {
    display: flex;
    min-height: 80px;
    align-items: center;
}

.tp6-live-signal {
    min-height: 46px;
    color: #fff8f4;
    background: var(--tp6-accent);
}

.tp6-live-right {
    display: grid;
    gap: 15px;
}

.tp6-live-side-block {
    padding: 18px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface);
    box-shadow: var(--tp6-shadow);
}

.tp6-recent-match-tit,
.tp6-tag-related-head {
    min-height: 42px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--tp6-line);
    font-size: 17px;
    font-weight: 760;
}

.tp6-relate-news li {
    position: relative;
    padding-left: 14px;
}

.tp6-relate-news li::before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 2px;
    height: 10px;
    border-radius: 1px;
    background: #a8aeb8;
    content: "";
}

.tp6-relate-news a,
.tp6-relate-news p {
    display: block;
    overflow: hidden;
    padding: 6px 0;
    color: var(--tp6-ink-soft);
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp6-other-news {
    margin-top: 18px;
}

.tp6-standings-heading {
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.tp6-standings-heading p {
    margin-top: 4px;
    text-align: left;
}

.tp6-heading-mark {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: var(--tp6-radius);
    color: #fff8f4;
    background: var(--tp6-accent);
    font-size: 20px;
    font-weight: 850;
}

.tp6-standings-shell {
    margin-bottom: 30px;
}

.tp6-standings-tabs {
    display: flex;
    margin-bottom: 14px;
    padding: 14px;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface);
    box-shadow: var(--tp6-shadow);
}

.tp6-standings-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: var(--tp6-radius);
    color: var(--tp6-ink-soft);
    background: var(--tp6-page);
    font-weight: 650;
}

.tp6-standings-tabs a.active,
.tp6-standings-tabs a.is-active,
.tp6-standings-tabs a:hover {
    color: #fff8f4;
    background: var(--tp6-accent);
}

.tp6-standings-content {
    padding: 22px;
}

.tp6-standings-table-wrap {
    overflow-x: auto;
    border-radius: var(--tp6-radius);
}

.tp6-standings-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    text-align: center;
}

.tp6-standings-table th {
    height: 48px;
    padding: 0 12px;
    color: #fff8f4;
    background: var(--tp6-ink-soft);
    font-size: 13px;
    font-weight: 720;
}

.tp6-standings-table td {
    height: 64px;
    padding: 0 12px;
    border-bottom: 1px solid var(--tp6-line);
    color: var(--tp6-ink-soft);
}

.tp6-standings-table tbody tr:nth-child(even) td {
    background: var(--tp6-surface-soft);
}

.tp6-standings-table tbody tr:last-child td {
    border-bottom: 0;
}

.tp6-standings-table .team-col {
    min-width: 190px;
    text-align: left;
}

.tp6-standing-team {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.tp6-standing-team img {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.rank-num {
    display: inline-grid;
    min-width: 30px;
    height: 30px;
    place-items: center;
    border-radius: var(--tp6-radius);
    color: var(--tp6-muted);
    background: var(--tp6-page);
    font-weight: 800;
}

.tp6-standings-table tbody tr:nth-child(-n + 3) .rank-num {
    color: #fff8f4;
    background: var(--tp6-accent);
}

.points-num {
    color: var(--tp6-accent-dark);
    font-size: 16px;
}

.tp6-table-group-title {
    margin: 16px 0 10px;
    font-size: 16px;
}

.tp6-sitemap-shell {
    margin-top: 24px;
    margin-bottom: 30px;
}

.tp6-sitemap-hero {
    display: flex;
    align-items: center;
    min-height: 118px;
    padding: 24px;
    gap: 18px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-surface);
    box-shadow: var(--tp6-shadow);
}

.tp6-sitemap-hero h1 {
    font-size: 28px;
}

.tp6-sitemap-hero p {
    color: var(--tp6-muted);
}

.tp6-sitemap-hero a {
    display: inline-flex;
    min-height: 40px;
    margin-left: auto;
    padding: 0 15px;
    align-items: center;
    border-radius: var(--tp6-radius);
    color: #fff8f4;
    background: var(--tp6-accent);
    font-weight: 700;
    white-space: nowrap;
}

.tp6-sitemap-grid {
    display: grid;
    margin-top: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tp6-sitemap-group {
    min-width: 0;
    padding: 18px;
}

.tp6-sitemap-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.tp6-sitemap-links a {
    display: flex;
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    align-items: center;
    gap: 8px;
    border-radius: var(--tp6-radius);
    background: var(--tp6-page);
}

.tp6-sitemap-links span {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp6-sitemap-links time {
    margin-left: auto;
    color: var(--tp6-muted);
    font-size: 11px;
    white-space: nowrap;
}

.tp6-empty {
    padding: 24px;
    border-radius: var(--tp6-radius);
    color: var(--tp6-muted);
    background: var(--tp6-page);
    text-align: center;
}

.tp6-empty h1,
.tp6-empty h2 {
    margin-bottom: 8px;
    color: var(--tp6-ink);
    font-size: 20px;
}

.tp6-back-top {
    position: fixed;
    z-index: 24;
    right: 24px;
    bottom: 24px;
    min-width: 46px;
    min-height: 46px;
    padding: 0 12px;
    border: 0;
    border-radius: var(--tp6-radius);
    color: #fff8f4;
    background: var(--tp6-accent);
    box-shadow: 0 10px 25px rgba(54, 61, 75, .16);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
}

.tp6-back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.tp6-footer {
    margin-top: 34px;
    color: #d6d9df;
    background: #303744;
}

.tp6-footer-inner {
    width: min(var(--tp6-container), calc(100% - 32px));
    margin-inline: auto;
    padding: 30px 0;
}

.tp6-footer-top {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.tp6-footer-top strong {
    color: #fff8f4;
    font-size: 21px;
}

.tp6-footer-top p {
    max-width: 760px;
    color: #bfc4cd;
}

.tp6-footer-tags {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.tp6-footer-tags a {
    color: #dfe2e7;
}

.tp6-footer-tags a:hover {
    color: #fff8f4;
}

.tp6-footer-meta {
    margin-top: 20px;
    color: #9fa5af;
    font-size: 12px;
}

@media (max-width: 1280px) {
    .tp6-nav {
        gap: 14px;
    }

    .tp6-brand {
        min-width: 160px;
    }

    .tp6-nav-item {
        padding-inline: 12px;
        font-size: 15px;
    }

    .tp6-nav-item::after {
        right: 12px;
        left: 12px;
    }
}

@media (max-width: 1100px) {
    .tp6-header-link {
        display: none;
    }

    .tp6-feature-grid {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .tp6-home-layout,
    .tp6-two-col,
    .tp6-live-detail {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .tp6-match-row {
        grid-template-columns: 64px 108px 62px minmax(0, 1fr) 88px;
        padding-inline: 10px;
    }
}

@media (max-width: 900px) {
    .tp6-header {
        height: 64px;
    }

    .tp6-nav {
        position: relative;
        height: 64px;
    }

    .tp6-brand {
        min-width: 0;
        max-width: calc(100% - 62px);
    }

    .tp6-logo {
        height: 38px;
    }

    .tp6-logo-text {
        font-size: 22px;
    }

    .tp6-nav-toggle {
        display: block;
        margin-left: auto;
    }

    .tp6-nav-items {
        position: absolute;
        top: 58px;
        right: 0;
        left: 0;
        z-index: 32;
        display: none;
        height: auto;
        max-height: calc(100dvh - 80px);
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        overflow-y: auto;
        border-radius: var(--tp6-radius);
        background: var(--tp6-surface);
        box-shadow: var(--tp6-shadow);
    }

    .tp6-nav-items.open {
        display: flex;
    }

    .tp6-nav-item {
        height: 44px;
        justify-content: flex-start;
        border-radius: var(--tp6-radius);
    }

    .tp6-nav-item::after {
        display: none;
    }

    .tp6-nav-item.nav-selected {
        background: var(--tp6-accent-soft);
    }

    .tp6-feature-grid,
    .tp6-home-layout,
    .tp6-two-col,
    .tp6-live-detail {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp6-feature-news {
        order: 2;
    }

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

    .tp6-side-block + .tp6-side-block,
    .tp6-live-side-block + .tp6-live-side-block {
        margin-top: 0;
    }

    .tp6-video-grid,
    .tp6-cover-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp6-sitemap-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp6-page-title {
        align-items: start;
        flex-direction: column;
        justify-content: center;
    }

    .tp6-page-title p {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .tp6-container,
    .tp6-home-shell,
    .tp6-page-title,
    .tp6-two-col,
    .tp6-standings-shell,
    .tp6-page-shell,
    .tp6-nav,
    .tp6-footer-inner {
        width: min(100% - 24px, var(--tp6-container));
    }

    .tp6-bread {
        overflow-x: auto;
        white-space: nowrap;
    }

    .tp6-hero,
    .tp6-feature-media,
    .tp6-feature-news,
    .tp6-live-board,
    .tp6-side-block,
    .tp6-main-col,
    .tp6-live-left,
    .tp6-standings-content,
    .tp6-sitemap-group {
        padding: 16px;
    }

    .tp6-hero-head > div:first-child {
        display: block;
    }

    .tp6-hero-head h1 {
        margin-top: 2px;
        font-size: 19px;
    }

    .tp6-rail-controls button {
        min-width: 54px;
        padding-inline: 8px;
        font-size: 11px;
    }

    .tp6-home-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 190px repeat(2, 126px);
    }

    .tp6-feature-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .tp6-match-row {
        position: relative;
        min-height: 100px;
        padding: 12px 0;
        grid-template-columns: 56px 90px minmax(0, 1fr) 88px;
        grid-template-areas:
            "time league status status"
            "teams teams teams action";
        row-gap: 10px;
    }

    .tp6-match-row .start-min {
        grid-area: time;
    }

    .tp6-match-row .round {
        grid-area: league;
    }

    .tp6-match-row .tp6-status {
        grid-area: status;
        text-align: right;
    }

    .tp6-match-row .match-info {
        grid-area: teams;
    }

    .tp6-match-row .tv-list {
        grid-area: action;
    }

    .tp6-match-row .tv-list a {
        min-height: 34px;
        padding-inline: 10px;
    }

    .tp6-match-row .match-info {
        grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    }

    .tp6-match-row .team-a img,
    .tp6-match-row .team-b img {
        flex-basis: 26px;
        width: 26px;
        height: 26px;
    }

    .tp6-grid-cards,
    .tp6-news-title-grid,
    .tp6-detail-updates,
    .tp6-sitemap-links {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp6-news-card {
        grid-template-columns: 148px minmax(0, 1fr);
        gap: 12px;
    }

    .tp6-news-card h2 {
        font-size: 16px;
    }

    .tp6-article h1 {
        font-size: 27px;
    }

    .tp6-article-content {
        font-size: 16px;
        line-height: 1.85;
    }

    .tp6-article-prev-next {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp6-play-match-info,
    .tp6-scoreboard {
        min-height: 220px;
        padding: 24px 12px 54px;
        grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
    }

    .tp6-team-info dt,
    .tp6-team-info dt img,
    .tp6-team-info dt span {
        width: 56px;
        height: 56px;
    }

    .tp6-team-info dd {
        max-width: 100px;
        font-size: 13px;
    }

    .tp6-match-info-detail .score-vs {
        font-size: 32px;
    }

    .tp6-home-side,
    .tp6-side-col,
    .tp6-live-right {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp6-footer-top {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .tp6-sitemap-hero {
        align-items: start;
        flex-direction: column;
    }

    .tp6-sitemap-hero a {
        margin-left: 0;
    }
}

@media (max-width: 560px) {
    .tp6-logo-mark {
        display: none;
    }

    .tp6-match-rail {
        grid-auto-columns: 82%;
    }

    .tp6-home-video-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: repeat(5, 180px);
    }

    .tp6-feature-card:first-child {
        grid-column: auto;
    }

    .tp6-video-grid,
    .tp6-cover-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .tp6-news-card-cover {
        max-height: 220px;
    }

    .tp6-standings-heading {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .tp6-heading-mark {
        width: 46px;
        height: 46px;
    }

    .tp6-back-top {
        right: 12px;
        bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Reference-led tp6_live treatment. The legacy-compatible selectors above keep
 * every server payload usable; these rules lock the visual result to the
 * compact 1200px sports-portal composition captured at 1920x1080. */
body {
    background: #fdfdfd;
    font-size: 14px;
    line-height: 1.55;
}

.tp6-header {
    position: relative;
    height: auto;
    color: #d4d4d4;
    background: #161616;
    box-shadow: none;
    backdrop-filter: none;
}

.tp6-nav {
    height: 88px;
    gap: 34px;
}

.tp6-brand {
    min-width: 180px;
    max-width: 230px;
    gap: 4px;
}

.tp6-logo {
    max-width: 180px;
    height: 66px;
}

.tp6-logo-mark {
    display: inline-flex;
    width: auto;
    height: auto;
    padding: 0;
    color: var(--tp6-accent);
    background: transparent;
    font-size: 45px;
    font-weight: 400;
    letter-spacing: -.09em;
}

.tp6-logo-text {
    color: var(--tp6-accent);
    font-size: 39px;
    font-weight: 500;
    letter-spacing: -.08em;
}

.tp6-nav-items {
    flex: 1;
    justify-content: flex-start;
    gap: 4px;
}

.tp6-nav-item {
    height: 88px;
    padding: 0 17px;
    color: #a9a9a9;
    font-size: 17px;
    font-weight: 700;
}

.tp6-nav-item::after {
    display: none;
}

.tp6-nav-item:hover,
.tp6-nav-item.nav-selected {
    color: #f1f1f1;
}

.tp6-header-link {
    color: #a9a9a9;
    background: transparent;
}

.tp6-header-link:hover {
    color: #f1f1f1;
    background: transparent;
}

.tp6-league-strip {
    min-height: 42px;
    background: #2d2d2d;
}

.tp6-league-strip .tp6-container {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 25px;
}

.tp6-league-strip a {
    color: #bdbdbd;
    font-size: 14px;
    white-space: nowrap;
}

.tp6-league-strip a:hover {
    color: var(--tp6-accent);
}

.tp6-league-strip-empty {
    color: #777777;
    font-size: 14px;
}

.tp6-bread {
    min-height: 62px;
    margin-top: 18px;

}

.tp6-bread b {
    display: none;
}

.tp6-page-title {
    min-height: 0;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.tp6-page-title > h1,
.tp6-page-title > p,
.tp6-page-title > .tp6-heading-mark,
.tp6-page-title > div {
    display: none;
}

.tp6-home-shell {
    padding-top: 16px;
}

.tp6-hero {
    position: relative;
    margin-top: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.tp6-hero-head {
    position: absolute;
    z-index: 2;
    top: 92px;
    right: -38px;
    left: -38px;
    margin: 0;
    pointer-events: none;
}

.tp6-hero-head > div:first-child {
    display: none;
}

.tp6-rail-controls {
    width: 100%;
    justify-content: space-between;
}

.tp6-rail-controls button {
    width: 34px;
    min-width: 34px;
    height: 54px;
    min-height: 54px;
    overflow: hidden;
    padding: 0;
    border: 1px solid #dddddd;
    color: transparent;
    background: #fdfdfd;
    pointer-events: auto;
}

.tp6-rail-controls button::before {
    color: #c9c9c9;
    content: "‹";
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
}

.tp6-rail-controls [data-rail-next]::before {
    content: "›";
}

.tp6-match-rail {
    grid-auto-columns: 292px;
    gap: 10px;
    padding: 0 0 12px;
}

.tp6-rail-card {
    position: relative;
    height: 208px;
    min-height: 208px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fdfdfd url("../img/score-card-bg.webp") 10px 13px / 292px 208px no-repeat;
    box-shadow: var(--tp6-shadow);
}

.tp6-rail-card::before {
    position: absolute;
    z-index: 1;
    top: 13px;
    right: 2px;
    left: 10px;
    height: 5px;
    background: #cba14d;
    content: "";
}

.tp6-rail-meta {
    position: absolute;
    z-index: 2;
    top: 26px;
    right: 10px;
    left: 10px;
    justify-content: center;
    gap: 5px;
    color: #4a4a4a;
    font-size: 18px;
    line-height: 25px;
    white-space: nowrap;
}

.tp6-rail-meta a {
    color: #303030;
    font-weight: 500;
}

.tp6-rail-teams {
    position: static;
    display: block;
    min-height: 0;
}

.tp6-rail-teams .tp6-rail-team {
    position: absolute;
    z-index: 2;
    display: flex;
    width: 82px;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    gap: 0;
}

.tp6-rail-team-home {
    top: 76px;
    left: 13px;
}

.tp6-rail-team-away {
    top: 70px;
    right: 5px;
}

.tp6-rail-teams .tp6-rail-team img,
.tp6-rail-teams .tp6-rail-team b {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 0;
    object-fit: contain;
}

.tp6-rail-teams .tp6-rail-team-away img,
.tp6-rail-teams .tp6-rail-team-away b {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
}

.tp6-rail-teams .tp6-rail-team b {
    color: currentColor;
    background: rgba(255, 255, 255, .82);
}

.tp6-rail-teams .tp6-rail-team em {
    width: 100%;
    max-width: 82px;
    margin-top: 11px;
    color: #d71920;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
}

.tp6-rail-teams .tp6-rail-team-away em {
    order: -1;
    margin: 0 0 3px;
    color: #2874c7;
}

.tp6-rail-teams .tp6-rail-score {
    position: absolute;
    z-index: 2;
    width: 38px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
}

.tp6-rail-home-score {
    top: 87px;
    left: 93px;
}

.tp6-rail-away-score {
    top: 108px;
    left: 169px;
}

.tp6-rail-teams .tp6-rail-score-separator {
    display: none;
}

.tp6-rail-action {
    position: absolute;
    z-index: 3;
    right: 52px;
    bottom: 14px;
    left: 52px;
    min-height: 26px;
    padding: 0;
    border: 0;
    color: #333333;
    background: transparent;
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
}

.tp6-feature-grid,
.tp6-home-layout {
    margin-top: 28px;
    grid-template-columns: minmax(0, 800px) 370px;
    gap: 30px;
}

.tp6-feature-media,
.tp6-feature-news,
.tp6-live-board,
.tp6-side-block,
.tp6-main-col,
.tp6-standings-content,
.tp6-sitemap-group {
    border-radius: 0;
    background: #fdfdfd;
    box-shadow: none;
}

.tp6-feature-media,
.tp6-feature-news,
.tp6-live-board,
.tp6-main-col,
.tp6-standings-content {
    padding: 0;
}

.tp6-section-head,
.tp6-gradient-title {
    min-height: 44px;
    margin-bottom: 14px;
    padding: 0 0 0 44px;
    border-bottom: 2px solid #d4d4d4;
}

.tp6-section-head::before,
.tp6-gradient-title::before {
    top: 6px;
    width: 30px;
    height: 30px;
    background: url("../img/title-icons.webp") 0 0 / 30px 320px no-repeat;
    transform: none;
}

.tp6-section-head h2,
.tp6-gradient-title .tit-text {
    color: #292929;
    font-size: 20px;
}

.tp6-home-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 145px);
}

.tp6-feature-card:first-child {
    grid-row: 1 / span 2;
    grid-column: 1;
}

.tp6-feature-news-list a,
.tp6-side-list > a,
.tp6-ranked-list > a {
    min-height: 38px;
}

.tp6-live-tabs {
    padding-left: 44px;
}

.tp6-live-tabs > div,
.tp6-live-view-tabs {
    display: flex;
    gap: 9px;
}

.tp6-live-tabs button,
.tp6-hot-tabs button,
.tp6-live-view-tabs button {
    min-height: 32px;
    padding: 0 18px;
    border: 1px solid #343b54;
    border-radius: 18px;
    color: #343b54;
    background: #fdfdfd;
    cursor: pointer;
}

.tp6-live-tabs button.active,
.tp6-live-tabs button:hover,
.tp6-hot-tabs button.active,
.tp6-hot-tabs button:hover,
.tp6-live-view-tabs button.is-active,
.tp6-live-view-tabs button:hover {
    color: #f7f7f7;
    background: #343b54;
}

.tp6-live-view-tabs button:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.tp6-live-view-head {
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 30px;
    border-bottom: 2px solid #d4d4d4;
}

.tp6-live-view-head h1,
.tp6-live-view-head h2 {
    margin: 0;
    color: #292929;
    font-size: 21px;
}

.tp6-date {
    min-height: 48px;
    margin-top: 18px;
    border: 1px solid var(--tp6-line);
    color: #333333;
    background: #fdfdfd;
    font-weight: 700;
}

.tp6-match-list {
    border-radius: 0;
}

.tp6-match-row {
    min-height: 72px;
    padding: 0 14px;
    grid-template-columns: 72px 125px 70px minmax(0, 1fr) 92px;
    border: 1px solid #e8e8e8;
    border-top: 0;
    background: #fdfdfd;
}

.tp6-match-row:nth-child(even) {
    background: #fdfdfd;
}

.tp6-match-row:hover,
.tp6-match-row:focus-visible {
    background: #fff7f3;
}

.start-min {
    font-size: 14px;
    font-weight: 500;
}

.tp6-status,
.status-live .tp6-status,
.status-playing .tp6-status {
    color: #f06a6a;
    font-weight: 500;
}

.team-a img,
.team-b img {
    width: 34px;
    height: 34px;
}

.feature {
    display: inline-flex;
    min-height: 28px;
    padding: 0 5px;
    align-items: center;
    color: #f7f7f7;
    background: #48506a;
    font-size: 16px;
}

.tv-list a,
.tp6-live-signal,
.tp6-load-more {
    min-height: 34px;
    border: 0;
    border-radius: 0;
    color: #f7f7f7;
    background: var(--tp6-live-blue);
}

.tp6-two-col,
.tp6-news-layout,
.tp6-news-detail-layout {
    margin-top: 24px;
    grid-template-columns: minmax(0, 800px) 370px;
    gap: 30px;
}

.tp6-league-pills {
    margin-bottom: 18px;
    padding: 17px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    background: #fdfdfd;
    box-shadow: none;
}

.tp6-video-grid,
.tp6-cover-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 18px;
}

.tp6-cover {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    padding: 0;
    border-radius: 0;
}

.tp6-article {
    padding-right: 18px;
}

.tp6-article h1 {
    font-size: 25px;
    letter-spacing: 0;
}

.tp6-article-content {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.9;
}

.tp6-article-content img,
.tp6-article-content video,
.tp6-article-content iframe,
.news-video-player {
    border-radius: 0;
}

.tp6-live-detail {
    grid-template-columns: minmax(0, 800px) 370px;
    gap: 30px;
}

.tp6-live-left {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.tp6-play-match-info,
.tp6-scoreboard {
    min-height: 256px;
    padding: 28px 52px 48px;
    grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
    border-radius: 0;
    color: #f7f7f7;
}

.tp6-team-info,
.tp6-match-info-detail .score-vs,
.tp6-match-info-detail .time {
    color: #f7f7f7;
}

.tp6-team-info:hover {
    color: #f7f7f7;
}

.tp6-scoreboard::after {
    color: #ececec;
    background: rgba(22, 22, 22, .48);
    content: "赛事信息以页面实时数据为准";
}

.tp6-match-info-detail .status {
    color: #f7f7f7;
    background: transparent;
    font-size: 14px;
}

.tp6-standings-tabs {
    border: 1px solid #e8e8e8;
    border-radius: 0;
    box-shadow: none;
}

.tp6-standings-tabs a {
    border-radius: 2px;
    background: transparent;
}

.tp6-standings-tabs a.active,
.tp6-standings-tabs a.is-active,
.tp6-standings-tabs a:hover {
    color: #f7f7f7;
    background: var(--tp6-live-blue);
}

.tp6-standings-content {
    border: 1px solid #e5e5e5;
}

.tp6-standings-table th {
    color: #3f434a;
    background: #ededed;
}

.tp6-standings-table td {
    height: 54px;
}

.tp6-footer {
    margin-top: 50px;
    color: #b9b9b9;
    background: #171717;
}

.tp6-footer-inner {
    padding: 28px 0;
    text-align: center;
}

.tp6-footer-top {
    display: block;
}

.tp6-footer-top strong {
    color: var(--tp6-accent);
}

.tp6-footer-top p {
    margin: 8px auto 0;
}

.tp6-footer-tags {
    justify-content: center;
}

@media (max-width: 900px) {
    .tp6-nav {
        height: 72px;
    }

    .tp6-nav-items {
        top: 72px;
        color: #222222;
        background: #fdfdfd;
    }

    .tp6-nav-item {
        height: 48px;
        color: #333333;
    }

    .tp6-nav-items .tp6-nav-item:hover {
        color: #9f2f17;
        background: #fff7f4;
    }

    .tp6-nav-items .tp6-nav-item.nav-selected,
    .tp6-nav-items .tp6-nav-item.nav-selected:hover {
        color: #9f2f17;
        background: #fff2ed;
    }

    .tp6-nav-items .tp6-nav-item:focus-visible {
        outline: 2px solid #9f2f17;
        outline-offset: -2px;
    }

    .tp6-league-strip {
        overflow-x: auto;
    }

    .tp6-league-strip .tp6-container {
        width: max-content;
        min-width: calc(100% - 32px);
    }

    .tp6-feature-grid,
    .tp6-home-layout,
    .tp6-two-col,
    .tp6-news-layout,
    .tp6-news-detail-layout,
    .tp6-live-detail {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .tp6-hero-head {
        right: -6px;
        left: -6px;
    }
}

@media (max-width: 720px) {
    .tp6-logo-mark {
        font-size: 30px;
    }

    .tp6-logo-text {
        font-size: 27px;
    }

    .tp6-header-link {
        display: none;
    }

    .tp6-match-rail {
        grid-auto-columns: 86%;
    }

    .tp6-home-video-grid {
        grid-auto-flow: column;
        grid-auto-columns: clamp(220px, 76vw, 280px);
        grid-template-columns: none;
        grid-template-rows: 148px;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scrollbar-color: #343b54 #e8e8e8;
        scrollbar-width: thin;
    }

    .tp6-home-video-grid::-webkit-scrollbar {
        height: 6px;
    }

    .tp6-home-video-grid::-webkit-scrollbar-track {
        background: #e8e8e8;
    }

    .tp6-home-video-grid::-webkit-scrollbar-thumb {
        border-radius: 3px;
        background: #343b54;
    }

    .tp6-home-video-grid .tp6-feature-card,
    .tp6-home-video-grid .tp6-feature-card:first-child {
        grid-row: auto;
        grid-column: auto;
        scroll-snap-align: start;
    }

    .tp6-home-video-grid .tp6-feature-card:first-child strong {
        font-size: 13px;
    }

    .tp6-live-tabs {
        display: grid;
        min-height: 0;
        padding-bottom: 12px;
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 10px;
    }

    .tp6-live-tabs > div {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .tp6-live-tabs button {
        width: 100%;
        min-height: 36px;
        padding-inline: 10px;
    }

    .tp6-live-view-head {
        align-items: flex-start;
        padding-bottom: 10px;
        flex-direction: column;
        gap: 10px;
    }

    .tp6-match-row {
        min-height: 148px;
        padding: 12px 10px 14px;
        grid-template-columns: 56px minmax(0, 1fr) auto;
        grid-template-areas:
            "time league status"
            "teams teams teams"
            "action action action";
        row-gap: 9px;
    }

    .tp6-match-row .tp6-status {
        text-align: right;
    }

    .tp6-match-row .match-info {
        width: 100%;
        gap: 7px;
    }

    .tp6-match-row .teama-name,
    .tp6-match-row .teamb-name {
        overflow: visible;
        max-width: none;
        line-height: 1.35;
        text-overflow: clip;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .tp6-match-row .tv-list {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .tp6-match-row .tv-list a {
        min-width: 116px;
    }

    .tp6-video-grid,
    .tp6-cover-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp6-play-match-info,
    .tp6-scoreboard {
        padding-inline: 12px;
        grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
    }
}

@media (max-width: 560px) {
    .tp6-video-grid,
    .tp6-cover-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Live detail redirect CTA */
[data-live-loading-link] {
    --live-cta-start: #d83c0c;
    --live-cta-end: #a72c08;
    --live-cta-glow-rgb: 244 81 30;
    --live-cta-text: #fff;
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 132px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid rgb(var(--live-cta-glow-rgb) / 42%);
    background: linear-gradient(135deg, var(--live-cta-start), var(--live-cta-end));
    color: var(--live-cta-text);
    font-size: 17px;
    font-weight: 800;
    font-family: inherit;
    line-height: 1.2;
    letter-spacing: .08em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: 0 10px 24px rgb(var(--live-cta-glow-rgb) / 30%);
    animation: live-cta-breathe 1.8s ease-in-out infinite;
    will-change: scale, box-shadow;
}

[data-live-loading-link]:hover,
[data-live-loading-link]:focus-visible {
    color: var(--live-cta-text);
    filter: saturate(1.12) brightness(1.05);
}

[data-live-loading-link]:focus-visible {
    outline: 3px solid rgb(var(--live-cta-glow-rgb) / 55%);
    outline-offset: 3px;
}

@keyframes live-cta-breathe {
    0%, 100% {
        scale: 1;
        box-shadow: 0 10px 24px rgb(var(--live-cta-glow-rgb) / 30%), 0 0 0 0 rgb(var(--live-cta-glow-rgb) / 34%);
    }

    50% {
        scale: 1.045;
        box-shadow: 0 14px 32px rgb(var(--live-cta-glow-rgb) / 42%), 0 0 0 10px rgb(var(--live-cta-glow-rgb) / 0%);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-live-loading-link] {
        animation: none;
        scale: 1;
    }
}

/* Live detail match-card hierarchy */
.tp6-match-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.tp6-match-card-head {
    min-width: 0;
    padding: 13px 18px;
    background: var(--tp6-accent-soft);
}

.tp6-match-card-head h1 {
    margin: 0;
    color: var(--tp6-ink);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tp6-match-card .tp6-play-match-info {
    margin-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

@media (max-width: 720px) {
    .tp6-match-card-head {
        padding: 11px 13px;
    }

    .tp6-match-card-head h1 {
        font-size: 18px;
    }
}

/* Mobile category-card navigation CTA. */


.tp6-content-tag-more:focus-visible {
    outline: 2px solid var(--tp6-accent);
    outline-offset: -2px;
}

@media (max-width: 767px) {
    [data-content-tag-more].tp6-content-tag-more {
        float: none;
        clear: both;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: stretch;
        margin: 12px 0 0;
        padding: 0 16px;
        box-sizing: border-box;
        border: 1px solid var(--tp6-line);
        border-radius: var(--tp6-radius);
        background: var(--tp6-accent-soft);
        color: var(--tp6-accent);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
    }

    [data-content-tag-more].tp6-content-tag-more:hover,
    [data-content-tag-more].tp6-content-tag-more:focus-visible,
    [data-content-tag-more].tp6-content-tag-more:active {
        border-color: var(--tp6-accent);
        background: var(--tp6-accent);
        color: #fefefe;
    }
}
