/* ========================================
   足球赛事直播 - 响应式布局框架 v3.1
   适配多终端显示与搜索引擎收录
   ======================================== */

/* CSS 变量定义 */
:root {
    --zx-primary: #2563eb;
    --zx-secondary: #f97316;
    --zx-success: #00c853;
    --zx-warning: #ffd600;
    --zx-danger: #ff5252;
    --zx-dark: #0f172a;
    --zx-light: #f8f9fa;
    --zx-gray: #6c757d;
    --zx-border: #e9ecef;
    --zx-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --zx-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --zx-shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --zx-radius-sm: 6px;
    --zx-radius-md: 12px;
    --zx-radius-lg: 20px;
    --zx-transition: all 0.3s ease;
}

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--zx-transition);
}

ul, ol {
    list-style: none;
}

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

/* 容器 */
.zx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   头部导航
   ======================================== */
.zx-header {
    background: linear-gradient(135deg, var(--zx-dark) 0%, #16213e 100%);
    box-shadow: var(--zx-shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.zx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.zx-logo {
    display: flex;
    align-items: center;
}

.zx-logo img {
    height: 45px;
    width: auto;
}

.zx-logo-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 12px;
    background: linear-gradient(90deg, #fff, #a8d8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zx-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zx-nav a {
    color: rgba(255,255,255,0.85);
    padding: 10px 18px;
    border-radius: var(--zx-radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--zx-transition);
}

.zx-nav a:hover,
.zx-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* 移动端菜单按钮 */
.zx-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.zx-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: var(--zx-transition);
}

/* ========================================
   区块标题
   ======================================== */
.zx-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--zx-border);
}

.zx-section-title {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--zx-dark);
}

.zx-section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--zx-primary), var(--zx-secondary));
    border-radius: 2px;
    margin-right: 12px;
}

.zx-section-more {
    color: var(--zx-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.zx-section-more:hover {
    color: var(--zx-secondary);
}

/* ========================================
   热门直播卡片
   ======================================== */
.zx-hot-live {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.zx-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: var(--zx-radius-md);
    padding: 20px;
    border: 1px solid var(--zx-border);
    transition: var(--zx-transition);
    position: relative;
    overflow: hidden;
}

.zx-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--zx-primary), var(--zx-secondary));
    transform: scaleX(0);
    transition: var(--zx-transition);
}

.zx-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--zx-shadow-md);
    border-color: var(--zx-primary);
}

.zx-card:hover::before {
    transform: scaleX(1);
}

.zx-league {
    display: inline-block;
    background: var(--zx-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.zx-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zx-dark);
    margin-bottom: 10px;
}

.zx-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.zx-team-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--zx-dark);
    flex: 1;
    text-align: center;
}

.zx-team-vs {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--zx-secondary);
    padding: 0 15px;
}

.zx-status {
    text-align: center;
}

.zx-status-live {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--zx-danger), #ff1744);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.zx-status-live::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin-right: 6px;
    animation: blink 1s infinite;
}

.zx-status-upcoming {
    display: inline-block;
    background: var(--zx-light);
    color: var(--zx-gray);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,82,82,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255,82,82,0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ========================================
   今日直播时间线
   ======================================== */
.zx-today-live {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-date-group {
    margin-bottom: 25px;
}

.zx-date-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--zx-primary);
    padding: 10px 15px;
    background: #e3f2fd;
    border-radius: var(--zx-radius-sm);
    margin-bottom: 15px;
}

.zx-date-week {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--zx-primary);
    margin-left: 10px;
}

.zx-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zx-timeline-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--zx-light);
    border-radius: var(--zx-radius-sm);
    transition: var(--zx-transition);
}

.zx-timeline-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.zx-timeline-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--zx-dark);
    min-width: 60px;
}

.zx-timeline-league {
    font-size: 0.8rem;
    color: var(--zx-gray);
    min-width: 80px;
    padding: 0 15px;
}

.zx-timeline-teams {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.zx-timeline-vs {
    color: var(--zx-secondary);
    padding: 0 10px;
    font-weight: 700;
}

.zx-timeline-status {
    min-width: 80px;
    text-align: right;
}

/* ========================================
   录像列表
   ======================================== */
.zx-highlights {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.zx-highlight-card {
    background: var(--zx-light);
    border-radius: var(--zx-radius-md);
    overflow: hidden;
    transition: var(--zx-transition);
}

.zx-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--zx-shadow-md);
}

