riku
2024-11-14 00a96d6881dd10ae7d3c4f5437bfceaabe677723
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
.login-container{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  z-index: 1;
  background-color: white;
}
 
.bottom-btn{
  width: 90% !important;
  color: #828282;
  background-color: #EEEEEE;
  margin-top: 80px;
}
 
.bottom-btn_active {
  color: white;
  background: linear-gradient(to right, #6DF1A9, #62EBCF);
}
 
 
.agree-text {
  width: 70vw;
  text-align: center;
  font-size: 12px;
  color: #b8b8b8;
  margin-top: 12rpx;
}
 
.user-info {
  font-size: 20px;
  width: 100%;
  /* background-color: burlywood; */
  margin-top: 30px;
}
.user-info_item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 8px;
  padding: 8px 30px;
}
 
.user-info_item>text{
  color: var(--fyui-text-color_1);
  line-height: 30px;
  white-space: nowrap;
  font-weight: 600;
}
 
.user-info_item>input{
  height: 30px;
  line-height: 30px;
  width: 100%;
  border-bottom: #929292 1px solid;
  background-color: white;
  font-size: medium;
}
 
.login-btn_text {
  margin-top: 24px;
  color: #2F655B;
}
 
.login-btn_text:active {
  color: #2f655b71;
}