riku
2023-11-29 9b09d13712c0c005891450a3bf4b6d848ec0ff37
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
/* pages/mine/mine.wxss */
.page__hd {
  background: linear-gradient(to bottom, #57E4CB, #bbf3eb);
  /* padding-top: 30px; */
  padding-bottom: 30px;
}
 
.fyui-cell_select {
  font-size: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--fyui-BG_1);
}
 
.flex-h {
  justify-content: flex-start;
  align-items: center;
}
 
.flex-v {
  flex: 1;
  justify-content: space-between;
  margin-left: 20px;
}
 
.logout {
  border-radius: 4px;
  margin: 8px;
  padding: 8px;
  background-color: white;
}
 
.user-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
 
.user-name {
  /* white-space: nowrap; */
  font-size: 16px;
  font-weight: 600;
}
 
.user-tag {
  display: flex;
  font-size: 12px;
  color: var(--fyui-text-color_2);
}
 
.title:active {
  background-color: var(--fyui-BG-COLOR-ACTIVE);
}
 
.user-authentication {
  position: relative;
  display: flex;
  justify-content: space-around;
}
 
.user-authentication>view {
  position: relative;
  text-align: center;
  padding: 20px 16px;
  font-size: 14px;
  color: var(--fyui-text-color_2);
}
 
.user-authentication>view>image {
  width: 40px;
  height: 40px;
}
 
.user-authentication .status-1{
  position: absolute;
  top: 36px;
  right: 10px;
  font-size: 10px;
  color: white;
  background-color: #05EDC4;
  border: white 2px solid;
  padding: 0 4px;
  border-radius: 4px;
}
 
.user-authentication .status-2{
  position: absolute;
  top: 36px;
  right: 10px;
  font-size: 10px;
  color: white;
  background-color: #F20202;
  border: white 2px solid;
  padding: 0 4px;
  border-radius: 4px;
}