yiming
2024-03-13 f9d4b09377c5471e1202be2fef2c89de27b6654d
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 {
  margin: 24rpx 0;
  padding: 24rpx 32rpx 24rpx;
  background-color: white;
  border-radius: 8rpx;
}
.order-card .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24rpx;
}
.order-card .header .store-name {
  font-size: 28rpx;
  font-weight: normal;
  color: #333333;
  display: flex;
  align-items: center;
  line-height: 40rpx;
}
.order-card .header .store-name__logo {
  margin-right: 16rpx;
  font-size: 40rpx;
  width: 48rpx;
  height: 48rpx;
}
.order-card .header .store-name__label {
  max-width: 500rpx;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
}
.order-card .header .order-status {
  font-size: 26rpx;
  line-height: 40rpx;
  color: #fa4126;
}
.order-card .more-mask {
  padding: 20rpx 0;
  text-align: center;
  background-color: white;
  color: #fa4126;
  font-size: 24rpx;
}