riku
2026-01-21 a2c5def7cf9562312a54216bc195a6ea071a26c5
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
/* pages/mUser/personalauthentication/personalauthentication.wxss */
.tips {
  position: relative;
  color: white;
  padding: 16px;
  font-size: 14px;
  font-weight: 550;
}
 
.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* background-color: aqua; */
}
 
.top-card {
  position: relative;
  display: flex;
  flex-direction: row;
  background-color: white;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 8px 0px;
  /* margin: 0 8px; */
  font-size: 16px;
}
 
.picker-text {
  /* color: var(--fyui-primary-color); */
  color: var(--fyui-text-color_1);
}
 
.items {
  position: relative;
  padding: 0 16px;
  background-color: white;
}
 
.top-card .tag {
  /* display: inline-block; */
  width: 32vw;
  white-space: nowrap;
}
 
.top-card .value {
  flex-grow: 1;
}
 
.top-card .value view {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.weui-upload-view {
  background-color: white;
  padding: 16px;
}
 
.page__ft {
  background-color: white;
}
 
.required {
  color: red;
  text-align: center;
  vertical-align: middle;
}
 
.not-required {
  color: transparent;
}