    /* Box1 */
    .section1 {
        position: relative;
        padding: 0 !important;
        height: 100vh;
    }

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

    .bannerSwiper {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 2;
    }

    .bannerBox .bj {
        width: 100%;
        height: 100%;
        position: relative;
        object-fit: cover;
        z-index: 1;
        transform: scale(1.2);
    }


    .bannerBox .text {
        position: absolute;
        z-index: 5;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        padding: 0 var(--w1600);
    }

    .bannerBox .text h1 {
        width: 100%;
        text-align: center;
        font-weight: 700;
        font-size: 56px;
        line-height: 2;
        letter-spacing: 10px;
        color: #FFFFFF;
    }

    .bannerBox .text p {
        width: 100%;
        text-align: center;
        font-size: 32px;
        line-height: 2;
        color: #FFFFFF;
    }




    @media (max-width: 1200px) {
        .bannerBox .text h1 {
            font-size: 38px;
            letter-spacing: 0px;
        }

        .bannerBox .text p {
            font-size: 24px;
            letter-spacing: 0px;
        }
    }

    @media (max-width: 720px) {
        .bannerBox .text h1 {
            font-size: 28px;
        }

        .bannerBox .text p {
            font-size: 16px;
        }
    }

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

    .section1 .More0 {
        position: absolute;
        z-index: 2;
        left: 50%;
        transform: translateX(-50%);
        bottom: 25px;
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: var(--color2);
        border: 2px solid var(--color2);
        display: flex;
        align-items: center;
        justify-content: center;
        animation: move 1.5s infinite;
        transition: 0.5s;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .section1 .More0.no {
        opacity: 0;
    }

    .section1 .More0:hover {
        background-color: rgba(79, 182, 0, 0.2);
    }

    .section1 .More0 i {
        color: #fff;
        transition: 0.5s;
    }

    .section1 .More0:hover i {
        color: #000;
    }

    @keyframes move {
        0% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(10px);
        }

        100% {
            transform: translateX(-50%) translateY(0);
        }
    }