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
148
149
150
151
152
153
154
155
156
| .login-right-new {
| position: relative;
| width: 100%;
| padding: 16px;
| box-sizing: border-box;
| }
|
| .login-right-new .login-title {
| font-size: 20px;
| font-weight: 600;
| margin-bottom: 12px;
| }
|
| .login-right-new .user-login {
| font-size: 16px;
| font-weight: 600;
| margin-bottom: 12px;
| }
|
| .login-right-new .username,
| .login-right-new .password {
| width: 100%;
| height: auto;
| }
|
| .login-right-new .get-forget-password {
| margin-top: 8px;
| display: flex;
| justify-content: space-between;
| align-items: center;
| }
|
| .login-right-new .forget-password-text {
| cursor: pointer;
| font-size: 14px;
| color: #1677ff;
| }
|
| .login-right-new .login-click {
| width: 100%;
| height: auto;
| margin-top: 16px;
| text-align: center;
| }
|
| .jw-user-login-page {
| display: flex;
| flex-direction: column;
| align-items: stretch;
| width: 100%;
| }
|
| .login-weaper {
| margin: 0 auto;
| width: 100%;
| }
|
| .login-left,
| .login-border {
| position: relative;
| min-height: auto;
| align-items: center;
| display: flex;
| }
|
| .login-left {
| justify-content: center;
| flex-direction: column;
| width: 100%;
| box-sizing: border-box;
| }
|
| .login-left .img {
| width: 120px;
| }
|
| .login-time {
| margin: 12px 0;
| width: 100%;
| font-size: 14px;
| }
|
| .login-left .title {
| margin-top: 12px;
| text-align: center;
| font-size: 16px;
| }
|
| .login-border {
| width: 100%;
| box-sizing: border-box;
| }
|
| .login-main {
| margin: 0 auto;
| padding: 16px;
| width: 100%;
| box-sizing: border-box;
| }
|
| .login-main > h3 {
| margin-bottom: 12px;
| }
|
| .login-title {
| margin-bottom: 16px;
| font-weight: 600;
| font-size: 18px;
| text-align: center;
| }
|
| .login-menu {
| margin-top: 16px;
| width: 100%;
| text-align: center;
| }
|
| .login-menu a {
| font-size: 12px;
| margin: 0 8px;
| }
|
| .login-submit {
| margin-top: 16px;
| height: auto;
| }
|
| .register-submit {
| width: 100%;
| height: auto;
| font-size: 16px;
| cursor: pointer;
| margin-top: 12px;
| margin-left: 0 !important;
| }
|
| .login-code {
| width: 100%;
| height: 100%;
| }
|
| .login-code-box {
| display: flex;
| align-items: center;
| }
|
| .login-code-img {
| cursor: pointer;
| min-width: 100px;
| padding: 0 5px;
| height: 30px;
| font-size: 16px;
| line-height: 30px;
| text-align: center;
| box-sizing: border-box;
| }
|
|