/* ================================
   Vstar体育 - 现代多栏布局样式
   ================================ */

/* CSS 变量 - 多彩配色 */
: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);
}

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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 120px; /* 为固定导航栏留出空间 */
}

img { 
    max-width: 100%; 
    display: block; 
    /* object-fit: cover; */
    object-position: center;
}

/* 图片固定大小 - 通用 */
img.dv-spo-fixed-size,
.dv-spo-team-row img,
.dv-spo-match-card-new img,
.dv-spo-news-item img,
.dv-spo-player-card img,
.dv-spo-match-item img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

/* 大图尺寸 - 新闻详情 */
.dv-spo-news_detail img {
    width: 100% !important;
    height: auto !important;
    max-height: 400px !important;
    object-fit: cover !important;
    min-width: unset !important;
    min-height: unset !important;
}

/* 视频封面和横幅 */
.dv-spo-video-item .dv-spo-img img,
.dv-spo-banner img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

/* 球员/球队logo */
.dv-spo-player-info img,
.dv-spo-team-info img,
.dv-spo-match-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
a { color: inherit; text-decoration: none; }

/* 容器 */
.dv-spo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   头部样式
   ================================ */
.dv-spo-header {
    background: linear-gradient(135deg, #111827 0%, #0a0f1c 100%);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.dv-spo-header-center {
    background: transparent;
    padding: 15px 0;
}

.dv-spo-center {
    width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.dv-spo-center.fb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dv-spo-logo img {
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.5));
}

/* 主题切换按钮 */
.dv-spo-theme-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.dv-spo-theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.dv-spo-theme-icon {
    font-size: 16px;
}

.dv-spo-theme-text {
    white-space: nowrap;
}

/* 返回顶部按钮 */
.dv-spo-back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    margin-left: 10px;
}

.dv-spo-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.dv-spo-back-to-top span {
    line-height: 1;
}

.dv-spo-header-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dv-spo-header-user a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.3s;
}

.dv-spo-header-user a:hover {
    color: var(--text-primary);
}

.dv-spo-btn-primary {
    padding: 10px 25px !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    border-radius: 20px !important;
    color: white !important;
    font-weight: 600 !important;
}

.dv-spo-header-list {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
}

.dv-spo-header-list ul {
    display: flex;
    gap: 30px;
}

.dv-spo-header-list li {
    list-style: none;
}

