coupon.scss 3.17 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2 3 4
$bg_voucher: #fe6161;
$bg_free: #e0b97b;
$bg_expand: #8361fe;
zhanghaozhe committed
5
.coupon {
zhanghaozhe committed
6 7 8 9 10 11
  position: relative;
  margin-bottom: 15px;
  box-shadow: 0px 2px 12px -8px;
  border-radius: 3px;

  .coupon-info {
zhanghaozhe committed
12
    position: relative;
zhanghaozhe committed
13 14 15
    height: 95px;
    padding: 10px 15px;
    color: $white;
xuzhenghua committed
16
    border-radius: 3px;
zhanghaozhe committed
17

zhanghaozhe committed
18 19 20
    .type {
      font-size: $font_14;
    }
zhanghaozhe committed
21

zhanghaozhe committed
22 23 24 25
    .denomination {
      font-size: $font_26;
      line-height: $font_26;
      text-align: center;
zhanghaozhe committed
26

zhanghaozhe committed
27 28 29 30
      span {
        font-size: $font_12;
      }
    }
zhanghaozhe committed
31

zhanghaozhe committed
32 33 34 35 36 37 38 39 40
    .course-title {
      width: 68.37%;
      margin: 0 auto 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: $font_16;
      text-align: center;
    }
zhanghaozhe committed
41

zhanghaozhe committed
42 43 44 45 46
    .expire {
      text-align: center;
      font-size: $font_12;
      line-height: $font_16;
    }
zhanghaozhe committed
47

zhanghaozhe committed
48 49 50
    &.coupon-type1 {
      background: $bg_voucher;
    }
zhanghaozhe committed
51

zhanghaozhe committed
52 53 54
    &.coupon-type2 {
      background: $E0B97B;
    }
zhanghaozhe committed
55

zhanghaozhe committed
56 57 58
    &.coupon-type4 {
      background: $bg_expand;
    }
xuzhenghua committed
59

zhanghaozhe committed
60 61 62
    &.invalid {
      background: $color_999;
    }
xuzhenghua committed
63

zhanghaozhe committed
64 65 66 67 68 69 70 71 72 73
    & > .iconfont {
      $size: 22px;
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      width: $size;
      height: $size;
      display: none;
    }
zhanghaozhe committed
74

zhanghaozhe committed
75 76 77
    .check {
      display: block;
    }
zhanghaozhe committed
78

zhanghaozhe committed
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    ul {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;

      li {
        $dot_width: 10px;
        width: $dot_width;
        height: $dot_width;
        border-radius: 50%;
        background: $white;
        transform: translateY(50%);
      }
    }
zhanghaozhe committed
96

zhanghaozhe committed
97 98 99
    .progress-container {
      width: 299px;
      margin: 0 auto;
zhanghaozhe committed
100

zhanghaozhe committed
101 102 103 104 105 106
      .denomination {
        font-size: 15px;
        line-height: 1.3em;
        color: #f8e71c;
        span {
          transform: scale(0.9);
zhanghaozhe committed
107
        }
zhanghaozhe committed
108
      }
xuzhenghua committed
109

zhanghaozhe committed
110 111 112 113 114 115 116 117 118 119 120 121 122 123
      .progress-bar-container {
        position: relative;
        height: 7px;
        background: #5c2fff;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 6px;
        .progress-bar {
          position: absolute;
          left: 0;
          top: 0;
          height: 100%;
          background: #f8e71c;
          border-radius: 4px;
xuzhenghua committed
124
        }
zhanghaozhe committed
125
      }
xuzhenghua committed
126

zhanghaozhe committed
127
      .money {
zhanghaozhe committed
128 129
        display: flex;
        justify-content: space-between;
zhanghaozhe committed
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
      }
    }
  }

  .coupon-des {
    padding: 10px 15px;
    background: $white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 3px 3px;

    .limit {
      width: 63.81%;
      font-size: $font_12;
      vertical-align: middle;
      color: $color_666;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
zhanghaozhe committed
151

zhanghaozhe committed
152 153 154 155 156 157 158 159 160 161
    .use {
      display: inline-block;
      padding: 3px 8px;
      font-size: $font_12;
      color: $border_f31;
      border: 1px solid $border_f31;
      border-radius: 10px;
      background: transparent;
      -webkit-appearance: none;
    }
xuzhenghua committed
162

zhanghaozhe committed
163 164 165 166 167 168 169 170
    .stop-expanding {
      padding: 3px 8px;
      border: 1px solid #ff3131;
      border-radius: 10px;
      -webkit-appearance: none;
      background: transparent;
      color: #ff3131;
      font-size: 10px;
zhanghaozhe committed
171
    }
zhanghaozhe committed
172
  }
xuzhenghua committed
173
}