cabe7371
Andy
登录
|
1
2
3
|
html,body{
height: 100%;
width: 100%;
|
74c10f30
Andy
登录 login
|
4
5
6
7
|
}
body{
min-width: 580px;
overflow: scroll;
|
cabe7371
Andy
登录
|
8
9
10
11
12
|
}
.login-model {
height: 100%;
min-height: 700px;
width: 100%;
|
74c10f30
Andy
登录 login
|
13
14
|
overflow: scroll;
/*min-width: 814px;*/
|
cabe7371
Andy
登录
|
15
16
17
18
19
20
21
22
23
24
25
26
|
background: url("../image/syslogin_bgIcon.png") no-repeat;
background-size: 100% 100%;
position: relative;
}
.top-tit{
padding-top: 102px;
height: 140px;
/*line-height: 62px;*/
text-align: center;
color: #fff;
font-size: 32px;
}
|
a2138d2c
Andy
登录 login
|
27
28
29
|
.float-left{
float: left;
}
|
cabe7371
Andy
登录
|
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
|
.login-content{
height: 412px;
width: 580px;
margin: 100px auto 0;
background: #fff;
border-radius: 20px;
}
.posrel{
position: relative;
}
.posabl{
position: absolute;
}
.boxshadow {
box-shadow: 0px 1px 10px 0px rgba(50, 50, 50, 0.2);
}
.login-contop{
height: 100px;
width: 100px;
border-radius: 50%;
background-color: #fff;
top:-50px;
left: 50%;
margin-left: -50px;
background-image: url("../image/logo-loginGreen.png");
background-repeat: no-repeat;
|
a2138d2c
Andy
登录 login
|
56
|
background-position: 21px 24.5px;
|
cabe7371
Andy
登录
|
57
|
background-size: 58px 51px;
|
a2138d2c
Andy
登录 login
|
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
157
158
159
160
161
162
163
164
165
166
167
168
169
|
}
.user-cont{
margin: 0 auto;
padding-top: 95px;
width: 332px;
height: 136px;
/*border: 1px solid #ddd;*/
}
.psw-cont{
margin: 0 auto;
width: 332px;
height: 40px;
margin-top: 24px;
margin-bottom: 24px;
}
.cont-user,.cont-psw{
height: 42px;
line-height: 40px;
width: 332px;
border: 1px solid #ddd;
border-radius: 4px;
}
.user-bg{
height: 40px;
width: 40px;
background-color: #ddd;
background-image: url("../image/login_usericon.png");
background-size: 19px 17px;
background-repeat: no-repeat;
background-position: 10px 11.5px;
float: left;
}
.psw-bg{
height: 40px;
width: 40px;
background-color: #ddd;
background-image: url("../image/login_pwsicon.png");
background-size: 16px 20px;
background-repeat: no-repeat;
background-position: 12px 10px;
float: left;
}
.login-control{
height: 40px;
line-height: 40px;
width: 290px;
outline: none;
border: none !important;
border-top-right-radius:4px;
border-bottom-right-radius:4px;
padding-left: 12px;
}
.ver-cont{
width: 222px;
height: 42px;
margin-left: 124px;
border: 1px solid #ddd;
border-radius: 4px;
margin-bottom: 10px;
}
.ver-bg{
height: 40px;
width: 40px;
background-color: #ddd;
background-image: url("../image/login_vericon.png");
background-size: 16px 16px;
background-repeat: no-repeat;
background-position: 12px 12px;
float: left;
}
.ver-control{
height: 40px;
line-height: 40px;
width: 180px;
outline: none;
border: none !important;
border-top-right-radius:4px;
border-bottom-right-radius:4px;
padding-left: 12px;
}
.imgWrap{
height: 42px;
width: 98px;
background: #ddd;
border-radius: 4px;
margin-left: 10px;
}
.imgWrap img {
width: 100%;
height: 100%;
}
.error_info{
height: 30px;
line-height: 30px;
font-size: 14px;
color: #f00;
text-align: center;
margin-bottom: 8px;
}
.login-foot{
width: 100%;
height: 40px;
}
.login-foot .btn{
height: 40px;
width: 148px;
background: #26be96;
border-radius: 20px;
color: #fff;
font-size:18px;
margin: 0 auto;
display: block;
|
cabe7371
Andy
登录
|
170
|
}
|