:root {
    --tp13-container: 1280px;
    --tp13-main-column: 900px;
    --tp13-sidebar-column: 360px;
    --tp13-column-gap: 20px;
    --tp13-header: #222222;
    --tp13-header-deep: #151515;
    --tp13-accent: #f04418;
    --tp13-accent-dark: #b43a0c;
    --tp13-green: #28b67a;
    --tp13-green-dark: #178f5c;
    --tp13-green-active: #116b46;
    --tp13-live-bg: #e8f5f2;
    --tp13-page: #f3f3f3;
    --tp13-surface: #fefefe;
    --tp13-text: #303030;
    --tp13-muted: #888888;
    --tp13-line: #dedede;
    --tp13-radius: 2px;
    --tp13-shadow: 0 8px 24px rgb(24 24 24 / 6%);
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--tp13-text);
    background: var(--tp13-page);
    font-family: "Microsoft Yahei", Arial, Tahoma, Helvetica, SimSun, "Hiragino Sans GB", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

body,
button,
input,
select,
textarea {
    font: inherit;
}

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

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

button {
    color: inherit;
}

[hidden] {
    display: none !important;
}

.tp13-container {
    width: min(var(--tp13-container), calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

.tp13-topline {
    height: 40px;
    color: #8f8f8f;
    background: var(--tp13-header-deep);
}

.tp13-topline .tp13-container {
    overflow: hidden;
    line-height: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-header-main {
    color: #d6d6d6;
    background: var(--tp13-header);
}

.tp13-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 30px;
}

.tp13-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-width: 190px;
    color: var(--tp13-accent);
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
}

.tp13-brand img {
    max-width: 210px;
    max-height: 58px;
    object-fit: contain;
}

.tp13-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    white-space: nowrap;
}

.tp13-nav a {
    position: relative;
    padding: 28px 19px;
    color: #d4d4d4;
    font-size: 17px;
    transition: color 160ms ease;
}

.tp13-nav a:not(:last-child)::after {
    position: absolute;
    top: 29px;
    right: -3px;
    width: 15px;
    height: 22px;
    color: #3c3c42;
    content: "/";
    font-size: 24px;
    font-weight: 300;
    transform: skewX(-14deg);
}

.tp13-nav a:hover,
.tp13-nav a:focus-visible {
    color: #f8f8f8;
}

.tp13-nav a.active,
.tp13-nav a[aria-current="page"] {
    color: #f8f8f8;
    background: #303030;
    box-shadow: inset 0 -4px var(--tp13-accent);
    font-weight: 700;
}

.tp13-nav-toggle {
    display: none;
    width: 44px;
    height: 38px;
    padding: 8px;
    border: 0;
    border-radius: var(--tp13-radius);
    background: #303030;
}

.tp13-nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #ececec;
}

.tp13-breadcrumb {
    min-height: 60px;
    padding: 0 20px;
    color: #69696c;
    background: #313135;
    line-height: 60px;
}

.tp13-breadcrumb span,
.tp13-breadcrumb a,
.tp13-breadcrumb strong,
.tp13-breadcrumb em {
    display: inline;
    font-style: normal;
    font-weight: 400;
}

.tp13-breadcrumb a:hover {
    color: #b8b8ba;
}

.tp13-breadcrumb em {
    margin: 0 8px;
}

.tp13-page-stack {
    display: grid;
    gap: 20px;
    padding-top: 15px;
    padding-bottom: 30px;
}

.tp13-panel,
.tp13-match-ticker,
.tp13-side-block {
    border-radius: var(--tp13-radius);
    background: var(--tp13-surface);
    box-shadow: var(--tp13-shadow);
}

.tp13-panel {
    min-width: 0;
    padding: 20px;
}

.tp13-match-ticker {
    overflow: hidden;
    padding: 14px 42px;
}

.tp13-ticker-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tp13-ticker-item {
    display: grid;
    min-width: 0;
    padding: 8px 18px;
    gap: 5px;
    background: #f4f4f4;
    box-shadow: inset -1px 0 var(--tp13-line);
}

.tp13-ticker-item:hover {
    background: #eeeeee;
}

.tp13-ticker-item > span,
.tp13-ticker-item > strong,
.tp13-ticker-item > small {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
}

.tp13-ticker-item > span {
    color: #555555;
}

.tp13-ticker-item > span b {
    color: #f3f3f3;
    font-weight: 400;
}

