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

/*足球场*/
.match-lineup-section{
    margin-top: 29px;
    position: relative;
}
.match-football-field{
    width: 100%;
}
.match-football-field img{
    width: 100%;
    height: auto;
}
/*球队信息*/
.match-lineup-info{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.57% 4.65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.match-lineup-info-teams{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.match-lineup-info-team{
    display: flex;
    align-items: center;
    gap: 10px;
}
.match-lineup-info-team-logo{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}
.match-lineup-info-team-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.match-lineup-info-team-name{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: PingFang SC, sans-serif;
}
/* 阵容详情 */
.match-lineup-content{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 7.461% 6.806%;
}
.match-lineup-players{
    position: relative;
    height: 100%;
    width: 100%;
}
.lineup-player{
    position: absolute;
    left: 20%;
    top: 20%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: translate(-50%, -30px);
}
.lineup-player-avatar{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #0081D0;
    background-color: #000;
}
.lineup-player-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}
.lineup-player-icons{
    position: absolute;
    top: -12px;
    left: 38px;
    display: flex;
    gap: 4px;
}
.lineup-player-icons .lineup-icon-item{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lineup-player-icons img{
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.lineup-player-number{
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 16px;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.lineup-player-rating{
    position: absolute;
    bottom: -3px;
    transform: translateX(-50%);
    min-width: 30px;
    height: 20px;
    padding: 0 10px;
    border-radius: 16px;
    background-color: #3A7BD5;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.lineup-player-name{
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    margin: 0;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lineup-list{
    margin-top: 16px;
    padding: 0 8px 24px;
}
.lineup-list-wrapper{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lineup-list-head-row{
    display: flex;
    gap: 12px;
    justify-content: center;
}
.lineup-list-body{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
}
.lineup-list-side{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
.lineup-list-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #AAAAAA;
    font-size: 14px;
    line-height: 20px;
    flex: 1;
}
.lineup-list-head-title{
    width: 48px;
    text-align: center;
}
.lineup-list-head-score{
    width: 40px;
    text-align: center;
}
.lineup-list-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px 12px 0;
    border-bottom: 1px solid rgba(170, 170, 170, 0.4);
    gap: 12px;
}
.lineup-list-player{
    display: flex;
    align-items: center;
    gap: 20px;
}
.lineup-list-number{
    width: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
}
.lineup-list-avatar{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #0081D0;
    overflow: hidden;
}
.lineup-list-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lineup-list-name{
    color: #000;
    font-size: 14px;
}
.lineup-list-name-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}
.lineup-list-name-container .out-player{
    color: #AAAAAA;
}
.lineup-list-actions{
    display: flex;
    align-items: center;
    gap: 12px;
}
.lineup-list-actions .lineup-icon-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}
.lineup-list-actions .lineup-icon-item img{
    height: 100%;
}
.lineup-list-change{
    width: 36px;
    height: 36px;
}
.lineup-list-score{
    min-width: 40px;
    height: 26px;
    padding: 0 10px;
    border-radius: 16px;
    color: #fff;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lineup-starters-home .lineup-list-score,
.lineup-substitution-home .lineup-list-score,
.lineup-substitute-home .lineup-list-score{
    background: #F6A609;
}
.badge-yellow{
    background-color: #F6A609;
}
.badge-blue{
    background-color: #3A7BD5;
}
.lineup-list-icons{
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lineup-list-icons .lineup-icon-item{
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.lineup-list-icons img{
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
}

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