        :root {
            --primary-color: #1a5632;
            --secondary-color: #e74c3c;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }

        /* 导航栏样式 */
        .navbar {
            background: var(--primary-color);
            padding: 12px 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            position: relative;
        }


        /* 桌面导航菜单 */
        .nav-menu-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .nav-menu-row {
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 6px;
        }

        /* 移动导航菜单 */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            padding: 10px;
            cursor: pointer;
            margin-left: auto;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 10px;
            background: var(--primary-color);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 15px 20px;
            z-index: 1000;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .nav-item {
            color: #fff;
            text-decoration: none;
            padding: 10px 15px;
            font-size: 14px;
            transition: all 0.3s;
            border-radius: 5px;
            background: rgba(255,255,255,0.1);
            display: block;
        }

        .nav-item:hover {
            background: rgba(255,255,255,0.2);
        }

        /* 主体布局 */
        .container {
            display: flex;
            padding: 20px;
            gap: 20px;
        }

        .nav-menu-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .nav-menu-row {
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 6px;
        }

        .nav-item {
            color: #fff;
            text-decoration: none;
            padding: 6px 12px;
            font-size: 14px;
            transition: all 0.3s;
            white-space: nowrap;
            border-radius: 15px;
            background: rgba(255,255,255,0.1);
        }

        .nav-item:hover {
            background: rgba(255,255,255,0.2);
        }

        /* 主体布局 */
        .container {
            display: flex;
            padding: 20px;
            gap: 20px;
        }

        .left-column {
            flex: 7;
        }

        .right-column {
            flex: 3;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        /* 直播板块 */
        .live-section {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .date-header {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9em;
        }

        .filter-buttons {
            margin-bottom: 20px;
            display: flex;
            gap: 10px;
        }

        .filter-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 20px;
            background: #eee;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-btn.active {
            background: var(--primary-color);
            color: white;
        }

        .match-list {
            display: grid;
/*            gap: 15px;*/
        }

        .match-item {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            gap: 10px;
        }

        .match-time {
            width: 70px;
            color: #666;
            font-weight: 500;
        }

        .match-event {
            width: 80px;
            color: #999;
            font-size: 0.9em;
        }

        .teams {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 200px;
        }

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

        .team-logo {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .team-name {
            max-width: 150px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .live-status {
            min-width: 100px;
            text-align: right;
        }

        .live-btn {
            padding: 8px 20px;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9em;
        }

        /* 新闻板块 */
        .news-section {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .news-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .news-tab {
            padding: 8px 0;
            border: none;
            background: transparent;
            cursor: pointer;
            position: relative;
            color: #666;
        }

        .news-tab.active {
            color: var(--primary-color);
            font-weight: bold;
        }

        .news-tab.active::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
        }

        .news-list {
            display: grid;
/*            grid-template-columns: 1fr 1fr;*/
            gap: 15px;
        }

        .news-item {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            color: #444;
            font-size: 0.95em;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .navbar {
/*                flex-direction: column;*/
                align-items: stretch;
            }

            .nav-menu-container {
                gap: 10px;
            }

            .nav-menu-row {
                justify-content: center;
            }

            .nav-item {
                font-size: 12px;
                padding: 6px 10px;
            }

            .container {
                flex-direction: column;
                padding: 10px;
            }

            .match-item {
                flex-direction: column;
                align-items: stretch;
            }

            .teams {
                margin: 10px 0;
            }

            .live-status {
                text-align: left;
            }

            .news-list {
                grid-template-columns: 1fr;
            }

            .team-name {
                max-width: 100%;
            }
            .nav-menu-container {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .mobile-menu.active {
                display: flex;
            }

            .navbar {
                flex-wrap: nowrap;
                gap: 10px;
            }
        }



        @media (max-width: 480px) {
            .nav-menu-row {
                gap: 4px;
            }
            
            .nav-item {
                flex: 1 0 calc(50% - 4px);
                text-align: center;
                white-space: normal;
            }
        }
        a{
          color:#000;
          text-decoration: none;
        }
       /* 直播回顾样式 */
        .match-review {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('/images/football.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 12px;
            padding: 30px;
            color: white;
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .match-review-lq {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('/images/basketball.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 12px;
            padding: 30px;
            color: white;
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }

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

        .team-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
        }

        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 15px;
            background: white;
            border-radius: 50%;
            padding: 5px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .team-name {
            font-size: 1.4rem;
            font-weight: bold;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .score-display {
            font-size: 3.5rem;
            font-weight: bold;
            margin: 0 40px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .match-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
        }

        .team-stats {
            padding: 15px;
            background: rgba(0,0,0,0.3);
            border-radius: 6px;
        }

        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .match-review-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffd700;
            border-left: 4px solid #ffd700;
            padding-left: 10px;
        }

        .review-content {
            line-height: 1.6;
            opacity: 0.9;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .teams-header {
                flex-direction: column;
                gap: 20px;
            }
            
            .team-logo {
                width: 60px;
                height: 60px;
            }
            
            .score-display {
                margin: 20px 0;
                font-size: 2.5rem;
            }
            
            .match-details {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .match-review {
                padding: 20px;
            }
            .match-review-lq {
                padding: 20px;
            }
            
            .team-name {
                font-size: 1.1rem;
            }
            
            .score-display {
                font-size: 2rem;
            }
        }
        .live-xg {
    flex: 3;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
        .live-xg li{
            height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 30px;
        }
        .review-content a {
    color: #fff;
}
.review-content p
 {
    margin-bottom: 10px;
}