swiper.less 2.11 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 {
                    .img {
                        display: block;
                        width: 100%;
                        height: auto;
                        border-radius: 16px;
                        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;
                }
            }
        }
    }
}
// 积分商城样式
.points-mall-swiper{
  position: relative;
  width: 750px;
  height: 750px;
  overflow: hidden;
  background: #F9F9F9;
  .swipe{
    // width: 750px;
    .swipe-item {
      // width: 750px;
      .item{
        /deep/ .img-box {
          .img {
            width: 565px;
            height: 446px;
          }
        }
      }
    }
  }
}