.group-scene .sec-scene {
    background-color: #f3f6f9;
    padding: 4rem;
}

.group-scene .sec-scene .wrapper {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.group-scene .sec-scene .wrapper .list {
    display: flex;
    row-gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    gap:2rem;
    width: 100%;
    overflow: hidden;
}

.group-scene .sec-scene .wrapper .list img {
    border-radius: 16px;
    object-fit: cover
}

.group-scene .sec-scene .wrapper .list .img-sm {
    width: 100%;
}

.group-scene .sec-scene .wrapper .list .img-md {
    width: 100%;
}

.group-scene .sec-scene .wrapper .list .text-wrapper {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 24px
}

.group-scene .sec-scene .wrapper .list .text-wrapper .text {
    font-size: 24px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    font-family: var(--title-font-family);
    color: #fff
}

.group-scene .sec-scene .wrapper .list .img-box {
    position: relative;
}

.group-scene .sec-card {
    position: relative;
    height: 600px;
    background: #fff;
    overflow: hidden;
}

.group-scene .sec-card .kv {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: center
}

.group-scene .sec-card .kv picture {
    height: 100%;
    width: 100%;
}

.group-scene .sec-card .kv img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.group-scene .sec-card .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
}

.group-scene .sec-card .content .slogan {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.group-scene .sec-card .content .slogan img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.group-scene .sec-card .content .btn-list {
    display: flex
}

.group-scene .sec-card .content .btn-list .btn-buy {
    display: inline-block;
    position: relative;
    height: 52px;
    line-height: 52px;
    min-width: 167px;
    padding: 0 30px;
    background: linear-gradient(90deg, #0066ff 0%, #00c2ff 100%);
    border-radius: 100px;
    transition: background .3s;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .05em;
    text-align: center;
    color: #fff;
    cursor: pointer
}

.group-scene .sec-card .content .btn-list .btn-buy:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: hsla(0, 0%, 100%, .1);
    opacity: 0;
    transition: all .2s;
    border-radius: 100px
}

.group-scene .sec-card .content .btn-list .btn-buy:hover:before {
    opacity: 1
}

.group-scene .sec-card .content .btn-contact {
    background: linear-gradient(89.67deg, #3fddba .57%, #00a68a 99.43%);
    width: 152px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: .05em;
    text-align: center;
    color: #000;
    cursor: pointer;
    border-radius: 100px
}

@media (max-width:468px){
    .group-scene .sec-scene{
        padding: 2rem 1rem;
    }

    .group-scene .sec-scene .wrapper .list .text-wrapper .text{
        font-size: 1.8rem;
    }
}