/* ================================
   作者：Vstar
   体育 - Mobile端现代深色主题样式
   与PC端样式对应，适配移动端
   ================================ */

/* CSS 变量 - 与PC端一致的多彩配色 */
:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --purple: #8b5cf6;
    --orange: #f97316;
    --bg-dark: #0a0f1c;
    --bg-dark-light: #111827;
    --bg-dark-lighter: #1f2937;
    --bg-card: rgba(31, 41, 55, 0.8);
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(99, 102, 241, 0.2);
}

html {
    font-size: 50px;
    background: var(--bg-dark);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/*预览 清除滚动条*/
::-webkit-scrollbar {
    display: none;
    width: 0!important;
    height: 0!important;
    -webkit-appearance: none;
    background: transparent;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

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

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

/* 基础重置 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, button, fieldset, legend, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", 'PingFang SC', Arial, sans-serif;
}

body, div, a, p, b, i, em {
    font-size: .24rem;
}

ul, ol, li {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

/* 间距工具类 */
.mt30 { margin-top: .3rem; }
.mt40 { margin-top: .4rem; }
.mt50 { margin-top: .5rem; }
.mb20 { margin-bottom: .2rem; }
.mb30 { margin-bottom: .3rem; }
.mb40 { margin-bottom: .4rem; }
.mb50 { margin-bottom: .5rem; }

/* ================================
   内容容器
   ================================ */
.dv-spo-content {
    margin: 0 auto;
    background: var(--bg-dark);
    padding: .2rem;
    padding-bottom: 1.5rem;
}

/* ================================
   通用板块标题
   ================================ */
.dv-spo-section-title {
    display: flex;
    align-items: center;
    gap: .1rem;
    margin-bottom: .2rem;
    padding: .15rem 0;
}

.dv-spo-section-title h3 {
    font-size: .32rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}

.dv-spo-title-icon {
    width: .08rem;
    height: .32rem;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: .04rem;
}

.dv-spo-live-dot {
    width: .12rem;
    height: .12rem;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 .1rem #ef4444;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dv-spo-more-btn {
    padding: .06rem .16rem;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: .2rem;
    font-size: .22rem;
    color: var(--text-secondary);
}

/* ================================
   资讯轮播区域
   ================================ */
.dv-spo-news-banner-section {
    margin-bottom: .3rem;
}

.dv-spo-news-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -.2rem;
    padding: 0 .2rem;
}

.dv-spo-slider-wrapper {
    display: flex;
    gap: .2rem;
}

.dv-spo-slider-item {
    flex: 0 0 2.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    overflow: hidden;
    text-decoration: none;
}

.dv-spo-slider-img {
    width: 100%;
    height: 1.6rem;
    overflow: hidden;
}

.dv-spo-slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-slider-content {
    padding: .15rem;
}

.dv-spo-slider-content h4 {
    font-size: .24rem;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

/* ================================
   正在直播区域
   ================================ */
.dv-spo-live-section {
    margin-bottom: .3rem;
}

.dv-spo-live-grid {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.dv-spo-live-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .16rem;
    padding: .2rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.dv-spo-live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.dv-spo-live-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .2rem;
}

.dv-spo-live-tag {
    display: inline-flex;
    align-items: center;
    gap: .04rem;
    padding: .04rem .1rem;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: .04rem;
    font-size: .2rem;
    font-weight: 600;
    color: white;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.dv-spo-live-league {
    font-size: .22rem;
    color: var(--text-muted);
}

.dv-spo-live-card-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .15rem;
    margin-bottom: .2rem;
}

.dv-spo-live-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .08rem;
    flex: 1;
}

.dv-spo-live-team img {
    width: .8rem;
    height: .8rem;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    padding: .05rem;
}

.dv-spo-live-team span {
    font-size: .24rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.dv-spo-live-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .05rem;
}

.dv-spo-live-vs {
    font-size: .2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.dv-spo-live-numbers {
    display: flex;
    align-items: center;
    gap: .08rem;
}

.dv-spo-live-numbers strong {
    font-size: .4rem;
    font-weight: 700;
    color: var(--primary-light);
    min-width: .4rem;
    text-align: center;
}

.dv-spo-live-numbers span {
    font-size: .28rem;
    color: var(--text-muted);
    font-weight: 600;
}

.dv-spo-live-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: .15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-live-status {
    font-size: .22rem;
    color: #ef4444;
    font-weight: 500;
}

.dv-spo-watch-btn {
    padding: .06rem .16rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: .2rem;
    font-size: .22rem;
    color: white;
    font-weight: 500;
}

/* 暂无直播 */
.dv-spo-no-live {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .6rem .2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: .16rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.dv-spo-no-live-icon {
    font-size: .6rem;
    margin-bottom: .15rem;
    opacity: 0.8;
}

.dv-spo-no-live p {
    font-size: .28rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: .08rem;
}

.dv-spo-no-live span {
    font-size: .22rem;
    color: var(--text-secondary);
}

/* ================================
   赛事标签导航
   ================================ */
.dv-spo-index_label {
    margin-bottom: .2rem;
}

.dv-spo-index-label-list {
    display: flex;
    gap: .1rem;
    background: var(--bg-dark-lighter);
    padding: .1rem;
    border-radius: .12rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dv-spo-index-label-list li {
    list-style: none;
    padding: .12rem .2rem;
    cursor: pointer;
    border-radius: .08rem;
    color: var(--text-secondary);
    font-size: .24rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.dv-spo-index-label-list li:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.dv-spo-index-label-list li.on {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

/* ================================
   比赛列表内容
   ================================ */
.dv-spo-index_match_content {
    margin-bottom: .4rem;
}

.dv-spo-tab-panel {
    display: none;
}

.dv-spo-tab-panel.active {
    display: block;
}

.dv-spo-match-grid-new {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    margin-bottom: .2rem;
}

.dv-spo-match-card-new {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    padding: .2rem;
    text-decoration: none;
    display: block;
}

.dv-spo-match-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .15rem;
    padding-bottom: .15rem;
    border-bottom: 1px solid var(--border-color);
}

.dv-spo-league {
    font-size: .2rem;
    color: var(--text-muted);
}

.dv-spo-status {
    font-size: .2rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .05rem;
}

.dv-spo-status b {
    width: .06rem;
    height: .06rem;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dv-spo-status.dv-spo-live {
    color: #ef4444;
}

.dv-spo-match-teams {
    display: flex;
    flex-direction: column;
    gap: .12rem;
}

.dv-spo-team-row {
    display: flex;
    align-items: center;
    gap: .12rem;
}

.dv-spo-team-row img {
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    object-fit: cover;
}

.dv-spo-team-row span {
    flex: 1;
    font-size: .26rem;
    color: var(--text-primary);
}

.dv-spo-team-row strong {
    font-size: .28rem;
    color: var(--primary-light);
    font-weight: 700;
}

.dv-spo-match-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .15rem;
    padding-top: .15rem;
    border-top: 1px solid var(--border-color);
}

.dv-spo-match-foot span {
    font-size: .22rem;
    color: var(--primary-light);
}

.dv-spo-match-foot i {
    width: .4rem;
    height: .4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .24rem;
    font-style: normal;
}

.dv-spo-index_match_more {
    display: block;
    width: 2.5rem;
    margin: .2rem auto 0;
    padding: .15rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: .3rem;
    color: white;
    font-size: .26rem;
    font-weight: 600;
    text-decoration: none;
}

/* ================================
   精彩视频区域
   ================================ */
.dv-spo-video-section {
    margin-bottom: .3rem;
}

.dv-spo-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .15rem;
}

.dv-spo-video-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    overflow: hidden;
    text-decoration: none;
}

.dv-spo-video-item .dv-spo-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.dv-spo-video-item .dv-spo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: .6rem;
    height: .6rem;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dv-spo-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: .18rem solid white;
    border-top: .1rem solid transparent;
    border-bottom: .1rem solid transparent;
    margin-left: .04rem;
}

.dv-spo-video-name {
    padding: .1rem .1rem .05rem;
    font-size: .24rem;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dv-spo-video-category {
    padding: 0 .1rem .1rem;
    font-size: .2rem;
    color: var(--text-muted);
}

/* ================================
   录像集锦分栏
   ================================ */
.dv-spo-split-section {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: .3rem;
}

.dv-spo-split-col {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    padding: .15rem;
}

.dv-spo-list-modern {
    display: flex;
    flex-direction: column;
    gap: .08rem;
}

.dv-spo-list-item {
    display: flex;
    align-items: center;
    gap: .1rem;
    padding: .1rem;
    border-radius: .08rem;
    text-decoration: none;
}

.dv-spo-list-num {
    width: .4rem;
    height: .4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: .08rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .22rem;
    font-weight: 700;
    flex-shrink: 0;
}

.dv-spo-list-text {
    flex: 1;
    min-width: 0;
}

.dv-spo-list-text p {
    font-size: .24rem;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: .04rem;
}

.dv-spo-list-text span {
    font-size: .2rem;
    color: var(--text-muted);
}

/* ================================
   热门资讯
   ================================ */
.dv-spo-hot-news-section {
    margin-bottom: .3rem;
}

.dv-spo-news-list {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    padding: .15rem;
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.dv-spo-news-item {
    display: flex;
    align-items: center;
    gap: .1rem;
    padding: .1rem;
    border-radius: .08rem;
    text-decoration: none;
}

.dv-spo-rank {
    width: .4rem;
    height: .4rem;
    background: var(--bg-dark-lighter);
    border-radius: .08rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .22rem;
    color: var(--text-muted);
    font-weight: 700;
    flex-shrink: 0;
}

.dv-spo-rank.top {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.dv-spo-news-item p {
    flex: 1;
    font-size: .24rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ================================
   热门数据
   ================================ */
.dv-spo-data-section {
    margin-bottom: .3rem;
}

.dv-spo-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .15rem;
}

.dv-spo-data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .08rem;
    padding: .15rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    text-decoration: none;
}

.dv-spo-data-item img {
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    object-fit: cover;
}

.dv-spo-data-item span {
    font-size: .22rem;
    color: var(--text-secondary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* ================================
   热门关注
   ================================ */
.dv-spo-team-section {
    margin-bottom: .3rem;
}

.dv-spo-team-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .1rem;
    margin-bottom: .15rem;
}

.dv-spo-team-tabs span {
    padding: .08rem .14rem;
    background: var(--bg-dark-lighter);
    border-radius: .2rem;
    font-size: .22rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dv-spo-team-tabs span.on {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.dv-spo-team-panels {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    padding: .15rem;
}

.dv-spo-team-panel {
    display: none;
}

.dv-spo-team-panel.active {
    display: block;
}

.dv-spo-team-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .1rem;
}

.dv-spo-team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .06rem;
    padding: .1rem .05rem;
    background: var(--bg-dark-lighter);
    border-radius: .08rem;
    text-decoration: none;
}

.dv-spo-team-img-wrap {
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.dv-spo-team-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-team-letter {
    color: white;
    font-size: .28rem;
    font-weight: 700;
}

.dv-spo-team-item span {
    font-size: .18rem;
    color: var(--text-secondary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* ================================
   热门标签
   ================================ */
.dv-spo-tags-section {
    margin-bottom: .3rem;
}

.dv-spo-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    padding: .15rem;
}

.dv-spo-tag-new {
    display: inline-flex;
    align-items: center;
    padding: .08rem .16rem;
    background: var(--bg-dark-lighter);
    border-radius: .2rem;
    font-size: .22rem;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border-color);
}

/* ================================
   头部样式
   ================================ */
.dv-spo-header {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark-light) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

.dv-spo-header_tc {
    position: relative;
    background: transparent;
}

.dv-spo-header_tc .dv-spo-top {
    padding: 0.2rem 0.2rem 0rem;
    height: 1rem;
}

.dv-spo-header_tc .dv-spo-top .dv-spo-logo {
    width: 2rem;
    height: 0.4rem;
    display: block;
    float: left;
    margin-top: .2rem;
}

.dv-spo-header_tc .dv-spo-top .dv-spo-logo img {
    width: auto;
    height: .4rem;
}

.dv-spo-header_tc .dv-spo-menu-shadow-box {
    position: relative;
    width: 100%;
    z-index: 111;
    background: rgba(255, 255, 255, 0.05);
}

.dv-spo-header_tc .dv-spo-menu-shadow {
    position: relative;
    padding: .15rem 0 .15rem;
    margin: 0 .2rem;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    white-space: nowrap;
}

.dv-spo-header_tc .dv-spo-menu-shadow span {
    white-space: nowrap;
    display: block;
    border: .02rem solid var(--primary);
    padding: 0 .2rem;
    text-align: center;
    border-radius: 2em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: .24rem;
    height: 0.5rem;
    line-height: 0.5rem;
}

.dv-spo-menu-shadow ul {
    display: flex;
}

.dv-spo-menu-shadow ul li a.on {
    color: #fff;
    font-weight: bold;
    font-size: 0.28rem;
}

.dv-spo-menu-shadow ul li:first-child a {
    margin-left: 0.22rem;
}

.dv-spo-menu-shadow ul li a.on::after {
    position: absolute;
    content: '';
    width: 0.3rem;
    height: 0.04rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    bottom: 0rem;
    left: 50%;
    margin-left: -0.15rem;
}

.dv-spo-menu-shadow ul li a {
    display: block;
    position: relative;
    height: 0.5rem;
    line-height: 0.5rem;
    font-size: 0.24rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    padding: 0 0.1rem;
    margin: 0 0.22rem 0rem;
}

.dv-spo-meun {
    float: right;
}

.dv-spo-meun .dv-spo-menu_box {
    position: relative;
    z-index: 9;
    float: right;
    width: .52rem;
    height: .8rem;
    padding: .24rem 0 .07rem;
    cursor: pointer;
    transition: .3s;
}

.dv-spo-meun .dv-spo-menu_box b {
    display: block;
    height: .06rem;
    background-color: #fff;
    margin: .06rem 0 .1rem;
    border-radius: .04rem;
    transition: .3s;
}

.dv-spo-meun .dv-spo-menu_box.open b {
    display: none;
    margin: 0;
    position: absolute;
    top: 50%;
    width: .6rem;
}

.dv-spo-meun .dv-spo-menu_box.open b:first-child {
    display: block;
    transform: rotate(45deg);
}

.dv-spo-meun .dv-spo-menu_box.open b:last-child {
    display: block;
    transform: rotate(-45deg);
}

/* ================================
   底部样式
   ================================ */
.dv-spo-footer {
    background: linear-gradient(135deg, var(--bg-dark-light) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border-color);
    padding: 0.4rem 0.2rem 1rem;
    position: relative;
}

.dv-spo-footer p {
    font-size: 0.22rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 0.4rem;
}

.dv-spo-footer p a {
    color: var(--text-secondary) !important;
}

/* ================================
   返回顶部
   ================================ */
.dv-spo-totop-con {
    width: 100%;
    margin: 0 auto;
}

#dv-spo-totop {
    height: .6rem;
    position: fixed;
    right: .2rem;
    width: .6rem;
    z-index: 9999;
    bottom: 1.2rem;
    border-bottom: 0px;
    border-radius: .1rem;
    color: var(--primary);
    text-align: center;
    line-height: 1;
    display: none;
    cursor: pointer;
    transition: .3s;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

#dv-spo-totop i {
    display: block;
    width: 100%;
    height: 100%;
    vertical-align: top;
    background: url(../images/top-arrow.png) no-repeat center;
    background-size: .4rem;
    filter: invert(1);
}

/* ================================
   菜单面板
   ================================ */
.dv-spo-header_caidan {
    position: fixed;
    top: 1rem;
    width: 100%;
    right: -200%;
    bottom: 0;
    overflow: hidden;
    overflow-y: auto;
    background-color: rgba(10, 15, 28, 0.98);
    z-index: 222;
    font-size: .28rem;
}

.dv-spo-header_caidan ul {
    margin: .4rem;
    text-align: left;
}

.dv-spo-header_caidan li {
    position: relative;
    padding: .16rem 0px;
}

.dv-spo-header_caidan li a {
    color: var(--text-secondary);
    font-size: .28rem;
}

.dv-spo-header_caidan .dv-spo-explose {
    position: absolute;
    width: .6rem;
    top: 0;
    right: 0;
    height: .6rem;
    line-height: .6rem;
    z-index: 9;
}

.dv-spo-header_caidan .dv-spo-explose i.dv-spo-icon {
    width: .6rem;
    height: .6rem;
    background: url(../images/cdjt.png) no-repeat center;
    background-size: .4rem .4rem;
    display: block;
    filter: invert(1);
}

.dv-spo-header_caidan .dv-spo-explose i.icon-arrow-up {
    width: .6rem;
    height: .6rem;
    background: url(../images/cdjt2.png) no-repeat center;
    background-size: .4rem .4rem;
    display: block;
    filter: invert(1);
}

.dv-spo-header_caidan .dv-spo-sub {
    z-index: 99;
    display: none;
    line-height: .6rem;
    font-size: .26rem;
}

.dv-spo-header_caidan .dv-spo-sub a {
    padding-left: .4rem;
    font-size: .26rem;
    color: var(--text-muted);
}

/* ================================
   分页样式
   ================================ */
#page {
    text-align: center;
    width: 100%;
    margin-top: .3rem;
}

#page .pagination {
    border-radius: 0 !important;
    display: flex;
    justify-content: center;
    gap: .1rem;
}

#page .pagination li {
    display: block;
    float: left;
    width: 0.6rem;
    height: 0.6rem;
}

#page .pagination li span,
#page .pagination li a {
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    padding: 0px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    border-radius: .08rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page .pagination li.active span,
#page .pagination li a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

/* ================================
   旧样式兼容 - 资讯列表
   ================================ */
.dv-spo-detail_new_list {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    padding: .2rem;
}

.dv-spo-detail_new_list ul {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.dv-spo-detail_new_list ul li {
    display: flex;
    align-items: center;
    font-size: .26rem;
    line-height: .5rem;
    border-bottom: 1px solid var(--border-color);
    padding: .08rem 0;
}

.dv-spo-detail_new_list ul li:last-child {
    border-bottom: none;
}

.dv-spo-detail_new_list ul li span {
    display: inline-block;
    width: .08rem;
    height: .08rem;
    margin: 0 .1rem 0 0;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.dv-spo-detail_new_list ul li a {
    display: block;
    flex: 1;
    font-size: .24rem;
    color: var(--text-secondary);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ================================
   详情页样式
   ================================ */
.dv-spo-news_con {
    margin-bottom: 0.4rem;
    display: flex;
    flex-direction: column;
}

.dv-spo-news_left {
    width: 100%;
    flex: 1;
}

.dv-spo-news_right {
    width: 100%;
    margin-top: .2rem;
}

/*标题 来源*/
.dv-spo-news_top_cont {
    padding: .2rem 0 .3rem 0;
    border-bottom: 1px dashed var(--border-color);
    text-align: center !important;
}

.dv-spo-news_top_cont h1 {
    font-size: .34rem;
    display: block;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: .2rem;
    color: var(--text-primary);
}

.dv-spo-news_top_cont .dv-spo-text {
    font-size: .24rem;
    line-height: 1.5;
    color: var(--text-muted) !important;
}

/*内容*/
.dv-spo-news_detail {
    padding: .3rem 0;
    line-height: .5rem;
    font-size: .28rem;
    color: var(--text-secondary);
    margin-bottom: .2rem;
}

.dv-spo-news_detail p {
    line-height: .5rem;
    font-size: .28rem;
    color: var(--text-secondary);
    margin-bottom: .2rem;
}

.dv-spo-news_detail h3,
.dv-spo-news_detail h2 {
    line-height: .6rem;
    font-size: .32rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: .3rem;
}

.dv-spo-news_detail p img {
    display: block;
    width: 100%;
    margin: .3rem auto;
    height: auto !important;
    border-radius: .08rem;
}

/* ================================
   视频播放页
   ================================ */
.dv-spo-video_play {
    position: relative;
    background: #000000;
    width: 100%;
    height: 4rem;
    border-radius: .12rem;
    overflow: hidden;
}

.dv-spo-video_play img.dv-spo-img {
    max-width: 80%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dv-spo-video_cont_list {
    margin-bottom: .2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    padding: .2rem;
}

.dv-spo-video_cont_list span {
    display: block;
    font-size: .28rem;
    font-weight: bold;
    margin-bottom: .15rem;
    color: var(--text-primary);
}

.dv-spo-video_cont_list a {
    display: block;
    line-height: .4rem;
    font-size: .24rem;
    margin-bottom: .15rem;
    color: var(--text-secondary);
    padding: .1rem;
    background: var(--bg-dark-lighter);
    border-radius: .08rem;
}

/* ================================
   直播详情页
   ================================ */
.dv-spo-live_detail {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: .16rem;
    padding: .3rem;
    margin-bottom: .3rem;
    border: 1px solid var(--border-color);
}

.dv-spo-live_detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.dv-spo-live_name {
    text-align: center;
    font-size: .24rem;
    color: var(--text-muted);
    margin-bottom: .2rem;
}

.dv-spo-live_con {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
}

.dv-spo-live_con .dv-spo-team1,
.dv-spo-live_con .dv-spo-team2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .1rem;
    text-align: center;
}

.dv-spo-live_con .dv-spo-team_img {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    background: white;
}

.dv-spo-live_con .dv-spo-team_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-live_con h1 {
    font-size: .24rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.dv-spo-live_num {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .1rem;
}

.dv-spo-live_num_box {
    display: flex;
    align-items: center;
    gap: .15rem;
    font-size: .48rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dv-spo-live_status {
    padding: .08rem .2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: .2rem;
    font-size: .22rem;
    color: white;
    font-weight: 500;
}

/* 信号源 */
.dv-spo-match_details {
    margin: .2rem 0;
}

.dv-spo-signa ul {
    display: flex;
    flex-wrap: wrap;
    gap: .1rem;
    list-style: none;
}

.dv-spo-signa ul li {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .08rem;
}

.dv-spo-signa ul li.dv-spo-click {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}

.dv-spo-signa ul li a {
    display: block;
    padding: .12rem .24rem;
    color: var(--text-secondary);
    font-size: .24rem;
}

.dv-spo-signa ul li.dv-spo-click a {
    color: white;
}

/*直播详情*/
.dv-spo-live_content {
    padding: .2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
}

.dv-spo-live_content p {
    font-size: .24rem;
    line-height: .4rem;
    margin-bottom: .15rem;
    color: var(--text-secondary);
}

.dv-spo-live_content p span.dv-spo-tit {
    color: var(--primary-light);
}

/* ================================
   详情页标签
   ================================ */
.dv-spo-detail_tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .1rem;
    margin-top: .3rem;
    padding-top: .2rem;
    border-top: 1px solid var(--border-color);
}

.dv-spo-detail_tags span {
    font-size: .24rem;
    color: var(--text-muted);
    margin-right: .1rem;
}

.dv-spo-detail_tags a {
    display: inline-block;
    padding: .06rem .14rem;
    background: var(--bg-dark-lighter);
    border-radius: .2rem;
    color: var(--text-secondary);
    font-size: .22rem;
    border: 1px solid var(--border-color);
}

/*上下页*/
.dv-spo-news_detail_page {
    margin: .4rem 0;
    padding: .2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
}

.dv-spo-news_detail_page p,
.dv-spo-news_detail_page a {
    font-size: .24rem;
    margin-bottom: .1rem;
    color: var(--text-secondary);
}

/* ================================
   没有数据
   ================================ */
.dv-spo-nothing {
    text-align: center;
    margin: .8rem 0px;
    min-height: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dv-spo-nothing img {
    width: 2rem;
}

.dv-spo-nothing span {
    display: block;
    color: var(--text-muted);
    margin-top: .2rem;
}

/* ================================
   地图/面包屑
   ================================ */
.dv-spo-map {
    padding: .15rem 0;
    color: var(--text-muted);
    font-size: .24rem;
}

.dv-spo-map a {
    color: var(--text-secondary);
    font-size: .24rem;
}

.dv-spo-crumbs {
    margin: .2rem 0;
    font-size: .24rem;
    color: var(--text-muted);
}

.dv-spo-crumbs a {
    color: var(--text-secondary);
    font-size: .24rem;
}

.dv-spo-crumbs a:not(:last-child)::after {
    padding: 0px .1rem;
    content: '>';
}

/* ================================
   排行榜
   ================================ */
.dv-spo-jf_rnak {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    margin-top: .2rem;
    padding: .2rem;
}

.dv-spo-jf_rnak .dv-spo-jfname {
    font-size: .28rem;
    font-weight: bold;
    padding-bottom: .15rem;
    margin-bottom: .15rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.dv-spo-jf_rnak .dv-spo-rankingt {
    display: grid;
    grid-template-columns: 10% 35% 15% 15% 15% 10%;
    height: .8rem;
    align-items: center;
    padding: .1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.dv-spo-jf_rnak .dv-spo-rankingt.dv-spo-bgg {
    background: var(--bg-dark-lighter);
    font-weight: 600;
    color: var(--text-primary);
}

.dv-spo-jf_rnak .dv-spo-num {
    display: block;
    width: .32rem;
    height: .32rem;
    background: var(--bg-dark-lighter);
    color: var(--text-secondary);
    border-radius: .04rem;
    text-align: center;
    font-size: .2rem;
    line-height: .32rem;
}

.dv-spo-jf_rnak .dv-spo-logo {
    display: flex;
    align-items: center;
    text-align: left;
}

.dv-spo-jf_rnak .dv-spo-logo img {
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: .1rem;
}

.dv-spo-jf_rnak .dv-spo-team {
    font-size: .22rem;
    color: var(--text-secondary);
}

/* ================================
   日期tab
   ================================ */
.dv-spo-data_conten {
    width: 100%;
    overflow: hidden;
    display: flex;
    margin-top: 0.3rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .1rem;
}

.dv-spo-data_conten a {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: .08rem;
    width: 1.1rem;
    height: 1rem;
    font-size: .26rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-card);
    color: var(--text-secondary);
}

.dv-spo-data_conten a.on {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

/* ================================
   球队详情
   ================================ */
.dv-spo-detail_top {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    overflow: hidden;
    position: relative;
    padding: .2rem;
}

.dv-spo-detail_top .dv-spo-img {
    float: left;
    width: .8rem;
    height: .8rem;
    margin-right: .2rem;
    object-fit: contain;
    background: var(--bg-dark-lighter);
    border-radius: .08rem;
    padding: .05rem;
}

.dv-spo-detail_top .dv-spo-name .dv-spo-zh {
    margin-bottom: .06rem;
    font-size: .28rem;
    color: var(--text-primary);
    display: flex;
    font-weight: 600;
}

.dv-spo-detail_top .dv-spo-name .dv-spo-en {
    display: flex;
    font-size: .22rem;
    color: var(--text-muted);
}

.dv-spo-detail_top .dv-spo-market {
    height: .6rem;
    line-height: .6rem;
    color: white;
    font-size: .24rem;
    padding: 0 .2rem;
    position: absolute;
    top: .2rem;
    right: .2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: .3rem;
}

/* ================================
   热门数据列表
   ================================ */
.dv-spo-index_wangluo_list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .15rem;
}

.dv-spo-index_wangluo_list ul li {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .08rem;
    padding: .15rem;
}

.dv-spo-index_wangluo_list ul li .dv-spo-img {
    height: 1.6rem;
    position: relative;
    overflow: hidden;
    border-radius: .08rem;
}

.dv-spo-index_wangluo_list ul li .dv-spo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-index_wangluo_list ul li p {
    font-size: .24rem;
    color: var(--text-primary);
    height: .6rem;
    line-height: .6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

/* ================================
   热门球队/球员列表
   ================================ */
.dv-spo-index_hot_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    padding: .15rem;
}

.dv-spo-index_hot_list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .1rem .05rem;
    background: var(--bg-dark-lighter);
    border-radius: .08rem;
    text-decoration: none;
}

.dv-spo-index_hot_list a img {
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: .06rem;
}

.dv-spo-index_hot_list a span {
    font-size: .18rem;
    color: var(--text-secondary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* ================================
   图文列表
   ================================ */
.dv-spo-tuwen_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .15rem;
}

.dv-spo-tuwen_list a {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .12rem;
    overflow: hidden;
    text-decoration: none;
}

.dv-spo-tuwen_list .dv-spo-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.dv-spo-tuwen_list .dv-spo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-tuwen_list .dv-spo-title {
    padding: .12rem;
    font-size: .24rem;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ================================
   赛事聚合信息
   ================================ */
.dv-spo-saishi_tab {
    border-radius: .12rem;
    border: 1px solid var(--border-color);
    padding: .2rem;
    margin-top: .3rem;
    overflow: hidden;
    background: var(--bg-card);
}

.dv-spo-saishi_tab img {
    float: left;
    height: .6rem;
    width: auto;
    margin-top: .1rem;
}

.dv-spo-saishi_tab span {
    float: left;
    height: .8rem;
    line-height: .8rem;
    margin-left: .2rem;
    font-size: .32rem;
    color: var(--text-primary);
    font-weight: bold;
}

.dv-spo-saishi_tab .dv-spo-saishi_item {
    padding-bottom: .2rem;
    float: right;
    display: flex;
    gap: .1rem;
}

.dv-spo-saishi_tab .dv-spo-saishi_item a {
    position: relative;
    display: inline-block;
    font-size: .24rem;
    padding: .06rem .12rem;
    height: .5rem;
    line-height: .36rem;
    margin-top: .15rem;
    border-radius: .08rem;
    color: var(--text-secondary);
    background: var(--bg-dark-lighter);
}

.dv-spo-saishi_tab .dv-spo-saishi_item a.on {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* ================================
   直播tab
   ================================ */
.dv-spo-live_con_tab {
    display: flex;
    justify-content: space-between;
    height: .7rem;
    gap: .1rem;
    margin-bottom: .2rem;
}

.dv-spo-live_con_tab li {
    flex: 1;
}

.dv-spo-live_con_tab li a {
    display: block;
    width: 100%;
    font-size: .24rem;
    text-align: center;
    cursor: pointer;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    height: .7rem;
    line-height: .7rem;
    border-radius: .08rem;
}

.dv-spo-live_con_tab li a.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

/* ================================
   频道列表
   ================================ */
.dv-spo-pmap ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .1rem;
}

.dv-spo-pmap ul li {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: .08rem;
    height: .7rem;
    line-height: .7rem;
    padding-left: .15rem;
}

.dv-spo-pmap ul li a {
    overflow: hidden;
    height: .7rem;
    display: block;
    font-size: .24rem;
    color: var(--text-secondary);
}

/* ================================
   Live页面 - 现代化样式
   ================================ */

/* 主容器布局 */
.dv-spo-container {
    padding: 0.2rem;
    padding-bottom: 1rem;
}

.dv-spo-layout-two {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dv-spo-layout-main {
    flex: 1;
}

.dv-spo-layout-sidebar {
    width: 100%;
}

/* 面包屑导航 */
.dv-spo-breadcrumb {
    margin-bottom: 0.2rem;
}

.dv-spo-breadcrumb .dv-spo-crumbs {
    font-size: 0.22rem;
    color: var(--text-muted);
}

.dv-spo-breadcrumb .dv-spo-crumbs a {
    color: var(--text-secondary);
}

.dv-spo-breadcrumb .dv-spo-crumbs a:hover {
    color: var(--primary-light);
}

/* 直播Tab导航 - 新样式 */
.dv-spo-live-tab-nav {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.25rem;
}

.dv-spo-live-tab-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    padding: 0.15rem 0.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dv-spo-live-tab-item.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}

.dv-spo-live-tab-item span:last-child {
    font-size: 0.24rem;
    color: var(--text-secondary);
}

.dv-spo-live-tab-item.active span:last-child {
    color: white;
}

.dv-spo-tab-dot {
    width: 0.1rem;
    height: 0.1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.dv-spo-live-dot {
    background: #ef4444;
    box-shadow: 0 0 0.08rem #ef4444;
    animation: pulse 1.5s infinite;
}

.dv-spo-ended-dot {
    background: var(--text-muted);
}

.dv-spo-live-tab-item.active .dv-spo-tab-dot {
    background: white;
    box-shadow: 0 0 0.08rem rgba(255,255,255,0.5);
}

/* 日期标签 */
.dv-spo-date-tabs {
    display: flex;
    gap: 0.1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0.2rem;
    padding-bottom: 0.1rem;
}

.dv-spo-date-tabs a {
    flex-shrink: 0;
    min-width: 1rem;
    padding: 0.12rem 0.15rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.1rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.02rem;
}

.dv-spo-date-tabs a.on {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}

.dv-spo-date-tabs a.on * {
    color: white !important;
}

.dv-spo-today-label {
    font-size: 0.24rem;
    color: var(--text-primary);
    font-weight: 600;
}

.dv-spo-date-day {
    font-size: 0.22rem;
    color: var(--text-secondary);
}

.dv-spo-date-week {
    font-size: 0.18rem;
    color: var(--text-muted);
}

/* 比赛日期标题 */
.dv-spo-match-date-header {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin: 0.25rem 0 0.15rem;
    padding: 0.1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.dv-spo-date-icon {
    width: 0.06rem;
    height: 0.24rem;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 0.03rem;
}

.dv-spo-match-date-header time {
    font-size: 0.24rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* 比赛卡片网格 - 新样式 */
.dv-spo-match-list-section {
    margin-bottom: 0.3rem;
}

.dv-spo-match-item-new {
    margin-bottom: 0.15rem;
}

.dv-spo-match-card-new {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    padding: 0.2rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.dv-spo-match-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dv-spo-match-card-new:hover::before {
    opacity: 1;
}

/* 状态标签 */
.dv-spo-status {
    position: absolute;
    top: 0.15rem;
    right: 0.15rem;
    padding: 0.04rem 0.1rem;
    border-radius: 0.04rem;
    font-size: 0.18rem;
    font-weight: 600;
}

.dv-spo-status.dv-spo-live {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    animation: live-pulse 2s infinite;
}

.dv-spo-status.dv-spo-prelive {
    background: var(--bg-dark-lighter);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.dv-spo-status.dv-spo-ended {
    background: var(--bg-dark-lighter);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

/* 比赛信息 */
.dv-spo-match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.15rem;
    padding-bottom: 0.12rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dv-spo-match-info .dv-spo-time {
    font-size: 0.22rem;
    color: var(--text-muted);
}

.dv-spo-match-info .dv-spo-cate {
    font-size: 0.2rem;
    color: var(--primary-light);
}

/* 队伍行 */
.dv-spo-teams-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
    margin-bottom: 0.15rem;
}

.dv-spo-team-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
}

.dv-spo-team-box img {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255,255,255,0.05);
    padding: 0.05rem;
}

.dv-spo-team-box span {
    font-size: 0.24rem;
    color: var(--text-primary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* 比分 */
.dv-spo-score-box {
    display: flex;
    align-items: center;
    gap: 0.08rem;
}

.dv-spo-score {
    font-size: 0.36rem;
    font-weight: 700;
    color: var(--primary-light);
    min-width: 0.5rem;
    text-align: center;
}

.dv-spo-vs {
    font-size: 0.24rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* 观看按钮行 */
.dv-spo-watch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.12rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.dv-spo-watch-label {
    font-size: 0.2rem;
    color: var(--text-muted);
}

.dv-spo-watch-btn {
    padding: 0.06rem 0.14rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.2rem;
    font-size: 0.2rem;
    color: white;
    font-weight: 500;
}

.dv-spo-replay-btn {
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* 比赛Hero区域 - 详情页 */
.dv-spo-match-hero-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 0.16rem;
    padding: 0.3rem 0.2rem;
    margin-bottom: 0.25rem;
    position: relative;
    overflow: hidden;
}

.dv-spo-match-hero-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.dv-spo-match-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.2rem;
}

.dv-spo-team-a,
.dv-spo-team-b {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.dv-spo-team-a img,
.dv-spo-team-b img {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255,255,255,0.1);
    padding: 0.05rem;
    border: 2px solid var(--primary);
}

.dv-spo-team-a span,
.dv-spo-team-b span {
    font-size: 0.24rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
}

.dv-spo-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
}

.dv-spo-vs .dv-spo-score {
    font-size: 0.48rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dv-spo-status-badge {
    padding: 0.06rem 0.16rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.2rem;
    font-size: 0.2rem;
    color: white;
    font-weight: 500;
}

.dv-spo-match-time {
    font-size: 0.2rem;
    color: var(--text-muted);
}

/* 侧边栏区块 */
.dv-spo-sidebar-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    padding: 0.2rem;
    margin-bottom: 0.2rem;
}

.dv-spo-sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    margin-bottom: 0.15rem;
    padding-bottom: 0.12rem;
    border-bottom: 1px solid var(--border-color);
}

.dv-spo-sidebar-title h4 {
    font-size: 0.26rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* 视频列表新样式 */
.dv-spo-video-list-new {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.dv-spo-video-item-new {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.1rem;
    border-radius: 0.08rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dv-spo-video-item-new:hover {
    background: rgba(255,255,255,0.05);
}

.dv-spo-video-item-new .dv-spo-num {
    width: 0.36rem;
    height: 0.36rem;
    background: var(--bg-dark-lighter);
    border-radius: 0.06rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.2rem;
    color: var(--text-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.dv-spo-video-item-new:nth-child(-n+3) .dv-spo-num {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.dv-spo-video-text {
    flex: 1;
    min-width: 0;
}

.dv-spo-video-text p {
    font-size: 0.22rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

/* 信号列表 */
.dv-spo-signal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
}

.dv-spo-signal-item {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    padding: 0.1rem 0.16rem;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 0.08rem;
    text-decoration: none;
    font-size: 0.22rem;
    color: var(--text-secondary);
}

.dv-spo-signal-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

.dv-spo-signal-dot {
    width: 0.08rem;
    height: 0.08rem;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0.06rem #10b981;
    animation: pulse 2s infinite;
}

.dv-spo-empty {
    width: 100%;
    padding: 0.3rem;
    text-align: center;
    font-size: 0.22rem;
    color: var(--text-muted);
    background: var(--bg-dark-lighter);
    border-radius: 0.08rem;
}

/* 文章卡片 */
.dv-spo-article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    padding: 0.2rem;
}

.dv-spo-live_content .dv-spo-label {
    color: var(--text-muted);
    font-size: 0.22rem;
}

.dv-spo-live_content .dv-spo-tit {
    color: var(--primary-light);
    font-size: 0.22rem;
}

.dv-spo-content-text {
    margin-top: 0.15rem;
    color: var(--text-secondary) !important;
    line-height: 1.6;
}

/* 标签 */
.dv-spo-detail_tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.1rem;
    margin-top: 0.2rem;
}

.dv-spo-tag-label {
    font-size: 0.22rem;
    color: var(--text-muted);
}

.dv-spo-detail_tags a {
    display: inline-block;
    padding: 0.06rem 0.14rem;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 0.2rem;
    font-size: 0.2rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.dv-spo-detail_tags a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

/* 视频网格 */
.dv-spo-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.15rem;
}

.dv-spo-video-item {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    overflow: hidden;
    text-decoration: none;
}

.dv-spo-video-item .dv-spo-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.dv-spo-video-item .dv-spo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-video-item .dv-spo-video-name {
    padding: 0.1rem;
    font-size: 0.22rem;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 标签云 */
.dv-spo-tag-cloud-new {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
}

.dv-spo-tag-new {
    display: inline-block;
    padding: 0.06rem 0.14rem;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 0.2rem;
    font-size: 0.2rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.dv-spo-tag-new:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

/* ================================
   Video页面 - 视频详情页样式
   ================================ */

/* 视频详情卡片 */
.dv-spo-video-detail {
    padding: 0;
    overflow: hidden;
}

.dv-spo-article-header {
    padding: 0.25rem;
    border-bottom: 1px solid var(--border-color);
}

.dv-spo-article-header h1 {
    font-size: 0.32rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    line-height: 1.4;
}

.dv-spo-article-header .dv-spo-text {
    display: flex;
    gap: 0.2rem;
    font-size: 0.2rem;
    color: var(--text-muted);
}

/* 视频播放区域 */
.dv-spo-video-play-box {
    margin: 0.25rem;
}

.dv-spo-video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 0.12rem;
    overflow: hidden;
}

.dv-spo-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.dv-spo-video-thumb:hover .dv-spo-video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.dv-spo-play-btn {
    width: 1.2rem;
    height: 1.2rem;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0.3rem rgba(99, 102, 241, 0.5);
    transition: transform 0.3s ease;
}

.dv-spo-video-thumb:hover .dv-spo-play-btn {
    transform: scale(1.1);
}

.dv-spo-play-icon-large {
    width: 0;
    height: 0;
    border-left: 0.4rem solid white;
    border-top: 0.25rem solid transparent;
    border-bottom: 0.25rem solid transparent;
    margin-left: 0.1rem;
}

/* 视频列表区域 */
.dv-spo-video-list-section {
    margin: 0 0.25rem 0.25rem;
    padding: 0.2rem;
    background: var(--bg-dark-lighter);
    border-radius: 0.1rem;
}

.dv-spo-section-subtitle {
    font-size: 0.24rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid var(--border-color);
}

.dv-spo-video-list-item {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.15rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.08rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dv-spo-video-list-item:hover {
    border-color: var(--primary);
}

.dv-spo-video-num {
    width: 0.36rem;
    height: 0.36rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.2rem;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.dv-spo-video-title {
    flex: 1;
    font-size: 0.24rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dv-spo-video-play-icon {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--bg-dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.18rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

/* 分页导航 */
.dv-spo-page-nav {
    margin: 0.3rem 0;
    padding: 0.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
}

.dv-spo-page-nav p {
    font-size: 0.22rem;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.dv-spo-page-nav p:last-child {
    margin-bottom: 0;
}

.dv-spo-page-nav a {
    color: var(--text-secondary);
}

.dv-spo-page-nav a:hover {
    color: var(--primary-light);
}

/* 播放图标 */
.dv-spo-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.6rem;
    height: 0.6rem;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dv-spo-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 0.18rem solid white;
    border-top: 0.1rem solid transparent;
    border-bottom: 0.1rem solid transparent;
    margin-left: 0.04rem;
}

.dv-spo-video-item:hover .dv-spo-play-icon {
    opacity: 1;
}

.dv-spo-video-item .dv-spo-img {
    position: relative;
}

/* ================================
   Highlights页面 - 标签切换样式
   ================================ */

/* 赛事标签切换 */
.dv-spo-match-tabs {
    display: flex;
    gap: 0.1rem;
    margin-bottom: 0.2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.1rem;
}

.dv-spo-match-tabs a {
    flex-shrink: 0;
    padding: 0.12rem 0.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.2rem;
    font-size: 0.22rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dv-spo-match-tabs a.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

.dv-spo-match-tab-content {
    margin-bottom: 0.3rem;
}

.dv-spo-match-tab-content .dv-spo-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.15rem;
}

.dv-spo-match-tab-content .dv-spo-video-grid.dv-spo-hidden {
    display: none;
}

/* ================================
   Channel页面 - 频道相关样式
   ================================ */

/* 频道列表 */
.dv-spo-channel-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.15rem;
}

.dv-spo-channel-item {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.2rem 0.15rem;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dv-spo-channel-item:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.dv-spo-channel-icon {
    font-size: 0.4rem;
    flex-shrink: 0;
}

.dv-spo-channel-name {
    font-size: 0.24rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dv-spo-channel-item:hover .dv-spo-channel-name {
    color: var(--text-primary);
}

/* 频道详情页 */
.dv-spo-channel-detail {
    padding: 0.3rem;
}

.dv-spo-channel-title {
    font-size: 0.36rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dv-spo-channel-player {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 0.12rem;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.dv-spo-channel-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dv-spo-channel-play-btn {
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dv-spo-channel-play-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 0.3rem solid white;
    border-top: 0.18rem solid transparent;
    border-bottom: 0.18rem solid transparent;
    margin-left: 0.08rem;
}

.dv-spo-channel-content {
    font-size: 0.22rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.dv-spo-channel-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.1rem;
    padding-top: 0.2rem;
    border-top: 1px solid var(--border-color);
}

.dv-spo-channel-tags .dv-spo-tag-label {
    font-size: 0.2rem;
    color: var(--text-muted);
}

.dv-spo-channel-tags a {
    padding: 0.06rem 0.12rem;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 0.15rem;
    font-size: 0.2rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.dv-spo-channel-tags a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

/* 上一篇/下一篇 */
.dv-spo-news_detail_page {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    padding: 0.2rem;
    margin: 0.2rem 0;
}

.dv-spo-news_detail_page p {
    font-size: 0.22rem;
    color: var(--text-secondary);
    margin-bottom: 0.1rem;
}

.dv-spo-news_detail_page p:last-child {
    margin-bottom: 0;
}

.dv-spo-news_detail_page a {
    color: var(--primary-light);
    text-decoration: none;
}

.dv-spo-news_detail_page a:hover {
    text-decoration: underline;
}

/* ================================
   Search页面 - 搜索相关样式
   ================================ */

/* 搜索元信息 */
.dv-spo-search-meta {
    padding: 0.15rem 0.2rem;
    font-size: 0.2rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    margin-top: 0.15rem;
}

/* ================================
   Tags页面 - 标签相关样式
   ================================ */

/* 标签元信息 */
.dv-spo-tag-meta {
    padding: 0.15rem 0.2rem;
    font-size: 0.2rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    margin-top: 0.15rem;
}

/* 内容列表 */
.dv-spo-content-list {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.dv-spo-content-item {
    display: flex;
    gap: 0.2rem;
    padding: 0.2rem;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dv-spo-content-item:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.dv-spo-content-thumb {
    width: 1.6rem;
    height: 1.2rem;
    border-radius: 0.08rem;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
}

.dv-spo-content-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dv-spo-content-item:hover .dv-spo-content-thumb img {
    transform: scale(1.05);
}

.dv-spo-content-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dv-spo-content-info h4 {
    font-size: 0.26rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.08rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dv-spo-content-item:hover .dv-spo-content-info h4 {
    color: var(--primary-light);
}

.dv-spo-content-info p {
    font-size: 0.2rem;
    color: var(--text-secondary);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.1rem;
}

.dv-spo-content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.18rem;
}

.dv-spo-content-type {
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.04rem 0.1rem;
    border-radius: 0.08rem;
}

.dv-spo-content-time {
    color: var(--text-muted);
}

/* 侧边栏列表项 */
.dv-spo-list-dot {
    width: 0.08rem;
    height: 0.08rem;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 0.1rem;
}

.dv-spo-list-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 侧边栏列表项 */
.dv-spo-video-list-new li {
    margin-bottom: 0.1rem;
}

.dv-spo-video-list-new li a {
    display: flex;
    align-items: center;
    padding: 0.08rem 0;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.22rem;
    transition: color 0.3s ease;
}

.dv-spo-video-list-new li a:hover {
    color: var(--primary-light);
}

/* ================================
   Team页面 - 球队相关样式
   ================================ */

/* 球队网格 */
.dv-spo-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.15rem;
}

.dv-spo-team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.2rem 0.1rem;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dv-spo-team-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    background: rgba(99, 102, 241, 0.1);
}

.dv-spo-team-card-logo {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.1rem;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dv-spo-team-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-team-card-name {
    font-size: 0.2rem;
    color: var(--text-secondary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.dv-spo-team-card:hover .dv-spo-team-card-name {
    color: var(--text-primary);
}

/* 球队信息 - 详情页 */
.dv-spo-team-info {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem;
}

.dv-spo-team-logo-large {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-dark-lighter);
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.dv-spo-team-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-team-details {
    flex: 1;
    min-width: 0;
}

.dv-spo-team-details .dv-spo-team-name {
    font-size: 0.36rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.08rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dv-spo-team-details .dv-spo-team-en {
    font-size: 0.22rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.dv-spo-team-details .dv-spo-team-market {
    display: inline-block;
    padding: 0.06rem 0.15rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid var(--border-color);
    border-radius: 0.2rem;
    font-size: 0.2rem;
    color: var(--primary-light);
}

/* ================================
   Overflow页面 - 数据详情页样式
   ================================ */

/* 网络内容卡片 */
.dv-spo-wangluo-card {
    padding: 0;
    overflow: hidden;
}

.dv-spo-wangluo-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.dv-spo-wangluo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-wangluo-title {
    padding: 0.25rem;
}

.dv-spo-wangluo-title h2 {
    font-size: 0.32rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    line-height: 1.4;
}

.dv-spo-wangluo-title .dv-spo-time {
    font-size: 0.2rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.dv-spo-wangluo-title .dv-spo-desc {
    font-size: 0.22rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================
   News页面 - 赛事导航和排行榜样式
   ================================ */

/* 子导航 - 赛事页面 */
.dv-spo-sub-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem;
    padding: 0.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    margin-bottom: 0.2rem;
}

.dv-spo-sub-nav img {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.dv-spo-sub-nav span {
    font-size: 0.28rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dv-spo-saishi_item {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
    width: 100%;
    margin-top: 0.1rem;
    padding-top: 0.15rem;
    border-top: 1px solid var(--border-color);
}

.dv-spo-saishi_item a {
    padding: 0.08rem 0.15rem;
    background: var(--bg-dark-lighter);
    border-radius: 0.2rem;
    font-size: 0.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dv-spo-saishi_item a:hover,
.dv-spo-saishi_item a.on {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

/* 排行榜新样式 */
.dv-spo-rank-new {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    margin-bottom: 0.2rem;
    overflow: hidden;
}

.dv-spo-rank-header {
    padding: 0.15rem 0.2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.1));
    border-bottom: 1px solid var(--border-color);
    font-size: 0.26rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dv-spo-rank-table {
    width: 100%;
}

.dv-spo-rank-row {
    display: flex;
    align-items: center;
    padding: 0.12rem 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-rank-row:last-child {
    border-bottom: none;
}

.dv-spo-rank-head {
    background: var(--bg-dark-lighter);
    font-weight: 600;
}

.dv-spo-rank-col {
    flex: 1;
    text-align: center;
    font-size: 0.2rem;
    color: var(--text-secondary);
}

.dv-spo-rank-col:first-child {
    flex: 0.6;
}

.dv-spo-rank-team {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    justify-content: flex-start;
}

.dv-spo-rank-team img {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    object-fit: cover;
}

.dv-spo-rank-team span {
    font-size: 0.2rem;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dv-spo-rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.36rem;
    height: 0.36rem;
    background: var(--bg-dark-lighter);
    border-radius: 0.06rem;
    font-size: 0.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* NBA排行特殊列宽 */
.dv-spo-rank-row.dv-spo-nba .dv-spo-rank-col:nth-child(2) {
    flex: 2;
}

/* 足球排行特殊列宽 */
.dv-spo-rank-row.dv-spo-zuqiu .dv-spo-rank-col:nth-child(2) {
    flex: 2;
}

/* 暂无内容 */
.dv-spo-nothing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
}

.dv-spo-nothing img {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.2rem;
    opacity: 0.5;
}

.dv-spo-nothing span {
    font-size: 0.24rem;
    color: var(--text-muted);
}

/* 图文Tab样式 */
.dv-spo-tuwen_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.15rem;
}

.dv-spo-tuwen_list a {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.1rem;
    overflow: hidden;
    text-decoration: none;
}

.dv-spo-tuwen_list .dv-spo-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.dv-spo-tuwen_list .dv-spo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-tuwen_list .dv-spo-title {
    padding: 0.1rem;
    font-size: 0.22rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 比赛卡片 - 新样式 */
.dv-spo-match-grid-new {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.dv-spo-match-card-new {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.12rem;
    padding: 0.2rem;
    text-decoration: none;
    position: relative;
}

.dv-spo-match-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.15rem;
    padding-bottom: 0.12rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-league {
    font-size: 0.2rem;
    color: var(--primary-light);
}

.dv-spo-match-teams {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.12rem;
}

.dv-spo-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
    flex: 1;
}

.dv-spo-team img {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255,255,255,0.05);
}

.dv-spo-team span {
    font-size: 0.22rem;
    color: var(--text-secondary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.dv-spo-score {
    font-size: 0.32rem;
    font-weight: 700;
    color: var(--primary-light);
    padding: 0 0.2rem;
}

.dv-spo-team-row {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.dv-spo-team-row img {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.dv-spo-team-row span {
    flex: 1;
    font-size: 0.24rem;
    color: var(--text-primary);
}

.dv-spo-team-row strong {
    font-size: 0.28rem;
    font-weight: 700;
    color: var(--primary-light);
}

.dv-spo-match-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.15rem;
    padding-top: 0.12rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-match-foot span {
    font-size: 0.2rem;
    color: var(--text-muted);
}

.dv-spo-match-foot i {
    font-size: 0.24rem;
    color: var(--primary-light);
}

/* 标题带更多按钮 */
.dv-spo-index_video_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.3rem 0 0.2rem;
}

.dv-spo-index_video_title h3 {
    font-size: 0.28rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.dv-spo-index_video_title h3 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dv-spo-mt40 {
    margin-top: 0.4rem;
}

/* Tab标签 */
.dv-spo-index_label ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
    margin-bottom: 0.15rem;
}

.dv-spo-index_label li {
    padding: 0.08rem 0.15rem;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 0.2rem;
    font-size: 0.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dv-spo-index_label li.on {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

/* ================================
   Tiyu页面 - 新闻列表样式
   ================================ */

/* 新闻网格 */
.dv-spo-news-grid {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.dv-spo-news-item-new {
    display: flex;
    gap: 0.15rem;
    padding: 0.15rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dv-spo-news-item-new:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
}

.dv-spo-news-thumb {
    width: 1.6rem;
    height: 1.2rem;
    border-radius: 0.08rem;
    overflow: hidden;
    flex-shrink: 0;
}

.dv-spo-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-spo-news-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dv-spo-news-title {
    font-size: 0.24rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.dv-spo-news-desc {
    font-size: 0.2rem;
    color: var(--text-secondary);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0.08rem 0;
}

.dv-spo-news-meta {
    display: flex;
    gap: 0.15rem;
    font-size: 0.18rem;
    color: var(--text-muted);
}

/* 新闻列表 - 侧边栏 */
.dv-spo-news-list-new {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.dv-spo-news-list-new .dv-spo-news-item-new {
    padding: 0.1rem;
    background: transparent;
    border: none;
}

.dv-spo-news-list-new .dv-spo-num {
    width: 0.36rem;
    height: 0.36rem;
    background: var(--bg-dark-lighter);
    border-radius: 0.06rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.2rem;
    color: var(--text-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.dv-spo-news-list-new .dv-spo-news-item-new:nth-child(-n+3) .dv-spo-num {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.dv-spo-news-text {
    flex: 1;
    min-width: 0;
}

.dv-spo-news-text p {
    font-size: 0.22rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

/* 标题区块 */
.dv-spo-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.25rem 0 0.15rem;
}

.dv-spo-section-title h3 {
    font-size: 0.28rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* 更多按钮 */
.dv-spo-more-btn {
    padding: 0.06rem 0.14rem;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 0.2rem;
    font-size: 0.2rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.dv-spo-more-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}
