pointsMall.less 3.96 KB
@charset "UTF-8";
// 占位
.pl {
  background-color: transparent;
  width: 100%;
    &.is-open-app {
        height: 122px;
    }
    &.is-cnlive {
        height: 93px;
    }
}
// 列表
.column-list-box{
  display: flex;
  justify-content: center;
}
.hide{
  display:none;
}
.call-app-box{
  position: fixed;
  z-index: 2;
}
.back-box{
  background-color: transparent;
  position: fixed;
  top: 0;
  left:0;
  z-index: 2;
}
.main_box{
  width: 100%;
  min-height: 100vh;
  background:#fff url("../../../static/img/pointsBack.png") no-repeat
  center top;
  background-size: 100%;
  overflow: hidden;
  // 头部
  .top_main{
    margin:40px 30px;
    padding: 30px;
    height: 394px;
    background: #FFFFFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    .top{
      display: flex;
      justify-content: space-between;
      .left{
        height: 40px;
        font-size: 28px;
        font-weight: 400;
        color: #45270D;
        line-height: 40px;
        span{
          margin-left: 8px;
          height: 40px;
          font-size: 28px;
          font-weight: 500;
          color: #F5A623;
          line-height: 40px;
        }
      }
      .right{
        height: 33px;
        font-size: 24px;
        font-weight: 400;
        color: #999999;
        line-height: 33px;
        display: flex;
        justify-content: center;
        align-items: center;
        .back_right_iocn{
          display: block;
          width: 20px;
          height:20px;
          margin-left: 10px;
        }
      }
    }
  // 商品类型
    .item_box{
      display: flex;
      justify-content: space-between;
      margin: 40px 80px 30px 80px;
      .item{
        img{
          display: block;
          width: 90px;
          height:90px;
        }
        .text{
          height: 33px;
          font-size: 24px;
          font-weight: 400;
          color: #666666;
          line-height: 33px;
          margin-top: 12px;
        }
      }
    }
    //赚取积分
    .earn_points_box{
      height: 90px;
      background: #FFF8E8;
      border-radius: 12px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 20px;
      .earn_icon{
        display: block;
        width: 36px;
        height:36px;
      }
      .desc{
        height: 90px;
        font-size: 26px;
        font-weight: 400;
        color: #746037;
        line-height: 90px;
      }
      .btn{
        font-size: 24px;
        padding: 0 20px;
        height: 50px;
        background: #DAB277;
        border-radius: 26px;
        color: #fff;
        text-align: center;
        display: flex;
        align-items: center;
        .earn_right_back{
          display: block;
          width: 9px;
          height: 18px;
          margin-left: 8px;
        }
      }
    } 
  }
  // 内容区域
  .tab_item_box{
    display: flex;
    align-items: center;
    // justify-content: space-between;
    margin:50px 30px 33px 30px;
    .item{
      height: 33px;
      font-size: 24px;
      font-weight: 400;
      color: #999999;
      line-height: 33px;
    }
    .active{
      height: 48px;
      font-size: 34px;
      font-weight: 600;
      color: #373737;
      line-height: 48px;
    }
    .line{
      width: 1px;
      height: 20px;
      background: #999999;
      margin: 0 16px;
    }
    .more{
      display: flex;
      flex: 1;
      justify-content: flex-end;
      align-items: center;
      font-size: 24px;
      color: #999999;
      img{
        display: block;
        width: 22px;
        height: 22px;
      }
    }
  }
  // 为你推荐
  .list-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    .discount-flag {
        position: absolute;
        top: 4px;
        left: 22px;
        z-index: 1;
        background: linear-gradient(90deg, #F9EE7A 0%, #FAD844 100%);
        padding: 1px 8px;
        color: #945A08;
        font-size: 20px;
        font-weight: 400;
        border-radius: 6px;
    }
  }
}