.tp13-ticker-item > span em {
    overflow: hidden;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-ticker-item strong {
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-ticker-item strong img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    object-fit: contain;
}

.tp13-ticker-item small {
    margin-top: 4px;
    color: #666666;
    font-size: 12px;
}

.tp13-static-ticker {
    color: #777777;
    text-align: center;
}

.tp13-static-ticker p {
    margin: 0;
}

.tp13-tag-live-board {
    min-width: 0;
    background: var(--tp13-surface);
}

.tp13-tag-live-heading {
    display: flex;
    min-height: 50px;
    padding: 0 24px;
    align-items: center;
    justify-content: space-between;
    box-shadow: inset 0 -1px var(--tp13-line);
}

.tp13-tag-live-heading h2 {
    margin: 0;
    color: var(--tp13-header-deep);
    font-size: 18px;
}

.tp13-tag-live-heading span {
    color: #888888;
    font-size: 13px;
}

.tp13-tag-live-list {
    display: grid;
    padding: 0 24px 8px;
}

.tp13-tag-live-row {
    display: grid;
    min-width: 0;
    min-height: 72px;
    padding: 10px 8px;
    align-items: center;
    gap: 18px;
    grid-template-columns: 190px minmax(0, 1fr) 72px minmax(0, 1fr) 96px;
    box-shadow: inset 0 -1px var(--tp13-line);
    transition: background-color 140ms ease;
}

.tp13-tag-live-row:last-child {
    box-shadow: none;
}

.tp13-tag-live-row:hover {
    background: #f4f8f7;
}

.tp13-tag-live-row:focus-visible {
    outline: 2px solid var(--tp13-accent);
    outline-offset: -2px;
    background: #f4f8f7;
}

.tp13-tag-live-meta {
    display: grid;
    min-width: 0;
    align-items: center;
    color: #777777;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    gap: 8px;
    grid-template-columns: 46px 54px minmax(0, 1fr);
}

.tp13-tag-live-meta time {
    color: #444444;
    font-family: Consolas, "Microsoft Yahei", monospace;
    font-weight: 600;
}

.tp13-tag-live-meta b {
    color: var(--tp13-accent);
    font-weight: 600;
}

.tp13-tag-live-row.status-finished .tp13-tag-live-meta b {
    color: #777777;
}

.tp13-tag-live-meta em {
    overflow: hidden;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-tag-live-team {
    display: flex;
    min-width: 0;
    align-items: center;
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    gap: 10px;
}

.tp13-tag-live-team.is-home {
    justify-content: flex-end;
    text-align: right;
}

.tp13-tag-live-team.is-away {
    justify-content: flex-start;
    text-align: left;
}

.tp13-tag-live-team-name {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-tag-live-crest,
.tp13-tag-live-logo-fallback {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
}

.tp13-tag-live-crest {
    object-fit: contain;
}

.tp13-tag-live-logo-fallback {
    display: grid;
    border-radius: var(--tp13-radius);
    place-items: center;
    color: var(--tp13-accent-dark);
    background: var(--tp13-live-bg);
    font-size: 12px;
    font-weight: 700;
}

.tp13-tag-live-score {
    color: #a63b15;
    font-family: Consolas, "Microsoft Yahei", monospace;
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    text-align: center;
    white-space: nowrap;
}

.tp13-tag-live-action {
    justify-self: end;
    color: var(--tp13-green);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.tp13-tag-live-row:hover .tp13-tag-live-action {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tp13-home-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    min-height: 330px;
    overflow: hidden;
    border-radius: var(--tp13-radius);
    background: var(--tp13-surface);
    box-shadow: var(--tp13-shadow);
}

.tp13-feature-media {
    min-width: 0;
    padding: 20px;
}

.tp13-feature-media > a {
    position: relative;
    display: block;
    height: 100%;
    min-height: 290px;
    overflow: hidden;
    background: #272727;
}

.tp13-feature-media img,
.tp13-feature-placeholder {
    width: 100%;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
}

.tp13-feature-placeholder {
    display: grid;
    place-items: center;
    color: #d7d7d7;
    background: linear-gradient(135deg, #313131, #222222);
    font-size: 20px;
}

.tp13-feature-media strong {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px 22px 18px;
    overflow: hidden;
    color: #f7f7f7;
    background: linear-gradient(0deg, rgb(20 20 20 / 88%), rgb(20 20 20 / 0%));
    font-size: 18px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-feature-news {
    padding: 24px 22px 20px 0;
}

.tp13-feature-news h1 {
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--tp13-accent);
    font-size: 24px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-feature-news a {
    position: relative;
    display: block;
    padding: 8px 0 8px 18px;
    overflow: hidden;
    color: #3f3f3f;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-feature-news a::before {
    position: absolute;
    top: 14px;
    left: 2px;
    width: 7px;
    height: 7px;
    background: var(--tp13-green);
    content: "";
    transform: rotate(45deg);
}

.tp13-feature-news a:hover {
    color: var(--tp13-accent);
}

.tp13-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    margin-bottom: 15px;
    box-shadow: inset 0 -1px #e1e1e1;
}

.tp13-section-head h1,
.tp13-section-head h2 {
    margin: 0;
    padding: 0 0 10px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}

.tp13-section-head small {
    color: #b8b8b8;
    font-size: 11px;
    font-weight: 400;
}

.tp13-section-head > a {
    color: #888888;
    font-size: 13px;
}

.tp13-section-head > a:hover {
    color: var(--tp13-green-dark);
}

.tp13-green-head {
    box-shadow: inset 0 -1px #d9dfde;
}

.tp13-green-head h1,
.tp13-green-head h2 {
    color: #23a62d;
    box-shadow: inset 0 -4px #24aa20;
}

.tp13-side-title {
    margin-bottom: 12px;
    box-shadow: inset 0 -1px #dedede;
}

.tp13-side-title h2 {
    display: inline-block;
    margin: 0;
    padding: 0 10px 9px 0;
    box-shadow: inset 0 -3px var(--tp13-green);
    font-size: 17px;
    font-weight: 600;
}

.tp13-live-tabs {
    display: flex;
    margin: 2px 0 18px;
    gap: 0;
    box-shadow: inset 0 -1px #eeeeee;
}

.tp13-live-tabs button {
    position: relative;
    min-width: 112px;
    padding: 11px 22px 12px;
    border: 0;
    background: transparent;
    color: #777777;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.tp13-live-tabs button.active {
    color: #252525;
    box-shadow: inset 0 -4px var(--tp13-accent);
}

.tp13-live-tabs button:hover {
    color: var(--tp13-accent-dark);
}

.tp13-live-tabs button:focus-visible {
    outline: 2px solid var(--tp13-accent);
    outline-offset: -2px;
}

.tp13-live-tab-panel {
    min-height: 180px;
}

.tp13-history-panel .tp13-match-card {
    background: #f3f3f3;
}

.tp13-history-panel .tp13-match-card-top b {
    color: #777777;
}

.tp13-day-group + .tp13-day-group {
    margin-top: 22px;
}

.tp13-day-group > h2,
.tp13-day-group > h3 {
    display: inline-block;
    margin: 0 0 14px;
    padding: 7px 12px;
    color: #f8f8f8;
    background: var(--tp13-accent-dark);
    font-size: 14px;
    font-weight: 500;
}

.tp13-match-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.tp13-match-card {
    display: grid;
    min-width: 0;
    min-height: 174px;
    padding: 12px 12px 0;
    border-radius: var(--tp13-radius);
    background: var(--tp13-live-bg);
    cursor: pointer;
    grid-template-rows: auto 1fr 1fr auto;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.tp13-match-card:hover,
.tp13-match-card:focus-visible {
    outline: none;
    box-shadow: 0 8px 20px rgb(33 93 78 / 15%);
    transform: translateY(-2px);
}

.tp13-match-card-top,
.tp13-match-card p,
.tp13-match-card footer {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
}

.tp13-match-card-top {
    margin-bottom: 8px;
    color: #777777;
}

.tp13-match-card-top b {
    color: #e12922;
    font-weight: 500;
}

.tp13-match-card p {
    margin: 0;
    gap: 7px;
}

.tp13-match-card p img {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.tp13-match-card p span {
    overflow: hidden;
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-match-card p em {
    color: #a63b15;
    font-style: normal;
    font-weight: 600;
}

.tp13-match-card footer {
    margin: 8px -12px 0;
    padding: 9px 10px;
    box-shadow: inset 0 1px rgb(90 120 112 / 18%);
}

.tp13-match-card footer a:first-child::before {
    margin-right: 7px;
    content: "⚽";
}

.tp13-match-card footer a:last-child {
    padding: 3px 7px;
    border-radius: var(--tp13-radius);
    color: #f8f8f8;
    background: var(--tp13-green);
}

.tp13-load-more {
    display: block;
    width: 190px;
    margin: 20px auto 0;
    padding: 12px 16px;
    border: 0;
    border-radius: var(--tp13-radius);
    background: var(--tp13-live-bg);
    cursor: pointer;
}

.tp13-load-more:hover {
    color: #f8f8f8;
    background: var(--tp13-green);
}

.tp13-league-pills {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding: 11px 12px;
    gap: 6px 13px;
    border-radius: var(--tp13-radius);
    box-shadow: inset 0 0 0 1px #dddddd;
}

.tp13-league-pills.is-collapsed {
    overflow: hidden;
    max-height: var(--tp13-league-collapsed-height);
}

.tp13-league-pills a {
    padding: 4px 8px;
    border-radius: var(--tp13-radius);
    color: #5f5f5f;
    line-height: 24px;
    white-space: nowrap;
}

.tp13-league-pills a:first-child::before {
    margin-right: 5px;
    color: var(--tp13-green);
    content: "推荐";
    font-weight: 700;
}

.tp13-league-pills a:hover,
.tp13-league-pills a:focus-visible {
    color: var(--tp13-green-active);
    background: #e8f5f2;
}

.tp13-league-pills a.active,
.tp13-league-pills a[aria-current="page"] {
    color: #f8f8f8;
    background: var(--tp13-green-active);
    font-weight: 700;
}

.tp13-league-pills a.active::before,
.tp13-league-pills a[aria-current="page"]::before,
.tp13-league-pills a.active em,
.tp13-league-pills a[aria-current="page"] em {
    color: #d8f5e8;
}

.tp13-league-pills a em {
    margin-left: 3px;
    color: #999999;
    font-size: 11px;
    font-style: normal;
}

.tp13-league-pills-toggle {
    display: block;
    margin: 0 0 12px auto;
    padding: 5px 10px;
    border: 0;
    background: #ededed;
    cursor: pointer;
}

.tp13-live-layout,
.tp13-content-grid,
.tp13-live-detail {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, var(--tp13-main-column)) minmax(0, var(--tp13-sidebar-column));
    gap: var(--tp13-column-gap);
}

.tp13-content-main,
.tp13-live-main {
    min-width: 0;
}

.tp13-sidebar {
    display: grid;
    align-content: start;
    min-width: 0;
    gap: 20px;
}

.tp13-side-block {
    min-width: 0;
    padding: 18px;
}

.tp13-link-list {
    display: grid;
    gap: 2px;
}

.tp13-link-list a {
    position: relative;
    display: block;
    padding: 6px 0 6px 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-link-list a::before {
    position: absolute;
    top: 14px;
    left: 1px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #5b91e8;
    content: "";
}

.tp13-link-list a:hover {
    color: var(--tp13-accent);
}

.tp13-link-list time {
    margin-right: 8px;
    color: #999999;
    font-size: 12px;
}

.tp13-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tp13-tag-list a,
.tp13-article-tags a {
    padding: 5px 9px;
    border-radius: var(--tp13-radius);
    background: #f0f0f0;
    box-shadow: inset 0 0 0 1px #dadada;
}

.tp13-tag-list a:hover,
.tp13-article-tags a:hover {
    color: #f7f7f7;
    background: var(--tp13-green);
    box-shadow: none;
}

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

.tp13-media-card {
    min-width: 0;
}

.tp13-media-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--tp13-radius);
    background: #2e2e2e;
}

.tp13-media-cover img,
.tp13-media-cover > span {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.tp13-media-cover > span {
    display: grid;
    place-items: center;
    color: #d8d8d8;
    background: linear-gradient(135deg, #343434, #242424);
}

.tp13-media-cover i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgb(22 22 22 / 62%);
    transform: translate(-50%, -50%);
}

.tp13-media-cover i::after {
    position: absolute;
    top: 12px;
    left: 16px;
    border-width: 9px 0 9px 14px;
    border-style: solid;
    border-color: transparent transparent transparent #f4f4f4;
    content: "";
}

.tp13-media-card:hover .tp13-media-cover img {
    transform: scale(1.035);
}

.tp13-media-title {
    display: -webkit-box;
    min-height: 48px;
    margin-top: 10px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp13-media-card time {
    color: #88909b;
    font-size: 12px;
}

.tp13-topic-grid,
.tp13-sitemap-grid,
.tp13-detail-updates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.tp13-topic-block {
    min-width: 0;
}

.tp13-topic-lead,
.tp13-news-lead {
    display: grid;
    min-width: 0;
    margin-bottom: 12px;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 15px;
}

.tp13-topic-lead img,
.tp13-news-lead img {
    width: 150px;
    aspect-ratio: 16 / 10;
    border-radius: var(--tp13-radius);
    object-fit: cover;
}

.tp13-topic-lead span,
.tp13-news-lead strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp13-topic-lead time,
.tp13-news-lead time {
    display: block;
    color: #88909b;
    font-size: 12px;
}

.tp13-news-lead {
    grid-template-columns: 230px minmax(0, 1fr);
}

.tp13-news-lead img {
    width: 230px;
}

.tp13-news-lead span {
    display: grid;
    align-content: start;
    gap: 8px;
}

.tp13-news-lead em {
    display: -webkit-box;
    overflow: hidden;
    color: #777777;
    font-style: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

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

.tp13-news-columns > div {
    min-width: 0;
}

.tp13-news-columns a {
    display: block;
    padding: 7px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-news-columns a::before {
    margin-right: 10px;
    color: #aaaaaa;
    content: "●";
    font-size: 8px;
}

.tp13-tag-article-list {
    display: grid;
    gap: 18px;
}

.tp13-tag-article-list article {
    display: grid;
    padding-bottom: 18px;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px;
    box-shadow: inset 0 -1px #eeeeee;
}

.tp13-tag-article-body {
    min-width: 0;
}

.tp13-tag-article-cover {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #2d2d2d;
}

.tp13-tag-article-cover img,
.tp13-tag-article-cover span {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp13-tag-article-cover span {
    display: grid;
    place-items: center;
    color: #d9d9d9;
}

.tp13-tag-article-list h2 {
    margin: 0 0 8px;
    font-size: 19px;
}

.tp13-tag-article-list p {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    color: #777777;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp13-tag-article-list time {
    color: #999999;
    font-size: 12px;
    white-space: nowrap;
}

.tp13-tag-article-meta {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 14px;
}

.tp13-tag-article-tags {
    display: flex;
    min-width: 0;
    flex: 1 1 220px;
    flex-wrap: wrap;
    gap: 6px;
}

.tp13-tag-article-tags a {
    display: inline-flex;
    max-width: 180px;
    min-height: 24px;
    padding: 2px 8px;
    align-items: center;
    overflow: hidden;
    border-radius: var(--tp13-radius);
    color: var(--tp13-green-dark);
    background: #edf5f1;
    font-size: 12px;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-tag-article-tags a:hover,
.tp13-tag-article-tags a:focus-visible {
    color: #f8f8f8;
    background: var(--tp13-green);
}

.tp13-pagination {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 7px;
}

.tp13-pagination a,
.tp13-pagination span,
.tp13-pagination strong {
    min-width: 36px;
    padding: 7px 9px;
    border-radius: var(--tp13-radius);
    background: #eeeeee;
    text-align: center;
}

.tp13-pagination strong {
    color: #f7f7f7;
    background: var(--tp13-green);
}

.tp13-match-meta {
    margin: -4px 0 15px;
    padding-bottom: 14px;
    color: #777777;
    box-shadow: inset 0 -1px #eeeeee;
    text-align: center;
}

.tp13-scoreboard {
    display: grid;
    align-items: center;
    min-height: 160px;
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
}

.tp13-scoreboard > section {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tp13-scoreboard > section img,
.tp13-scoreboard > section > span {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: #eeeeee;
    object-fit: contain;
}

.tp13-scoreboard h2 {
    overflow: hidden;
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-scoreboard > div {
    display: grid;
    place-items: center;
    gap: 5px;
}

.tp13-scoreboard > div strong {
    font-family: Consolas, Menlo, monospace;
    font-size: 28px;
    font-weight: 400;
}

.tp13-scoreboard > div em {
    padding: 3px 12px;
    background: #dedede;
    font-size: 12px;
    font-style: normal;
}

.tp13-live-sources {
    margin-top: 12px;
}

.tp13-live-sources > a {
    display: inline-block;
    min-width: 150px;
    padding: 12px 20px;
    border-radius: var(--tp13-radius);
    color: #f9f9f9;
    background: var(--tp13-accent);
    text-align: center;
}

.tp13-live-sources > a:hover {
    background: var(--tp13-accent-dark);
}

.tp13-detail-updates {
    margin-top: 28px;
}

.tp13-live-main .tp13-detail-updates {
    display: block;
}

.tp13-detail-update-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.tp13-detail-update-list > .tp13-empty {
    grid-column: 1 / -1;
}

.tp13-detail-update-item {
    display: grid;
    min-width: 0;
    min-height: 46px;
    padding: 11px 13px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    background: #f1f6f3;
}

.tp13-detail-update-item:hover {
    color: #16885a;
    background: #e9f2ec;
}

.tp13-detail-update-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-detail-update-item time {
    color: #89918d;
    font-size: 12px;
    white-space: nowrap;
}

.tp13-detail-updates > section {
    min-width: 0;
}

.tp13-article-layout {
    align-items: start;
}

.tp13-article > header {
    padding: 20px 30px 24px;
    text-align: center;
}

.tp13-article h1 {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.45;
}

.tp13-article-meta {
    display: flex;
    justify-content: center;
    color: #888888;
    gap: 45px;
}

.tp13-article.is-video-detail {
    overflow: hidden;
    padding: 0;
}

.tp13-article.is-video-detail > header {
    padding: 26px 30px 24px;
    text-align: left;
}

.tp13-article.is-video-detail h1 {
    margin-bottom: 12px;
    font-size: 27px;
    line-height: 1.4;
}

.tp13-video-detail-meta {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    color: var(--tp13-accent-dark);
    font-size: 13px;
    font-weight: 600;
    gap: 18px;
}

.tp13-video-detail-meta span + span {
    position: relative;
    color: #777777;
    font-weight: 400;
}

.tp13-video-detail-meta span + span::before {
    position: absolute;
    top: 0;
    left: -10px;
    color: #b3b3b3;
    content: "/";
}

.tp13-article.is-video-detail .tp13-article-meta {
    justify-content: flex-start;
    gap: 24px;
}

.tp13-video-summary {
    max-width: 680px;
    margin: 14px 0 0;
    color: #777777;
    line-height: 1.7;
}

.tp13-article.is-video-detail .tp13-article-body {
    min-height: 0;
    padding: 0 0 24px;
}

.tp13-article.is-video-detail .tp13-article-tags,
.tp13-article.is-video-detail .tp13-prev-next {
    padding-right: 30px;
    padding-left: 30px;
}

.tp13-article.is-video-detail .tp13-detail-updates {
    padding: 0 30px 28px;
}

.tp13-article-body {
    min-height: 340px;
    padding: 20px 20px 30px;
    color: #555555;
    font-size: 17px;
    line-height: 2;
}

.tp13-article-body img {
    max-width: 100%;
    height: auto;
    margin: 22px auto;
    cursor: zoom-in;
}

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

.tp13-article-body video,
.news-video-player {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 820px;
    margin: 20px auto;
    border-radius: var(--tp13-radius);
    background: #111317;
    box-shadow: 0 14px 34px rgb(17 19 23 / 20%);
}

.news-video-player video {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(68vh, 620px);
    aspect-ratio: 16 / 9;
    background: #111317;
    object-fit: contain;
    outline: none;
}

.tp13-article.is-video-detail .news-video-player {
    max-width: none;
    margin: 0 0 24px;
    border-radius: 0;
    box-shadow: none;
}

.news-video-player.is-vertical video {
    width: auto;
    max-width: 100%;
    height: min(72vh, 680px);
    aspect-ratio: auto;
}

.news-video-player.is-vertical,
.news-video-player.is-square {
    max-width: 540px;
}

.tp13-article.is-video-detail .news-video-player.is-vertical,
.tp13-article.is-video-detail .news-video-player.is-square {
    max-width: none;
}

.news-video-player-meta {
    display: flex;
    align-self: stretch;
    min-height: 50px;
    margin: 0;
    padding: 11px 18px;
    align-items: center;
    justify-content: space-between;
    color: #aeb1b7;
    background: #202228;
    box-shadow: inset 0 1px rgb(248 248 248 / 8%);
    font-size: 13px;
    line-height: 1.5;
    gap: 18px;
    transition: box-shadow 160ms ease;
}

.news-video-player-meta strong {
    min-width: 0;
    overflow: hidden;
    color: #f1f1f1;
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-video-player-meta span {
    flex: 0 0 auto;
    color: #ff6a45;
    font-weight: 600;
    white-space: nowrap;
}

.news-video-player.is-playing .news-video-player-meta {
    box-shadow: inset 4px 0 var(--tp13-accent), inset 0 1px rgb(248 248 248 / 8%);
}

.news-video-player.has-error .news-video-player-meta {
    box-shadow: inset 4px 0 #b42318, inset 0 1px rgb(248 248 248 / 8%);
}

.tp13-article-tags {
    display: flex;
    flex-wrap: wrap;
    padding: 18px 20px;
    gap: 10px;
    box-shadow: inset 0 1px #ededed;
}

.tp13-prev-next {
    display: grid;
    padding: 18px 20px;
    gap: 8px;
    box-shadow: inset 0 1px #ededed;
}

.tp13-image-lightbox {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: grid;
    padding: 50px;
    place-items: center;
    background: rgb(18 18 18 / 92%);
}

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

.tp13-image-lightbox button {
    position: absolute;
    top: 20px;
    right: 24px;
    padding: 8px 13px;
    border: 0;
    color: #f5f5f5;
    background: #333333;
    cursor: pointer;
}

.tp13-standings-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 8px;
}

.tp13-standings-tabs a {
    padding: 7px 11px;
    border-radius: var(--tp13-radius);
    background: #eeeeee;
}

.tp13-standings-tabs a.active {
    color: #f7f7f7;
    background: var(--tp13-green);
}

.tp13-standing-round + .tp13-standing-round {
    margin-top: 24px;
}

.tp13-table-wrap {
    overflow-x: auto;
}

.tp13-standings-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-family: Consolas, "Microsoft Yahei", monospace;
    text-align: center;
}

.tp13-standings-table th {
    padding: 12px 10px;
    color: #f3f3f3;
    background: #303033;
    font-weight: 600;
}

.tp13-standings-table td {
    padding: 11px 10px;
}

.tp13-standings-table tbody tr:nth-child(even) {
    background: #f2f2f2;
}

.tp13-team-cell {
    display: flex;
    min-width: 180px;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.tp13-team-cell img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tp13-compact-match-list {
    display: grid;
    gap: 4px;
}

.tp13-compact-match-list a {
    display: grid;
    padding: 9px 0;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 12px;
    box-shadow: inset 0 -1px #eeeeee;
}

.tp13-sitemap-intro p {
    margin: 0;
    color: #777777;
}

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

.tp13-sitemap-links a {
    display: flex;
    min-width: 0;
    padding: 8px 0;
    justify-content: space-between;
}

.tp13-sitemap-links span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp13-sitemap-links time {
    color: #999999;
    font-size: 12px;
}

.tp13-empty {
    margin: 0;
    padding: 30px 16px;
    color: #888888;
    text-align: center;
}

.tp13-empty h1,
.tp13-empty h2 {
    margin: 0 0 8px;
    color: #444444;
}

.tp13-footer {
    margin-top: 20px;
    padding: 0 0 32px;
    color: #828282;
    background: var(--tp13-header-deep);
}

.tp13-footer-description {
    margin: 0 0 30px;
    padding: 18px 0;
    background: #202020;
}

.tp13-footer nav {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 10px 20px;
}

.tp13-footer nav a:hover {
    color: #d5d5d5;
}

.tp13-back-top {
    position: fixed;
    z-index: 20;
    right: 28px;
    bottom: 28px;
    padding: 10px 14px;
    border: 0;
    border-radius: var(--tp13-radius);
    color: #f7f7f7;
    background: var(--tp13-accent);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

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

@media (max-width: 1120px) {
    .tp13-nav a {
        padding-right: 13px;
        padding-left: 13px;
        font-size: 15px;
    }

    .tp13-ticker-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .tp13-ticker-item:nth-child(n + 5) {
        display: none;
    }
}

@media (max-width: 900px) {
    .tp13-header-row {
        position: relative;
        min-height: 72px;
    }

    .tp13-brand {
        min-width: 0;
        font-size: 34px;
    }

    .tp13-nav-toggle {
        display: block;
    }

    .tp13-nav {
        position: absolute;
        z-index: 10;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        padding: 8px;
        border-radius: var(--tp13-radius);
        background: #282828;
        box-shadow: 0 12px 28px rgb(15 15 15 / 30%);
    }

    .tp13-nav.is-open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp13-nav a {
        padding: 12px 14px;
    }

    .tp13-nav a::after {
        display: none;
    }

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

    .tp13-ticker-item:nth-child(n + 4) {
        display: none;
    }

    .tp13-tag-live-row {
        gap: 12px;
        grid-template-columns: 160px minmax(0, 1fr) 60px minmax(0, 1fr) 82px;
    }

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

    .tp13-live-layout,
    .tp13-content-grid,
    .tp13-live-detail {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp13-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp13-article-layout .tp13-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .tp13-container {
        width: min(100% - 20px, var(--tp13-container));
    }

    .tp13-topline {
        height: 34px;
        font-size: 12px;
    }

    .tp13-topline .tp13-container {
        line-height: 34px;
    }

    .tp13-breadcrumb {
        min-height: 46px;
        line-height: 46px;
    }

    .tp13-panel {
        padding: 14px;
    }

    .tp13-match-ticker {
        padding: 10px;
    }

    .tp13-ticker-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp13-ticker-item:nth-child(n + 3) {
        display: none;
    }

    .tp13-tag-live-heading {
        min-height: 46px;
        padding: 0 14px;
    }

    .tp13-tag-live-heading span {
        display: none;
    }

    .tp13-tag-live-list {
        padding: 0 10px 6px;
    }

    .tp13-tag-live-row {
        min-height: 102px;
        padding: 11px 4px;
        gap: 9px 10px;
        grid-template-areas:
            "meta meta action"
            "home score away";
        grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
        grid-template-rows: auto 1fr;
    }

    .tp13-tag-live-meta {
        grid-area: meta;
        grid-template-columns: 42px 50px minmax(0, 1fr);
    }

    .tp13-tag-live-team {
        font-size: 13px;
        gap: 7px;
    }

    .tp13-tag-live-team.is-home {
        grid-area: home;
    }

    .tp13-tag-live-team.is-away {
        grid-area: away;
    }

    .tp13-tag-live-crest,
    .tp13-tag-live-logo-fallback {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
    }

    .tp13-tag-live-score {
        grid-area: score;
        font-size: 14px;
    }

    .tp13-tag-live-action {
        grid-area: action;
        font-size: 13px;
    }

    .tp13-home-feature {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp13-feature-media {
        padding: 12px;
    }

    .tp13-feature-media > a,
    .tp13-feature-media img,
    .tp13-feature-placeholder {
        min-height: 220px;
    }

    .tp13-feature-news {
        padding: 8px 16px 18px;
    }

    .tp13-match-grid,
    .tp13-video-grid,
    .tp13-topic-grid,
    .tp13-sitemap-grid,
    .tp13-detail-updates,
    .tp13-detail-update-list,
    .tp13-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp13-live-tabs button {
        flex: 1 1 50%;
        min-width: 0;
        padding-right: 12px;
        padding-left: 12px;
    }

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

    .tp13-topic-lead,
    .tp13-news-lead {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .tp13-topic-lead img,
    .tp13-news-lead img {
        width: 120px;
    }

    .tp13-tag-article-list article {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp13-scoreboard {
        grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
    }

    .tp13-scoreboard > section {
        display: grid;
        justify-items: center;
        text-align: center;
    }

    .tp13-scoreboard h2 {
        width: 100%;
        font-size: 16px;
    }

    .tp13-article > header {
        padding: 12px 4px 18px;
    }

    .tp13-article.is-video-detail > header {
        padding: 20px 16px 18px;
    }

    .tp13-article h1 {
        font-size: 24px;
    }

    .tp13-article-meta {
        display: grid;
        gap: 3px;
    }

    .tp13-article.is-video-detail .tp13-article-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 4px 16px;
    }

    .tp13-video-detail-meta {
        flex-wrap: wrap;
        gap: 4px 18px;
    }

    .tp13-article-body {
        padding: 15px 4px 22px;
        font-size: 16px;
    }

    .tp13-article.is-video-detail .tp13-article-body {
        padding-bottom: 18px;
    }

    .tp13-article.is-video-detail .news-video-player {
        margin-bottom: 18px;
    }

    .news-video-player video {
        max-height: 56vh;
    }

    .news-video-player.is-vertical video {
        height: min(62vh, 520px);
    }

    .news-video-player-meta {
        min-height: 46px;
        padding: 9px 12px;
        gap: 10px;
    }

    .news-video-player-meta strong {
        font-size: 13px;
    }

    .tp13-article.is-video-detail .tp13-article-tags,
    .tp13-article.is-video-detail .tp13-prev-next {
        padding-right: 16px;
        padding-left: 16px;
    }

    .tp13-article.is-video-detail .tp13-detail-updates {
        padding: 0 16px 22px;
    }

    .tp13-image-lightbox {
        padding: 20px;
    }

    .tp13-footer-description {
        margin-bottom: 22px;
    }

    .tp13-back-top {
        right: 14px;
        bottom: 14px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Live detail redirect CTA */
[data-live-loading-link] {
    --live-cta-start: #b43a0c;
    --live-cta-end: #8b2c08;
    --live-cta-glow-rgb: 240 68 24;
    --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;
    }
}

/* Mobile category-card navigation CTA. */


[data-content-tag-more].tp13-content-tag-more {
    display: none;
}

.tp13-content-tag-more:focus-visible {
    outline: 2px solid var(--tp13-green-dark);
    outline-offset: -2px;
}

@media (max-width: 767px) {
    [data-content-tag-more].tp13-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 #cfe9da;
        border-radius: 4px;
        background: #edf9f3;
        color: var(--tp13-green-dark);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
    }

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