.match-situation{
    width: 100%;
    padding: 0 24px;
}
/*头部信息*/
.match-header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    height: 48px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #E21C34;
    padding-top: 20px;
}
.match-header .header-title{
    min-width: 80px;
}
.match-header .header-arrow{
    height: 24px;
}
.match-header .header-arrow.right{
    transform: rotate(-180deg);
}

/*比赛统计信息*/
.match-stats-section{
    margin-top: 17px;
    padding-bottom: 33px;
}
.match-stats-section .match-stats{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.match-stats-section .match-stats .team-stats{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.match-stats-section .match-stats .team-stats .stat-item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.match-stats-section .match-stats .team-stats .stat-item .icon{
    width: 30px;
    height: 42px;
    border-radius: 8px;
}
.match-stats-section .match-stats .team-stats .stat-item .value{
    font-size: 20px;
    font-weight: 600;
}
/*红牌*/
.match-stats-section .match-stats .team-stats .stat-item.red-card .icon{
    background: #E6203D;
}
.match-stats-section .match-stats .team-stats .stat-item.red-card .value{
    color: #E6203D;
}
/*黄牌*/
.match-stats-section .match-stats .team-stats .stat-item.yellow-card .icon{
    background: #F6A609;
}
.match-stats-section .match-stats .team-stats .stat-item.yellow-card .value{
    color: #F6A609;
}
/*角球*/
.match-stats-section .match-stats .team-stats .stat-item.corner .icon{
    width: 34px;
    height: 36px;
}
.match-stats-section .match-stats .team-stats .stat-item.corner .value{
    color: #A0A4A8;
}
/*控球率*/
.possession{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    font-size: 20px;
    font-weight: 600;
}
.possession .label{
    margin: 0 140px;
    font-size: 20px;
    font-weight: 400;
    font-family: YEFONTAoYeHei, serif;
}
.possession .ring-chart{
    width: 113px;
    height: 113px;
    position: relative;
}
.possession .ring-chart .ring-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 41px;
    height: 41px;
}
.possession .ring-chart img{
    width: 100%;
    height: 100%;
}

/*统计数据*/
.statistics-section .statistics-grid{
    display: grid;
    grid-template-columns:1fr 1fr;
    column-gap: 2px;
    margin-top: 26px;
}
.statistics-section .statistics-grid .statistics-column{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.statistics-section .statistics-grid .statistics-column .stat-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
}
.statistics-section .statistics-grid .statistics-column .stat-row .stat-bar-svg{
    width: 216px;
    height: 16px;
}
.statistics-section .statistics-grid .statistics-column .stat-row .stat-label{
    width: 145px;
    display: flex;
    justify-content: center;
    flex: none;
}
.statistics-section .statistics-grid .statistics-column .stat-row .home-value,
.statistics-section .statistics-grid .statistics-column .stat-row .away-value{
    flex: auto;
    display: flex;
    justify-content: center;
}

/*概况*/
.match-overview{
    margin-top: 36px;
}
.overview-section{
    margin-top: 20px;
    padding-bottom: 32px;
    display: flex;
    justify-content: center;
}
.overview-section .overview-timeline{
    max-width: 1152px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.overview-section .overview-event{
    height: 60px;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.overview-section .overview-event .event-time{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.overview-section .overview-event .event-content,
.overview-section .overview-event .event-placeholder{
    width: 550px;
}
.overview-section .overview-event .event-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.overview-section .overview-event .event-player{
    display: flex;
    align-items: center;
    gap: 20px;
}
.overview-section .overview-event .event-player-name{
    font-size: 16px;
    white-space: nowrap;
}
.overview-section .overview-event .event-avatar{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.overview-section .overview-event .event-player-info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.overview-section .overview-event .event-player-sub{
    font-size: 12px;
    color: #666666;
    line-height: 16px;
}
.overview-section .overview-event .event-type-icon{
    width: 35px;
    height: 35px;
}
.overview-section .start-event{
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}
.overview-section .start-event .event-icon{
    width: 36px;
}

/*事件说明*/
.event-legend{
    padding: 16px 0 0;
    background: #F2F3F5;
}
.event-legend .legend-section{
    display: flex;
    justify-content: center;
    background: #FFFFFF;
    padding: 43px 20px 28px;
}
.event-legend .legend-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}
.event-legend .legend-item{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
}
.event-legend .legend-icon{
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* 小屏幕适配 - 1440px以下 */
@media screen and (max-width: 1440px) {
    .statistics-section .statistics-grid .statistics-column .stat-row .stat-bar-svg {
        width: 160px;
    }
    .statistics-section .statistics-grid .statistics-column .stat-row .stat-label {
        width: 110px;
    }
    .statistics-section .statistics-grid .statistics-column .stat-row {
        gap: 6px;
    }
}
