.match-box {
    background-color: #ffffff;
    padding: 30px 25px 0 25px;
    display: flex;
}


.match-left {
    width: 400px;
    height: 240px;
    overflow: hidden;
    border-radius: 5px;
}

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

.match-right {
    flex: 1;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.match-group {
    flex-direction: column;
    padding: unset !important;
}

.match-box h3 {
    padding: 20px;
}

.group-item {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    border: 1px dashed #dadada;
}

.app-button {
    width: 100px;
    height: 40px;
}

.price {
    width: 80px;
    display: inline-block;
}

.match-box .group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.qrcode img {
    width: 230px;
}

.qrcode p {
    font-weight: 600;
    margin-top: 10px;
    font-size: 20px;
    color: #535353;
}


@media (max-width:480px){
    .match-header {padding: 10px;}
    .match-right {padding: 0 0 0 10px;}
    .match-left {width: 130px;height: 100px;}
    .match-right h1 {font-size: 13px}
    .match-right span {font-size: 11px}
    .group-item {margin: 10px;padding: 10px;}

    .title-background {
        height: 60px;
        font-size: 20px;
    }

    .match-box h3 {
        padding: 10px;
        font-size: 18px;
    }

    .group-name {
        max-width: 220px;
    }

    .price {
        width: 50px;
    }

    .match-box .group {
        flex-direction: column-reverse;
    }

    .group-item-wrapper {
        width: 100%;
    }

    .match-box .group .qrcode img {
        width: 130px;
    }

    .match-box .group .qrcode p {
        font-size: 16px;
    }
}