    /* Section2 */
    .section2 {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }

    .search2 {
        width: 460px;
        height: 45px;
        position: relative;
        margin: 0 auto;
        margin-top: 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid #B5B5B5;
    }

    .search2 .searchInput1 {
        position: relative;
        width: 100%;
        height: 100%;
        outline: none;
        background: #fff0;
    }

    .search2 .subButn1 {
        position: absolute;
        right: 0;
        top: 0;
        width: 20px;
        height: 100%;
        background: url(/assets/images/icon2.png) no-repeat center #fff0;
        background-size: contain;
    }

    .Nav2 {
        margin: 0 auto;
        margin-top: 45px;
        margin-bottom: 60px;
        padding: 0 var(--container);
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
    }

    .Nav2 a {
        color: #000;
        font-size: 20px;
    }

    .Nav2 a.on {
        font-weight: bold;
        color: var(--color);
    }

    .Box2 {
        display: block;
        position: relative;
        width: 100%;
        z-index: 2;
        padding: 0 var(--container);
    }

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

    .item2.on {
        display: block;
    }

    .Swiper2 {
        width: 100%;
        padding: 10px;
    }

    .slide2 {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        left: 0;
        z-index: 2;
        border-radius: 50px 0;
        background: #FFF;
        transition: 0.5s;
    }

    .slide2:hover {
        top: -10px;
        left: -10px;
    }

    .slide2::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 50px 0;
        background: #E3E3E3;
        box-shadow: 0 0 0 #5f5f5f;
        transition: 0.5s;
    }

    .slide2:hover::after {
        transform: translate(10px, 10px);
    }

    .slide2::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -2;
        left: 10%;
        bottom: -5px;
        width: 80%;
        height: 10px;
        opacity: 0.6;
        background: #000;
        filter: blur(4px);
        transition: 0.5s;
    }

    .slide2:hover::before {
        transform: translate(10px, 10px);
    }

    .slide2 .img2 {
        border-radius: 50px 0 0 0;
        overflow: hidden;
        width: 100%;
        background: #fff;
    }

    .slide2 .img2 img {
        width: 100%;
    }

    .slide2 .text2 {
        padding: 30px 75px;
        border-top: 1px solid #D9D9D9;
        background: #fff;
        display: flex;
        flex-direction: column;
        grid-gap: 15px;
        border-radius: 0 0 50px 0;
        overflow: hidden;
    }

    .slide2:hover .text2 {
        background: url(/assets/images/image1.png) no-repeat center;
        background-size: cover;
    }

    .slide2 .text2 h1 {
        color: #000;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        transition: 0.5s;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .slide2:hover .text2 h1 {
        color: #fff;
    }

    .slide2 .text2 h2 {
        color: #565656;
        text-align: center;
        font-size: 16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        transition: 0.5s;
    }

    .slide2:hover .text2 h2 {
        color: #fff;
    }

    .item2 .swiper-button-prev.prev2 {
        left: 45px;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #fff;
        opacity: 1;
    }

    .item2 .swiper-button-next.next2 {
        right: 45px;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #fff;
        opacity: 1;
    }

    .item2 .swiper-button-next:after,
    .item2 .swiper-button-prev:after {
        font-size: 16px;
        color: #000;
    }


    @media (max-width: 1440px) {
        .Nav2 {
            margin: 30px auto;
        }

        .slide2 .text2 {
            padding: 15px 30px;
            grid-gap: 10px;
        }

        .item2 .swiper-button-prev.prev2 {
            left: 15px;
            width: 50px;
            height: 50px;
        }

        .item2 .swiper-button-next.next2 {
            right: 15px;
            width: 50px;
            height: 50px;
        }

        .search2 {
            margin-top: 20px;
            margin-bottom: 45px;
        }
    }

    @media (max-width: 1200px) {
        .item2 .swiper-button-prev.prev2 {
            left: 10px;
            width: 50px;
            height: 50px;
        }

        .item2 .swiper-button-next.next2 {
            right: 10px;
            width: 50px;
            height: 50px;
        }
    }

    @media (max-width: 720px) {
        .Nav2 {
            display: flex;
            justify-content: space-evenly;
        }

        .Nav2 a {
            font-size: 16px;
        }

        .item2 .swiper-button-prev.prev2 {
            left: var(--container);
            width: 40px;
            height: 40px;
            box-shadow: 0 0 10px #00000040;
        }

        .item2 .swiper-button-next.next2 {
            right: var(--container);
            width: 40px;
            height: 40px;
            box-shadow: 0 0 10px #00000040;
        }

        .search2 {
            width: 280px;
        }
    }

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

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