index.scss 3.22 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
xuzhenghua committed
2 3
.myorders-box {
  width: 100%;
xuzhenghua committed
4
  height: 100%;
xuzhenghua committed
5 6 7 8 9 10 11 12 13 14 15 16
  background-color: $bg_f5f5f5;

  .order-body {
    .order-head {
      width: 100%;
      height: 40px;
      line-height: 40px;
      padding: 0 12px;
      display: flex;
      justify-content: space-between;
      background-color: $bg_fff;
      margin-top: 10px;
zhanghaozhe committed
17
      border-bottom: 1px solid #e7eaf1;
xuzhenghua committed
18 19 20 21 22 23 24 25 26 27

      .oid-num {
        font-size: 12px;
        color: $color_666;
      }

      .oid-status {
        font-size: 14px;
        color: $redprice;
      }
xuzhenghua committed
28 29

      .oid-success {
xuzhenghua committed
30 31 32 33 34 35 36 37 38 39
        font-size: 14px;
        color: $color_333;
      }
    }

    .order-wrap {
      width: 100%;
      padding: 10px 12px;
      background-color: $bg_fff;
      border-bottom: 1px solid $border_e7eaf1;
xuzhenghua committed
40
      position: relative;
zhanghaozhe committed
41
      .course-expire {
xuzhenghua committed
42
        display: block;
zhanghaozhe committed
43 44
        width: 92px;
        height: 20px;
xuzhenghua committed
45
        line-height: 20px;
zhanghaozhe committed
46 47
        background: #ff3a3a;
        border-radius: 0 10px 10px 0;
xuzhenghua committed
48
        position: absolute;
zhanghaozhe committed
49
        color: #fff;
xuzhenghua committed
50 51 52 53 54
        font-size: 12px;
        left: 12px;
        bottom: 20px;
        text-align: center;
      }
xuzhenghua committed
55
    }
xuzhenghua committed
56

xuzhenghua committed
57
    .order-info {
xuzhenghua committed
58
      .order-des {
xuzhenghua committed
59 60 61 62
        position: absolute;
        bottom: 0;
      }
    }
xuzhenghua committed
63 64 65 66 67 68 69 70 71 72

    .order-btm {
      width: 100%;
      height: 54px;
      background-color: $bg_fff;
      padding: 0 12px;
      display: flex;
      justify-content: space-between;

      .price-info {
xuzhenghua committed
73
        width: 150px;
xuzhenghua committed
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
        display: flex;
        flex-direction: column;
        align-self: center;

        .payable {
          font-size: 12px;
          color: $color_666;
        }

        .price {
          font-size: 14px;
          color: $redprice;
        }
      }

      .btm-right {
zhanghaozhe committed
90 91
        .cancel,
        a {
xuzhenghua committed
92 93 94 95 96 97 98 99 100 101 102 103
          display: inline-block;
          width: 90px;
          height: 30px;
          text-align: center;
          font-size: 14px;
          background-color: $bg_fff;
          border-radius: 4px;
          margin-top: 12px;
        }

        .cancel {
          color: $color_333;
zhanghaozhe committed
104
          border: 1px solid $bg_999;
xuzhenghua committed
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
          margin-right: 15px;
        }

        a {
          line-height: 30px;
          color: $redprice;
          border: 1px solid $redprice;
        }

        .group {
          img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-top: 10px;
            margin-left: 10px;
          }
        }
      }
    }
xuzhenghua committed
125 126 127 128 129 130 131 132 133

    .expand-pay-wk {
      height: 35px;
      background-color: $bg_fff;
      line-height: 35px;
      padding: 0 10px;
      font-size: 12px;
      display: flex;
      justify-content: space-between;
zhanghaozhe committed
134
      border-top: 1px solid #e7eaf1;
xuzhenghua committed
135 136 137 138 139 140 141 142
      span {
        color: #999;
      }

      .expand-pay-time {
        color: #09f;
      }
    }
xuzhenghua committed
143 144
  }

xuzhenghua committed
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
  .cart-tip {
    color: #555;
    margin-top: 140px;
    text-align: center;

    .iconfridge {
      font-size: 21px;
    }

    .cart-mess {
      font-size: 12px;
      color: $color_666;
    }

    a {
      display: inline-block;
      width: 130px;
      height: 30px;
      border: 1px solid $bg_active;
      border-radius: 15px;
      font-size: 16px;
      margin-top: 30px;
      color: $active;
      text-align: center;
      line-height: 28px;
    }
  }
zhanghaozhe committed
172
}