index.scss 2.82 KB
Newer Older
xuzhenghua committed
1 2
.myorders-box {
  width: 100%;
xuzhenghua committed
3
  height: 100%;
xuzhenghua committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
  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
28 29

      .oid-success {
xuzhenghua committed
30 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

xuzhenghua committed
42
    .order-info {
xuzhenghua committed
43
      .order-des {
xuzhenghua committed
44 45 46 47
        position: absolute;
        bottom: 0;
      }
    }
xuzhenghua committed
48 49 50 51 52 53 54 55 56 57

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

      .price-info {
xuzhenghua committed
58
        width: 150px;
xuzhenghua committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
        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
89
          border: 1px solid $bg_999;
xuzhenghua committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
          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
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129

    .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
130 131
  }

xuzhenghua committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
  .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
159
}