    /* Box1 */
    .section1 {
        padding: 0 !important;
    }


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

    .Slide1 {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .Slide1 video,
    .Slide1 .bj {
        width: 100%;
        height: 100%;
        position: relative;
        object-fit: cover;
        z-index: 1;
        display: none;
    }


    .Slide1 .text {
        position: absolute;
        z-index: 5;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        grid-gap: 20px;
        padding: 0 var(--container);
    }

    .Slide1 .text h1 {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 60px;
        text-align: center;
        color: #FFFFFF;
    }

    .Slide1 .text .IndexMore {
        color: #fff;
    }

    .Swiper1 .pagination1 {
        bottom: 45px;
        height: auto;
        display: flex;
        justify-content: center;
        grid-gap: 10px;
        padding: 0 var(--container);
    }

    .Swiper1 .pagination1 span {
        max-width: 60px;
        width: 100%;
        height: 4px;
        border-radius: 0px;
        background: #CFCECF;
        opacity: 1;
        margin: 0 !important;
    }

    .Swiper1 .pagination1 span.swiper-pagination-bullet-active {
        background: var(--color);
    }




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

        .Slide1 .text h1 {
            font-size: 38px;
        }

    }

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

        .Slide1 video,
        .Slide1 .bj {
            min-height: 240px;
        }

        .Swiper1 .pagination1 {
            bottom: 15px;
        }
    }

    @media (max-width: 400px) {
        .Slide1 .text h1 {
            font-size: 24px;
        }
    }

    .videoBanner {
        display: none;
    }

    .Slide1 .AMore1 {
        display: none;
    }

    @media (max-width: 720px) {
        .Slide1 .AMore1 {
            font-size: 14px;
            color: #fff;
            border-radius: 45px;
            width: 140px;
            height: 45px;
            margin-top: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color);
        }

        .Slide1 .video1 {
            display: none;
        }

        .videoBanner.cur {
            padding: 5vw;
            display: block;
            width: 100vw;
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #00000099;
        }

        .video2 {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .gb1 {
            width: 30px;
            background: #fff;
            padding: 5px;
            margin-top: 30px;
        }
    }



    .Slide1 .bj {
        opacity: 1;
        animation: slideShow 6.4s linear infinite 0s;
    }

    @keyframes slideShow {
        0% {
            opacity: 1;
            transform: scale(1);
            -ms-transform: scale(1);
        }

        100% {
            opacity: 1;
            transform: scale(1.2);
            -ms-transformm: scale(1.2);
        }
    }