        .nokaishi{
            background-color: #c6cad0;
            cursor: not-allowed;
        }
        /* 直播展示样式 */
        .live-show {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .match-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .score-board {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .team {
            flex: 1;
            display: flex;
            align-items: center;
            max-width: 35%;
        }

        .team-logo-lg {
            width: 50px;
            height: 50px;
            margin: 0 15px;
        }

        .team-info {
            display: flex;
            flex-direction: column;
        }

        .score-display {
            text-align: center;
        }

        .goals {
            font-size: 2.5em;
            font-weight: bold;
            color: #e74c3c;
        }

        .match-status {
            background: #e74c3c;
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            margin-top: 10px;
            display: inline-block;
        }

        /* 时间轴样式 */
        .timeline {
            margin-top: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .event {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed #ddd;
        }

        .home-event { color: #2c3e50; }
        .away-event { color: #3498db; }

        /* 讨论区样式 */
        .discussion-box {
            margin-top: 30px;
            border-top: 2px solid #eee;
            padding-top: 20px;
        }

        .comments {
            max-height: 300px;
            overflow-y: auto;
            margin: 15px 0;
        }

        .comment {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            background: #f8f9fa;
            margin-bottom: 8px;
            border-radius: 4px;
        }

        .comment-form {
            display: flex;
            gap: 10px;
        }

        .comment-form input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .send-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 4px;
            cursor: pointer;
        }
        .match-list li {
    height: 40px;
    line-height: 35px;
    border-bottom: 1px solid #f1f1f1;
    overflow: hidden;
    text-overflow: ellipsis;
    text-indent: 5px;
    font-weight: 300;
    list-style: none;
}

        @media (max-width: 768px) {
            .score-board {
                flex-direction: column;
            }
            
            .team {
                max-width: 100%;
                margin: 10px 0;
            }
            
            .goals {
                font-size: 2em;
            }
        }