.full-page-slide-wrapper {
  position: relative;
  width: 100%;
  height: 1.2rem;
  background: white;
  box-sizing: content-box;
  padding-top: 15px;
  margin-top: 0px;
  overflow: scroll;
  .swiper-container {
    width: 100%;
    height: 98%;
    .swiper-wrapper {
      display: flex;
      align-items: center;
    }
    .swiper-slide {
      width: calc(100% - 50px);
      height: 95%;
      border-radius: 8px;
      margin-top: 1%;
      box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    }
    .swiper-slide-prev {
      margin-top: 3%;
      height: 83% !important;
    }
    .swiper-slide-next {
      margin-top: 3%;
      height: 83% !important;
    }
  }
  div {
    height: 100%;
    width: 100%;
    border-radius: 8px;
  }
  img {
    /*background-color: #404040; */
    /*cover、contain、fill*/
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 8px;
  }
  .slide_dot {
    display: inline-block;
    margin: 5px;
    width: 3px;
    height: 3px;
    background-color: #f2f2f2;
    border-radius: 50%;
    opacity: 0.5;
  }
  .swiper-pagination {
    top: 85%;
  }
  .slide_dot_active {
    display: inline-block;
    width: 7px;
    height: 3px;
    border-radius: 5px;
    background: white;
    opacity: 1;
  }
}