.perspective-slider {
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        to bottom,
        rgba(246, 246, 246, 1) 0%,
        rgba(245, 245, 245, 1) 25%,
        rgba(244, 244, 244, 1) 50%,
        rgba(242, 242, 242, 1) 75%,
        rgba(240, 240, 240, 1) 100%
    );
}

.perspective-slider > .slider-list-wrap {
    box-sizing: border-box;
    width: 1260px;
    margin: 0 auto;
    height: 580px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.perspective-slider > .slider-list-wrap > .bg-left {
    position: absolute;
    left: -152px;
    bottom: 0;
    background-image: url("./img/left.png");
    background-repeat: no-repeat;
    background-size: 212px 484px;
    width: 212px;
    height: 484px;
}
.perspective-slider > .slider-list-wrap > .bg-right {
    position: absolute;
    right: -152px;
    bottom: 0;
    background-image: url("./img/right.png");
    background-repeat: no-repeat;
    background-size: 212px 484px;
    width: 212px;
    height: 484px;
}
.perspective-slider > .slider-list-wrap > .slider-list-title {
    background-image: url("./img/title@x2.png");
    background-repeat: no-repeat;
    background-size: 640px 110px;
    width: 640px;
    height: 110px;
    position: absolute;
    left: 90px;
    top: 40px;
}
.perspective-slider > .slider-list-wrap > .slider-list-button {
    background-image: url("./img/button@x2.png");
    background-repeat: no-repeat;
    background-size: 205px 74px;
    width: 205px;
    height: 74px;
    position: absolute;
    right: 90px;
    top:35px;
}
.perspective-slider > .slider-list-wrap > .slider-list {
    font-size: 14px;
    width: 35%;
    text-align: center;
    transform: perspective(90px) rotateX(30deg);
}
.perspective-slider > .slider-list-wrap > .slider-list .item {
    display: flex;
    justify-content: space-between;
    height: 22px;
    color: #444;
}
.perspective-slider > .slider-list-wrap > .slider-list .item.group-title {
    color: #f00;
}
.perspective-slider > .slider-list-wrap > .gradient-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 350px;
    background: linear-gradient(
        to bottom,
        rgba(245, 245, 245, 1) 0%,
        rgba(245, 245, 245, 1) 60%,
        rgba(245, 245, 245, 0) 100%
    );
}
.perspective-slider > .slider-list-wrap > .gradient-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(
        to bottom,
        rgba(240, 240, 240, 0) 0%,
        rgba(240, 240, 240, 1) 90%,
        rgba(240, 240, 240, 1) 100%
    );
}

@media ( max-width: 768px ) {
    .perspective-slider {
        margin: 10px 10px 0 10px;
    }
    .perspective-slider > .slider-list-wrap {
        width: 100%;
        height: 170px;
    }
    .perspective-slider > .slider-list-wrap > .slider-list {
        font-size: 4px;
        width: 50%;
        transform: perspective(30px) rotateX(30deg);
    }
    .perspective-slider > .slider-list-wrap > .slider-list .item {
        height: 8px;
    }
    .perspective-slider > .slider-list-wrap > .bg-left {
        left: -32px;
        background-size: 106px 242px;
        width: 106px;
        height: 242px;
    }
    .perspective-slider > .slider-list-wrap > .bg-right {
        right: -32px;
        background-size: 106px 242px;
        width: 106px;
        height: 242px;
    }
    .perspective-slider > .slider-list-wrap > .slider-list-title {
        background-size: 240px 41px;
        width: 240px;
        height: 41px;
        left: 15px;
        top: 10px;
    }
    .perspective-slider > .slider-list-wrap > .slider-list-button {
        background-size: 70px 27px;
        width: 70px;
        height: 27px;
        right: 15px;
        top: 27px;
    }
    .perspective-slider > .slider-list-wrap > .gradient-top {
        height: 100px;
    }
    .perspective-slider > .slider-list-wrap > .gradient-bottom {
        height: 20px;
    }
}