wupengfei
1 天以前 0224735fb1cba46f6549adfa1f60ffd6b5041b72
1
2
3
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@use './common.scss' as *;
 
.order-card {
  border-radius: 24px;
  padding: 40px 28px;
  margin-bottom: 32px;
  background-color: #fff;
 
  &:last-child {
    margin-bottom: 0;
  }
 
  .order-card-title {
    display: flex;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 32px;
    margin-bottom: 32px;
 
    .order-card-title-left {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: #333333;
      flex: 1;
      min-width: 0;
 
      .order-card-title-text-wrapper {
        height: 68px;
        display: flex;
      }
 
      .order-card-title-text {
        font-size: 30px;
        line-height: 42px;
        font-weight: 400;
        flex: 1;
        min-width: 0;
        display: flex;
 
        &::before {
          content: '';
          display: inline-block;
          width: 8px;
          height: 24px;
          background-color: #fa4640;
          border-radius: 24px;
          margin-right: 12px;
          line-height: 42px;
          margin-top: 9px;
        }
      }
    }
 
    .order-card-title-ordernum {
      font-size: 28px;
      line-height: 40px;
      color: #575b6c;
      @include ellipsis;
    }
 
    .order-card-title-status {
      width: 90px;
      height: 90px;
 
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
 
  .order-card-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 32px;
    margin-top: 26px;
    border-top: solid 1px #f7f7f7;
  }
 
  .order-card-action {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 24px;
    color: boleGetCssVar('color', 'primary');
    font-size: 26px;
    line-height: 36px;
    border: 1px solid boleGetCssVar('color', 'primary');
    border-radius: 8px;
  }
}
 
.order-card-item {
  display: flex;
  font-size: 28px;
  line-height: 48px;
  margin-bottom: 8px;
 
  .order-card-item-label {
    color: #333333;
  }
 
  .order-card-item-value {
    color: #666666;
    flex: 1;
    min-width: 0;
  }
 
  &.danger {
    .order-card-item-value {
      color: boleGetCssVar('color', 'danger');
    }
  }
 
  &:last-child {
    margin-bottom: 0;
  }
}