    /* box2 */
    .section2 {
        position: relative;
        padding: 75px var(--container);
    }

    .nav2 {
        margin-top: 20px;
        margin-bottom: 60px;
        display: flex;
        justify-content: center;
        grid-gap: 30px;
    }

    .nav2 a {
        padding: 10px 25px;
        border: 1px solid var(--color);
        border-radius: 50px;
        font-size: 14px;
        color: var(--color);
    }

    .nav2 a.on,
    .nav2 a:hover {
        background: var(--color);
        color: #fff;
    }

    .Box2 {
        width: 100%;
    }

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

    .item2.on {
        display: block;
    }

    .Swiper2 {
        width: calc(100% - 90px);
        margin: 0 auto;
    }

    .Swiper2 a {
        width: 290px;
        padding: 10px;
        border: 1px solid #b7b7b7;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        grid-gap: 5px;
        position: relative;
    }

    .Swiper2 a:hover {
        border: 1px solid var(--color);
    }

    .Swiper2 a::after {
        content: "";
        display: block;
        width: 31px;
        height: 31px;
        background: url(/assets/images/pro_a_nohover.png) no-repeat center;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .Swiper2 a:hover::after {
        background: url(/assets/images/pro_a_hover.png) no-repeat center;
    }

    .Swiper2 a img {
        width: 100%;
    }

    .Swiper2 a h1 {
        font-size: 14px;
        font-weight: bold;
        color: #666666;
    }

    .Swiper2 a p {
        font-size: 14px;
        color: #888;
    }

    .prev2 {
        width: auto;
        left: 0;
    }

    .next2 {
        width: auto;
        right: 0;
    }

    .item2 .swiper-button-next:after,
    .item2 .swiper-button-prev:after {
        color: #4f4f4f;
    }

    @media (max-width: 1200px) {
        .Swiper2 a {
            width: 210px;
        }
    }


    @media (max-width: 720px) {
        .nav2 {
            margin-top: 30px;
            margin-bottom: 30px;
            grid-gap: 10px;
            flex-wrap: wrap;
        }

        .nav2 a {
            padding: 10px 20px;
        }



        .Swiper2 a {
            width: 150px;
        }

        .item2 .swiper-button-next:after,
        .item2 .swiper-button-prev:after {
            font-size: 18px;
        }

        .Swiper2 {
            width: calc(100% - 45px);
            margin: 0 auto;
        }
    }

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

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