    /* Box1 */
    .section1 {
        margin-top: 100px;
        padding: 0;
    }

    .bannerSwiper {
        position: relative;
        z-index: 2;
    }

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

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


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

    .Slide1 .text h1 {
        display: block;
        font-size: 24px;
        line-height: 1.5;
        color: #000;
    }

    .Slide1 .text h2 {
        font-size: 40px;
        line-height: 1.5;
        color: #000;
        font-weight: bold;
    }

    .Slide1 .text h3 {
        font-size: 14px;
        line-height: 1.5;
        color: #000;
    }

    .Slide1 .text a {
        width: 100px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #333;
        font-size: 14px;
        color: var(--color);
    }

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

        .Slide1 .video1,
        .Slide1 .bj {
            height: 400px;
        }

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

        .Slide1 .text h2 {
            font-size: 36px;
        }
    }

    @media (max-width: 720px) {

        .Slide1 .video1,
        .Slide1 .bj {
            height: 250px;
        }

        .Slide1 .text {
            width: 100%;
            padding: 0 var(--container);
            background: #ffffff80;
            grid-gap: 10px;
        }

        .Slide1 .text h2 {
            font-size: 24px;
            line-height: 1.25;
        }

        .Slide1.text h1,
        .Slide1 .text h3 {
            line-height: 1.25;
        }

        .AMore2 {
            width: 160px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #333;
            font-size: 14px;
            color: #fff;
            position: absolute;
            z-index: 2;
            left: 50%;
            transform: translateX(-50%);
            bottom: 30px;
        }
    }



    .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;
        }

    }

    .bottom-box {
        width: 100%;
    }

    .bottom-box .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .bottom-box .text1 {
        height: 70px;
        width: calc(100% - 350px);
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        font-size: 15px;
        line-height: 2;
        color: #ffffff;
        padding-right: 30px;
    }

    .bottom-box .text1::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0%;
        height: 100%;
        width: 1000%;
        background-color: #333;
        transform: skew(40deg);
    }

    .bottom-box .rt2 {
        width: 200px;
        display: flex;
        align-items: center;
    }

    .next1,
    .prev1 {
        width: 90px;
        height: 40px;
        font-size: 14px;
        color: #bbbbbb;
        font-weight: 400;
        text-transform: uppercase;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }

    .next1:hover,
    .prev1:hover {
        color: var(--color);
    }

    .prev1::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 40px;
        width: 60px;
        border: 2px solid #bbbbbb;
        border-right: 0;
        z-index: -1;
        transition: 0.5s;
    }

    .next1::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        height: 40px;
        width: 60px;
        border: 2px solid #bbbbbb;
        border-left: 0;
        z-index: -1;
        transition: 0.5s;
    }

    .prev1:hover::after {
        border: 2px solid var(--color);
        border-right: 0;
    }

    .next1:hover::after {
        border: 2px solid var(--color);
        border-left: 0;
    }

    @media (max-width: 1200px) {
        .bottom-box {
            display: none;
        }
    }