zhengyiming
2025-02-24 c08d65c56e8b90bdef300ac45e5545c944f7eacc
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
.order-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
 
  .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;
    }
  }
}
 
.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;
  }
}