.zx-highlight-thumb {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.zx-highlight-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zx-highlight-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--zx-primary);
    transition: var(--zx-transition);
}

.zx-highlight-card:hover .zx-highlight-play {
    background: var(--zx-primary);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.zx-highlight-info {
    padding: 15px;
}

.zx-highlight-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--zx-dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zx-highlight-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--zx-gray);
}

/* ========================================
   新闻资讯
   ======================================== */
.zx-news {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.zx-news-card {
    display: flex;
    background: var(--zx-light);
    border-radius: var(--zx-radius-md);
    overflow: hidden;
    transition: var(--zx-transition);
}

.zx-news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--zx-shadow-md);
}

.zx-news-thumb-img {
    width: 140px;
    min-height: 100px;
    flex-shrink: 0;
    max-width: 100%;
}

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

.zx-news-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zx-news-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--zx-dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.zx-news-card:hover .zx-news-title {
    color: var(--zx-primary);
}

.zx-news-desc {
    font-size: 0.85rem;
    color: var(--zx-gray);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.zx-news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--zx-gray);
}

/* ========================================
    底部
    ======================================== */
.zx-footer {
    background: linear-gradient(135deg, var(--zx-dark) 0%, #16213e 100%);
    color: rgba(255,255,255,0.7);
    padding: 40px 0 20px;
    margin-top: 40px;
}

.zx-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.zx-footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.zx-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zx-footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--zx-transition);
}

.zx-footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.zx-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

/* 移动端底部优化 */
@media (max-width: 768px) {
    .zx-footer {
        padding: 25px 0 15px;
        margin-top: 20px;
    }
    
    .zx-footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .zx-footer-section h4 {
        font-size: 1rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .zx-footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .zx-footer-links a {
        font-size: 0.85rem;
        text-align: center;
        padding: 6px 8px;
        background: rgba(255,255,255,0.05);
        border-radius: 4px;
    }
    
    .zx-footer-links a:hover {
        transform: none;
        background: rgba(255,255,255,0.1);
    }
    
    .zx-footer-bottom {
        padding-top: 15px;
        font-size: 0.75rem;
    }
}

/* ========================================
   移动端底部导航
   ======================================== */
.zx-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.zx-mobile-nav-inner {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.zx-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--zx-gray);
    font-size: 0.75rem;
    transition: var(--zx-transition);
}

.zx-mobile-nav-item.active,
.zx-mobile-nav-item:hover {
    color: var(--zx-primary);
}

.zx-mobile-nav-item .zx-nav-icon {
    font-size: 1.3rem;
}

/* ========================================
   面包屑导航
   ======================================== */
.zx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 0.9rem;
    color: var(--zx-gray);
}

.zx-breadcrumb a {
    color: var(--zx-primary);
}

.zx-breadcrumb a:hover {
    color: var(--zx-secondary);
}

.zx-breadcrumb .zx-separator {
    color: var(--zx-gray);
}

.zx-breadcrumb .zx-current {
    color: var(--zx-dark);
    font-weight: 500;
}

/* ========================================
   页面标题
   ======================================== */
.zx-page-header {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
    text-align: center;
}

.zx-page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--zx-dark);
    margin-bottom: 10px;
}

.zx-page-desc {
    font-size: 1rem;
    color: var(--zx-gray);
    line-height: 1.6;
}

/* ========================================
   直播列表页样式
   ======================================== */
.zx-live-list {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-match-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zx-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.zx-card .zx-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.zx-card .zx-team img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.zx-vs {
    padding: 0 20px;
}

.zx-score {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zx-danger);
}

.zx-vs-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--zx-secondary);
}

.zx-card-footer {
    text-align: center;
}

.zx-btn-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--zx-danger), #ff1744);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--zx-transition);
}

.zx-btn-live:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255,82,82,0.4);
}

.zx-live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.zx-btn-up {
    display: inline-block;
    background: var(--zx-light);
    color: var(--zx-gray);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ========================================
   直播详情页样式
   ======================================== */
.zx-detail-card {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--zx-border);
}

.zx-league-tag {
    background: var(--zx-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
}

.zx-datetime {
    font-size: 1rem;
    color: var(--zx-gray);
}

.zx-detail-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.zx-team-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.zx-team-logo-lg {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.zx-team-name-lg {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--zx-dark);
    text-align: center;
}

.zx-vs-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.zx-score-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zx-score-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--zx-dark);
}

.zx-vs-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zx-secondary);
}