.dv-spo-header-list li a {
    display: block;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.dv-spo-header-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.dv-spo-header-list li a:hover {
    color: var(--text-primary);
}

.dv-spo-header-list li a:hover::after {
    width: 100%;
}

/* ================================
   分类导航
   ================================ */
.dv-spo-index_class {
    padding: 140px 0 20px;
}

.dv-spo-index_class ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.dv-spo-index_class li {
    list-style: none;
}

.dv-spo-index_class li a {
    display: block;
    padding: 10px 20px;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.dv-spo-index_class li a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* ================================
   英雄区域 - 轮播
   ================================ */
.dv-spo-index-label {
    margin-bottom: 30px;
}

/* 正在直播标题 */
.dv-spo-live-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 0 10px;
}

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

.dv-spo-live-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.dv-spo-index-m {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

/* 直播中英雄卡片 */
.dv-spo-live-hero {
    position: relative;
    border: 2px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}

.dv-spo-live-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: 20px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
    z-index: 10;
}

.dv-spo-score {
    display: block;
    margin-top: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* 暂无直播提示 */
/* ================================
   正在直播卡片网格
   ================================ */
.dv-spo-live-section {
    margin: 30px 0;
}

.dv-spo-live-section .dv-spo-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

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

.dv-spo-live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dv-spo-live-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    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:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
}

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

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

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

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

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

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

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

.dv-spo-live-team span {
    font-size: 14px;
    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: 5px;
}

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

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

.dv-spo-live-numbers strong {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 35px;
    text-align: center;
}

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

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

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

.dv-spo-watch-btn {
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dv-spo-live-card:hover .dv-spo-watch-btn {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* 响应式 */
@media (max-width: 992px) {
    .dv-spo-live-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .dv-spo-live-grid {
        grid-template-columns: 1fr;
    }
}

/* 浅色主题 */
[data-theme="light"] .dv-spo-live-card::before {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

[data-theme="light"] .dv-spo-live-team img {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .dv-spo-live-card-footer {
    border-top-color: rgba(0, 0, 0, 0.05);
}

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

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

.dv-spo-no-live p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

/* ==================== News 页面统一样式 ==================== */

/* 面包屑导航 */
.dv-spo-breadcrumb {
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-breadcrumb .dv-spo-crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dv-spo-breadcrumb .dv-spo-crumbs span {
    color: var(--text-secondary);
    font-size: 14px;
}

.dv-spo-breadcrumb .dv-spo-crumbs a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

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

.dv-spo-breadcrumb .dv-spo-crumbs a:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-muted);
}

/* 子导航 */
.dv-spo-sub-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.dv-spo-sub-nav .dv-spo-saishi_item {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.dv-spo-sub-nav .dv-spo-saishi_item a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.dv-spo-sub-nav .dv-spo-saishi_item a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
}

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

/* 日期标签 */
.dv-spo-date-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.dv-spo-date-tabs a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition);
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-date-tabs a:hover {
    background: rgba(59, 130, 246, 0.2);
    color: var(--text-primary);
}

.dv-spo-date-tabs a.on {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

/* 日期标签今天特殊样式 */
.dv-spo-date-tabs a.dv-spo-today {
    position: relative;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.dv-spo-date-tabs a.dv-spo-today::after {
    content: '今';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dv-spo-date-tabs a.dv-spo-today.on::after {
    display: none;
}

.dv-spo-date-tabs a p {
    font-size: 12px;
    margin: 0;
}

/* 文章卡片 */
.dv-spo-article-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-article-card h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.dv-spo-article-card .dv-spo-text {
    display: flex;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-article-card .dv-spo-news_detail {
    line-height: 1.8;
    color: var(--text-secondary);
}

.dv-spo-article-card .dv-spo-news_detail img {
    max-width: 100%;
    border-radius: 12px;
    margin: 15px 0;
}

/* ================================
   文章详情页布局
   ================================ */

/* 文章头部 */
.dv-spo-article-card .dv-spo-article-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dv-spo-article-card .dv-spo-article-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.dv-spo-article-card .dv-spo-text {
    display: flex;
    gap: 25px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* 正文内容 */
.dv-spo-article-card .dv-spo-news_detail {
    line-height: 1.9;
    color: var(--text-secondary);
    font-size: 15px;
}

.dv-spo-article-card .dv-spo-news_detail img {
    max-width: 100%;
    border-radius: 12px;
    margin: 15px 0;
}

.dv-spo-article-card .dv-spo-news_detail p {
    margin-bottom: 16px;
}

/* 文章底部标签 */
.dv-spo-article-tags {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dv-spo-article-tags .dv-spo-tags-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 15px;
    vertical-align: middle;
}

.dv-spo-article-tags .dv-spo-tags-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    vertical-align: middle;
}

.dv-spo-article-tags .dv-spo-tags-list a {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    transition: all 0.3s ease;
}

.dv-spo-article-tags .dv-spo-tags-list a:hover {
    background: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* 响应式 - 移动端 */
@media (max-width: 768px) {
    .dv-spo-article-card .dv-spo-article-header h1 {
        font-size: 22px;
    }
    
    .dv-spo-article-card .dv-spo-text {
        flex-direction: column;
        gap: 8px;
    }
    
    .dv-spo-article-tags {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .dv-spo-article-tags .dv-spo-tags-label {
        display: block;
        margin-bottom: 12px;
        margin-right: 0;
    }
    
    .dv-spo-article-tags .dv-spo-tags-list {
        display: flex;
    }
}

/* 视频详情页样式 */
.dv-spo-video-detail {
    display: block !important;
}

.dv-spo-video-detail .dv-spo-video_play {
    margin: 25px 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-video-detail .dv-spo-video_play a {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.dv-spo-video-detail .dv-spo-video_play .dv-spo-img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.3s ease;
}

.dv-spo-video-detail .dv-spo-video_play:hover .dv-spo-img {
    transform: scale(1.02);
}

.video_article_play_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.dv-spo-video-detail .dv-spo-video_play:hover .video_article_play_box {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(99, 102, 241, 1);
}

.video_article_play {
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 6px;
}

.dv-spo-video-detail .dv-spo-play {
    display: none;
}

.dv-spo-video-detail .dv-spo-video_cont_list {
    margin: 20px 0;
    padding: 20px;
    background: rgba(17, 24, 39, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-video-detail .dv-spo-video_cont_list span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-video-detail .dv-spo-video_cont_list a {
    display: block;
    padding: 10px 15px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.dv-spo-video-detail .dv-spo-video_cont_list a:hover {
    background: rgba(99, 102, 241, 0.15);
    color: var(--text-primary);
    transform: translateX(5px);
}

.dv-spo-video-detail .dv-spo-detail_tags {
    margin-top: 20px;
    padding: 20px;
    background: rgba(17, 24, 39, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-video-detail .dv-spo-detail_tags span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.dv-spo-video-detail .dv-spo-detail_tags a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 8px 8px 0;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 13px;
    transition: all 0.3s ease;
}

.dv-spo-video-detail .dv-spo-detail_tags a:hover {
    background: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* 通用标签样式 - 用于直播详情页等 */
.dv-spo-detail_tags {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(17, 24, 39, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.dv-spo-detail_tags span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 5px;
}

.dv-spo-detail_tags a {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dv-spo-detail_tags a:hover {
    background: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* 侧边栏标题 */
.dv-spo-sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    margin-top: 25px;
}

.dv-spo-sidebar-title:first-child {
    margin-top: 0;
}

.dv-spo-sidebar-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dv-spo-sidebar-title h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-hover));
    border-radius: 2px;
}

.dv-spo-sidebar-title a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.dv-spo-sidebar-title a:hover {
    color: var(--accent-color);
}

/* 新闻列表新样式 */
.dv-spo-news-list-new {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dv-spo-news-list-new .dv-spo-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.7));
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-news-list-new .dv-spo-item:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.3);
}

.dv-spo-news-list-new .dv-spo-info {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.dv-spo-news-list-new .dv-spo-img {
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.dv-spo-news-list-new .dv-spo-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: var(--transition);
}

.dv-spo-news-list-new .dv-spo-item:hover .dv-spo-img img {
    transform: scale(1.05);
}

.dv-spo-news-list-new .dv-spo-cont {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dv-spo-news-list-new .dv-spo-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.dv-spo-news-list-new .dv-spo-tit {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    flex: 1;
}

.dv-spo-news-list-new .dv-spo-title span {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

.dv-spo-news-list-new .dv-spo-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dv-spo-news-list-new .dv-spo-score {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

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

.dv-spo-video-list-new li {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.6));
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-video-list-new li:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.dv-spo-video-list-new li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-secondary);
    font-size: 14px;
    gap: 10px;
}

.dv-spo-video-list-new li a::before {
    content: '▶';
    font-size: 10px;
    color: var(--accent-color);
}

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

/* 排行榜新样式 */
.dv-spo-rank-new {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.7));
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-rank-new .dv-spo-jfname {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-rank-new .dv-spo-rankingt {
    display: grid;
    grid-template-columns: 60px 2fr repeat(auto-fit, minmax(60px, 1fr));
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dv-spo-rank-new .dv-spo-rankingt.dv-spo-bgg {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    color: var(--text-primary);
}

.dv-spo-rank-new .dv-spo-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.dv-spo-rank-new .dv-spo-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dv-spo-rank-new .dv-spo-logo img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.dv-spo-rank-new .dv-spo-team {
    font-size: 14px;
    color: var(--text-primary);
}

/* 排行榜表格样式 */
.dv-spo-rank-header {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dv-spo-rank-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dv-spo-rank-row {
    display: grid;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.dv-spo-rank-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* 足球布局 - 排名、球队、场次、胜、平、负、进球、失球、净胜球、积分 */
.dv-spo-rank-row.dv-spo-zuqiu {
    grid-template-columns: 50px 1.5fr repeat(8, 1fr);
    gap: 10px;
}

/* NBA布局 - 排名、球队、场次、胜、负、胜率、场均得分、场均失分、净胜分 */
.dv-spo-rank-row.dv-spo-nba {
    grid-template-columns: 50px 1.5fr repeat(7, 1fr);
    gap: 10px;
}

.dv-spo-rank-row.dv-spo-rank-head {
    background: rgba(99, 102, 241, 0.15);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 13px;
}

.dv-spo-rank-col {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
}

.dv-spo-rank-col:first-child {
    text-align: left;
}

.dv-spo-rank-col:nth-child(2) {
    text-align: left;
}

.dv-spo-rank-team {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.dv-spo-rank-team span {
    color: var(--text-primary);
    font-weight: 500;
}

/* 分页样式 */
#page {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ================================
   球队列表样式
   ================================ */
.dv-spo-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

/* 左侧主内容区的球队网格 */
.dv-spo-layout-main .dv-spo-team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

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

.dv-spo-team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.dv-spo-team-card-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dv-spo-team-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    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(--accent-color);
}

/* 响应式 */
@media (max-width: 992px) {
    .dv-spo-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dv-spo-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .dv-spo-team-card {
        padding: 20px 10px;
    }
    
    .dv-spo-team-card-logo {
        width: 60px;
        height: 60px;
    }
    
    .dv-spo-team-card-name {
        font-size: 13px;
    }
}

/* 浅色主题 */
[data-theme="light"] .dv-spo-team-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ================================
   频道列表样式
   ================================ */
.dv-spo-channel-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 0;
}

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

.dv-spo-channel-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.dv-spo-channel-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.dv-spo-channel-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

/* 频道详情页标题 */
.dv-spo-channel-detail-header {
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-channel-detail-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 响应式 */
@media (max-width: 768px) {
    .dv-spo-channel-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .dv-spo-channel-item {
        padding: 12px 15px;
    }
    
    .dv-spo-channel-name {
        font-size: 14px;
    }
}

/* ================================
   频道详情页样式
   ================================ */
.dv-spo-channel-detail {
    padding: 30px;
}

.dv-spo-channel-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 25px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.dv-spo-channel-player {
    margin: 25px 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.dv-spo-channel-player a {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.dv-spo-channel-player img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.3s ease;
}

.dv-spo-channel-player:hover img {
    transform: scale(1.02);
}

.dv-spo-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dv-spo-channel-player:hover .dv-spo-play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

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

.dv-spo-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 6px;
}

.dv-spo-channel-player:hover .dv-spo-play-btn {
    transform: scale(1.1);
    background: rgba(99, 102, 241, 1);
}

.dv-spo-channel-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 20px 0;
}

.dv-spo-channel-content p {
    margin-bottom: 15px;
}

.dv-spo-channel-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-tag-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 5px;
    flex-shrink: 0;
}

.dv-spo-channel-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dv-spo-channel-tags a:hover {
    background: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* 浅色主题 */
[data-theme="light"] .dv-spo-channel-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dv-spo-channel-title {
    background: linear-gradient(135deg, #1f2937, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .dv-spo-channel-tags a {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

/* ================================
   搜索页样式
   ================================ */
.dv-spo-search-meta {
    padding: 15px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* ================================
   标签页内容列表样式
   ================================ */
.dv-spo-tag-meta {
    padding: 15px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

.dv-spo-content-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dv-spo-content-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dv-spo-content-item:last-child {
    border-bottom: none;
}

.dv-spo-content-item:hover {
    background: rgba(255, 255, 255, 0.02);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
}

.dv-spo-content-thumb {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.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;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dv-spo-content-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

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

.dv-spo-content-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 12px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dv-spo-content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 13px;
}

.dv-spo-content-type {
    color: var(--accent-color);
    background: rgba(99, 102, 241, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
}

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

/* 响应式 */
@media (max-width: 768px) {
    .dv-spo-content-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .dv-spo-content-thumb {
        width: 100%;
        height: 180px;
    }
    
    .dv-spo-content-info h4 {
        font-size: 15px;
    }
    
    .dv-spo-content-info p {
        font-size: 13px;
    }
}

/* 浅色主题 */
[data-theme="light"] .dv-spo-content-item {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dv-spo-content-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .dv-spo-content-thumb {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .dv-spo-team-card-logo {
    background: rgba(0, 0, 0, 0.03);
}

/* ================================
   球队详情页样式
   ================================ */
.dv-spo-team-info {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.dv-spo-team-logo-large {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.dv-spo-team-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dv-spo-team-en {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dv-spo-team-market {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
}

/* 浅色主题下的球队信息 */
[data-theme="light"] .dv-spo-team-info {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.03));
    border-color: rgba(99, 102, 241, 0.15);
}

[data-theme="light"] .dv-spo-team-logo-large {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .dv-spo-team-name {
    background: linear-gradient(135deg, #1f2937, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .dv-spo-team-market {
    background: rgba(99, 102, 241, 0.1);
}

.dv-spo-match-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 60px;
}

/* 直播详情页样式 */
.dv-spo-live_detail {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.dv-spo-live_name {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

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

.dv-spo-live_con .dv-spo-team_img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

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

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

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

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

.dv-spo-live_status {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    font-size: 14px;
    color: white;
    font-weight: 500;
}

/* 信号源样式 */
.dv-spo-match_details {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.dv-spo-signa ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.dv-spo-signa li a {
    display: block;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* 直播介绍内容 */
.dv-spo-live_content {
    line-height: 1.8;
    color: var(--text-secondary);
}

.dv-spo-live_content p {
    margin-bottom: 10px;
}

.dv-spo-live_content span:first-child {
    color: var(--text-muted);
}

.dv-spo-live_content .dv-spo-tit {
    color: var(--text-primary);
    font-weight: 500;
}

/* 直播标签切换 */
.dv-spo-live_con_tab {
    margin-bottom: 25px;
}

.dv-spo-live_con_tab ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.dv-spo-live_con_tab li a {
    display: block;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dv-spo-live_con_tab li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.dv-spo-live_con_tab li a.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* 未完赛标签特殊样式 */
.dv-spo-live_con_tab .dv-spo-no-complete-match a.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

/* 已完赛标签特殊样式 */
.dv-spo-live_con_tab .dv-spo-complete-match a.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* 标签图标 */
.dv-spo-live_con_tab li a::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.dv-spo-live_con_tab .dv-spo-no-complete-match a::before {
    background: #22c55e;
}

.dv-spo-live_con_tab .dv-spo-complete-match a::before {
    background: #6366f1;
}

/* 信号源列表 */
.dv-spo-signal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dv-spo-signal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.dv-spo-signal-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* 比赛英雄区域包装 */
.dv-spo-match-hero-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 40px;
}

.dv-spo-match-hero-img {
    flex: 1;
    max-width: 50%;
}

.dv-spo-match-hero-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.dv-spo-match-hero-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dv-spo-match-hero-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.dv-spo-match-hero-info .dv-spo-time {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.dv-spo-match-hero-info .dv-spo-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

.dv-spo-team-a img, .dv-spo-team-b img {
    width: 100px;
    height: 100px;
    /* object-fit: cover; */
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.dv-spo-team-a span, .dv-spo-team-b span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

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

.dv-spo-vs-text {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.dv-spo-match-time {
    padding: 8px 20px;
    background: var(--bg-dark-lighter);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ================================
   标签导航
   ================================ */
.dv-spo-index_label {
    margin-bottom: 25px;
}

.dv-spo-index-label-list {
    display: flex;
    gap: 5px;
    background: var(--bg-dark-lighter);
    padding: 5px;
    border-radius: 12px;
}

.dv-spo-index-label-list li {
    list-style: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    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;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* ================================
   比赛卡片网格
   ================================ */
.dv-spo-index_match_content {
    margin-bottom: 40px;
}

/* 标签内容面板 */
.dv-spo-tab-panel {
    display: none;
}

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

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

.dv-spo-match-card-new {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.dv-spo-match-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

/* 比赛卡片横向布局 - 用于直播列表和赛程 */
.dv-spo-match-card-new {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 14px 20px;
}

.dv-spo-match-card-new .dv-spo-status {
    min-width: 70px;
    text-align: left;
    flex-shrink: 0;
}

.dv-spo-match-card-new .dv-spo-status span {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.dv-spo-match-card-new .dv-spo-status-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.dv-spo-match-card-new .dv-spo-status-live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse-live 2s infinite;
}

/* 直播中 - 红色 */
.dv-spo-match-card-new .dv-spo-live span {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* 未开始 - 绿色 */
.dv-spo-match-card-new .dv-spo-prelive span {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

/* 已结束 - 紫色 */
.dv-spo-match-card-new .dv-spo-ended span {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

.dv-spo-match-card-new .dv-spo-time {
    font-size: 12px;
    color: var(--text-secondary);
    min-width: 75px;
    margin: 0;
}

.dv-spo-match-card-new .dv-spo-cate {
    font-size: 11px;
    color: var(--text-muted);
    min-width: 40px;
    margin: 0;
}

.dv-spo-match-card-new .dv-spo-team1,
.dv-spo-match-card-new .dv-spo-team2 {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    min-width: 80px;
    text-align: left;
    margin: 0;
}

.dv-spo-match-card-new .dv-spo-team1logo,
.dv-spo-match-card-new .dv-spo-team2logo {
    margin: 0;
}

.dv-spo-match-card-new .dv-spo-team1logo img,
.dv-spo-match-card-new .dv-spo-team2logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* 比赛卡片内的球队区域 - 水平排列 */
.dv-spo-match-card-new .dv-spo-match-teams {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    flex: 1;
    justify-content: center;
}

/* 球队行 - 水平显示队徽、队名、比分 */
.dv-spo-match-card-new .dv-spo-team-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.dv-spo-match-card-new .dv-spo-team-row img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.dv-spo-match-card-new .dv-spo-team-row span {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
    min-width: 80px;
}

.dv-spo-match-card-new .dv-spo-team-row strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 32px;
    text-align: right;
}

.dv-spo-match-card-new .dv-spo-team1num,
.dv-spo-match-card-new .dv-spo-team2num {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 24px;
    text-align: right;
    margin: 0;
}

.dv-spo-match-card-new .dv-spo-fh {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0 4px;
}

.dv-spo-match-card-new .dv-spo-items-box {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.dv-spo-match-card-new .dv-spo-items-top {
    display: none;
}

.dv-spo-match-card-new .dv-spo-items-btm a,
.dv-spo-match-card-new .dv-spo-live-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 12px;
    font-weight: 500;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.dv-spo-match-card-new .dv-spo-items-btm a:hover,
.dv-spo-match-card-new .dv-spo-live-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.dv-spo-match-card-new .dv-spo-items-top p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.dv-spo-match-card-new .dv-spo-items-btm span {
    font-size: 12px;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

.dv-spo-match-card-new .dv-spo-more {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 比赛列表项 */
.dv-spo-match-item-new {
    display: block;
}

/* 新闻网格布局 */
.dv-spo-news-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

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

.dv-spo-news-item-new:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.dv-spo-news-thumb {
    flex-shrink: 0;
    width: 200px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

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

.dv-spo-news-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

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

.dv-spo-news-list-new .dv-spo-news-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: transparent;
    border: none;
    border-radius: 8px;
}

.dv-spo-news-list-new .dv-spo-news-item-new:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
    box-shadow: none;
}

.dv-spo-news-list-new .dv-spo-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    flex-shrink: 0;
}

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

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

.dv-spo-news-list-new .dv-spo-news-item-new:hover .dv-spo-news-text p {
    color: var(--text-primary);
}

.dv-spo-match-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex-shrink: 0;
    min-width: 80px;
}

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

.dv-spo-status {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

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

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

.dv-spo-match-teams {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

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

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

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

.dv-spo-team-row strong {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.dv-spo-match-foot {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.dv-spo-match-foot span {
    font-size: 13px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

.dv-spo-match-foot i {
    display: none;
}



.dv-spo-index_match_more {
    display: block;
    width: 180px;
    margin: 0 auto;
    padding: 12px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* ================================
   news详情页相关直播 - 单列列表样式
   ================================ */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 列表项 - 单列卡片 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-match-card-new {
    display: flex;
    flex-direction: column;
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 8px;
    padding: 12px 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-match-card-new:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

/* 顶部 - 联赛和状态 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-match-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* 联赛名称 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-league {
    font-size: 12px;
    color: var(--text-muted);
}

/* 状态标签 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-status {
    font-size: 11px;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-status b {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* 球队区域 - 单列垂直排列 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-match-teams {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

/* 球队行 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-team-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 队徽 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-team-row img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* 球队名称 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-team-row span {
    font-size: 13px;
    color: var(--text-primary);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 比分 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-team-row strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 20px;
    text-align: right;
}

/* 底部 - 时间和箭头 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-match-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

/* 时间 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-match-foot span {
    font-size: 12px;
    color: var(--text-muted);
}

/* 箭头 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-match-foot i {
    font-size: 16px;
    color: var(--text-muted);
    font-style: normal;
}

/* 已结束状态 */
.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-status:not(.dv-spo-live) {
    color: var(--text-muted);
}

.dv-spo-layout-sidebar .dv-spo-sidebar-title + .dv-spo-match-grid-new .dv-spo-status:not(.dv-spo-live) b {
    display: none;
}

.dv-spo-index_match_more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* ================================
   搜索页相关赛事 - 效果图样式
   ================================ */
/* 赛事网格 - 单列布局 */
.dv-spo-article-card .dv-spo-match-grid-new {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 比赛卡片 */
.dv-spo-article-card .dv-spo-match-item-new {
    position: relative;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dv-spo-article-card .dv-spo-match-item-new:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.dv-spo-article-card .dv-spo-match-item-new > a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: inherit;
}

/* 顶部header */
.dv-spo-article-card .dv-spo-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* LIVE/已结束/未开始 标签 */
.dv-spo-article-card .dv-spo-status-live {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.dv-spo-article-card .dv-spo-status-ended {
    background: rgba(107, 114, 128, 0.3);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.dv-spo-article-card .dv-spo-status-upcoming {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* 时间和联赛 */
.dv-spo-article-card .dv-spo-match-header .dv-spo-time,
.dv-spo-article-card .dv-spo-match-header .dv-spo-cate {
    font-size: 13px;
    color: var(--text-muted);
}

/* 球队区域 - 横向排列 */
.dv-spo-article-card .dv-spo-match-teams {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 15px 0;
    position: relative;
}

/* 单个球队 */
.dv-spo-article-card .dv-spo-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

/* 主队 - 左对齐 */
.dv-spo-article-card .dv-spo-team:first-child {
    align-items: flex-start;
}

/* 客队 - 右对齐 */
.dv-spo-article-card .dv-spo-team:last-child {
    align-items: flex-end;
}

/* 队徽 */
.dv-spo-article-card .dv-spo-team img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
}

/* 队名 */
.dv-spo-article-card .dv-spo-team span {
    font-size: 14px;
    color: var(--text-primary);
    white-space: nowrap;
}

/* 比分/V在中间 */
.dv-spo-article-card .dv-spo-score {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VS 文字 */
.dv-spo-article-card .dv-spo-score::before {
    content: 'VS';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* 有比分时不显示VS */
.dv-spo-article-card .dv-spo-score:not(:contains("VS"))::before {
    display: none;
}

/* ================================
   两栏布局
   ================================ */
.dv-spo-layout-two {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin-bottom: 40px;
}

.dv-spo-layout-main {
    min-width: 0;
}

.dv-spo-layout-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ================================
   板块标题
   ================================ */
.dv-spo-index_video_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dv-spo-mt40 {
    margin-top: 40px;
}

.dv-spo-index_video_title h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.dv-spo-index_video_title h3 span {
    position: relative;
    padding-left: 15px;
}

.dv-spo-index_video_title h3 span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* 区块标题 */
.dv-spo-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.dv-spo-more-btn {
    padding: 8px 16px;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dv-spo-more-btn: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: 20px;
    margin-bottom: 40px;
}

.dv-spo-video-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dv-spo-video-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.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;
    transition: transform 0.3s ease;
}

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

.dv-spo-video-item .dv-spo-img span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.dv-spo-video-item:hover .dv-spo-img span {
    opacity: 1;
}

.dv-spo-video-item .dv-spo-img span::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.dv-spo-video-name {
    padding: 15px 15px 5px;
    font-size: 15px;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dv-spo-video-category {
    padding: 0 15px 15px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ================================
   分栏布局 - 录像集锦
   ================================ */
.dv-spo-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.dv-spo-list-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dv-spo-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dv-spo-list-item:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    transform: translateX(5px);
}

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

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

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

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

.dv-spo-arrow {
    color: var(--text-muted);
    font-size: 18px;
    transition: all 0.3s ease;
}

.dv-spo-list-item:hover .dv-spo-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

/* ================================
   侧边栏
   ================================ */
.dv-spo-sidebar-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

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

.dv-spo-sidebar-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.dv-spo-sidebar-header a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.dv-spo-sidebar-header a:hover {
    color: var(--primary);
}

/* 热门话题 */
.dv-spo-topic-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dv-spo-topic-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dv-spo-topic-tag:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* 热门资讯 */
.dv-spo-news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dv-spo-news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.dv-spo-news-item:hover {
    transform: translateX(5px);
}

.dv-spo-rank {
    width: 24px;
    height: 24px;
    background: var(--bg-dark-lighter);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    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: 14px;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}

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

/* 热门数据 */
.dv-spo-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dv-spo-data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: var(--bg-dark-lighter);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 0;
}

.dv-spo-data-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
}

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

.dv-spo-data-item span {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

/* 热门关注 */


/* 热门关注标签 */
.dv-spo-team-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

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

.dv-spo-team-tabs span:hover {
    background: rgba(99, 102, 241, 0.2);
    color: var(--text-primary);
}

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

/* 热门关注面板 */
.dv-spo-team-panels {
    position: relative;
}

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

.dv-spo-team-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dv-spo-team-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 5px;
}

.dv-spo-team-scroll::-webkit-scrollbar {
    width: 4px;
}

.dv-spo-team-scroll::-webkit-scrollbar-track {
    background: var(--bg-dark-lighter);
    border-radius: 2px;
}

.dv-spo-team-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.dv-spo-team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: var(--bg-dark-lighter);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dv-spo-team-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
}

.dv-spo-team-img-wrap {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.dv-spo-team-item:hover .dv-spo-team-img-wrap {
    border-color: var(--accent);
}

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

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

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

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



/* ================================
   底部
   ================================ */
footer {
    background: linear-gradient(135deg, #111827 0%, #0a0f1c 100%);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ================================
   响应式
   ================================ */
@media (max-width: 1200px) {
    .dv-spo-match-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dv-spo-layout-two {
        grid-template-columns: 1fr 320px;
        gap: 20px;
    }
    
    .dv-spo-layout-sidebar {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .dv-spo-layout-two {
        grid-template-columns: 1fr;
    }
    
    .dv-spo-layout-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .dv-spo-match-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dv-spo-split-row {
        grid-template-columns: 1fr;
    }
    
    .dv-spo-center.fb {
        flex-direction: column;
        gap: 15px;
    }
    
    .dv-spo-header-search input {
        width: 200px;
    }
}

/* ================================
   浅色主题样式
   ================================ */
[data-theme="light"] {
    --bg-dark: #f3f4f6;
    --bg-dark-light: #ffffff;
    --bg-dark-lighter: #f9fafb;
    --bg-card: rgba(255, 255, 255, 0.9);
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: rgba(99, 102, 241, 0.2);
}

[data-theme="light"] body {
    background: var(--bg-dark);
    color: var(--text-primary);
}

[data-theme="light"] .dv-spo-header {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dv-spo-article-card,
[data-theme="light"] .dv-spo-sidebar-section,
[data-theme="light"] .dv-spo-video-item,
[data-theme="light"] .dv-spo-match-item-new,
[data-theme="light"] .dv-spo-match-card-new {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dv-spo-breadcrumb {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dv-spo-section-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dv-spo-more-btn {
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

[data-theme="light"] .dv-spo-video-list-new a:hover {
    background: rgba(99, 102, 241, 0.05);
}

[data-theme="light"] .dv-spo-tag-new {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

[data-theme="light"] .dv-spo-news_detail_page a {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
}

/* 空状态样式 */
.dv-spo-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    text-align: center;
}

.dv-spo-empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.dv-spo-empty-state p {
    font-size: 15px;
    margin: 0;
}

[data-theme="light"] .dv-spo-empty-state {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
}

[data-theme="light"] .dv-spo-news_detail_page a:hover {
    color: var(--text-primary);
    border-color: var(--primary);
}

[data-theme="light"] .dv-spo-detail_tags a {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--text-secondary);
}

[data-theme="light"] .dv-spo-detail_tags a:hover {
    background: rgba(99, 102, 241, 0.2);
}

[data-theme="light"] .dv-spo-video_cont_list a {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .dv-spo-video_cont_list a:hover {
    background: rgba(99, 102, 241, 0.1);
}

@media (max-width: 768px) {
    .dv-spo-match-grid-new {
        grid-template-columns: 1fr;
    }
    
    .dv-spo-video-grid {
        grid-template-columns: 1fr;
    }
    
    .dv-spo-layout-sidebar {
        grid-template-columns: 1fr;
    }
    
    .dv-spo-news-item-new {
        flex-direction: column;
        gap: 15px;
    }
    
    .dv-spo-news-thumb {
        width: 100%;
        height: 180px;
    }
}

/* ==================== News 页面补充样式 ==================== */

/* 文章列表 */
.dv-spo-article-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

/* 文章列表卡片 - 只在列表中使用 */
.dv-spo-article-list .dv-spo-article-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.7));
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-article-list .dv-spo-article-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.3);
}

.dv-spo-article-list .dv-spo-article-img {
    width: 200px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.dv-spo-article-list .dv-spo-article-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: var(--transition);
}

.dv-spo-article-list .dv-spo-article-card:hover .dv-spo-article-img img {
    transform: scale(1.05);
}

.dv-spo-article-list .dv-spo-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dv-spo-article-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.dv-spo-article-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dv-spo-article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* 侧边栏区块 */
.dv-spo-sidebar-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.5));
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.dv-spo-sidebar-section:last-child {
    margin-bottom: 0;
}

/* 新闻列表新样式（侧边栏） */
.dv-spo-news-list-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dv-spo-news-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.dv-spo-news-item-new:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* 新闻列表排名数字 - 使用不同类名避免冲突 */
.dv-spo-news-item-new .dv-spo-rank-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.dv-spo-news-item-new .dv-spo-rank-num.top {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
}

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

.dv-spo-news-item-new:hover p {
    color: var(--text-primary);
}

/* 视频列表新样式（侧边栏） */
.dv-spo-video-list-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dv-spo-video-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.dv-spo-video-item-new:hover {
    background: rgba(59, 130, 246, 0.1);
}

.dv-spo-video-item-new .dv-spo-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    flex-shrink: 0;
}

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

.dv-spo-video-item-new .dv-spo-video-text p {
    font-size: 14px;
    color: var(--text-secondary);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.dv-spo-video-item-new .dv-spo-video-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.dv-spo-video-item-new:hover .dv-spo-video-text p {
    color: var(--text-primary);
}

/* 标签云新样式 */
.dv-spo-tag-cloud-new {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ================================
   首页图文轮播（左图右列表）
   ================================ */
.dv-spo-news-banner {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin: 20px 0;
    height: 380px;
}

.dv-spo-banner-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.dv-spo-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: block;
}

.dv-spo-banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.dv-spo-banner-slide img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.dv-spo-banner-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.dv-spo-banner-right {
    width: 380px;
    background: rgba(30, 41, 59, 0.5);
    border-left: 1px solid var(--border-color);
    overflow: hidden;
}

.dv-spo-banner-list {
    height: 100%;
    overflow-y: auto;
}

.dv-spo-banner-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.dv-spo-banner-item:last-child {
    border-bottom: none;
}

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

.dv-spo-banner-item.active {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(249, 115, 22, 0.9));
}

.dv-spo-banner-num {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 2px;
}

.dv-spo-banner-item.active .dv-spo-banner-num {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.dv-spo-banner-item p {
    flex: 1;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dv-spo-banner-item.active p {
    color: white;
    font-weight: 500;
}

/* 响应式 */
@media (max-width: 992px) {
    .dv-spo-news-banner {
        flex-direction: column;
        height: auto;
    }
    
    .dv-spo-banner-left {
        height: 250px;
    }
    
    .dv-spo-banner-right {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
    
    .dv-spo-banner-list {
        max-height: 300px;
    }
}

/* 浅色主题 */
[data-theme="light"] .dv-spo-banner-right {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .dv-spo-banner-item {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dv-spo-banner-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .dv-spo-banner-num {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-muted);
}

/* ================================
   首页大图轮播
   ================================ */
.dv-spo-hero-carousel {
    padding: 20px 0;
}

.dv-spo-hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.dv-spo-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    text-decoration: none;
    display: block;
}

.dv-spo-hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.dv-spo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dv-spo-hero-bg img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.dv-spo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.2) 100%);
}

.dv-spo-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
}

.dv-spo-hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    margin-bottom: 15px;
}

.dv-spo-hero-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.4;
    max-width: 70%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.dv-spo-hero-slide:hover .dv-spo-hero-content h3 {
    color: var(--accent-color);
}

.dv-spo-hero-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.dv-spo-hero-prev,
.dv-spo-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.dv-spo-hero-prev {
    left: 20px;
}

.dv-spo-hero-next {
    right: 20px;
}

.dv-spo-hero-prev:hover,
.dv-spo-hero-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.dv-spo-hero-dots {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dv-spo-hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dv-spo-hero-dots span.active {
    width: 24px;
    background: var(--accent-color);
}

.dv-spo-hero-dots span:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* 响应式 */
@media (max-width: 768px) {
    .dv-spo-hero-slider {
        height: 280px;
    }
    
    .dv-spo-hero-content {
        padding: 25px;
    }
    
    .dv-spo-hero-content h3 {
        font-size: 20px;
        max-width: 100%;
    }
    
    .dv-spo-hero-prev,
    .dv-spo-hero-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ================================
   顶部最新资讯轮播
   ================================ */
.dv-spo-news-carousel-section {
    padding: 25px 0;
}

.dv-spo-news-carousel-section .dv-spo-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dv-spo-news-carousel-section .dv-spo-section-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dv-spo-more-link {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dv-spo-more-link:hover {
    color: var(--accent-color);
}

.dv-spo-news-slider {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.dv-spo-slider-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.dv-spo-slider-item {
    flex: 0 0 calc(25% - 15px);
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dv-spo-slider-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.dv-spo-slider-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

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

.dv-spo-slider-item:hover .dv-spo-slider-img img {
    transform: scale(1.08);
}

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

.dv-spo-slider-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
    min-height: 42px;
    transition: color 0.3s ease;
}

.dv-spo-slider-item:hover .dv-spo-slider-content h4 {
    color: var(--accent-color);
}

.dv-spo-slider-content span {
    font-size: 12px;
    color: var(--text-muted);
}

.dv-spo-slider-prev,
.dv-spo-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.dv-spo-slider-prev {
    left: 0;
}

.dv-spo-slider-next {
    right: 0;
}

.dv-spo-slider-prev:hover,
.dv-spo-slider-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* 响应式 */
@media (max-width: 1200px) {
    .dv-spo-slider-item {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .dv-spo-slider-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .dv-spo-slider-img {
        height: 120px;
    }
}

/* 浅色主题 */
[data-theme="light"] .dv-spo-news-carousel-section .dv-spo-section-title h3 {
    background: linear-gradient(135deg, #1f2937, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .dv-spo-slider-img {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .dv-spo-slider-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ================================
   侧边栏最新资讯轮播图样式
   ================================ */
.dv-spo-news-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.dv-spo-carousel-container {
    position: relative;
    height: 180px;
}

.dv-spo-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    text-decoration: none;
    display: block;
}

.dv-spo-carousel-item.active {
    opacity: 1;
    visibility: visible;
}

.dv-spo-carousel-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

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

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

.dv-spo-carousel-info {
    padding: 10px 5px;
}

.dv-spo-carousel-info h5 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.dv-spo-carousel-item:hover .dv-spo-carousel-info h5 {
    color: var(--accent-color);
}

.dv-spo-carousel-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.dv-spo-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0 5px;
}

.dv-spo-carousel-dots span {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dv-spo-carousel-dots span.active {
    width: 18px;
    background: var(--accent-color);
}

.dv-spo-carousel-dots span:hover {
    background: var(--accent-color);
}

/* 浅色主题轮播图 */
[data-theme="light"] .dv-spo-carousel-img {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .dv-spo-carousel-dots span {
    background: rgba(0, 0, 0, 0.15);
}

.dv-spo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dv-spo-tag-new {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 15px;
    font-size: 12px;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    line-height: 1.4;
}

.dv-spo-tag-new:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
}

/* 侧边栏标题 h4 样式 */
.dv-spo-sidebar-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* 文章分页 */
.dv-spo-news_detail_page {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.5));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-news_detail_page p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

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

.dv-spo-news_detail_page a {
    color: var(--accent-color);
    transition: var(--transition);
}

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

/* News页面标签区域优化 */
.dv-spo-index_tab {
    margin-bottom: 30px;
}

.dv-spo-index_label {
    margin-bottom: 15px;
}

.dv-spo-index_label ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dv-spo-index_label li {
    padding: 10px 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-index_label li:hover {
    background: rgba(59, 130, 246, 0.2);
    color: var(--text-primary);
}

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

/* News页面图文列表 */
.dv-spo-tuwen_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.dv-spo-tuwen_list a {
    display: block;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.7));
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dv-spo-tuwen_list a:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.3);
}

.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; */
    transition: var(--transition);
}

.dv-spo-tuwen_list a:hover .dv-spo-img img {
    transform: scale(1.05);
}

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

/* 响应式调整 */
@media (max-width: 768px) {
    .dv-spo-article-card {
        flex-direction: column;
    }
    
    .dv-spo-article-img {
        width: 100%;
        height: 180px;
    }
    
    .dv-spo-tuwen_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dv-spo-tuwen_list {
        grid-template-columns: 1fr;
    }
    
    .dv-spo-sub-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dv-spo-sub-nav .dv-spo-saishi_item {
        margin-left: 0;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }
}
