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

  .order-tab {
.  
baiguangyao committed
9 10
    color: $black;
    background: $bg_f7f9fc;
xuzhenghua committed
11 12 13
  }

  .order-information {
.  
baiguangyao committed
14 15 16
    display: flex;
    width: 100%;
    overflow: hidden;
xuzhenghua committed
17
    padding: 29px 15px;
.  
baiguangyao committed
18 19 20
    color: $color_555;
    background-color: $bg_fff;
    position: relative;
xuzhenghua committed
21
  }
xuzhenghua committed
22

xuzhenghua committed
23
  .order-information::before {
zhanghaozhe committed
24
    content: "";
.  
baiguangyao committed
25 26 27 28 29
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    position: absolute;
zhanghaozhe committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    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%
    );
.  
baiguangyao committed
52
    background-size: 80px;
xuzhenghua committed
53 54
  }

wangshuo committed
55 56
  .order-information2 {
    height: 80px;
zhanghaozhe committed
57
    background-color: #fff;
wangshuo committed
58 59
    margin-top: 8px;
    position: relative;
xuzhenghua committed
60

wangshuo committed
61 62
    .user-icon {
      font-size: 28px;
63
      flex-basis: 40px;
baiguangyao committed
64
    }
wangshuo committed
65 66 67 68 69 70

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

wangshuo committed
73 74 75 76 77 78 79
      .name {
        margin-bottom: 10px;
      }
    }
  }

  .order-information2::before {
zhanghaozhe committed
80
    content: "";
wangshuo committed
81 82 83 84 85
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    position: absolute;
zhanghaozhe committed
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
    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%
    );
wangshuo committed
108
    background-size: 80px;
xuzhenghua committed
109 110 111 112
  }

  .order-addsize {
    font-size: 22px !important;
.  
baiguangyao committed
113
    margin-bottom: 0px;
xuzhenghua committed
114
    height: 22px;
.  
baiguangyao committed
115
    color: $active;
xuzhenghua committed
116 117 118 119 120 121 122 123 124
    line-height: 22px;
  }

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

  .order-list {
.  
baiguangyao committed
125
    margin-top: 8px;
zhanghaozhe committed
126
    background-color: #f5f5f5;
xuzhenghua committed
127 128 129 130 131 132
    .public-content {
      padding: 10px 15px;
    }
  }

  .order-infotext {
.  
baiguangyao committed
133
    flex: 1;
xuzhenghua committed
134 135
    height: 22px;
    line-height: 22px;
.  
baiguangyao committed
136
    margin-left: 10px;
wangshuo committed
137
    font-size: $font_14;
.  
baiguangyao committed
138
    color: $color_555;
xuzhenghua committed
139 140 141
  }

  .order-info {
.  
baiguangyao committed
142 143
    color: $color_666;
    font-size: $font_14;
wangshuo committed
144 145 146 147 148
    min-width: 160px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
xuzhenghua committed
149 150

    .order-title {
xuzhenghua committed
151
      color: $color_525B65;
xuzhenghua committed
152
      font-size: $font_16;
.  
baiguangyao committed
153
    }
xuzhenghua committed
154 155

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

xuzhenghua committed
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
    .order-newprice {
      color: $redprice;
      font-size: $font_16;
      margin-right: 15px;
    }

    .order-price {
      color: $color_999;
      font-size: $font_12;
      text-decoration: line-through;
    }
  }

  .order-bar {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 2;
baiguangyao committed
179 180 181 182 183
    height: 50px;
    display: flex;
    font-size: 14px;
    align-items: center;
    background-color: $bg_fff;
xuzhenghua committed
184 185 186
  }

  .order-course {
baiguangyao committed
187
    margin-left: 20px;
xuzhenghua committed
188 189 190 191

    .order-course-text {
      font-size: $font_16;
      color: $color_333;
baiguangyao committed
192
    }
xuzhenghua committed
193 194 195
  }

  .order-bar-text {
baiguangyao committed
196 197 198
    flex: 1;
    text-align: right;
    color: #323233;
xuzhenghua committed
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
    padding-right: 20px;

    .order-amount {
      font-size: $font_14;
      color: $color_333;

      .order-amount-price {
        color: $redprice;
      }
    }

    .order-preprice {
      font-size: $font_12;
      color: $color_555;
    }
  }

  .order-button {
baiguangyao committed
217 218 219 220
    width: 110px;
    height: 50px;
    display: inline-block;
    padding: 0;
xuzhenghua committed
221
    background-color: $bg_ff9898;
baiguangyao committed
222 223 224 225 226 227 228 229 230
    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;
xuzhenghua committed
231
  }
