lin
2026-04-21 b7303576bbf1ae606999130e6aab38b51015d167
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
page{
    font-size: 28upx;
}
.login-title{
    padding: 160upx 70upx 70upx 70upx;
}
.login-title-1{
    font-size: 40upx;
    font-weight: 700;
    color: #000000;
}
.login-title-2{
    font-size: 26upx;
    color: #000000;
    margin-top: 20upx;
}
.login-list{
    padding: 50upx 70upx;
}
.login-item{
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10upx;
    margin-bottom: 80upx;
    position: relative;
}
.login-item:last-child{
    margin-bottom: 0;
}
.login-item input{
    font-size: 30upx;
    width: 60%;
}
.login-item text{
    position: absolute;
    right: 0;
    bottom: 14upx;
    font-size: 30upx;
}
 
 
.loginBtn{
    padding: 0 70upx;
}
.loginBtn-icon{
    width: 48upx;
    height: 48upx;
    margin-top: 2upx;
    margin-right: 10upx;
}
.loginBtn-desc{
    display: flex;
    align-items: center;
    font-size: 24upx;
}
.blue{
    color: #7e94bd;
}
.login-btn{
    width: 100%;
    margin-top: 30upx;
    height: 90upx;
    background-color: #bfbfbf;
    color: #ffffff;
    letter-spacing: 10upx;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 28upx;
    border-radius: 50upx;
}
.loginBtn .active{
    background-color: #e3b400;
}
 
.login-type{
    padding: 50upx 70upx 20upx 70upx;
}
.login-type .login-type-v{
    display: flex;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 20upx;
}
.login-type .login-type-v view{
    margin-right: 50upx;
    position: relative;
}
.login-type .active::after{
    position: absolute;
    content: '';
    height: 1px;
    width: 100%;
    background-color: #e3b400;
    left: 0;
    bottom: -10px;
}
 
.loginDesc{
    margin-top: 50upx;
    padding: 0 70upx;
}
.loginDesc .fl{
    float: left;
}
.loginDesc .fr{
    float: right;
}
.loginDesc .fc{
    width: 100%;
    text-align: center;
}