.swiper-wrap {
  position: absolute;
  .swiper-con {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;

    .entrance-con {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .swiper-container {
      position: relative;
      width: 100%;
      height: 100%;
      transform: translate3d(0, 0, 0);
      overflow: hidden;

      .swiper-slide {
        transform: translate3d(0, 0, 0);
        position: relative;
        overflow: hidden;
        &.slide-auto {
          width: auto;
        }

        img {
          object-fit: contain;
          width: 100%;
          height: 100%;
        }

        .swiper-hot {
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0;
          top: 0;
        }

        .video-player-con {
          position: relative;

          .video-item {
            object-fit: cover;
            position: relative;
            width: 100%;
            height: 100%;
          }

          .video-hot-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            img {
              object-fit: fill;
              width: 100%;
              height: 100%;
            }
          }
        }
      }

      // 轮播图左右指示器样式
      .swiper-button-prev {
        background-image: none;
        left: 20px;
        &:hover {
          .cms2iconfont {
            color: var(--hoverColor) !important;
          }
        }
        &::after {
          display: none;
        }

        .cms2iconfont {
          font-size: 28px;
        }
      }

      .swiper-button-next {
        background-image: none;
        right: 20px;

        &:hover {
          .cms2iconfont {
            color: var(--hoverColor) !important;
          }
        }

        &::after {
          display: none;
        }

        .cms2iconfont {
          font-size: 28px;
        }
      }

      .swiper-scrollbar-own {
        position: absolute;
        height: 3px;
        width: 70%;
        left: 50%;
        bottom: 10px;
        background-color: var(--color);
        transform: translateX(-50%);
        z-index: 10;
        .swiper-scrollbar-drag {
          position: absolute;
          background-color: var(--activeColor);
          transition: all 0.3s;
        }
      }

      .arrow {
        width: 40px;
        height: 40px;
        background-color: #edf5fe;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;

        .cms2iconfont {
          font-size: 20px;
        }
      }
    }

    .swiper-container-3 {
      .swiper-button-prev {
        top: 84%;
        left: 36px;
        .cms2iconfont {
          font-size: 24px;
        }
      }

      .swiper-button-next {
        top: 84%;
        right: 0;
        left: 98px;
        .cms2iconfont {
          font-size: 24px;
        }
      }
    }
  }

  .swiper-con-mobile {
    .swiper-container {
      .arrow {
        width: 32px;
        height: 32px;
        background-color: #edf5fe;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;

        .cms2iconfont {
          font-size: 12px !important;
        }
      }
    }
  }
}
