riku
2026-03-05 9465dc404f7e7cd56100e4859ee0946a3fef7b09
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/* pages/mLedger/ledgerupload/ledgerupload.wxss */
.page {
  background-color: white;
}
 
.page__hd {
  font-weight: 600;
}
 
.page__bd {
  padding: 10px;
  padding-bottom: 100px;
}
 
.fix-bottom {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-bottom: calc(10px + constant(safe-area-inset-bottom));
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  text-align: center;
  box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.06);
  position: fixed;
  bottom: 0;
  width: 100%;
  padding-top: 0;
  display: flex;
  align-items: flex-end;
  background-color: white;
}
 
.fix-bottom .left {
  flex: 1;
}
 
.fix-bottom .right {
  flex: 2;
}
 
.upload-title-class {
  font-size: small;
}
 
.ledger-tips {
  display: flex;
  align-items: center;
  height: 20px;
  margin-bottom: 10px;
}
 
.text-area {
  margin-top: 8px;
  border: 1px solid rgba(173, 173, 173, 0.432);
  border-radius: 4px;
  width: 94%;
  height: 80px;
  font-size: 12px;
  padding: 8px 4px;
}
 
.text-area-read {
  /* border: 0px solid rgba(173, 173, 173, 0.432); */
  /* height: initial; */
  color: var(--fyui-text-color_2);
}
 
/* .img-group {
  display: flex;
  flex-wrap: wrap;
}
 
.img-group>view {
  width: 10vw;
  text-align: center;
}
 
.img-group .img-group_img {
  width: 29vw;
  height: 29vw;
  margin-bottom: 8px;
  margin-right: 8px;
} */
 
.submit-2 {
  background: white;
  border: 1px solid var(--fyui-btn-color_1);
  color: var(--fyui-btn-color_1);
  padding: 7px 0;
}
 
.submit-2:active {
  background: #dfdfdf;
}
 
.submit-3 {
  background: white;
  border: 1px solid #005994;
  color: #005994;
  padding: 7px 0;
}
 
.submit-2:active {
  background: #dfdfdf;
}
 
.ledger-des {
  font-size: 12px;
  color: var(--fyui-text-color_2);
  background-color: var(--fyui-BG_1);
  padding: 4px;
  border-radius: 4px;
}
 
/* .small-tag-text {
  position: absolute;
  bottom: 40rpx;
  font-size: 10px;
} */
 
 
.custom-action {
  position: relative;
  min-height: 40vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
 
.custom-action__bg {
  position: absolute;
  top: 0;
  left: 0;
}
 
.custom-action__tag {
  font-size: 14px;
  color: var(--fyui-text-color_1);
  font-weight: 600;
  width: 50%;
  text-align: center;
  z-index: 2;
}
 
.custom-action__tag>image {
  width: 64px;
  height: 64px;
}