index.scss 2.39 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
  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;
      }
      .oid-success{
        font-size: 14px;
        color: $color_333;
      }
    }

    .order-wrap {
      width: 100%;
      padding: 10px 12px;
      background-color: $bg_fff;
      border-bottom: 1px solid $border_e7eaf1;
    }

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

      .price-info {
        width: 120px;
        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;
          border: 1px solid $bg_333;
          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
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
  .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
131
}