    /* box2 */
    .section2 {
        display: block;
        padding: 0px;
    }

    .Box2 {
        position: relative;
        overflow: hidden;
        z-index: 2;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .Box2 .indexTitle {
        position: absolute;
        z-index: 9;
        left: var(--container);
        top: 120px;
    }

    /* 右侧 */
    .list2Box {
        position: absolute;
        z-index: 3;
        right: 0;
        width: 36%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        grid-gap: 10px;
        transform: skewX(15deg);
        transform-origin: top;
    }

    .list2 {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        padding-left: 90px;
    }

    /* .list2:nth-child(2) {
        width: 85%;
    }

    .list2:nth-child(3) {
        width: 70%;
    }

    .list2:nth-child(4) {
        width: 55%;
    } */


    .list2::after {
        content: "";
        display: block;
        width: 200%;
        height: 100%;
        /* transform: skewX(25deg); */
        /* transform-origin: top; */
        background: #fff;
        position: absolute;
        z-index: -1;
        inset: 0;
    }

    .list2.cur::after {
        border-left: 10px solid var(--color);
    }

    .list2 h1 {
        font-weight: 700;
        font-size: 16px;
        color: #4B4B4B;
        position: relative;
        z-index: 2;
        top: 20px;
        transform: skewX(-15deg);
    }

    .list2 img {
        width: 215px;
        height: 100%;
        max-width: 80%;
        display: block;
        object-fit: cover;
        transform: skewX(-15deg);
        position: absolute;
        z-index: 1;
    }

    /* 左侧 */
    .Item2Box {
        position: relative;
        z-index: 2;
        width: 70%;
        overflow: hidden;
    }

    .Categories2 {
        width: 460px;
        margin: 120px 0;
        margin-left: 30vw;
        border-radius: 12px;
        background: #FFF;
        padding: 45px;
    }

    .Categories2 h1 {
        color: #4B4B4B;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .Categories2 p {
        color: #4B4B4B;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
    }

    .Item2Box .item2 {
        position: relative;
        width: 100%;
        height: 100%;
        display: none;
    }

    .Item2Box .item2.cur {
        display: block;
    }

    .Swiper2Box {
        position: relative;
        width: 100%;
    }

    .bj2 {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .Swiper2 {
        overflow: visible;
        position: absolute;
        z-index: 2;
        width: 100%;
        height: 100%;
    }

    .Slide2 img {
        width: 100%;
        opacity: 0;
        transition: 0s;
        position: absolute;
    }

    .Slide2.slideIndex1 img {
        transition: 0.5s;
        opacity: 1;
        bottom: 100%;
        left: var(--container);
    }

    .Slide2.slideIndex2 img {
        transition: 0.5s;
        opacity: 1;
        bottom: 53%;
        left: 82%;
        transform: translateX(-50%);
    }

    .Slide2.slideIndex3 img {
        transition: 0.5s;
        opacity: 1;
        bottom: 67%;
        left: 70%;
        transform: translateX(-50%);
    }

    .Slide2.slideIndex4 img {
        transition: 0.5s;
        opacity: 1;
        bottom: 31%;
        left: 30%;
        transform: translateX(-50%);
    }






    @media (max-width: 1440px) {
        .Box2 .indexTitle {
            top: 90px;
        }

    .list2 {
        padding-left: 60px;
    }

        .Categories2 {
            margin: 90px 0;
            margin-left: 25vw;
        }
    }

    @media (max-width: 1200px) {
        .Box2 {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            padding-top: 90px;
        }

        .Box2 .indexTitle {
            position: unset;
            text-align: center;
        }

        .list2Box {
            padding: 60px var(--container);
            position: unset;
            width: 100%;
            display: flex;
            flex-direction: row;
            grid-gap: 15px;
            transform: none;
        }

        .list2::after {
            display: none;
        }

        .list2 {
            width: 100% !important;
            padding: 0;
            padding-top: 15px;
            border-top: 4px solid #fff;
            align-items: center;
            background: #fff;
        }

        .list2.cur {
            border-top: 4px solid var(--color);
        }

        .list2 h1 {
            position: unset;
            text-align: center;
            transform: none;
        }

        .list2 img {
            position: unset;
            width: 80%;
            max-width: 100%;
            transform: none;
        }

        .Item2Box {
            width: 100%;
        }

        .Categories2 {
            margin: 0 var(--container);
            margin-bottom: 18vw;
            width: auto;
        }
    }

    @media (max-width: 720px) {
        .Box2 {
            padding-top: 60px;
        }

        .list2Box {
            padding-top: 30px;
            padding-bottom: 30px;
        }


    }

    @media (max-width: 500px) {
        .list2Box {
            flex-wrap: wrap;
        }

        .list2 {
            width: calc(50% - 7.5px) !important;
        }

        .list2 img {
            width: 90px;
        }

        .Categories2 {
            padding: 20px;
        }

        .Categories2 p {
            font-size: 14px;
        }
    }

    @media (max-width: 380px) {}