index.scss 5.75 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
xuzhenghua committed
2
.order-wrapper {
zhanghaozhe committed
3 4 5 6 7 8 9 10 11 12 13 14
  width: 100%;
  height: 100vh;
  margin-bottom: 50px;
  background-color: $bg_f5f5f5;

  .order-tab {
    color: $black;
    background: $bg_f7f9fc;
  }

  .order-information {
    display: flex;
xuzhenghua committed
15
    width: 100%;
zhanghaozhe committed
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
    overflow: hidden;
    padding: 29px 15px;
    color: $color_555;
    background-color: $bg_fff;
    position: relative;
  }

  .order-information::before {
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    position: absolute;
    background: -webkit-repeating-linear-gradient(
      135deg,
      #ff6c6c 0,
      #ff6c6c 20%,
      transparent 0,
      transparent 25%,
      #1989fa 0,
      #1989fa 45%,
      transparent 0,
      transparent 50%
    );
    background: repeating-linear-gradient(
      -45deg,
      #ff6c6c 0,
      #ff6c6c 20%,
      transparent 0,
      transparent 25%,
      #1989fa 0,
      #1989fa 45%,
      transparent 0,
      transparent 50%
    );
    background-size: 80px;
  }

  .order-information2 {
    height: 80px;
    background-color: #fff;
    margin-top: 8px;
    position: relative;

    .user-icon {
      font-size: 28px;
      flex-basis: 40px;
xuzhenghua committed
64 65
    }

zhanghaozhe committed
66 67 68 69 70 71
    .order-cell {
      height: 50px;
      font-size: 13px;
      color: $color_333;
      line-height: 20px;
      flex: 1 1 auto;
xuzhenghua committed
72

zhanghaozhe committed
73 74 75
      .name {
        margin-bottom: 10px;
      }
xuzhenghua committed
76
    }
zhanghaozhe committed
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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
  }

  .order-information2::before {
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    position: absolute;
    background: -webkit-repeating-linear-gradient(
      135deg,
      #ff6c6c 0,
      #ff6c6c 20%,
      transparent 0,
      transparent 25%,
      #1989fa 0,
      #1989fa 45%,
      transparent 0,
      transparent 50%
    );
    background: repeating-linear-gradient(
      -45deg,
      #ff6c6c 0,
      #ff6c6c 20%,
      transparent 0,
      transparent 25%,
      #1989fa 0,
      #1989fa 45%,
      transparent 0,
      transparent 50%
    );
    background-size: 80px;
  }

  .order-addsize {
    font-size: 22px !important;
    margin-bottom: 0px;
    height: 22px;
    color: $active;
    line-height: 22px;
  }

  .order-next {
    line-height: 22px;
    margin-bottom: 0px;
  }

  .order-list {
    margin-top: 8px;
    background-color: #f5f5f5;
    .public-content {
      padding: 10px 15px;
xuzhenghua committed
129
    }
zhanghaozhe committed
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
  }

  .order-infotext {
    flex: 1;
    height: 22px;
    line-height: 22px;
    margin-left: 10px;
    font-size: $font_14;
    color: $color_555;
  }

  .order-info {
    color: $color_666;
    font-size: $font_14;
    min-width: 160px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    .order-title {
      color: $color_333;
      font-size: $font_16;
xuzhenghua committed
153 154
    }

zhanghaozhe committed
155 156 157 158
    .order-content {
      color: $color_666;
      font-size: $font_14;
      line-height: 18px;
xuzhenghua committed
159 160
    }

zhanghaozhe committed
161 162 163 164
    .order-newprice {
      color: $redprice;
      font-size: $font_16;
      margin-right: 8px;
xuzhenghua committed
165
    }
zhanghaozhe committed
166 167 168
    .price-des {
      color: #999;
      font-size: 11px;
xuzhenghua committed
169
    }
zhanghaozhe committed
170
  }
xuzhenghua committed
171

zhanghaozhe committed
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
  .order-bar {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 2;
    height: 50px;
    display: flex;
    font-size: 14px;
    align-items: center;
    background-color: $bg_fff;
  }

  .order-course {
    margin-left: 20px;

    .order-course-text {
      font-size: $font_16;
      color: $color_333;
xuzhenghua committed
190
    }
zhanghaozhe committed
191
  }
xuzhenghua committed
192

zhanghaozhe committed
193 194 195 196 197
  .order-bar-text {
    flex: 1;
    text-align: right;
    color: #323233;
    padding-right: 20px;
xuzhenghua committed
198

zhanghaozhe committed
199 200 201
    .order-amount {
      font-size: $font_14;
      color: $color_333;
xuzhenghua committed
202

zhanghaozhe committed
203 204 205
      .order-amount-price {
        color: $redprice;
      }
xuzhenghua committed
206 207
    }

zhanghaozhe committed
208 209 210
    .order-preprice {
      font-size: $font_12;
      color: $color_555;
xuzhenghua committed
211
    }
zhanghaozhe committed
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
  }

  .order-button {
    width: 110px;
    height: 50px;
    display: inline-block;
    padding: 0;
    background-color: $bg_ff9898;
    color: $white;
    line-height: 48px;
    font-size: 16px;
    border-radius: 0px;
    text-align: center;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    border: 1px solid transparent;
  }
  .has-info {
    background-color: #ff3131;
  }

  .v-list-item {
    margin-top: 8px;
    padding: 10px 15px 0 15px;

    .content {
      border-bottom: none;
    }
  }
xuzhenghua committed
242

zhanghaozhe committed
243 244 245 246 247
  .order-prefer {
    .am-list-body {
      &::after {
        display: none;
      }
xuzhenghua committed
248
    }
zhanghaozhe committed
249 250
    .am-list-content {
      font-size: 15px !important;
xuzhenghua committed
251
    }
zhanghaozhe committed
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
    .am-list-line {
      padding: 0 15px;
    }
  }

  .am-list-item .am-list-line .am-list-content {
    color: $color_333;
  }
  .order-list {
    .am-list-item {
      padding-left: 0 !important;
    }
  }

  .deposit-limit-time {
    background: #fff;
    padding: 11px 15px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
  }

  .order-balance {
    line-height: 44px;
    background: #fff;
    margin: 8px 0;

    .am-list-item {
      padding-left: 0 !important;
xuzhenghua committed
283 284
    }

zhanghaozhe committed
285 286
    .am-list-line {
      padding: 0 15px;
xuzhenghua committed
287 288
    }

zhanghaozhe committed
289 290 291 292 293 294 295 296
    .am-list-content {
      color: $color_333;
      font-size: $font_16;

      .iconiconfront-22 {
        font-size: 18px;
        margin-left: 15px;
      }
xuzhenghua committed
297
    }
zhanghaozhe committed
298 299 300 301 302 303 304 305 306 307 308 309 310

    .order-balanceprice {
      color: $color_666;
      font-size: $font_12;

      .order-money {
        color: #ff2121;
        font-size: $font_12 !important;
        font-weight: normal;
        font-style: inherit;
        vertical-align: middle;
        margin: 0;
      }
xuzhenghua committed
311 312
    }

zhanghaozhe committed
313 314 315
    .iconiconfront-22.question-mark {
      font-size: 24px;
      margin-left: 15px;
xuzhenghua committed
316 317
    }

zhanghaozhe committed
318 319 320 321 322
    .am-list-body {
      &::before,
      &::after {
        display: none;
      }
xuzhenghua committed
323 324
    }

zhanghaozhe committed
325 326 327 328
    .balance-used {
      font-size: 24px;
      color: #0099ff;
    }
xuzhenghua committed
329

zhanghaozhe committed
330 331 332 333 334 335 336 337
    .circle-icon {
      width: 20px;
      height: 20px;
      border: 1px solid #bfbfbf;
      border-radius: 50%;
      margin-right: 2px;
    }
  }
xuzhenghua committed
338
}