riku
2024-11-07 5a678cce1b157411f20fbddfaed49c7bc8d9fba7
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
.page-header {
  position: fixed;
  background-color: var(--td-bg-color);
  top: 0;
  z-index: 2;
}
 
.flex-h{
  display: flex;
  justify-content: space-between;
  padding: 8px;
}
 
.title{
  font-size: 14px;
  font-weight: 550;
  margin: 4px 0;
}
 
.arrow-down {
  transform: rotateZ(90deg);
  margin-left: 6px;
}
 
.tag_unselected,
.tag_selected {
  font-size: 12px;
  background-color: #b4b4b45b;
  /* border: 1px solid rgb(175, 173, 173); */
  border-radius: 2px;
  color: var(--td-text-color-secondary);
  padding: 6rpx 18rpx;
  margin-bottom: 8px;
  width: 10%;
  text-align: center;
}
 
.tag_has_data {
  color: var(--td-text-color-primary);
  background-color: white;
}
 
.tag_selected {
  background-color: var(--td-primary-color);
  color: white;
}
 
.horizal-list {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  white-space: nowrap;
  justify-content: space-around;
}
 
.ledger-type{
  font-size: 14px;
  font-weight: 600;
  padding: 0 8px;
}
 
.ledger-type_2{
  font-size: 14px;
  padding: 0 8px;
  color: var(--td-text-color-secondary);
}
 
.ledger-group{
  display: flex;
  flex-wrap: wrap;
}
 
.ledger-group_item{
  width: 46vw;
  text-align: center;
  font-size: 14px;
}
 
.ledger-group_item>image{
  width: 40vw;
  height: 40vw;
  border-radius: 8px;
}
 
.ledger-group_item>view{
  font-size: 12px;
  margin-bottom: 8px;
}
 
.fy-loading {
  text-align: center;
  background-color: transparent;
}
 
.fy-loading-indicator,
.fy-loading-text {
  color: var(--td-text-color-placeholder) !important;
}