/*  */
@charset "utf-8";
/* CSS Document */
        :root {
            --primary-color: #667eea;
            --primary-dark: #5a67d8;
            --success-color: #48bb78;
            --warning-color: #ecc94b;
            --danger-color: #e53e3e;
            --info-color: #4299e1;
            --dark-color: #00A0E2;
            --light-color: #f8fafc;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.2);
            --football-color: #48bb78;
            --basketball-color: #e53e3e;
            --live-color: #ff6b6b;
            --odds-home-change-color: #DCFFB9; /* 主队水位变化颜色 */
            --odds-away-change-color: #FFDFFF; /* 客队水位变化颜色 */
            --odds-handicap-change-color: #FF7979; /* 盘口变化颜色 */
            --red-card-alert-color: #e53e3e; /* 红牌提示颜色 */
            --finished-alert-color: #4299e1; /* 完场提示颜色 */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
            background: linear-gradient(135deg, #c3cfe2 100%, #f5f7fa 0%);
            color: #333;
            line-height: 1.6;
            padding: 5px;
            min-height: 100vh;
        }
        
        .container {
            max-width: 960px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: auto;
            min-height: 980px;
            display: flex;
            flex-direction: column;
        }
        
        /* 头部样式 */
        .header {
            background: #0066CC;
            color: white;
            padding: 10px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }
        
        .header h1 {
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .header h1 i {
            font-size: 32px;
        }
        
        .stats-container {
            display: flex;
            gap: 10px;
        }
        
        .stat-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            padding: 2px 5px;
            border-radius: 5px;
            min-width: 100px;
        }
        
        .stat-value {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }
        
        /* 控制面板 - 修复布局问题 */
        .control-panel {
            background: var(--light-color);
            padding: 5px 5px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            border-bottom: 1px solid var(--border-color);
            flex-shrink: 0;
            align-items: center;
        }
        
        .control-section {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: nowrap;
            margin-right: 10px;
        }
        
        /* 按钮组样式 */
        .btn-group {
            display: flex;
            flex-wrap: nowrap;
            gap: 4px;
        }
        
        /* 按钮样式 */
        .btn {
            padding: 5px 8px;
            border: 1px solid var(--border-color);
            background: white;
            color: var(--dark-color);
            font-weight: 500;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 13px;
            white-space: nowrap;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .btn:hover:not(.active) {
            background: var(--light-color);
        }
        
        /* 运动类型按钮 */
        .sport-btn.football.active {
            background: var(--football-color);
            border-color: var(--football-color);
        }
        
        .sport-btn.basketball.active {
            background: var(--basketball-color);
            border-color: var(--basketball-color);
        }
        
        /* 功能按钮 */
        .func-btn.odds.active {
            background: #8b5cf6;
            border-color: #8b5cf6;
        }
        
        .func-btn.yellow.active {
            background: var(--warning-color);
            border-color: var(--warning-color);
            color: #333;
        }
        
        .func-btn.rank.active {
            background: var(--info-color);
            border-color: var(--info-color);
        }
        
        /* 新增声音按钮样式 */
        .func-btn.sound.active {
            background: var(--success-color);
            border-color: var(--success-color);
            color: white;
        }
        
        /* 新增弹窗位置选择按钮 */
        .func-btn.position.active {
            background: #9f7aea;
            border-color: #9f7aea;
            color: white;
        }
        
        /* 新增语言按钮样式 */
        .func-btn.language.active {
            background: #ed8936;
            border-color: #ed8936;
            color: white;
        }
        
        /* 弹窗位置按钮子选项 */
        .position-submenu {
            position: absolute;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            box-shadow: var(--shadow);
            z-index: 100;
            display: none;
            flex-direction: column;
            min-width: 120px;
            top: 35px;
            left: 0;
        }
        
        /* 语言按钮子选项 */
        .language-submenu {
            position: absolute;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            box-shadow: var(--shadow);
            z-index: 100;
            display: none;
            flex-direction: column;
            min-width: 80px;
            top: 35px;
            left: 0;
        }
        
        .position-option, .language-option {
            padding: 8px 12px;
            border: none;
            background: none;
            text-align: left;
            cursor: pointer;
            font-size: 12px;
            color: var(--dark-color);
            transition: background 0.2s;
        }
        
        .position-option:hover, .language-option:hover {
            background: #C0C0C0;
        }
        
        .position-option.active, .language-option.active {
            background: var(--primary-color);
            color: white;
        }
        
        /* 新增下拉框样式 */
        .select-container {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .status-select {
            border: 1px solid var(--border-color);
            background: white url(data:image/svg+xml;charset=UTF-8,%3csvg\ xmlns=\'http://www.w3.org/2000/svg\'\ viewBox=\'0\ 0\ 24\ 24\'\ fill=\'none\'\ stroke=\'currentColor\'\ stroke-width=\'2\'\ stroke-linecap=\'round\'\ stroke-linejoin=\'round\'%3e%3cpolyline\ points=\'6\ 9\ 12\ 15\ 18\ 9\'%3e%3c/polyline%3e%3c/svg%3e) no-repeat right 8px;
            color: var(--dark-color);
            font-weight: 500;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 13px;
            height: 30px;
            min-width: 100px;
            outline: none;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-position-x:right; background-position-y:8px; background-size:16px; padding-right:30px; padding-left:8px; padding-top:5px; padding-bottom:5px; background-image:url(data:image/svg+xml;charset=UTF-8,%3csvg\ xmlns=\'http://www.w3.org/2000/svg\'\ viewBox=\'0\ 0\ 24\ 24\'\ fill=\'none\'\ stroke=\'currentColor\'\ stroke-width=\'2\'\ stroke-linecap=\'round\'\ stroke-linejoin=\'round\'%3e%3cpolyline\ points=\'6\ 9\ 12\ 15\ 18\ 9\'%3e%3c/polyline%3e%3c/svg%3e); background-repeat:no-repeat
        }
        
        .status-select:hover {
            border-color: var(--primary-color);
        }
        
        .status-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        /* 状态选项的特殊颜色 */
        .status-select option[value="live"] {
            color: #3366CC;
        }
        
        .status-select option[value="upcoming"] {
            color: #3366CC;
        }
        
        .status-select option[value="finished"] {
            color: #3366CC;
        }
        
        .status-select option[value="special"] {
            color: #3366CC;
        }
        
        .status-select option[value="has-live"] {
            color: #3366CC;
        }
        
        /* 搜索框容器 */
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
            margin-left: auto;
        }
        
        #search-input {
            padding: 8px 35px 8px 12px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            font-size: 12px;
            transition: all 0.3s;
            background: white;
            width: 180px;
            height: 36px;
        }
        
        #search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .clear-search {
            position: absolute;
            right: 8px;
            background: none;
            border: none;
            color: #a0aec0;
            cursor: pointer;
            font-size: 16px;
            display: none;
        }
        
        .clear-search:hover {
            color: var(--danger-color);
        }
        
        /* 新增：顶部入球提示区域 */
        .goal-alerts-top {
            background: #f8f9fa;
            border-bottom: 1px solid var(--border-color);
            padding: 0px 2px;
            height: 20px;
            display: flex;
            align-items: left;
            justify-content: left;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .goal-alerts-container {
            display: flex;
            gap: 5px;
            overflow: hidden;
            max-width: 100%;
        }
        
        .goal-alert-item {
            font-size: 12px;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.5s ease-out;
            animation: fadeIn 0.3s ease-out;
        }
        
        .goal-alert-item.fade-out {
            opacity: 0;
        }
        
        .goal-alert-league {
            font-weight: bold;
            color: var(--dark-color);
        }
        
        .goal-alert-home-team {
            font-weight: 500;
        }
        
        .goal-alert-away-team {
            font-weight: 500;
        }
        
        .goal-alert-score {
            color: #0000FF;
            font-weight: bold;
            margin: 0 2px;
        }
        
        .goal-alert-home-team.scored {
            color: #FF0000;
            font-weight: bold;
        }
        
        .goal-alert-away-team.scored {
            color: #FF0000;
            font-weight: bold;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 比分变化提示区域 - 修改为可调整位置 */
        .score-change-alerts {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            max-height: 260px;
            overflow-y: auto;
            background: transparent;
            pointer-events: none;
            transition: all 0.3s;
        }

        /* 位置样式 */
        .score-change-alerts.position-top-left {
            left: 30px;
            right: auto;
            width: auto;
            max-width: 400px;
        }
        
        .score-change-alerts.position-top {
            left: 50%;
            transform: translateX(-50%);
            width: auto;
            max-width: 800px;
        }
        
        .score-change-alerts.position-top-right {
            right: 20px;
            left: auto;
            width: auto;
            max-width: 400px;
        }

        /* 修改现有的 .score-change-alert 样式 */
        .score-change-alert {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            padding: 10px 15px;
            margin: 5px auto;
            border-radius: 0 0 8px 8px;
            font-size: 14px;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: slideDown 0.3s ease-out;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-top: none;
            border-left: 4px solid var(--danger-color);
            cursor: pointer; /* 添加光标指针，表示可点击 */
            transition: transform 0.2s, box-shadow 0.2s; /* 添加过渡效果 */
            pointer-events: auto;
        }

        /* 位置样式对应的圆角调整 */
        .score-change-alerts.position-top-left .score-change-alert {
            border-radius: 0 8px 8px 0;
        }
        
        .score-change-alerts.position-top-right .score-change-alert {
            border-radius: 8px 0 0 8px;
        }

        /* 红牌提示样式 */
        .score-change-alert.red-card-alert {
            background: linear-gradient(135deg, #ffcccc 0%, #ff9999 100%);
            border-left: 4px solid var(--red-card-alert-color);
        }

        /* 完场提示样式 */
        .score-change-alert.finished-alert {
            background: linear-gradient(135deg, #cce7ff 0%, #99ccff 100%);
            border-left: 4px solid var(--finished-alert-color);
        }

        .score-change-alert:hover {
            transform: translateY(2px); /* 悬停时轻微下浮 */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 悬停时阴影加深 */
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .score-change-info {
            display: flex;
            align-items: flex-start;
            gap: 5px;
            flex: 1;
            flex-direction: column;
        }
        
        .score-change-league {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 13px;
        }
        
        .score-change-text {
            font-weight: 600;
            color: #FF0000;
            font-size: 14px;
            margin: 2px 0;
        }
        
        /* 红牌提示文字颜色 */
        .red-card-alert .score-change-text {
            color: #cc0000;
        }
        
        /* 完场提示文字颜色 */
        .finished-alert .score-change-text {
            color: #0066cc;
        }
        
        .score-change-match {
            font-size: 14px;
            color: #333;
        }
        
        .score-change-time {
            font-size: 12px;
            color: #718096;
            white-space: nowrap;
            margin-top: 2px;
        }
        
        .match-minute {
            background-color: #FF0000;
            color: white;
            padding: 1px 4px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: bold;
            margin-right: 3px;
        }
        
        .close-alert {
            background: none;
            border: none;
            color: #718096;
            font-size: 18px;
            cursor: pointer;
            padding: 0 5px;
            flex-shrink: 0;
            pointer-events: auto;
        }
        
        .close-alert:hover {
            color: var(--danger-color);
        }
        
        /* 主内容区 */
        .content {
            display: flex;
            flex: 1;
            overflow: hidden;
        }
        
        /* 侧边栏联赛列表 */
        .sidebar {
            width: 135px;
            background: var(--light-color);
            border-right: 1px solid var(--border-color);
            padding: 5px;
            overflow: hidden;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
        }
        
        .sidebar-header {
            text-align: center;
            background: #0066CC;
            color: white;
            padding: 8px 5px;
            margin-bottom: 8px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }
        
        /* 侧边栏联赛列表 今日联赛*/
        .league-count-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 6px;
            border-radius: 5px;
            font-size: 12px;
        }
        
        .league-list-container {
            flex: 1;
            overflow: hidden;
            position: relative;
        }
        
        .league-list {
            list-style: none;
            max-height: 350px;
            overflow-y: auto;
            margin-bottom: 5px;
        }
        
        /* 联赛列样式 - 缩小高度 */
        .league-item {
            padding: 4px 5px;
            margin-bottom: 2px;
            border-radius: 3px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.2s;
            font-size: 12px;
            min-height: 28px;
            height: 28px;
        }
        
        .league-item:hover {
            background: rgba(102, 126, 234, 0.1);
        }
        
        .league-item.active {
            background: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        
        .league-item[data-league=""] {
            background: transparent;
            color: var(--dark-color);
        }
        
        .league-item[data-league=""]:hover {
            background: rgba(102, 126, 234, 0.1);
        }
        
        .league-item[data-league=""].active {
            background: var(--primary-color);
            color: white;
        }
        
        .league-count {
            background: rgba(0, 0, 0, 0.1);
            padding: 1px 4px;
            border-radius: 3px;
            font-size: 12px;
            min-width: 18px;
            text-align: center;
        }
        
        .league-item.active .league-count {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .league-item[data-league=""] .league-count {
            background: rgba(0, 0, 0, 0.1);
        }
        
        .league-name-bg {
            display: inline-block;
            padding: 2px 5px;
            border-radius: 2px;
            color: white;
            font-size: 11px;
            width: 75px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            text-align: center;
            margin-right: 3px;
        }
        
        /* 联赛列表展开/收起按钮 */
        .league-toggle-btn {
            background: var(--light-color);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 4px 8px;
            font-size: 11px;
            color: var(--dark-color);
            cursor: pointer;
            text-align: center;
            width: 100%;
            margin-top: 5px;
            flex-shrink: 0;
            transition: all 0.3s;
        }
        
        .league-toggle-btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        /* 比赛表格 */
        .matches-table-container {
            flex: 1;
            overflow-y: auto;
        }
        
        .matches-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .matches-table thead {
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .matches-table th {
            background: var(--dark-color);
            color: white;
            padding: 10px 5px; /* 减少内边距 */
            font-weight: 600;
            border-bottom: 2px solid var(--primary-color);
            text-align: center;
            font-size: 14px; /* 减小字体 */
        }
        
        .matches-table tbody tr {
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s;
            height: 35px !important; /* 调整行高为35px */
        }
        
        .matches-table tbody tr:hover {
            background: rgba(102, 126, 234, 0.05);
        }
        
        .matches-table td {
            padding: 4px 0px; /* 减少内边距 */
            vertical-align: middle;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            text-align: center;
            font-size: 12px; /* 减小字体 */
        }
        
        /* 列宽调整 - 8列 */
        .matches-table th:nth-child(1),
        .matches-table td:nth-child(1) {
            width: 8%;
        }
        
        .matches-table th:nth-child(2),
        .matches-table td:nth-child(2) {
            width: 4%;
        }
        
        .matches-table th:nth-child(3),
        .matches-table td:nth-child(3) {
            width: 23%;
        }
        
        .matches-table th:nth-child(4),
        .matches-table td:nth-child(4) {
            width: 10%;
        }
        
        .matches-table th:nth-child(5),
        .matches-table td:nth-child(5) {
            width: 25%;
        }
        
        .matches-table th:nth-child(6),
        .matches-table td:nth-child(6) {
            width: 12%;
        }
        
        .matches-table th:nth-child(7),
        .matches-table td:nth-child(7) {
            width: 10%;
        }
        
        .matches-table th:nth-child(8),
        .matches-table td:nth-child(8) {
            width: 8%;
        }
        
        /* 联赛单元格样式 */
        .league-cell {
            padding: 4px 8px !important; /* 减少内边距 */
            font-weight: 500;
            background: none !important;
            white-space: nowrap;
            text-align: center;

        }
        
        /* 比分变化高亮 - 修改：同时高亮比分和对应球队名- 高亮背景颜色 */
        .score-changed-home .score-cell,
        .score-changed-home .home-team-container {
            background: linear-gradient(135deg, #FFCCFF 0%, #ffeaa7 100%) !important;
            animation: highlight 2s ease-in-out infinite;
            position: relative;
        }
        
        .score-changed-away .score-cell,
        .score-changed-away .away-team-container {
            background: linear-gradient(135deg, #FFDFFF 0%, #CCCCFF 100%) !important;
            animation: highlight 2s ease-in-out infinite;
            position: relative;
        }
        
        .score-changed-both .score-cell,
        .score-changed-both .home-team-container,
        .score-changed-both .away-team-container {
            background: linear-gradient(135deg, #fff3cd 0%, #B3B3FF 100%) !important;
            animation: highlight 2s ease-in-out infinite;
            position: relative;
        }
        
        /* 水位变化高亮 - 修改：为不同类型使用不同颜色 */
        .odds-highlight-home {
            background: linear-gradient(135deg, var(--odds-home-change-color) 0%, var(--odds-home-change-color) 100%) !important;
            animation: odds-highlight 2s ease-in-out infinite;
            border-radius: 2px;
            position: relative;
        }
        
        .odds-highlight-away {
            background: linear-gradient(135deg, var(--odds-away-change-color) 0%, var(--odds-away-change-color) 100%) !important;
            animation: odds-highlight 2s ease-in-out infinite;
            border-radius: 2px;
            position: relative;
        }
        
        .odds-highlight-handicap {
            background: linear-gradient(135deg, var(--odds-handicap-change-color) 0%, var(--odds-handicap-change-color) 100%) !important;
            animation: odds-highlight 2s ease-in-out infinite;
            border-radius: 2px;
            position: relative;
        }
        
        @keyframes highlight {
            0%, 100% { 
                background: linear-gradient(135deg, #FFCCFF 0%, #ffeaa7 100%) !important; 
                opacity: 1;
            }
            50% { 
                background: linear-gradient(135deg, #FF99FF 0%, #ffd43b 100%) !important; 
                opacity: 0.9;
            }
        }
        
        @keyframes odds-highlight {
            0%, 100% { 
                opacity: 1;
            }
            50% { 
                opacity: 0.7;
            }
        }
        
        /* 状态显示在时间下面 */
        .time-cell {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1px; /* 减小间距 */
        }
        
        .match-time {
            font-size: 11px; /* 减小字体 */
            color: var(--dark-color);
        }
        
        /* 呼吸灯效果 */
        .breathing-light {
            display: inline-block;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: #0000FF;
            margin-left: 1px;
            animation: breathing 2s infinite ease-in-out;
        }
        
        @keyframes breathing {
            0%, 100% {
                opacity: 0.5;
                transform: scale(0.9);
            }
            50% {
                opacity: 1;
                transform: scale(1.1);
                box-shadow: 0 0 6px var(--success-color);
            }
        }
        
        /* 状态标签 */
        .status-badge {
            padding: 1px 2px; /* 减小内边距 */
            border-radius: 2px;
            font-size: 11px; /* 减小字体 */
            font-weight: bold;
            text-align: center;
            display: inline-block;
            white-space: nowrap;
            color: #666666;
        }
        
        .status-live {
            background: linear-gradient(135deg, var(--success-color) 0%, #38a169 100%);
            color: white;
        }
        
        .status-half {
            background: linear-gradient(135deg, var(--warning-color) 0%, #d69e2e 100%);
            color: #333;
        }
        
        .status-finished {
            background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
            color: white;
        }
        
        .status-cancelled, .status-abandoned {
            background: linear-gradient(135deg, var(--danger-color) 0%, #c53030 100%);
            color: white;
        }
        
        /* 球队样式 */
        .team-cell {
            display: flex;
            align-items: center;
            gap: 3px;
            flex-wrap: nowrap;
            height: 100%;
        }
        
        /* 主队容器 - 靠右显示 */
        .home-team-container {
            justify-content: flex-end;
            width: 100%;
        }
        
        /* 客队容器 - 靠左显示 */
        .away-team-container {
            justify-content: flex-start;
            width: 100%;
        }
        
        /* 球队名容器 */
        .team-name-container {
            display: flex;
            align-items: center;
            gap: 3px;
            max-height: 30px;
            overflow: hidden;
        }
        
        /* 主队名靠右 */
        .home-team-container .team-name-container {
            justify-content: flex-end;
        }
        
        /* 客队名靠左 */
        .away-team-container .team-name-container {
            justify-content: flex-start;
        }
     /* 球队名样式 */ 
        .team-name {
            font-weight: 500;
            white-space: normal;
            word-break: break-all;
            overflow-wrap: break-word;
            text-align: center;
            width: 100%;
            font-size: 14px; /* 减小字体 */
            text-decoration: none;
            color: inherit;
            line-height: 1.3; /* 调整行高 */
        }
        
        /* 修改：入球资料链接悬停样式 - 去除下划线，添加背景色 */
        .team-name-link {
            text-decoration: none !important;
            color: inherit;
            padding: 1px 3px; /* 减小内边距 */
            border-radius: 2px;
            transition: background-color 0.2s;
        }
        
        .team-name-link:hover {
            background-color: rgba(102, 126, 234, 0.1) !important;
            color: var(--primary-color);
        }
        
        /* 修改：比分链接悬停样式 - 去除下划线，添加背景色 */
        .current-score-link, .vs-score-link {
            text-decoration: none !important;
            padding: 1px 3px; /* 减小内边距 */
            border-radius: 2px;
            transition: background-color 0.2s;
        }
        
        .current-score-link:hover, .vs-score-link:hover {
            background-color: rgba(255, 0, 0, 0.1) !important;
        }
        
        /* 排名样式 */
        .team-rank {
            font-size: 11px; /* 减小字体 */
            color: #666666;
            background: #F7F7F7;
            padding: 1px 3px;
            border-radius: 2px;
            min-width: 16px; /* 减小宽度 */
            text-align: center;
            flex-shrink: 0;
        }
        
        /* 红黄牌徽章样式 */
        .card-badge {
            width: 14px; /* 减小尺寸 */
            height: 14px; /* 减小尺寸 */
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8px; /* 减小字体 */
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .red-card {
            background: var(--danger-color);
            color: white;
        }
        
        .yellow-card {
            background: var(--warning-color);
            color: #333;
        }
        
        /* 比分样式 */
        .score-cell {
            text-align: center;
            min-width: 100px;
            position: relative;
        }
        
        /* 修改：即时比分调大一个字号，从14px改为16px */
        .current-score {
            font-size: 15px; /* 增大字体 */
            color: #FF0000;
            font-weight: bold;
            font-family: 'Courier New', monospace;
            line-height: 1;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #FF0000;
        }
        
        /* VS样式 - 未开始比赛 */
        .vs-score {
            font-size: 14px; /* 减小字体 */
            color: #666;
            font-weight: bold;
            font-family: 'Courier New', monospace;
            text-decoration: none;
        }
        
        .score-divider {
            color: #cbd5e0;
            margin: 0 3px; /* 减小间距 */
        }
        
        /* 修改：中场比分缩小间距，去除空格 */
        .half-score {
            font-size: 16px; /* 减小字体 */
            color: #718096;
            margin-top: 2px; /* 减小间距 */
            font-family: 'Courier New', monospace;
            letter-spacing: -0.5px; /* 减少字母间距 */
        }
        
        /* 盘口样式 */
        .odds-horizontal {
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 0px; /* 减小间距 */
            font-size: 12px; /* 减小字体 */
            color: #5E5EFF;
            white-space: nowrap;
            transition: all 0.3s;
        }
        
        .odds-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 8px;
        }
        
        .odds-label {
            font-size: 11px; /* 减小字体 */
            color: #718096;
            margin-bottom: 1px;
        }
        
        /* 水位样式 */
        .odds-water {
            font-weight: normal;
            color: #B85050;
            font-size: 12px; /* 减小字体 */
            transition: all 0.3s;
            padding: 1px 2px;
            border-radius: 2px;
        }
        
        /* 盘口样式 */
        .odds-handicap {
            font-weight: 500;
            color: #0000B5;
            font-size: 12px; /* 减小字体 */
            transition: all 0.3s;
            padding: 1px 2px;
            border-radius: 2px;
            text-decoration: none !important;
        }
        
        /* 盘口链接样式 */
        .odds-handicap-link {
            color: #0000B5;
            text-decoration: none !important;
            transition: color 0.2s;
        }
        
        .odds-handicap-link:hover {
            color: #FF0000;
            background-color: rgba(0, 0, 181, 0.1) !important;
        }
        
        .odds-separator {
            color: #cbd5e0;
            font-weight: normal;
        }
        
        /* 直播链接样式 */
        .live-link-cell {
            padding: 4px 5px !important; /* 减小内边距 */
        }
        
        .live-link-btn {
            display: inline-block;
            padding: 2px 6px; /* 减小内边距 */
            background: linear-gradient(135deg, var(--live-color) 0%, #e53e3e 100%);
            color: white;
            text-decoration: none;
            border-radius: 3px; /* 减小圆角 */
            font-size: 10px; /* 减小字体 */
            font-weight: 600;
            transition: all 0.3s;
            white-space: nowrap;
            cursor: pointer;
        }
        
        .live-link-btn:hover {
            background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(229, 62, 62, 0.3);
        }
        
        .live-link-btn:active {
            transform: translateY(0);
        }
        
        .no-live {
            color: #a0aec0;
            font-size: 10px; /* 减小字体 */
        }
        
        /* 底部信息栏 */
        .footer {
            background: var(--light-color);
            padding: 8px 30px; /* 减小内边距 */
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }
        
        .update-info {
            display: flex;
            gap: 30px;
            font-size: 13px; /* 减小字体 */
            color: #718096;
        }
        
        /* 加载动画 */
        .loading {
            display: none !important;
        }
        
        /* 空状态 */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #718096;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .empty-state i {
            font-size: 48px;
            margin-bottom: 15px;
            color: #cbd5e0;
        }
        
        /* 声音控制按钮 */
        .sound-control {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 2s;
            border: none;
            font-size: 20px;
        }
        
        .sound-control:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .sound-control.muted {
            background: #718096;
        }