integral-detail.scss 4.31 KB
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';

$contentWidth:690px;

.page {
  padding-bottom: $pageBottom;


  .bgc {}

  .bg {}

  .main {

    font-size: 28px;
    color: #333333;

    .top-space {
      height: 20px;
    }

    .content {

      position: relative;
      width: $contentWidth;
      margin: 0 auto;

      .header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        .info {
          font-size: 32px;
          color: #333333;

          .t1 {
            font-size: 64px;
            color: #3680EB;
          }
        }

        .sel-wrap {
          display: flex;
          flex-wrap: wrap;
          justify-content: flex-end;

        }

        .sel {
          font-size: 28px;
          color: #3680EB;
          padding: 4px 16px;
          @extend .fcc;
          background-color: rgba($color: #3680EB, $alpha: 0.05);
          border-radius: 4px;
          margin-bottom: 12px;

          .icon {
            width: 32px;
            height: 32px;
            margin: 8px;
          }

          .d1 {
            margin-left: 8px;
          }
        }

        .sel2 {
          display: inline-block;
          width: auto;
        }

        .show-all{
          opacity: .5;
        }
      }

      .func-wrap {
        display: flex;
        justify-content: space-between;
        // padding: 4px 0;
      }

      .func {
        @extend .fcc;
        height: 80px;
        // border-bottom: solid 1px #DDDDDD;
        font-size: 26px;
        color: #3680EB;

        .icon {
          width: 32px;
          height: 32px;
          margin: 0 8px;
        }

        .arrow {
          width: 12px;
          height: 8px;
          margin: 0 8px;
        }
      }

      // 时间
      .time {
        .sel {
          font-size: 28px;
          color: #3680EB;
          padding: 4px 16px;
          @extend .fcc;
          background-color: rgba($color: #3680EB, $alpha: 0.05);
          border-radius: 4px;
          margin-bottom: 12px;

          .icon {
            width: 32px;
            height: 32px;
            margin: 8px;
          }
        }
      }

      // 标签
      .tag {
        position: relative;
        display: flex;
        justify-content: space-between;
        margin: 18px auto 0;

        &-item {
          position: relative;
          width: 94px;
          height: 100px;

          .ebg {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            margin: 0 auto;
            width: 94px;
            height: 114px;
          }

          .desc {
            position: relative;
            color: #999999;
            width: 94px;
            height: 100px;
            @extend .fcc;
            flex-wrap: wrap;

            .t1 {
              font-size: 28px;
              width: 100%;
              text-align: center;
            }

            .t2 {
              font-size: 20px;
              margin-top: -32px;
              width: 100%;
              text-align: center;
            }
          }

          .act {
            color: #FFFFFF;
          }
        }
      }

      // 标题
      .tit {
        width: $contentWidth;
        height: 40px;
        font-size: 20px;
        color: #3680EB;
        background: rgba($color: #3680EB, $alpha: 0.05);
        // border-radius: 20px;
        margin: 26px auto 0;
        display: flex;

        .tt {
          height: 40px;
          line-height: 40px;
        }

        .t1 {
          margin-left: 30px;
        }

        .t2 {
          margin-left: 152px;
        }

        .t3 {
          margin-left: 112px;
        }

        .t4 {
          margin-left: 148px;

        }
      }

      // 积分
      .integral {

        // display: flex;
        &-item {
          display: flex;
          justify-content: space-between;
          border-bottom: solid 1px #dddddd;
          $itemHeight: 104px;
          height: $itemHeight;

          .tt {
            @extend .fcc;
          }

          .t1 {
            width: 200px;
          }

          .t2 {
            width: 152px;
          }

          .t3 {
            flex: 1;
          }

          .t4 {
            width: 100px;
            color: #7ED321;
          }

          .minus {
            color: #E62435;
          }
        }
      }
    }
  }
}