Blame view

css/login.css 8.51 KB
bf30a091   liuqimichale   init
1
2
3
4
5
6
7
8
9
10
  html,body{
      height: 100%;
      width: 100%;
  
  }
  .login-model {
      height: 100%;
      min-height: 700px;
      width: 100%;
      min-width: 814px;
47c63167   liuqimichale   登录页面
11
      /*background:url(../img/loginbg-icon.png) no-repeat;*/
bf30a091   liuqimichale   init
12
13
14
15
16
17
18
19
20
21
22
23
      background-size: 100% 100%;
      position: relative;
  }
  .login .logo {
      padding-top:30px;
      padding-left: 40px;
  }
  .login .logo a img{
      height: 34.5px;
      width: 90.5px;
  }
  .login-cont{
133eca7c   liuqimichale   登录页面
24
25
      width:372px;
      height:360px;
bf30a091   liuqimichale   init
26
27
28
      position: absolute;
      top:50%;
      left: 50%;
133eca7c   liuqimichale   登录页面
29
30
      margin-top: -186px;
      margin-left: -180px;
bf30a091   liuqimichale   init
31
  
133eca7c   liuqimichale   登录页面
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
  }
  .login-title{
      height: 48px;
      border-bottom: 2px solid #fff;
      line-height: 48px;
      padding-left: 40px;
      font-size:18px;
      font-weight:400;
      color:rgba(55,168,247,1);
      background:rgba(26,29,41,.6);
      position: relative;
  }
  .login-title:after{
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width:159px;
      height:2px;
      background:rgba(55,168,247,1);
  }
  .login-main{
      width: 372px;
      padding:32px 40px;
      background:rgba(26,29,41,.6);
  }
  .login-user-bg{
      display: inline-block;
      vertical-align: middle;
      width: 40px;
      height: 40px;
      background:rgba(170,171,171,.8) url("../img/login-user-bg.png") no-repeat center center;
  }
  .login-pwd-bg{
      display: inline-block;
      vertical-align: middle;
      width: 40px;
      height: 40px;
      background:rgba(170,171,171,.8) url("../img/login-pwd-bg.png") no-repeat center center;
  }
  .form-control{
      border-radius: 0;
bf30a091   liuqimichale   init
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
  }
  .login .content h3 {
      color:#4db3a5;
      text-align:center;
      font-size:28px;
      font-weight:400!important
  }
  .login .content h4 {
      color:#555
  }
  .login .content .hint {
      color:#999;
      padding:0;
      margin:15px 0 7px
  }
  .login .content .forget-form, .login .content .login-form {
      padding:0;
      margin:0
  }
  .login .content .form-control {
133eca7c   liuqimichale   登录页面
94
95
96
      height: 40px;
      width: 251px;
      display: inline-block;
bf30a091   liuqimichale   init
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
  }
  .login .content .form-control:active, .login .content .form-control:focus {
      border:1px solid #c3ccda
  }
  .login .content .form-control::-moz-placeholder {
      color:#8290a3;
      opacity:1
  }
  .login .content .form-control:-ms-input-placeholder {
      color:#8290a3
  }
  .login .content .form-control::-webkit-input-placeholder {
      color:#8290a3
  }
  .login .content select.form-control {
      padding-left:9px;
      padding-right:9px
  }
  .login .content .forget-form, .login .content .register-form {
      display:none
  }
  .login .content .form-title {
      font-weight:300;
      margin-bottom:25px
  }
  .login .content .form-actions {
      clear:both;
      border:0;
bf30a091   liuqimichale   init
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
  }
  .login-options {
      margin-bottom:30px;
      overflow:hidden
  }
  .login-options h4 {
      float:left;
      font-weight:600;
      font-size:15px;
      color:#7d91aa!important
  }
  .login-options .social-icons {
      float:right;
      padding-top:3px
  }
  .login-options .social-icons li a {
      border-radius:15px!important;
      -moz-border-radius:15px!important;
      -webkit-border-radius:15px!important
  }
  .login .content .form-actions .checkbox {
      margin-left:0;
      padding-left:0
  }
  .login .content .forget-form .form-actions {
      border:0;
      margin-bottom:0;
      padding-bottom:20px
  }
  .login .content .register-form .form-actions {
      border:0;
      margin-bottom:0;
      padding-bottom:0
  }
  .login .content .form-actions .btn {
133eca7c   liuqimichale   登录页面
160
      height: 40px;
bf30a091   liuqimichale   init
161
162
      font-size: 18px;
      color: #fff;
133eca7c   liuqimichale   登录页面
163
164
      border:1px solid #37A8F7;
      background-color: #37A8F7;
bf30a091   liuqimichale   init
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
  
      width: 100%;
  }
  .login .content .form-actions .btn-default {
      font-weight:600;
      padding:10px 25px!important;
      color:#6c7a8d;
      background-color:#fff;
      border:none
  }
  .login .content .form-actions .btn-default:hover {
      background-color:#fafaff;
      color:#45b6af
  }
  .login .content .forget-password {
      font-size:14px;
      float:right;
      display:inline-block;
      margin-top:10px
  }
  .login .content .check {
      color:#8290a3
  }
  .login .content .rememberme {
      margin-left:8px;
      margin-top:10px
  }
  .login .content .create-account {
      margin:0 -40px -30px;
      padding:15px 0 17px;
      text-align:center;
      background-color:#6c7a8d;
      -webkit-border-radius:0 0 7px 7px;
      -moz-border-radius:0 0 7px 7px;
      -ms-border-radius:0 0 7px 7px;
      -o-border-radius:0 0 7px 7px;
      border-radius:0 0 7px 7px
  }
  .login .content .create-account>p {
      margin:0
  }
  .login .content .create-account p a {
      font-weight:600;
      font-size:14px;
      color:#c3cedd
  }
  .login .content .create-account a {
      display:inline-block;
      margin-top:5px
  }
  .login .copyright {
      text-align:center;
      margin:0 auto 30px 0;
      padding:10px;
      color:#7a8ca5;
      font-size:13px
  }
  @media (max-width:440px) {
      .login .content, .login .logo {
          margin-top:10px
      }
      .login .content {
          width:280px
      }
      .login .content h3 {
          font-size:22px
      }
      .forget-password {
          display:inline-block;
          margin-top:20px
      }
      .login-options .social-icons {
          float:left;
          padding-top:3px
      }
      .login .checkbox {
          font-size:13px
      }
  }
  .error_ifo {
      margin-top: 10px;
  }
  .verification-input {
      margin-right: 20px;
      width:170px;
      display: inline-block;
      vertical-align: top;
  }
  .imgWrap {
      height: 43px;
      width: 100px;
      display: inline-block;
  }
  .imgWrap img {
      width: 100%;
      height:100%;
  }
  .verification-logo {
      position: absolute;
      left: 150px;
      top:16px;
  }
  .login_error_ifo {
      height: 22px;
      text-align: center;
      padding: 5px 0;
      color: rgb(255, 97, 97);
  }
  .zteitslogin_foot{
      position: absolute;
      width: 100%;
      height: 30px;
      line-height: 30px;
      text-align: center;
      color: #8290a3;
      font-size: 12px;
      bottom: 10px;
      left: 0;
  }
  .form-group{
133eca7c   liuqimichale   登录页面
285
      margin-bottom: 12px;
bf30a091   liuqimichale   init
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
  }
  .form-control{
      color:#000;
      background-color: rgba(255,255,255,.75);
      font-size: 14px;
  
  }
  input:-webkit-autofill,
  textarea:-webkit-autofill,
  select:-webkit-autofill {
      background-color: rgba(255,255,255,.75);
      -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  }
  /*//鐒︾偣鏃朵篃鍔犱笂锛屼笉鍔犱細鍑虹幇榛勮壊鑳屾櫙闂姩涓€涓�*/
  input[type=text]:focus, input[type=password]:focus, textarea:focus {
      -webkit-box-shadow: 0 0 0 1000px white inset;
  }
  input::-webkit-input-placeholder{
      color:#000!important;
  }
  input::-moz-placeholder{   /* Mozilla Firefox 19+ */
      color:#000!important;
  }
  input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
      color:#000!important;
  }
  input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
      color:#000!important;
  }
  
  
  #slide_box {
