index.scss 3.21 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 17 18 19 20 21 22 23 24 25 26 27 28
  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;
      border-bottom: 1px solid #E7EAF1;

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

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

      .oid-success {
xuzhenghua committed
31 32 33 34 35 36 37 38 39 40
        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
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
      position: relative;
      .course-expire{
        display: block;
        width:92px;
        height:20px;
        line-height: 20px;
        background:#FF3A3A;
        border-radius:0 10px 10px 0;
        position: absolute;
        color: #FFF;
        font-size: 12px;
        left: 12px;
        bottom: 20px;
        text-align: center;
      }
xuzhenghua committed
56
    }
xuzhenghua committed
57

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

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

      .price-info {
xuzhenghua committed
74
        width: 150px;
xuzhenghua committed
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
        display: flex;
        flex-direction: column;
        align-self: center;

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

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

      }

      .btm-right {
        .cancel, a {
          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
105
          border: 1px solid $bg_999;
xuzhenghua committed
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
          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
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145

    .expand-pay-wk {
      height: 35px;
      background-color: $bg_fff;
      line-height: 35px;
      padding: 0 10px;
      font-size: 12px;
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #E7EAF1;
      span {
        color: #999;
      }

      .expand-pay-time {
        color: #09f;
      }
    }


xuzhenghua committed
146 147
  }

xuzhenghua committed
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
  .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;
    }
  }
xuzhenghua committed
175
}