    /* Box1 */
    .section1 {
        position: relative;
    }

    .bannerBox {
        position: relative;
        z-index: 2;
        overflow: hidden;
        width: 100%;
    }

    .bannerSwiper {
        position: relative;
        overflow: hidden;
        width: 100%;
        background: #000000;
    }

    .bannerSlide {
        overflow: hidden;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .bannerSlide .text {
        position: absolute;
        z-index: 4;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding-right: 150px;
        padding-left: 20vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .bannerSlide .text h1 {
        font-weight: bold;
        font-size: 64px;
        line-height: 1;
        background: var(--jb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    .bannerSlide .text h2 {
        font-size: 22px;
        max-width: 600px;
        line-height: 1.5;
        color: #FFFFFF;
        margin: 30px 0 45px;
    }

    .bannerSlide .anniu {
        display: flex;
        align-items: center;
        grid-gap: 60px;
    }

    .bannerSlide .anniu .AMore1 img {
        width: 75px;
    }

    .bannerSlide .AMore {
        background: #0000;
        border: 1px solid #fff;
    }

    .bannerSlide .AMore img {
        filter: brightness(0) invert(1);
    }

    .bannerSlide video,
    .bannerSlide .bj {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 3;
        opacity: 0.5;
    }

    .section1 .pagination1 {
        width: 90px;
        height: 90px;
        position: absolute;
        z-index: 3;
        bottom: 80px;
        left: auto;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    .section1 .pagination1 span {
        width: 6px;
        height: 6px;
        background: #fff;
        opacity: 1;
        position: relative;
    }

    .section1 .pagination1 span::after {
        content: "";
        display: block;
        position: absolute;
        left: -6px;
        top: -6px;
        width: 18px;
        height: 18px;
        border: 1px solid #fff;
        border-radius: 50%;
        opacity: 0;
        transition: 0.5s;
    }

    .section1 .pagination1 span.swiper-pagination-bullet-active::after {
        opacity: 1;
    }


    @media (max-width: 1440px) {
        .bannerSlide .text h1 {
            font-size: 48px;
        }

        .bannerSlide .text h2 {
            font-size: 24px;
        }

        .bannerSlide .text {
            padding-left: 90px;
        }
    }

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

        .bannerSlide .text h1 {
            font-size: 32px;
        }

        .bannerSlide .text h2 {
            font-size: 20px;
            margin: 20px 0 30px;
        }

        .section1 .pagination1 {
            width: 60px;
            bottom: 45px;
        }

        .bannerSlide .anniu .AMore1 img {
            width: 60px;
        }
    }

    @media (max-width: 720px) {
        .bannerSlide {
            width: 100vw;
            height: calc(100vh - 60px);
            overflow: hidden;
        }

        .bannerSlide .text h1 {
            font-size: 24px;
        }

        .bannerSlide .text h2 {
            font-size: 18px;
            margin: 20px 0 30px;
        }

        .section1 .pagination1 {
            width: 50px;
        }

        .bannerSlide .text {
            padding-right: 75px;
            padding-left: 15px;
        }
    }

    @media (max-width: 460px) {

        .bannerSlide .text h1,
        .bannerSlide .text h2 {
            line-height: 1.5;
        }

        .bannerSlide .anniu {
            display: flex;
            align-items: center;
            grid-gap: 45px;
        }

        .bannerSlide .anniu .AMore1 img {
            width: 45px;
        }
    }

    .videoBanner {
        display: none;
    }

    .AMore2 {
        display: none;
    }

    @media (max-width: 720px) {
        .bannerBox .video1 {
            display: none;
        }

        .AMore2 {
            display: flex;
        }

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

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