riku
2025-04-21 0746b7bbe6aa3d9f02e03654a2cd4fde2081c335
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
.wrap {
  --content-height: 170rpx;
  --icon-width: 24rpx;
  border-radius: var(--td-border-radius);
  background-color: var(--td-bg-color-block);
  padding: var(--td-spacer-1);
  margin-bottom: var(--td-spacer);
  /* box-shadow: var(--td-shadow-4); */
}
 
.stat-card__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--td-spacer-2);
  height: var(--content-height);
}
 
.stat-card__title-wrap {
  display: flex;
  justify-content: space-between;
}
 
.stat-card__title {
  display: flex;
  align-items: center;
  font-size: var(--td-font-size-m);
  /* line-height: 36rpx; */
}
 
.stat-card__title .stat-card__title-icon {
  margin-right: var(--td-spacer);
}
 
.stat-card__sub-title {
  font-size: var(--td-font-size-s);
  color: var(--td-text-color-placeholder);
  margin-left: var(--td-spacer-2);
}
 
.stat-card__tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--td-spacer-2);
  height: var(--content-height);
}
 
.stat-card__tag {
  flex: 1;
  text-align: center;
  min-height: 140rpx;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
 
.stat-card__tag .name {
  display: flex;
  align-items: center;
  line-height: var(--icon-width);
  justify-content: center;
  font-size: var(--td-font-size-base);
  color: var(--td-text-color-secondary);
  /* border: 1px black solid; */
}
 
.icon-text {
  margin-left: var(--icon-width);
}
 
.stat-card__tag .value {
  font-size: var(--td-font-size-m);
  color: var(--td-text-color-primary);
  font-weight: 600;
}
 
.stat-card__tag .diff {
  font-size: var(--td-font-size-s);
  color: var(--td-text-color-secondary);
}
 
.stat-card__tag .diff-2 {
  color: var(--td-bg-color-block);
}