.zx-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.zx-status-live {
    background: linear-gradient(135deg, var(--zx-danger), #ff1744);
    color: #fff;
    animation: pulse 2s infinite;
}

.zx-pulse-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.zx-status-upcoming {
    background: #e3f2fd;
    color: var(--zx-primary);
}

.zx-status-ended {
    background: var(--zx-light);
    color: var(--zx-gray);
}

/* 直播信号区域 */
.zx-signal-section {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-signal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.zx-signal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--zx-primary), #1565c0);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--zx-radius-sm);
    font-weight: 600;
    transition: var(--zx-transition);
}

.zx-signal-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--zx-shadow-md);
}

.zx-signal-icon {
    font-size: 1.2rem;
}

/* 赛事信息区域 */
.zx-info-section {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.zx-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zx-info-label {
    font-size: 0.85rem;
    color: var(--zx-gray);
    font-weight: 500;
}

.zx-info-value {
    font-size: 1rem;
    color: var(--zx-dark);
    font-weight: 600;
}

.zx-info-link {
    color: var(--zx-primary);
}

.zx-info-link:hover {
    color: var(--zx-secondary);
}

/* 比赛说明区域 */
.zx-content-section {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-box {
    margin-top: 20px;
    line-height: 1.8;
    color: var(--zx-dark);
    font-size: 1rem;
}

/* 相关赛事区域 */
.zx-related {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-card-small {
    display: block;
    background: var(--zx-light);
    border-radius: var(--zx-radius-sm);
    padding: 15px;
    transition: var(--zx-transition);
    border: 1px solid var(--zx-border);
}

.zx-card-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--zx-shadow-md);
    border-color: var(--zx-primary);
}

.zx-card-small-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--zx-border);
}

.zx-league-sm {
    font-size: 0.85rem;
    color: var(--zx-primary);
    font-weight: 600;
}

.zx-time-sm {
    font-size: 0.85rem;
    color: var(--zx-gray);
}

.zx-teams-sm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.zx-team-name-sm {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--zx-dark);
    flex: 1;
    text-align: center;
}

.zx-vs-sm {
    font-size: 0.85rem;
    color: var(--zx-gray);
    font-weight: 600;
}

/* ========================================
   新闻列表页样式
   ======================================== */
.zx-news-list {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-news-list-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zx-news-item {
    background: var(--zx-light);
    border-radius: var(--zx-radius-md);
    overflow: hidden;
    transition: var(--zx-transition);
}

.zx-news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--zx-shadow-md);
}

.zx-news-item a {
    display: flex;
}

.zx-news-thumb {
    width: 200px;
    min-height: 140px;
    flex-shrink: 0;
    max-width: 100%;
}

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

.zx-news-list-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zx-news-list-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--zx-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.zx-news-item:hover .zx-news-list-title {
    color: var(--zx-primary);
}

.zx-news-list-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--zx-gray);
}

/* ========================================
   新闻详情页样式
   ======================================== */
.zx-article {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-article-header {
    margin-bottom: 30px;
}

.zx-article-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--zx-dark);
    line-height: 1.4;
    margin-bottom: 15px;
}

.zx-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--zx-gray);
    margin-bottom: 20px;
}

.zx-article-cover {
    border-radius: var(--zx-radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.zx-article-cover img {
    width: 100%;
    height: auto;
}

.zx-article-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.zx-article-body p {
    margin-bottom: 15px;
}

.zx-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--zx-radius-sm);
    margin: 15px 0;
}

.zx-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--zx-border);
}

.zx-tags-label {
    font-size: 0.9rem;
    color: var(--zx-gray);
    font-weight: 500;
}

.zx-tag-link {
    display: inline-block;
    background: #e3f2fd;
    color: var(--zx-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--zx-transition);
}

.zx-tag-link:hover {
    background: var(--zx-primary);
    color: #fff;
}

/* 文章导航 */
.zx-article-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.zx-nav-prev,
.zx-nav-next {
    flex: 1;
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 20px;
    box-shadow: var(--zx-shadow-sm);
    transition: var(--zx-transition);
}

.zx-nav-prev:hover,
.zx-nav-next:hover {
    transform: translateY(-3px);
    box-shadow: var(--zx-shadow-md);
}

.zx-nav-label {
    display: block;
    font-size: 0.85rem;
    color: var(--zx-gray);
    margin-bottom: 8px;
}

.zx-nav-title {
    display: block;
    font-size: 0.95rem;
    color: var(--zx-dark);
    font-weight: 600;
    line-height: 1.4;
}

