    @keyframes animation1 {
        0% {
            left: calc(0% + 10px);
        }

        90% {
            left: calc(100% - 70px);
        }

        100% {
            left: calc(100% - 70px);
        }
    }

    @keyframes animation2 {
        0% {
            color: #fff0;
        }

        90% {
            color: #fff0;
        }

        100% {
            color: #fff;
        }
    }

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

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

    .bannerSlide .text {
        position: absolute;
        z-index: 9;
        width: 1400px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .bannerSlide .text h1 {
        font-size: 60px;
        line-height: 1.5;
        color: #000747;
    }

    .bannerSlide .text .AMore1 {
        background: var(--jb);
        border-radius: 50px;
        width: 300px;
        height: 80px;
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 30px;
        color: #fff;
        font-size: 20px;
        transition: 0.5s;
        position: relative;
    }

    .bannerSlide .text .AMore1:hover {
        animation: animation2 0.5s linear;
    }

    .bannerSlide .text .AMore1 .bb {
        position: absolute;
        top: 10px;
        left: calc(100% - 70px);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: #fff;
        border-radius: 50px;
    }

    .bannerSlide .text .AMore1:hover .bb {
        animation: animation1 0.5s linear;
    }


    .bannerSlide .text .AMore1 .bb img {
        width: 28px;
    }

    .bannerSlide .text .RtImg {
        position: absolute;
        right: 0;
    }

    .bannerSlide .bj {
        width: 100%;
        object-fit: cover;
        position: relative;
        z-index: 3;
    }


    @media (max-width: 1540px) {

        .bannerSlide .text {
            width: 1000px;
        }

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

        .bannerSlide .text .RtImg {
            width: 400px;
        }
    }

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

        .bannerSlide .text {
            width: 100%;
            padding: 0 var(--container);
        }

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

        .bannerSlide .text .RtImg {
            width: 35vw;
            right: var(--container);
        }
    }

    @media (max-width: 720px) {
        .bannerSlide .bj {
            height: 500px;
        }


        .bannerSlide .text {
            height: 100%;
            padding-top: 60px;
            display: flex;
            justify-content: flex-start;
        }

        .bannerSlide .text .RtImg {
            width: 50vw;

            bottom: 30px;
        }

        .bannerSlide .text .AMore1 {
            font-size: 16px;
            width: 215px;
            height: 50px;
            padding-left: 20px;
        }

        .bannerSlide .text .AMore1 .bb {
            width: 30px;
            height: 30px;
            left: calc(100% - 40px);
        }

        .bannerSlide .text .AMore1 .bb img {
            width: 15px;
        }
    }

    @media (max-width:480px) {
        .bannerSlide .text {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

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

        .bannerSlide .text .RtImg {
            width: 260px;
            bottom: 30px;
            left: auto;
            right: auto;
        }
    }