 /* 全局直播表样式重置与优化 */
        .live-schedule-box {
            margin: 10px 0;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .live-schedule-header {
            padding: 12px 15px;
            background: #2ab535;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .live-schedule-header img {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .live-schedule-list {
            padding: 0;
            margin: 0;
            list-style: none;
        }
        .live-schedule-item {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-bottom: 1px solid #f5f5f5;
            transition: background-color 0.2s ease;
        }
        .live-schedule-item:last-child {
            border-bottom: none;
        }
        .live-schedule-item:hover {
            background-color: #f8f9fa;
        }
        /* 时间列 */
        .live-time {
            width: 60px;
            flex-shrink: 0;
            font-size: 14px;
            color: #666;
            text-align: center;
        }
        /* 联赛列 */
        .live-league {
            width: 80px;
            flex-shrink: 0;
            font-size: 12px;
            color: #999;
            text-align: center;
        }
        .live-league a {
            color: #999;
            text-decoration: none;
        }
        .live-league a:hover {
            color: #337ab7;
        }
        /* 对阵列（核心） */
        .live-match {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
        }
        .team-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40%;
        }
        .team-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 8px;
            background-color: #f5f5f5;
        }
        .team-name {
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .match-vs {
            width: 20%;
            text-align: center;
            color: #999;
            font-size: 12px;
        }
        /* 直播入口列 */
        .live-entrance {
            width: 80px;
            flex-shrink: 0;
            text-align: center;
        }
        .live-entrance a {
            display: inline-block;
            padding: 4px 10px;
            background-color: #2ab535;
            color: #fff;
            font-size: 12px;
            border-radius: 4px;
            text-decoration: none;
        }
        .live-entrance a:hover {
            background-color: #286090;
        }
        /* 推荐赛事样式 */
        .live-schedule-item.rec {
            /* background-color: #fff8e1; */
            /* border-left: 3px solid #ffc107; */
        }
        /* 移动端适配 */
        @media (max-width: 768px) {
            .live-schedule-header {
                padding: 10px 12px;
                font-size: 14px;
            }
            .live-schedule-item {
                padding: 8px 10px;
            }
            .live-time {
                width: 50px;
                font-size: 12px;
            }
            .live-league {
                display: none; /* 移动端隐藏联赛列，节省空间 */
            }
            .team-icon {
                width: 16px;
                height: 16px;
                margin: 0 4px;
            }
            .team-name {
                font-size: 12px;
            }
            .live-entrance {
                width: 70px;
            }
            .live-entrance a {
                padding: 2px 8px;
                font-size: 11px;
            }
        }