.zx-nav-disabled {
    flex: 1;
    background: var(--zx-light);
    border-radius: var(--zx-radius-md);
    padding: 20px;
    opacity: 0.6;
}

/* 相关内容区块 */
.zx-block {
    margin-bottom: 30px;
}

.zx-block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--zx-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--zx-border);
}

/* ========================================
    录像详情页样式
    ======================================== */
.zx-video-player {
    background: #000;
    border-radius: var(--zx-radius-md);
    overflow: hidden;
    margin-bottom: 25px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.zx-video-container {
    position: relative;
    padding-top: 56.25%;
}

.zx-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.zx-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zx-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--zx-transition);
}

.zx-play-overlay:hover {
    background: var(--zx-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.zx-play-icon {
    font-size: 2rem;
    color: var(--zx-primary);
}

.zx-play-overlay:hover .zx-play-icon {
    color: #fff;
}

.zx-video-info {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zx-dark);
    margin-bottom: 15px;
}

.zx-video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--zx-gray);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--zx-border);
}

.zx-meta-sep {
    color: var(--zx-border);
}

.zx-video-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.zx-video-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

/* ========================================
   Tags 页面样式
   ======================================== */
.zx-tags-cloud {
    background: #fff;
    border-radius: var(--zx-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--zx-shadow-sm);
}

.zx-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.zx-tag-item {
    display: inline-block;
    padding: 8px 16px;
    background: var(--zx-light);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--zx-dark);
    transition: var(--zx-transition);
    border: 1px solid var(--zx-border);
}

.zx-tag-item:hover {
    background: var(--zx-primary);
    color: #fff;
    border-color: var(--zx-primary);
}

/* ========================================
    分页样式
    ======================================== */
.zx-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 30px 0;
    overflow: hidden;
}

.zx-pagination a,
.zx-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid var(--zx-border);
    border-radius: var(--zx-radius-sm);
    font-size: 0.9rem;
    color: var(--zx-dark);
    transition: var(--zx-transition);
    flex-shrink: 0;
}

.zx-pagination a:hover {
    background: var(--zx-primary);
    color: #fff;
    border-color: var(--zx-primary);
}

.zx-pagination .active {
    background: var(--zx-primary);
    color: #fff;
    border-color: var(--zx-primary);
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 1024px) {
    .zx-container {
        padding: 0 15px;
    }
    
    .zx-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    /* 头部移动端 */
    .zx-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--zx-dark);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
    }
    
    .zx-nav.active {
        display: flex;
    }
    
    .zx-nav a {
        width: 100%;
        text-align: center;
    }
    
    .zx-menu-btn {
        display: flex;
    }
    
    /* 比赛卡片移动端 */
    .zx-grid {
        grid-template-columns: 1fr;
    }
    
    /* 时间线移动端 */
    .zx-timeline-item {
        flex-wrap: wrap;
    }
    
    .zx-timeline-time {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .zx-timeline-league {
        min-width: auto;
        padding: 0;
    }
    
    /* 录像网格移动端 */
    .zx-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    /* 新闻卡片移动端 */
    .zx-news-grid {
        grid-template-columns: 1fr;
    }
    
    .zx-news-card {
        flex-direction: column;
    }
    
    .zx-news-thumb-img {
        width: 100%;
        height: 180px;
    }
    
    /* 底部移动端 */
    .zx-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* 移动端底部导航 */
    .zx-mobile-nav {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    /* 直播详情页移动端 */
    .zx-detail-teams {
        flex-direction: column;
        gap: 20px;
    }
    
    .zx-team-logo-lg {
        width: 70px;
        height: 70px;
    }
    
    .zx-team-name-lg {
        font-size: 1.1rem;
    }
    
    .zx-score-val {
        font-size: 2rem;
    }
    
    /* 新闻列表移动端 */
    .zx-news-item a {
        flex-direction: column;
    }
    
    .zx-news-thumb {
        width: 100%;
        height: 180px;
    }
    
    /* 文章导航移动端 */
    .zx-article-nav {
        flex-direction: column;
    }
    
    .zx-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zx-logo-text {
        font-size: 1.2rem;
    }
    
    .zx-section-title {
        font-size: 1.1rem;
    }
    
    .zx-card {
        padding: 15px;
    }
    
    .zx-time {
        font-size: 1.3rem;
    }
    
    .zx-page-title {
        font-size: 1.4rem;
    }
    
    .zx-article-title {
        font-size: 1.4rem;
    }
}
