.home-swiper-slide-bannerimg {
    /* border-radius: 0px; */
    opacity: 0.6;
    /* animation: banner-opa 6s infinite; */
    /* animation-direction: reverse; */
    /* -webkit-animation:banner-opa 3s initial; Safari 和 Chrome */
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 0;
}

.info-box {
    /* opacity: 1; */
    /* pointer-events: auto; */
    margin-left: 10px;
    padding: 15px 25px 15px 30px;
    position: relative;
    z-index: 999;
    /* left: 15%; */
    /* bottom: 5%; */
    /* top: 5vh; */
    /* left: 80vh; */
    /* margin-top: -115px; */
    /* font-family: bigNoodleTitling; */
}

.info-box h1 {
    /* line-height: 46px; */
    /* font-size: 38px; */
    /* font-weight: 800; */
    /* padding-bottom: 20px; */
    animation: productPIn 1s;
    font-size: 3%;
}

.info-box p {
    animation: productPIn 1.5s;
    margin-bottom: -10px;
    font-size: 30px;
}

.info-box>img {
    position: absolute;
    z-index: 999;
    top: 5px;
    left: -50%;
    width: 90px;
}


/* style="position:absolute;margin-left: -110%;z-index: 999;width: 130px;color: white;" */


/* 竖线 动画 */

.info-box:after {
    color: white;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 5px solid #fff;
    transform-origin: 0 0;
    transform: scaleY(0);
    animation: lineIn 2s;
    transform: scaleY(1);
}

@keyframes productPIn {
    0%,
    80% {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes lineIn {
    0%,
    40% {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

@keyframes productHeadOneIn {
    0%,
    40% {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        transform: translateX(0);
    }
}

.sanbox {
    margin-top: 20px;
    width: 100%;
    height: 85%;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
}

.sanbox ul {
    width: 100%;
    height: 85%;
    display: flex;
    list-style-type: none;
}

.sanbox ul li {
    transition: all 1s;
}

.sanbox ul li p {
    left: 0;
    top: 0;
    z-index: 999;
    font-size: 20px;
}

.sanbox ul li img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@keyframes bannerText {
    /* 0% {
    opacity: 0;
  }
  40% {
    opacity: 0.75;
  }
  //起始位置 */
    0% {
        transform: translateX(-100px);
        -webkit-transform: translateX(0px);
    }
    50% {
        transform: translateX(-50);
        -webkit-transform: translateX(5%);
    }
    100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
}

@font-face {
    font-family: "OppoSans";
    src: url("../fonts/OPPOSans-M.ttf");
}

#bannerText {
    font-family: "OppoSans";
    font-size: 30px;
}

.bannerInfo1 {
    position: fixed;
    left: 5vh;
    bottom: 13vh;
    animation: bannerInfoAn1 1.5s;
    animation-delay: 0s;
    animation-fill-mode: both;
}

.bannerInfo2 {
    position: fixed;
    left: 5vh;
    bottom: 8vh;
    animation: bannerInfoAn2 1.5s;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.bannerInfo3 {
    position: fixed;
    right: 5vh;
    bottom: 13vh;
    animation: bannerInfoAn3 1.5s;
    animation-fill-mode: both;
    animation-delay: 0.6s;
}

.bannerInfo4 {
    position: fixed;
    right: 5vh;
    bottom: 8vh;
    animation: bannerInfoAn4 1.5s;
    animation-fill-mode: both;
    animation-delay: 0.9s;
}

@keyframes bannerInfoAn1 {
    0% {
        opacity: 0;
        transform: translateX(50vh);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bannerInfoAn2 {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateX(50vh);
    }
    to {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bannerInfoAn3 {
    0% {
        opacity: 0;
        transform: translateX(-50vh);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bannerInfoAn4 {
    0% {
        opacity: 0;
        transform: translateX(-50vh);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* -------MOBILE */

.row-mobile {
    display: none;
}