swiper.less 2.47 KB
@charset "UTF-8";

.swiper-box {
    position: relative;
    width: 750px;
    height: 380px;
    overflow: hidden;
    .swipe {
        margin: 0 auto;
        width: 690px;
        height: 100%;
        .swipe-item {
            width: 100%;
            height: 100%;
            .item {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                border-radius: 16px;
                overflow: hidden;
                .img-box {
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    .img {
                        display: block;
                        width: 100%;
                        height: 100%;
                        border-radius: 16px;
                        object-fit: cover;
                        overflow: hidden;
                    }
                }
            }
        }
        .custom-indicator {
          width: 74px;
          height: 38px;
          line-height:38px;
          background: #848484;
          border-radius: 20px;
          // opacity: 0.45;
          position: absolute;
          right: 30px;
          bottom: 30px;  
          font-size: 22px;
          color: #fff;
          text-align: center;
        }
        /deep/ .van-swipe__indicators {
            left: unset;
            right: 26px;
            bottom: 20px;
            .van-swipe__indicator {
                background-color: rgba(255, 255, 255, 0.5);
                width: 8px;
                height: 8px;
                margin: 0 4px;
                opacity: unset;
                border-radius: 50%;
                &.van-swipe__indicator--active {
                    background:rgba(252,21,65,1);
                    width: 16px;
                    border-radius: 4px;
                }
            }
        }
        .play-button-box {
          position: absolute;
          top: 0;
          left: 0;
          z-index: 1;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
          height: 100%;
          .play-button-img {
              display: block;
              width: 100px;
              height: 100px;
          }
      }
    }
}
// 积分商城样式
.points-mall-swiper{
  position: relative;
  width: 750px;
  height: 750px;
  overflow: hidden;
  background: #F9F9F9;
  .swipe{
    width: 100vw;
    margin: 0;
  }
}