.review-card {
    background-color: #ffffff; /* 白色背景 */
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 阴影 */
    margin: 16px; /* 外边距 */
    padding: 16px; /* 内边距 */
    transition: transform 0.2s ease; /* 鼠标悬停时的过渡效果 */
    width: 200vw; /* 固定宽度 */
    /*max-width: 100%; !* 最大宽度 *!*/
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20vw;
}

.review-card:hover {
    transform: translateY(-4px); /* 鼠标悬停时向上移动 */
}

.match_review_element_hd_image img,
.match_review_element_thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px; /* 图片圆角 */
    margin-bottom: 8px; /* 图片底部外边距 */
}

.match_review_element_video video {
    width: 100%;
    height: auto;
    border-radius: 4px; /* 视频圆角 */
    margin-top: 8px; /* 视频顶部外边距 */
}

.match-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2vw;
    height: 15vw;

}

.match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
}

.match-card-header-team-a,
.match-card-header-team-b {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2vw;
}
.match-card-header-team-a{
    margin-left: 4vw;
}
.match-card-header-team-b{
    margin-right: 4vw;
}

.match-card-header-team-a img,
.match-card-header-team-b img {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* 头像圆角 */
    margin-bottom: 4px;
}

.match-card-header-team-a-name,
.match-card-header-team-b-name {
    font-size: 14px;
    color: #333333;
}

.mid-wrapper {
    margin: 16px 0;
}

.match-card-header-time {
    font-size: 16px;
    color: #666666;
}

.match-card-header-team-a img,
.match-card-header-team-b img {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* 头像圆角 */
    margin-bottom: 4px;
}

.match-card-header-team-a-name,
.match-card-header-team-b-name {
    font-size: 14px;
    color: #333333;
}
