@media not screen and (max-width: 1280px) {
  #logo-5992-particle {
    img {
      width: 143px;
      height: auto;
    }
  }

  #g-container-above {
    margin-bottom: 16px;
  }
  /* 容器大小 */
  .owl-stage-outer {
    width: 100vw;
    height: 840px;
    overflow: hidden;
  }

  /* .wrap */
  .owl-stage {
    position: relative;
    left: 0px;
    width: calc(100vw * 6);
    animation: animateImg ease 20s infinite normal;
  }

  /* 图片大小 */
  /* .owl-item img {
    width: 100vw;
    float: left;
    height: 840px;
    display: block;
  } */
  .owl-item {
    position: relative;
    width: 100vw;
    float: left;
    height: 840px;
    display: block;
  }

  .owl-item img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
  }

  /* 动画 */
  @keyframes animateImg {
    0% {
      left: 0px;
    }
    20% {
      left: -100vw;
    }
    40% {
      left: -200vw;
    }
    60% {
      left: -300vw;
    }
    80% {
      left: -400vw;
    }
    100% {
      left: -500vw;
    }
  }
}
@media screen and (max-width: 1280px) {
  .owl-item {
    width: 100vw !important;
    height: 90vh !important;
  }
  .owl-item div {
    width: 100vw !important;
    height: 90vh !important;
  }
  .owl-item img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
  }
}
