    /* box2 */
    .section2 {
        display: block;
    }

    .Box2 {
        position: relative;
        width: 100%;
        z-index: -1;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .item2Box {
        position: relative;
        z-index: 1;
        width: calc(100% - 300px);
    }

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

    .item2.on {
        display: block;
    }

    .Swiper2 {
        width: 100%;
        overflow: visible;
    }

    .Slide2 {
        width: 35%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
    }

    .Slide2 h1 {
        position: relative;
        z-index: 9;
        color: #000;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        z-index: 2;
    }

    .Slide2 h2 {
        position: relative;
        z-index: 9;
        color: #8C8C8C;
        text-align: center;
        font-size: 16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        position: relative;
        z-index: 2;
    }

    .Slide2 img {
        width: 100%;
        position: relative;
        z-index: 9;
    }

    .Slide2.swiper-slide-active {
        z-index: 2;
        opacity: 1;
    }

    .Slide2.swiper-slide-next {
        z-index: 1;
        opacity: 1;
        width: 65%;
    }

    .Slide2.swiper-slide-next h2 {
        display: none;
    }

    .Slide2.swiper-slide-next h1 {
        color: var(--color);
    }

    .Slide2.swiper-slide-next::after {
        content: "";
        display: block;
        position: absolute;
        z-index: 1;
        width: 40vw;
        height: 40vw;
        border-radius: 50%;
        background: rgba(250, 250, 251, 1);
        border: 1px solid #F0F0F0;
    }

    .Slide2.swiper-slide-next::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 2;
        width: 25vw;
        height: 25vw;
        border-radius: 50%;
        background: #EEEEEE;
    }

    .prev2,
    .next2 {
        width: 68px;
        height: 68px;
        border-radius: 30px;
        background: #FFF;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
    }

    .next2.swiper-button-next:after,
    .prev2.swiper-button-prev:after {
        display: none;
    }

    .prev2 i,
    .next2 i {
        color: #666666;
    }

    .list2 {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        grid-gap: 75px;
    }

    .list2 a {
        color: #8C8C8C;
        font-size: 16px;
        width: 180px;
        position: relative;
        display: flex;
        align-items: center;
        grid-gap: 15px;
        padding: 10px 0;
    }

    .list2 a span {
        border: 3px solid var(--color);
        opacity: 0.3;
        display: block;
        border-radius: 50%;
        width: 18px;
        height: 18px;
    }

    .list2 a.on {
        font-size: 18px;
        font-weight: bold;
        color: var(--color);
    }

    .list2 a.on span {
        opacity: 1;
        background: url(/assets/images/icon1.png) no-repeat center;
        background-size: contain;
        border: 0px;
    }

    .list2 a:nth-child(1):after {
        display: none;
    }

    .list2 a::after {
        content: "";
        position: absolute;
        left: 9px;
        bottom: 100%;
        width: 1px;
        height: 75px;
        background: var(--color);
    }

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

    @media (max-width: 1440px) {
        .item2Box {
            width: calc(100% - 200px);
        }
    }

    @media (max-width: 1200px) {

        .prev2,
        .next2 {
            width: 40px;
            height: 40px;
        }

        .Slide2 h1 {
            font-size: 16px;
        }

        .Slide2 h2 {
            font-size: 14px;
        }
    }

    @media (max-width: 720px) {
        .Box2 {
            display: flex;
            flex-direction: column-reverse;
        }

        .item2Box {
            width: 100%;
        }

        .list2 {
            flex-direction: row;
            margin-top: 15px;
            grid-gap: 40px;
            width: 100%;
        }

        .list2 a {
            padding: 0;
            width: auto;
            font-size: 14px;
            grid-gap: 10px;
        }

        .list2 a.on {
            font-size: 16px;
        }

        .list2 a::after {
            width: 30px;
            height: 1px;
            left: -35px;
            bottom: auto;
            top: 50%;
            transform: translateY(-50%);
        }
    }

    @media (max-width: 460px) {
        .Slide2 {
            width: 100% !important;
        }
    }

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