zhengyiming
2025-03-20 192be5ad46233a4cd25880ba029997d47ad09bf6
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
@use './common.scss' as *;
 
.order-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
 
  &:last-child {
    margin-bottom: 0;
  }
 
  .order-card-title {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 20px;
    margin-bottom: 20px;
 
    .order-card-title-top {
      display: flex;
      justify-content: space-between;
      color: #333333;
      font-size: 28px;
      line-height: 40px;
      font-weight: 600;
      margin-bottom: 12px;
    }
 
    .order-card-title-ordernum {
      font-size: 24px;
      color: #999999;
      flex: 1;
      min-width: 0;
      @include ellipsis;
    }
 
    .order-card-title-ordernum-wrapper {
      display: flex;
      align-items: center;
 
      .order-card-action {
        font-size: 24px;
        color: boleGetCssVar('color', 'primary');
      }
    }
  }
}
 
.order-card-item {
  display: flex;
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 15px;
 
  .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');
    }
  }
}