    /* Box1 */
    .section1 {
        position: relative;
        z-index: 1;
        padding: 0;
    }

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

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

    .bannerSlide {
        overflow: hidden;
        width: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
    }

    .bannerSlide .text {
        position: absolute;
        z-index: 4;
        padding: 35px;
        left: var(--container);
        background-image: linear-gradient(-90deg, #a71afacc 0%, #8014c0 100%);
        margin-bottom: 10vw;
    }

    .bannerSlide .text h1 {
        line-height: 1.5;
        color: #fff;
        font-size: 32px;
        font-weight: bold;
        text-align: justify;
        display: ruby;
    }

    .bannerSlide .text h2 {
        line-height: 1.5;
        font-weight: 500;
        font-size: 30px;
        padding: 10px 0px;
        text-align: center;
        margin-top: 10px;
        color: #333;
        background-color: #fff;
    }

    @-webkit-keyframes scaleDraw {
        0% {
            -webkit-transform: scale(1);
        }

        50% {
            -webkit-transform: scale(1.1);
        }

        100% {
            -webkit-transform: scale(1);
        }
    }

    .bannerSlide .bj {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 3;
        animation: scaleDraw 20s infinite linear;
    }


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

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

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

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

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