_login.css
3.15 KB
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
.login-page {
.yoho-logo {
position: absolute;
height: 31PX;
width: 26PX;
background: resolve('passport/yoho.png');
background-size: 100% 100%;
top: 10PX;
left: 15PX;
}
.acc-container {
padding-left: 45PX;
}
.op-container {
position: relative;
width: 100%;
margin: 20PX 0;
text-align: left;
font-size: 16PX;
.go-register {
text-decoration: underline;
color: #858585;
}
.forget-pwd {
position: absolute;
right: 0;
text-decoration: underline;
color: #858585;
}
}
.third-party-login {
text-align: left;
> span {
font-size: 16PX;
color: #858585;
}
.tp-link {
text-align: center;
padding: 20PX 0;
> a {
display: inline-block;
width: 44PX;
height: 44PX;
margin: 0 7PX;
border-radius: 50%;
background-color: #333;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.alipay {
background-image: resolve('passport/alipay.png');
}
.weibo {
background-image: resolve('passport/weibo.png');
}
.weixin {
background-image: resolve('passport/weixin.png');
}
.qq {
background-image: resolve('passport/qq.png');
}
}
}
.international {
display: block;
width: 200PX;
padding: 5PX 10PX;
background-color: #333;
border: none;
border-radius: 20PX;
margin: 0 auto;
font-size: 16PX;
color: #d8d8d8;
}
.login-tip {
font-size: 16PX;
position: relative;
color: #d8d8d8;
margin: 15PX 0;
.info-icon {
display: inline-block;
height: 12PX;
width: 12PX;
background-image: resolve('passport/info.png');
background-size: 100% 100%;
}
}
.mask {
position: fixed;
display: none;
top: 0;
bottom: 0;
right: 0;
left: 0;
background-color: rgba(0,0,0,.5);
}
.retrive-pwd-ways {
position: fixed;
display: none;
bottom: 5PX;
left: 10PX;
right: 10PX;
font-size: 16PX;
li {
background-color: #fff;
width: 100%;
height: 40PX;
line-height: 40PX;
text-align: center;
&:nth-child(1) {
border-top-left-radius: 5PX;
border-top-right-radius: 5PX;
border-bottom: 1PX solid #9f9f9f;
}
&:nth-child(2) {
border-bottom-left-radius: 5PX;
border-bottom-right-radius: 5PX;
}
&:last-child {
margin-top: 10PX;
border-radius: 5PX;
}
}
}
}