/* style-live.css - 优化直播页样式 */

body {
    background-color: #f5f6fa;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px;
}

.container_left {
    flex: 3;
}

.container_right {
    flex: 1.2;
}

.column {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    padding: 20px;
}

.column_hd {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.column_hd img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.column_hd h2 {
    font-size: 18px;
    font-weight: 600;
    color: #2f3640;
}

.fixed_score_box {
    padding: 10px;
    background: #f0f4ff;
    border-radius: 8px;
    margin-bottom: 20px;
}

.fixed_score_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image_container {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
}

.image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.score_name_left,
.score_name_right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.league_name {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.match_score {
    font-size: 26px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #e84118;
}

.match_status {
    text-align: center;
    font-size: 14px;
    color: #888;
}

.signal_box .tag-title {
    margin-bottom: 10px;
}

.signal_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.signal_list li {
    list-style: none;
}

.signal_list a {
    display: inline-block;
    padding: 6px 12px;
    background: #4cd137;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.signal_list a:hover {
    background: #44bd32;
}

.bisai_desc_info p {
    margin-bottom: 10px;
    font-size: 15px;
}

.bisai_desc_info span.title {
    color: #2f3640;
    font-weight: 500;
    margin-left: 5px;
}

.live_right_box {
    margin-bottom: 15px;
}

.live_right_item {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 10px;
    transition: box-shadow 0.3s ease;
}

.live_right_item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.live_right_item_hd {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: #999;
}

.live_right_item_bd_team {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live_right_item_bd_team img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 4px;
}

.live_right_item_bd_team span {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-top: 2px;
}

.live_right_item_bd_action a {
    background: #0984e3;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
}

.live_right_item_bd_action a:hover {
    background: #74b9ff;
}
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .container_left,
    .container_right {
        width: 100%;
        flex: 1;
    }

    .fixed_score_top {
        flex-direction: column;
        gap: 10px;
    }

    .score_name_left,
    .score_name_right {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .score_name_left h1,
    .score_name_right h1 {
        font-size: 16px;
    }

    .match_score {
        font-size: 20px;
    }

    .match_status {
        font-size: 14px;
    }

    .signal_list ul {
        flex-direction: column;
    }

    .signal_list a {
        width: 100%;
        text-align: center;
    }

    .live_right_item_bd_team {
        flex-direction: column;
        align-items: center;
    }

    .live_right_item_bd_team_left,
    .live_right_item_bd_team_right {
        margin-bottom: 8px;
    }

    .live_right_item_bd_team img {
        width: 36px;
        height: 36px;
    }

    .live_right_item_bd_action {
        margin-top: 8px;
        text-align: center;
    }

    .bisai_desc_info p {
        font-size: 14px;
    }

    .column_hd h2 {
        font-size: 16px;
    }

    .column {
        padding: 15px;
    }
}