133eca7c   liuqimichale   登录页面
318
      height: 40px;
bf30a091   liuqimichale   init
319
      text-align: center;
133eca7c   liuqimichale   登录页面
320
      line-height: 40px;
bf30a091   liuqimichale   init
321
322
323
324
325
326
      font-size: 14px;
      background-color: rgba(255,255,255,.75);
      border: none;
  }
  
  #slide_xbox {
133eca7c   liuqimichale   登录页面
327
328
      width: 40px;
      height: 40px;
bf30a091   liuqimichale   init
329
      text-align: center;
133eca7c   liuqimichale   登录页面
330
      line-height:40px;
bf30a091   liuqimichale   init
331
332
333
334
335
336
337
      font-size: 14px;
      position: absolute;
      background: #35b34a;
  }
  
  #btn {
      cursor: pointer;
133eca7c   liuqimichale   登录页面
338
339
      width: 40px;
      height: 40px;
bf30a091   liuqimichale   init
340
341
342
343
344
345
346
347
348
349
      background: #fff url(../img/handler_bg.png);
      float: right;
      /*-webkit-box-shadow: 0px 0px 15px 0px #ddd;*/
      /*-moz-box-shadow: 0px 0px 15px 0px #ddd;*/
      /*box-shadow: 0px 0px 15px 0px #ddd;*/
      /*color: #8a8c97;*/
  
  }
  .display-hide{
      display: none;
47c63167   liuqimichale   登录页面
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
  }
  
  
  
  
  /*
  
  	Supersized - Fullscreen Slideshow jQuery Plugin
  	Version : 3.2.7
  	Site	: www.buildinternet.com/project/supersized
  
  	Author	: Sam Dunn
  	Company : One Mighty Roar (www.onemightyroar.com)
  	License : MIT License / GPL License
  
  */
  
  * { margin:0; padding:0; }
  body { background:#111; height:100%; }
  img { border:none; }
  
  #supersized-loader { position:absolute; top:50%; left:50%; z-index:0; width:60px; height:60px; margin:-30px 0 0 -30px; text-indent:-999em;}
  
  #supersized {  display:block; position:fixed; left:0; top:0; overflow:hidden; z-index:-999; height:100%; width:100%; }
  #supersized img { width:auto; height:auto; position:relative; display:none; outline:none; border:none; }
  #supersized.speed img { -ms-interpolation-mode:nearest-neighbor; image-rendering: -moz-crisp-edges; }	/*Speed*/
  #supersized.quality img { -ms-interpolation-mode:bicubic; image-rendering: optimizeQuality; }			/*Quality*/
  
  #supersized li { display:block; list-style:none; z-index:-30; position:fixed; overflow:hidden; top:0; left:0; width:100%; height:100%; background:#111; }
  #supersized a { width:100%; height:100%; display:block; }
  #supersized li.prevslide { z-index:-20; }
  #supersized li.activeslide { z-index:-10; }
  /*#supersized li.image-loading { background:#111 url(../img/progress.gif) no-repeat center center; width:100%; height:100%; }*/
  /*#supersized li.image-loading img{ visibility:hidden; }*/
  #supersized li.prevslide img, #supersized li.activeslide img{ display:inline; }
  
  
  #supersized img { max-width: none !important }