wangshuo committed
232
  .has-info {
zhanghaozhe committed
233
    background-color: #ff3131;
wangshuo committed
234
  }
baiguangyao committed
235

xuzhenghua committed
236
  .v-list-item {
.  
baiguangyao committed
237 238
    margin-top: 8px;
    padding: 10px 15px 0 15px;
xuzhenghua committed
239 240 241

    .content {
      border-bottom: none;
.  
baiguangyao committed
242
    }
xuzhenghua committed
243 244 245
  }

  .order-prefer {
zhanghaozhe committed
246 247
    .am-list-body {
      &::after {
xuzhenghua committed
248 249 250
        display: none;
      }
    }
wangshuo committed
251 252 253
    .am-list-content {
      font-size: 15px !important;
    }
xuzhenghua committed
254 255
    .am-list-line {
      padding: 0 15px;
.  
baiguangyao committed
256
    }
xuzhenghua committed
257 258
  }

zhanghaozhe committed
259
  .order-balance {
260 261 262
    .order-balanceprice {
      color: $color_666;
      font-size: $font_12;
xuzhenghua committed
263

264 265 266 267 268 269 270 271 272
      .order-money {
        color: #ff2121;
        font-size: $font_12 !important;
        font-weight: normal;
        font-style: inherit;
        vertical-align: middle;
        margin: 0;
      }
    }
zhanghaozhe committed
273
    .am-list-content .iconiconfront-22.question-mark {
274 275
      font-size: 24px;
    }
zhanghaozhe committed
276 277 278
    .am-list-body {
      &::before,
      &::after {
xuzhenghua committed
279 280 281
        display: none;
      }
    }
282 283
    .balance-used {
      font-size: 24px;
zhanghaozhe committed
284
      color: #0099ff;
285 286 287 288
    }
    .circle-icon {
      width: 20px;
      height: 20px;
zhanghaozhe committed
289
      border: 1px solid #bfbfbf;
290 291
      border-radius: 50%;
      margin-right: 2px;
.  
baiguangyao committed
292
    }
xuzhenghua committed
293
  }
.  
baiguangyao committed
294

xuzhenghua committed
295
  .am-list-item .am-list-line .am-list-content {
.  
baiguangyao committed
296
    color: $color_333;
xuzhenghua committed
297 298 299 300 301 302 303 304 305 306
  }
  .order-list {
    .am-list-item {
      padding-left: 0 !important;
    }
  }

  .order-balance {
    height: 44px;
    line-height: 44px;
xuzhenghua committed
307 308
    margin: 8px 0 8px 0;
    display: flow-root;
xuzhenghua committed
309 310 311 312 313 314 315 316 317 318 319 320 321
    .am-list-item {
      padding-left: 0 !important;
    }
    .am-list-line {
      padding: 0 15px;
    }
    .am-list-content {
      color: $color_333;
      font-size: $font_16;
      .iconiconfront-22 {
        font-size: 18px;
        margin-left: 15px;
      }
.  
baiguangyao committed
322
    }
xuzhenghua committed
323
  }
xuzhenghua committed
324 325 326 327 328

  .full__rules {
    width: 100%;
    height: 50px;
    margin-top: 16px;
zhanghaozhe committed
329
    background: #fff;
xuzhenghua committed
330 331 332 333 334 335 336 337 338
    font-size: 14px;
    background: #fff;
    color: #999;
    .money__off {
      height: 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
zhanghaozhe committed
339 340
    .money {
      color: #ff3131;
xuzhenghua committed
341 342
    }
  }
zhanghaozhe committed
343
}