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

    .Box2 {
        margin-top: 30px;
        display: block;
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .Swiper2 {
        width: 100%;
    }

    .Slide2 {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .text2 {
        width: 25%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        grid-gap: 15px;
    }

    .text2 h1 {
        color: #000;
        font-family: MiSans2;
        font-size: 34px;
    }

    .desc2 {
        color: #000;
        font-size: 16px;
        line-height: 2;
    }

    .desc2 p {
        position: relative;
        padding-left: 20px;
    }

    .desc2 p::after {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        background: #000;
        border-radius: 50%;
        position: absolute;
        top: 14px;
        left: 0;
    }

    .img2 {
        width: calc(75% - 30px);
    }

    .item2Box {
        width: 100%;
    }

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

    .item2.on {
        display: flex;
    }

    .item2A .desc2 {
        width: 50%;
    }

    .item2A img {
        width: 50%;
    }

    .item2B img {
        width: 100%;
    }

    .item2 .desc2 {
        background: #fff;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .list2 {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        grid-gap: 15px;
    }

    .list2 p {
        color: #000;
        font-family: MiSans2;
        font-size: 16px;
        padding-bottom: 10px;
        position: relative;
        cursor: pointer;
    }

    .list2 p.on::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 4px;
        background: var(--color);
    }

    .next2,
    .prev2 {
        top: auto;
        bottom: -60px;
    }

    .next2 {
        right: auto;
        left: 45px;
    }

    .next2.swiper-button-next:after,
    .prev2.swiper-button-prev:after {
        font-size: 18px;
        color: #515151;
    }

    .next2:hover.swiper-button-next:after,
    .prev2:hover.swiper-button-prev:after {
        color: var(--color);
    }

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

    @media (max-width: 1440px) {
        .text2 {
            width: 30%;
        }

        .text2 h1 {
            color: #000;
            font-family: MiSans2;
            font-size: 28px;
        }

        .desc2 {
            line-height: 1.5;
        }

        .img2 {
            width: calc(70% - 30px);
        }
    }

    @media (max-width: 1200px) {
        .Box2 {
            margin-top: 15px;
        }

        .Slide2 {
            flex-wrap: wrap;
            grid-gap: 30px;
        }

        .text2 {
            width: 100%;
        }

        .img2 {
            width: 100%;
        }
    }

    @media (max-width: 600px) {
        .text2 h1 {
            font-size: 24px;
        }

        .list2 {
            grid-gap: 5px 15px;
        }

        .list2 p {
            font-size: 14px;
            padding-bottom: 5px;
        }

        .item2A {
            flex-wrap: wrap;
        }

        .item2A .desc2 {
            width: 100%;
        }

        .item2A img {
            width: 100%;
        }

        .item2 .desc2 {
            padding: 20px;
        }
    }

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

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