.scene-wrap {
    margin-bottom: 80px;
}
.scene-wrap .scene-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
}
.scene-container .h2 {
    font-size: 32px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #0B0E17;
    line-height: 45px;
    text-align: center;
    padding: 90px 0 40px;
}
.scene-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 32px;
    align-items: center;
    justify-items: center;
    text-align: center;
}
.scene-item {
    display: table-cell;
}
.scene-item-i {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scene-item-i .icon{
    width: 106px;
    height: 106px;
}
.scene-item-i .h3{
    font-size: 18px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #0B0E17;
    line-height: 25px;
    margin: 15px auto;
}
.scene-item-i .p{
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #6B6C72;
    line-height: 26px;
}
@media (max-width:768px) {
    .scene-container {
        padding-bottom: 34px;
    }
    .scene-container .h2 {
        padding: 48px 0 24px;
    }
    .scene-list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .scene-item {
        height: 100%;
    }
}