system-clients 3.2.4 → 3.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (167) hide show
  1. package/.eslintrc.js +16 -16
  2. package/SystemClient.iml +2 -5
  3. package/build/webpack.base.conf.js +21 -11
  4. package/package.json +6 -4
  5. package/src/App.vue +24 -24
  6. package/src/components/Main.vue +626 -476
  7. package/src/components/TabButton.vue +201 -0
  8. package/src/components/Tabs.vue +67 -0
  9. package/src/components/addressManage/AddressCascadingMenu.vue +145 -0
  10. package/src/components/equipment/EquipmentManage.vue +1 -1
  11. package/src/components/equipment/PcAdd.vue +5 -5
  12. package/src/components/equipment/PcList.vue +5 -5
  13. package/src/components/equipment/PhoneAdd.vue +26 -13
  14. package/src/components/equipment/PhoneList.vue +31 -21
  15. package/src/components/equipment/PosAdd.vue +231 -45
  16. package/src/components/equipment/PosList.vue +198 -68
  17. package/src/components/equipment/PosManage.vue +80 -9
  18. package/src/components/equipment/PosManageBoth.vue +125 -0
  19. package/src/components/equipment/PosParamAdd.vue +236 -0
  20. package/src/components/equipment/PosParamList.vue +121 -0
  21. package/src/components/equipment/PosParamManage.vue +51 -0
  22. package/src/components/parammanage/ParamManage.vue +2 -2
  23. package/src/components/parammanage/ParamPage.vue +30 -8
  24. package/src/components/parammanage/SinglePage.vue +4 -4
  25. package/src/components/server/ImageVieweTest.vue +56 -0
  26. package/src/components/server/ImageViewer.vue +350 -0
  27. package/src/components/server/LoadData.vue +21 -2
  28. package/src/components/server/Login.vue +889 -625
  29. package/src/components/server/ModifyPw.vue +12 -7
  30. package/src/components/server/PcdBuildingSelect.vue +241 -0
  31. package/src/components/server/ResSelect.vue +5 -0
  32. package/src/components/server/ResSelectGroup.vue +159 -103
  33. package/src/components/server/RightTree.vue +289 -204
  34. package/src/filiale/dongguan/Main.vue +715 -0
  35. package/src/filiale/dongguan/system.js +5 -0
  36. package/src/filiale/konggang/Login.vue +840 -0
  37. package/src/filiale/konggang/system.js +7 -0
  38. package/src/filiale/qianneng/ModifyPw.vue +107 -0
  39. package/src/filiale/qianneng/system.js +7 -0
  40. package/src/filiale/rizhao/LeftTree.vue +111 -0
  41. package/src/filiale/rizhao/Login.vue +791 -0
  42. package/src/filiale/rizhao/Main.vue +606 -0
  43. package/src/filiale/rizhao/system.js +14 -0
  44. package/src/filiale/yuchuan/Login.vue +889 -0
  45. package/src/filiale/yuchuan/Main.vue +773 -0
  46. package/src/filiale/yuchuan/system.js +10 -0
  47. package/src/plugins/EncryptUtil.js +53 -0
  48. package/src/plugins/GetLoginInfoService.js +76 -70
  49. package/src/plugins/HeatGetLoginInfoService.js +491 -0
  50. package/src/plugins/validation.js +9 -1
  51. package/src/stores/HeatAppData.js +38 -0
  52. package/src/styles/fonts/PINGFANG LIGHT.TTF +0 -0
  53. package/src/styles/fonts/PingFangSC-Regular.ttf +0 -0
  54. package/src/styles/fonts/glyphicons-halflings-regular.eot +0 -0
  55. package/src/styles/fonts/glyphicons-halflings-regular.svg +288 -0
  56. package/src/styles/fonts/glyphicons-halflings-regular.ttf +0 -0
  57. package/src/styles/fonts/glyphicons-halflings-regular.woff +0 -0
  58. package/src/styles/fonts/glyphicons-halflings-regular.woff2 +0 -0
  59. package/src/styles/fonts/pingfang-bold.ttf +0 -0
  60. package/src/styles/fonts/pingfang-medium.ttf +0 -0
  61. package/src/styles/fonts/pingfang-regular.ttf +0 -0
  62. package/src/styles/fonts/trendstrends.ttf +0 -0
  63. package/src/styles/fonts//346/261/211/344/273/252/350/217/261/345/277/203/344/275/223/347/256/200.ttf +0 -0
  64. package/src/styles/less/.csscomb.json +304 -0
  65. package/src/styles/less/.csslintrc +19 -0
  66. package/src/styles/less/alerts.less +73 -0
  67. package/src/styles/less/aofeng/animate.min.css +11 -0
  68. package/src/styles/less/aofeng/expandcss.less +569 -0
  69. package/src/styles/less/aofeng/standard.less +2507 -0
  70. package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +686 -0
  71. package/src/styles/less/aofeng/themeOne/loginStyle.less +1586 -0
  72. package/src/styles/less/aofeng/themeOne/systemStyle.less +2650 -0
  73. package/src/styles/less/aofeng/themeOne.less +17 -0
  74. package/src/styles/less/aofeng/themeTwo/newStyle1.less +415 -0
  75. package/src/styles/less/aofeng/themeTwo.less +3 -0
  76. package/src/styles/less/badges.less +66 -0
  77. package/src/styles/less/bootstrap.less +66 -0
  78. package/src/styles/less/breadcrumbs.less +26 -0
  79. package/src/styles/less/button-groups.less +247 -0
  80. package/src/styles/less/buttons.less +172 -0
  81. package/src/styles/less/carousel.less +269 -0
  82. package/src/styles/less/close.less +34 -0
  83. package/src/styles/less/code.less +69 -0
  84. package/src/styles/less/component-animations.less +33 -0
  85. package/src/styles/less/dropdowns.less +216 -0
  86. package/src/styles/less/fonts-list.less +25 -0
  87. package/src/styles/less/forms.less +626 -0
  88. package/src/styles/less/glyphicons.less +305 -0
  89. package/src/styles/less/grid.less +84 -0
  90. package/src/styles/less/input-groups.less +167 -0
  91. package/src/styles/less/jumbotron.less +52 -0
  92. package/src/styles/less/labels.less +64 -0
  93. package/src/styles/less/list-group.less +141 -0
  94. package/src/styles/less/manageStyle/manageChile.less +180 -0
  95. package/src/styles/less/manageStyle/manageStyle/manageChile.less +180 -0
  96. package/src/styles/less/manageStyle/manageStyle/manageStyle.less +1102 -0
  97. package/src/styles/less/manageStyle/manageStyle/safeStyle.less +498 -0
  98. package/src/styles/less/manageStyle/manageStyle.less +1102 -0
  99. package/src/styles/less/manageStyle/safeStyle.less +498 -0
  100. package/src/styles/less/media.less +66 -0
  101. package/src/styles/less/mixins/alerts.less +14 -0
  102. package/src/styles/less/mixins/background-variant.less +9 -0
  103. package/src/styles/less/mixins/border-radius.less +18 -0
  104. package/src/styles/less/mixins/buttons.less +69 -0
  105. package/src/styles/less/mixins/center-block.less +7 -0
  106. package/src/styles/less/mixins/clearfix.less +22 -0
  107. package/src/styles/less/mixins/forms.less +90 -0
  108. package/src/styles/less/mixins/gradients.less +59 -0
  109. package/src/styles/less/mixins/grid-framework.less +92 -0
  110. package/src/styles/less/mixins/grid.less +122 -0
  111. package/src/styles/less/mixins/hide-text.less +21 -0
  112. package/src/styles/less/mixins/image.less +33 -0
  113. package/src/styles/less/mixins/labels.less +12 -0
  114. package/src/styles/less/mixins/list-group.less +30 -0
  115. package/src/styles/less/mixins/nav-divider.less +10 -0
  116. package/src/styles/less/mixins/nav-vertical-align.less +9 -0
  117. package/src/styles/less/mixins/opacity.less +8 -0
  118. package/src/styles/less/mixins/pagination.less +24 -0
  119. package/src/styles/less/mixins/panels.less +24 -0
  120. package/src/styles/less/mixins/progress-bar.less +10 -0
  121. package/src/styles/less/mixins/reset-filter.less +8 -0
  122. package/src/styles/less/mixins/reset-text.less +18 -0
  123. package/src/styles/less/mixins/resize.less +6 -0
  124. package/src/styles/less/mixins/responsive-visibility.less +15 -0
  125. package/src/styles/less/mixins/size.less +10 -0
  126. package/src/styles/less/mixins/tab-focus.less +9 -0
  127. package/src/styles/less/mixins/table-row.less +44 -0
  128. package/src/styles/less/mixins/text-emphasis.less +9 -0
  129. package/src/styles/less/mixins/text-overflow.less +8 -0
  130. package/src/styles/less/mixins/vendor-prefixes.less +227 -0
  131. package/src/styles/less/mixins.less +40 -0
  132. package/src/styles/less/modals.less +151 -0
  133. package/src/styles/less/navbar.less +660 -0
  134. package/src/styles/less/navs.less +285 -0
  135. package/src/styles/less/normalize.less +424 -0
  136. package/src/styles/less/pager.less +76 -0
  137. package/src/styles/less/pagination.less +89 -0
  138. package/src/styles/less/panels.less +275 -0
  139. package/src/styles/less/popovers.less +131 -0
  140. package/src/styles/less/print.less +101 -0
  141. package/src/styles/less/progress-bars.less +87 -0
  142. package/src/styles/less/responsive-embed.less +35 -0
  143. package/src/styles/less/responsive-utilities.less +194 -0
  144. package/src/styles/less/scaffolding.less +161 -0
  145. package/src/styles/less/stand.less +207 -0
  146. package/src/styles/less/tables.less +312 -0
  147. package/src/styles/less/theme.less +291 -0
  148. package/src/styles/less/thumbnails.less +36 -0
  149. package/src/styles/less/tooltip.less +102 -0
  150. package/src/styles/less/type.less +316 -0
  151. package/src/styles/less/utilities.less +55 -0
  152. package/src/styles/less/variables.less +899 -0
  153. package/src/styles/less/wells.less +29 -0
  154. package/src/system.js +34 -1
  155. package/src/util/Daiban.json +12 -0
  156. package/static/images/lefticon//345/220/210/345/220/214/347/256/241/347/220/206.png +0 -0
  157. package/static/logo.png +0 -0
  158. package/static/newStyle/about-us.png +0 -0
  159. package/static/rizhao.png +0 -0
  160. package/yarn-error.log +6896 -0
  161. package/.gradle/3.5/file-changes/last-build.bin +0 -0
  162. package/.gradle/3.5/taskHistory/taskHistory.lock +0 -0
  163. package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
  164. package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
  165. package/.gradle/buildOutputCleanup/built.bin +0 -0
  166. package/.gradle/buildOutputCleanup/cache.properties +0 -2
  167. package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
@@ -0,0 +1,1586 @@
1
+
2
+
3
+
4
+ .login-check-1{
5
+ border-radius: 4px;
6
+ }
7
+
8
+
9
+ @media screen and (min-width: 1920px) and (min-height: 880px) {
10
+ //登录背景
11
+ .syslogin {
12
+ overflow: hidden;
13
+ background-image: url("../../../../../static/newStyle/loginbg.gif");
14
+ background-size: 100% 100%;
15
+ background-repeat: no-repeat;
16
+ font-family: PINGFANG-MEDIUM;
17
+ }
18
+
19
+ //登录logo
20
+ .login-title {
21
+ height: 5%;
22
+ }
23
+
24
+ //logo子
25
+ .login-title-chi {
26
+ padding: 1% 1% 0 0;
27
+ float: right;
28
+ color: white;
29
+ font-size: 1.8rem;
30
+ width: 16%;
31
+ }
32
+
33
+ //logo子 -图标
34
+ .login-title-chi img {
35
+ margin: 0 3% 0 8%;
36
+ width: 18px;
37
+ }
38
+
39
+ //登录主体
40
+ .loginmain {
41
+ margin: 10% 24% 8% 24%;
42
+ ///* padding: 8%; */
43
+ width: 52%;
44
+ height: 54%;
45
+ background-color: #ffffff;
46
+ border-radius: 30px;
47
+ }
48
+
49
+ //登录主体左部
50
+ .loginmain-left {
51
+ width: 50%;
52
+ height: 100%;
53
+ /* padding: 3%; */
54
+ padding: 10% 5%;
55
+ float: left;
56
+ }
57
+
58
+ //登录主体左部图片
59
+ .loginmain-left-img {
60
+ width: 100%;
61
+ height: 100%;
62
+ }
63
+
64
+ //登录主体右部
65
+ .loginmain-right {
66
+ width: 50%;
67
+ height: 100%;
68
+ padding: 4% 7% 3% 2%;
69
+ float: right;
70
+ }
71
+
72
+ //主体右部标题
73
+ .loginmain-right p {
74
+ height: 20%;
75
+ margin-top: 5%;
76
+ font-size: 3.4rem;
77
+ font-weight: normal;
78
+ font-stretch: normal;
79
+ line-height: 90px;
80
+ letter-spacing: 7px;
81
+ font-family: TRENDSTRENDS;
82
+ color: #333333;
83
+ text-align: center;
84
+ }
85
+ .login_load{
86
+ width: 100%;
87
+ height: 65%;
88
+ padding: 10% 22%;
89
+ }
90
+ .login_load img{
91
+ width: 100%;
92
+ height: 100%;
93
+ }
94
+ //主体右部输入条
95
+ .login-input {
96
+ margin-bottom: 4%;
97
+ padding: 8px 0px 0px 4px;
98
+ height: 60px;
99
+ width: 100%;
100
+ border: none;
101
+ border-bottom: #e1e1e1 solid 1px;
102
+ }
103
+
104
+ .login-input:hover {
105
+ border-bottom: #5792f0 solid 1px;
106
+ }
107
+
108
+ .login-input img {
109
+ margin-top: 20px;
110
+ width: 18px;
111
+ float: left;
112
+ vertical-align: middle;
113
+ }
114
+
115
+ .login-input input {
116
+ font-size: 1.6rem;
117
+ margin-top: 10px;
118
+ height: 35px;
119
+ width: 85%;
120
+ margin-left: 10px;
121
+ border: none;
122
+ background-color: white !important;
123
+ padding-left: 10px;
124
+ }
125
+
126
+ .login-input input:hover {
127
+ margin-top: 10px;
128
+ height: 35px;
129
+ width: 85%;
130
+ margin-left: 10px;
131
+ border: none;
132
+ background-color: white !important;
133
+ padding-left: 10px;
134
+ }
135
+
136
+ .login-input input:active {
137
+
138
+ border: none;
139
+ }
140
+
141
+ .login-input-1 {
142
+ padding: 15px 0px 0px 4px;
143
+ height: 60px;
144
+ width: 60%;
145
+ border: none;
146
+ float: left;
147
+ border-bottom: #e1e1e1 solid 1px;
148
+ }
149
+
150
+ .login-input-2 {
151
+ float: left;
152
+ width: 40%;
153
+ height: 60px;
154
+ border: none;
155
+ padding: 4% 0 0 2%;
156
+ }
157
+
158
+ .login-input-1:hover {
159
+ border-bottom: #5792f0 solid 1px;
160
+ }
161
+
162
+ .login-input-1 img {
163
+ margin-top: 6px;
164
+ width: 18px;
165
+
166
+ float: left;
167
+ vertical-align: middle;
168
+ }
169
+
170
+ .login-input-1 input {
171
+ height: 35px;
172
+ width: 140px;
173
+ margin-left: 10px;
174
+ border: none;
175
+ background-color: white !important;
176
+ padding-left: 10px;
177
+ }
178
+
179
+ .login-input-1 input::-webkit-input-placeholder {
180
+ color: #a9a9a9;
181
+ font-size: 1.6rem;
182
+ }
183
+
184
+ .login-input input::-webkit-input-placeholder {
185
+ color: #a9a9a9;
186
+ font-size: 1.6rem;
187
+ }
188
+
189
+ .login-input-1 input:hover {
190
+ height: 35px;
191
+ width: 140px;
192
+ margin-left: 10px;
193
+ border: none;
194
+ background-color: white !important;
195
+ padding-left: 10px;
196
+ }
197
+
198
+ .login-check {
199
+ height: 40px;
200
+ float: left;
201
+ width: 75% !important;
202
+ border: none !important;
203
+ background-color: white !important;
204
+ }
205
+
206
+ .login-check-1 {
207
+ height: 40px;
208
+ float: left;
209
+ width: 95% !important;
210
+ border: none !important;
211
+ background-color: #e1e1e1 !important;
212
+ letter-spacing: 2px;
213
+ font-size: 18px;
214
+ font-weight: normal;
215
+ font-stretch: normal;
216
+ text-align: center;
217
+ color: #6994d7;
218
+ }
219
+
220
+ //登录按钮
221
+ .login-bt {
222
+ margin-top: 35%;
223
+ }
224
+
225
+ .login-button {
226
+ font-size: 18px;
227
+ letter-spacing: 8px;
228
+ width: 100%;
229
+ height: 40px;
230
+ color: white;
231
+ background-color: #5792f0;
232
+ border-radius: 20px;
233
+ border: solid 1px #1a72fe;
234
+ }
235
+
236
+ .login-button:hover {
237
+ background-color: #357dee;
238
+ }
239
+
240
+ .login-foot {
241
+ height: 6%;
242
+ text-align: center;
243
+ font-family: PINGFANG-REGULAR;
244
+ font-size: 2rem;
245
+ font-weight: normal;
246
+ font-stretch: normal;
247
+ line-height: 70px;
248
+ letter-spacing: 2px;
249
+ color: #ffffff;
250
+ }
251
+
252
+ }
253
+
254
+
255
+
256
+ /*分辨率@1920*1080*/
257
+ @media screen and (max-width: 1920px) {
258
+
259
+ //登录背景
260
+ .syslogin{
261
+ overflow: hidden;
262
+ background-image: url("../../../../../static/newStyle/loginbg.gif");
263
+ background-size:100% 100%;
264
+ background-repeat:no-repeat;
265
+ font-family: PINGFANG-MEDIUM;
266
+ }
267
+ //登录logo
268
+ .login-title{
269
+ height: 5%;
270
+ }
271
+ //logo子
272
+ .login-title-chi{
273
+ padding: 1% 1% 0 0;
274
+ float: right;
275
+ color: white;
276
+ font-size: 1.8rem;
277
+ width: 16%;
278
+ }
279
+ //logo子 -图标
280
+ .login-title-chi img{
281
+ margin: 0 3% 0 8%;
282
+ width: 18px;
283
+ }
284
+ //登录主体
285
+ .loginmain{
286
+ margin: 10% 24% 8% 24%;
287
+ ///* padding: 8%; */
288
+ width: 52%;
289
+ height: 54%;
290
+ background-color: #ffffff;
291
+ border-radius: 30px;
292
+ }
293
+ //登录主体左部
294
+ .loginmain-left{
295
+ width: 50%;
296
+ height: 100%;
297
+ /* padding: 3%; */
298
+ padding: 10% 5%;
299
+ float: left;
300
+ }
301
+ //登录主体左部图片
302
+ .loginmain-left-img{
303
+ width: 100%;
304
+ height: 100%;
305
+ }
306
+ //登录主体右部
307
+ .loginmain-right{
308
+ width: 50%;
309
+ height: 100%;
310
+ padding: 4% 7% 3% 2%;
311
+ float: right;
312
+ }
313
+ //主体右部标题
314
+ .loginmain-right p{
315
+ height: 20%;
316
+ margin-top: 5%;
317
+ font-size: 3.4rem;
318
+ font-weight: normal;
319
+ font-stretch: normal;
320
+ line-height: 90px;
321
+ letter-spacing: 7px;
322
+ font-family: TRENDSTRENDS;
323
+ color: #333333;
324
+ text-align: center;
325
+ }
326
+ .login_load{
327
+ width: 100%;
328
+ height: 65%;
329
+ padding: 10% 22%;
330
+ }
331
+ .login_load img{
332
+ width: 100%;
333
+ height: 100%;
334
+ }
335
+ //主体右部输入条
336
+ .login-input{
337
+ margin-bottom: 4%;
338
+ padding: 8px 0px 0px 4px;
339
+ height: 60px;
340
+ width: 100%;
341
+ border: none;
342
+ border-bottom: #e1e1e1 solid 1px;
343
+ }
344
+ .login-input:hover{
345
+ border-bottom: #5792f0 solid 1px;
346
+ }
347
+
348
+ .login-input img{
349
+ margin-top: 20px;
350
+ width: 18px;
351
+ float: left;
352
+ vertical-align: middle;
353
+ }
354
+ .login-input input{
355
+ font-size: 1.6rem;
356
+ margin-top: 10px;
357
+ height: 35px;
358
+ width: 85%;
359
+ margin-left: 10px;
360
+ border: none;
361
+ background-color: white !important;
362
+ padding-left: 10px;
363
+ }
364
+
365
+ .login-input input:hover{
366
+ margin-top: 10px;
367
+ height:35px;
368
+ width: 85%;
369
+ margin-left: 10px;
370
+ border: none;
371
+ background-color: white !important;
372
+ padding-left: 10px;
373
+ }
374
+
375
+ .login-input input:active{
376
+
377
+ border: none;
378
+ }
379
+ .login-input-1{
380
+ padding: 15px 0px 0px 4px;
381
+ height: 60px;
382
+ width: 60%;
383
+ border: none;
384
+ float: left;
385
+ border-bottom: #e1e1e1 solid 1px;
386
+ }
387
+ .login-input-2{
388
+ float: left;
389
+ width: 40%;
390
+ height: 60px;
391
+ border: none;
392
+ padding: 4% 0 0 2%;
393
+ }
394
+ .login-input-1:hover{
395
+ border-bottom: #5792f0 solid 1px;
396
+ }
397
+
398
+ .login-input-1 img{
399
+ margin-top: 6px;
400
+ width: 18px;
401
+
402
+ float: left;
403
+ vertical-align: middle;
404
+ }
405
+ .login-input-1 input{
406
+ height: 35px;
407
+ width: 140px;
408
+ margin-left: 10px;
409
+ border: none;
410
+ background-color: white !important;
411
+ padding-left: 10px;
412
+ }
413
+ .login-input-1 input::-webkit-input-placeholder {
414
+ color: #a9a9a9;
415
+ font-size: 1.6rem;
416
+ }
417
+ .login-input input::-webkit-input-placeholder {
418
+ color: #a9a9a9;
419
+ font-size: 1.6rem;
420
+ }
421
+ .login-input-1 input:hover{
422
+ height: 35px;
423
+ width: 140px;
424
+ margin-left: 10px;
425
+ border: none;
426
+ background-color: white !important;
427
+ padding-left: 10px;
428
+ }
429
+ .login-check{
430
+ height: 40px;
431
+ float: left;
432
+ width: 75% !important;
433
+ border: none !important;
434
+ background-color: white !important;
435
+ }
436
+
437
+ .login-check-1{
438
+ height: 40px;
439
+ float: left;
440
+ width: 95% !important;
441
+ border: none !important;
442
+ background-color:#e1e1e1 !important;
443
+ letter-spacing:2px;
444
+ font-size: 18px;
445
+ font-weight: normal;
446
+ font-stretch: normal;
447
+ text-align: center;
448
+ color: #6994d7;
449
+ }
450
+ //登录按钮
451
+ .login-bt{
452
+ margin-top: 35%;
453
+ }
454
+
455
+ .login-button{
456
+ font-size: 18px;
457
+ letter-spacing: 8px;
458
+ width: 100%;
459
+ height: 40px;
460
+ color: white;
461
+ background-color: #5792f0;
462
+ border-radius: 20px;
463
+ border: solid 1px #1a72fe;
464
+ }
465
+ .login-button:hover{
466
+ background-color: #357dee;
467
+ }
468
+
469
+ .login-foot{
470
+ height: 6%;
471
+ text-align: center;
472
+ font-family: PINGFANG-REGULAR;
473
+ font-size: 2rem;
474
+ font-weight: normal;
475
+ font-stretch: normal;
476
+ line-height: 70px;
477
+ letter-spacing: 2px;
478
+ color: #ffffff;
479
+ }
480
+
481
+ }
482
+
483
+ @media screen and (max-width: 1920px) {
484
+
485
+ //登录背景
486
+ .syslogin{
487
+ overflow: hidden;
488
+ background-image: url("../../../../../static/newStyle/loginbg.gif");
489
+ background-size:100% 100%;
490
+ background-repeat:no-repeat;
491
+ font-family: PINGFANG-MEDIUM;
492
+ }
493
+ //登录logo
494
+ .login-title{
495
+ height: 5%;
496
+ }
497
+ //logo子
498
+ .login-title-chi{
499
+ padding: 1% 1% 0 0;
500
+ float: right;
501
+ color: white;
502
+ font-size: 1.8rem;
503
+ width: 15%;
504
+ }
505
+ //logo子 -图标
506
+ .login-title-chi img{
507
+ margin: 0 3% 0 7%;
508
+ width: 18px;
509
+ }
510
+ //登录主体
511
+ .loginmain{
512
+ margin: 8% 23% 6% 23%;
513
+ ///* padding: 8%; */
514
+ width: 54%;
515
+ height: 58%;
516
+ background-color: #ffffff;
517
+ border-radius: 30px;
518
+ }
519
+ //登录主体左部
520
+ .loginmain-left{
521
+ width: 50%;
522
+ height: 100%;
523
+ /* padding: 3%; */
524
+ padding: 8% 5%;
525
+ float: left;
526
+ }
527
+ //登录主体左部图片
528
+ .loginmain-left-img{
529
+ width: 100%;
530
+ height: 100%;
531
+ }
532
+ //登录主体右部
533
+ .loginmain-right{
534
+ width: 50%;
535
+ height: 100%;
536
+ padding: 4% 7% 3% 2%;
537
+ float: right;
538
+ }
539
+ //主体右部标题
540
+ .loginmain-right p{
541
+ height: 20%;
542
+ margin-top: 2%;
543
+ font-size: 3.4rem;
544
+ font-weight: normal;
545
+ font-stretch: normal;
546
+ line-height: 90px;
547
+ letter-spacing: 7px;
548
+ font-family: TRENDSTRENDS;
549
+ color: #333333;
550
+ text-align: center;
551
+ }
552
+ .login_load{
553
+ width: 100%;
554
+ height: 65%;
555
+ padding: 10% 22%;
556
+ }
557
+ .login_load img{
558
+ width: 100%;
559
+ height: 100%;
560
+ }
561
+ //主体右部输入条
562
+ .login-input{
563
+ margin-bottom: 2%;
564
+ padding: 10px 0px 0px 4px;
565
+ height: 70px;
566
+ width: 100%;
567
+ border: none;
568
+ border-bottom: #e1e1e1 solid 1px;
569
+ }
570
+ .login-input:hover{
571
+ border-bottom: #5792f0 solid 1px;
572
+ }
573
+
574
+ .login-input img{
575
+ margin-top: 20px;
576
+ width: 18px;
577
+ float: left;
578
+ vertical-align: middle;
579
+ }
580
+ .login-input input{
581
+ font-size: 1.8rem;
582
+ margin-top: 10px;
583
+ height: 35px;
584
+ width: 85%;
585
+ margin-left: 10px;
586
+ border: none;
587
+ background-color: white !important;
588
+ padding-left: 10px;
589
+ }
590
+
591
+ .login-input input:hover{
592
+ margin-top: 10px;
593
+ height: 35px;
594
+ width: 85%;
595
+ margin-left: 10px;
596
+ border: none;
597
+ background-color: white !important;
598
+ padding-left: 10px;
599
+ }
600
+ .login-input-1{
601
+ padding: 20px 0px 0px 4px;
602
+ height: 70px;
603
+ width: 60%;
604
+ border: none;
605
+ float: left;
606
+ border-bottom: #e1e1e1 solid 1px;
607
+ }
608
+ .login-input-2{
609
+ float: left;
610
+ width: 40%;
611
+ height: 70px;
612
+ border: none;
613
+ padding: 4% 0 0 2%;
614
+ }
615
+ .login-input-1:hover{
616
+ border-bottom: #5792f0 solid 1px;
617
+ }
618
+
619
+ .login-input-1 img{
620
+ margin-top: 8px;
621
+ width: 18px;
622
+
623
+ float: left;
624
+ vertical-align: middle;
625
+ }
626
+ .login-input-1 input{
627
+ height: 35px;
628
+ width: 140px;
629
+ margin-left: 10px;
630
+ border: none;
631
+ background-color: white !important;
632
+ padding-left: 10px;
633
+ }
634
+ .login-input-1 input::-webkit-input-placeholder {
635
+ color: #a9a9a9;
636
+ font-size: 1.6rem;
637
+ }
638
+ .login-input input::-webkit-input-placeholder {
639
+ color: #a9a9a9;
640
+ font-size: 1.6rem;
641
+ }
642
+ .login-input-1 input:hover{
643
+ height: 35px;
644
+ width: 140px;
645
+ margin-left: 10px;
646
+ border: none;
647
+ background-color: white !important;
648
+ padding-left: 10px;
649
+ }
650
+ .login-check{
651
+ height: 40px;
652
+ float: left;
653
+ width: 75% !important;
654
+ border: none !important;
655
+ background-color: white !important;
656
+ }
657
+
658
+ .login-check-1{
659
+ height: 40px;
660
+ float: left;
661
+ width: 95% !important;
662
+ border: none !important;
663
+ background-color:#e1e1e1 !important;
664
+ letter-spacing:2px;
665
+ font-size: 18px;
666
+ font-weight: normal;
667
+ font-stretch: normal;
668
+ text-align: center;
669
+ color: #6994d7;
670
+ }
671
+ //登录按钮
672
+ .login-bt{
673
+ margin-top: 30%;
674
+ }
675
+
676
+ .login-button{
677
+ font-size: 18px;
678
+ letter-spacing: 8px;
679
+ width: 100%;
680
+ height: 40px;
681
+ color: white;
682
+ background-color: #5792f0;
683
+ border-radius: 20px;
684
+ border: solid 1px #1a72fe;
685
+ }
686
+ .login-button:hover{
687
+ background-color: #357dee;
688
+ }
689
+
690
+ .login-foot{
691
+ height: 4%;
692
+ text-align: center;
693
+ font-family: PINGFANG-REGULAR;
694
+ font-size: 2rem;
695
+ font-weight: normal;
696
+ font-stretch: normal;
697
+ line-height: 70px;
698
+ color: #ffffff;
699
+ }
700
+
701
+ }
702
+
703
+ @media screen and (max-width: 1600px) {
704
+
705
+ //登录背景
706
+ .syslogin{
707
+ overflow: hidden;
708
+ background-image: url("../../../../../static/newStyle/loginbg.gif");
709
+ background-size:100% 100%;
710
+ background-repeat:no-repeat;
711
+ font-family: PINGFANG-MEDIUM;
712
+ }
713
+ //登录logo
714
+ .login-title{
715
+ height: 5%;
716
+ }
717
+ //logo子
718
+ .login-title-chi{
719
+ padding: 1% 1% 0 0;
720
+ float: right;
721
+ color: white;
722
+ font-size: 1.8rem;
723
+ width: 15%;
724
+ }
725
+ //logo子 -图标
726
+ .login-title-chi img{
727
+ margin: 0 3% 0 7%;
728
+ width: 18px;
729
+ }
730
+ //登录主体
731
+ .loginmain{
732
+ margin: 8% 23% 6% 23%;
733
+ ///* padding: 8%; */
734
+ width: 54%;
735
+ height: 58%;
736
+ background-color: #ffffff;
737
+ border-radius: 30px;
738
+ }
739
+ //登录主体左部
740
+ .loginmain-left{
741
+ width: 50%;
742
+ height: 100%;
743
+ /* padding: 3%; */
744
+ padding: 8% 5%;
745
+ float: left;
746
+ }
747
+ //登录主体左部图片
748
+ .loginmain-left-img{
749
+ width: 100%;
750
+ height: 100%;
751
+ }
752
+ //登录主体右部
753
+ .loginmain-right{
754
+ width: 50%;
755
+ height: 100%;
756
+ padding: 4% 7% 3% 2%;
757
+ float: right;
758
+ }
759
+ //主体右部标题
760
+ .loginmain-right p{
761
+ height: 20%;
762
+ margin-top: 2%;
763
+ font-size: 3.4rem;
764
+ font-weight: normal;
765
+ font-stretch: normal;
766
+ line-height: 90px;
767
+ letter-spacing: 7px;
768
+ font-family: TRENDSTRENDS;
769
+ color: #333333;
770
+ text-align: center;
771
+ }
772
+ .login_load{
773
+ width: 100%;
774
+ height: 65%;
775
+ padding: 10% 22%;
776
+ }
777
+ .login_load img{
778
+ width: 100%;
779
+ height: 100%;
780
+ }
781
+ //主体右部输入条
782
+ .login-input{
783
+ margin-bottom: 2%;
784
+ padding: 10px 0px 0px 4px;
785
+ height: 70px;
786
+ width: 100%;
787
+ border: none;
788
+ border-bottom: #e1e1e1 solid 1px;
789
+ }
790
+ .login-input:hover{
791
+ border-bottom: #5792f0 solid 1px;
792
+ }
793
+
794
+ .login-input img{
795
+ margin-top: 20px;
796
+ width: 18px;
797
+ float: left;
798
+ vertical-align: middle;
799
+ }
800
+ .login-input input{
801
+ font-size: 1.8rem;
802
+ margin-top: 10px;
803
+ height: 35px;
804
+ width: 85%;
805
+ margin-left: 10px;
806
+ border: none;
807
+ background-color: white !important;
808
+ padding-left: 10px;
809
+ }
810
+
811
+ .login-input input:hover{
812
+ margin-top: 10px;
813
+ height: 35px;
814
+ width: 85%;
815
+ margin-left: 10px;
816
+ border: none;
817
+ background-color: white !important;
818
+ padding-left: 10px;
819
+ }
820
+ .login-input-1{
821
+ padding: 20px 0px 0px 4px;
822
+ height: 70px;
823
+ width: 60%;
824
+ border: none;
825
+ float: left;
826
+ border-bottom: #e1e1e1 solid 1px;
827
+ }
828
+ .login-input-2{
829
+ float: left;
830
+ width: 40%;
831
+ height: 70px;
832
+ border: none;
833
+ padding: 4% 0 0 2%;
834
+ }
835
+ .login-input-1:hover{
836
+ border-bottom: #5792f0 solid 1px;
837
+ }
838
+
839
+ .login-input-1 img{
840
+ margin-top: 8px;
841
+ width: 18px;
842
+
843
+ float: left;
844
+ vertical-align: middle;
845
+ }
846
+ .login-input-1 input{
847
+ height: 35px;
848
+ width: 140px;
849
+ margin-left: 10px;
850
+ border: none;
851
+ background-color: white !important;
852
+ padding-left: 10px;
853
+ }
854
+ .login-input-1 input::-webkit-input-placeholder {
855
+ color: #a9a9a9;
856
+ font-size: 1.6rem;
857
+ }
858
+ .login-input input::-webkit-input-placeholder {
859
+ color: #a9a9a9;
860
+ font-size: 1.6rem;
861
+ }
862
+ .login-input-1 input:hover{
863
+ height: 35px;
864
+ width: 140px;
865
+ margin-left: 10px;
866
+ border: none;
867
+ background-color: white !important;
868
+ padding-left: 10px;
869
+ }
870
+ .login-check{
871
+ height: 40px;
872
+ float: left;
873
+ width: 75% !important;
874
+ border: none !important;
875
+ background-color: white !important;
876
+ }
877
+
878
+ .login-check-1{
879
+ height: 40px;
880
+ float: left;
881
+ width: 95% !important;
882
+ border: none !important;
883
+ background-color:#e1e1e1 !important;
884
+ letter-spacing:2px;
885
+ font-size: 18px;
886
+ font-weight: normal;
887
+ font-stretch: normal;
888
+ text-align: center;
889
+ color: #6994d7;
890
+ }
891
+ //登录按钮
892
+ .login-bt{
893
+ margin-top: 30%;
894
+ }
895
+
896
+ .login-button{
897
+ font-size: 18px;
898
+ letter-spacing: 8px;
899
+ width: 100%;
900
+ height: 40px;
901
+ color: white;
902
+ background-color: #5792f0;
903
+ border-radius: 20px;
904
+ border: solid 1px #1a72fe;
905
+ }
906
+ .login-button:hover{
907
+ background-color: #357dee;
908
+ }
909
+
910
+ .login-foot{
911
+ height: 4%;
912
+ text-align: center;
913
+ font-family: PINGFANG-REGULAR;
914
+ font-size: 2rem;
915
+ font-weight: normal;
916
+ font-stretch: normal;
917
+ line-height: 70px;
918
+ color: #ffffff;
919
+ }
920
+
921
+ }
922
+ /*分辨率@1366*768*/
923
+ @media screen and (max-width: 1366px) {
924
+
925
+ //登录背景
926
+ .syslogin{
927
+ overflow: hidden;
928
+ background-image: url("../../../../../static/newStyle/loginbg1366.gif");
929
+ background-size:100% 100%;
930
+ background-repeat:no-repeat;
931
+ font-family: PINGFANG-MEDIUM;
932
+ }
933
+ //登录logo
934
+ .login-title{
935
+ height: 5%;
936
+ }
937
+ //logo子
938
+ .login-title-chi{
939
+ padding: 1% 1% 0 0;
940
+ float: right;
941
+ color: white;
942
+ font-size: 1.6rem;
943
+ width: 20%;
944
+ }
945
+ //logo子 -图标
946
+ .login-title-chi img{
947
+ margin: 0 3% 0 10%;
948
+ width: 18px;
949
+ }
950
+ //登录主体
951
+ .loginmain{
952
+ margin: 7% 24% 5% 24%;
953
+ ///* padding: 8%; */
954
+ width: 52%;
955
+ height: 62%;
956
+ background-color: #ffffff;
957
+ border-radius: 30px;
958
+ }
959
+ //登录主体左部
960
+ .loginmain-left{
961
+ width: 50%;
962
+ height: 100%;
963
+ /* padding: 3%; */
964
+ padding: 8% 6%;
965
+ float: left;
966
+ }
967
+ //登录主体左部图片
968
+ .loginmain-left-img{
969
+ width: 100%;
970
+ height: 100%;
971
+ }
972
+ //登录主体右部
973
+ .loginmain-right{
974
+ width: 50%;
975
+ height: 100%;
976
+ padding: 3% 6% 3% 2%;
977
+ float: right;
978
+ }
979
+ //主体右部标题
980
+ .loginmain-right p{
981
+ height: 20%;
982
+ margin-top: 4%;
983
+ font-size: 26px;
984
+ font-weight: normal;
985
+ font-stretch: normal;
986
+ line-height: 90px;
987
+ letter-spacing: 7px;
988
+ font-family: TRENDSTRENDS;
989
+ color: #333333;
990
+ text-align: center;
991
+ }
992
+ .login_load{
993
+ width: 100%;
994
+ height: 65%;
995
+ padding: 10% 22%;
996
+ }
997
+ .login_load img{
998
+ width: 100%;
999
+ height: 100%;
1000
+ }
1001
+ //主体右部输入条
1002
+ .login-input{
1003
+ padding: 10px 0px 0px 4px;
1004
+ height: 60px;
1005
+ width: 100%;
1006
+ border: none;
1007
+ border-bottom: #e1e1e1 solid 1px;
1008
+ }
1009
+ .login-input:hover{
1010
+ border-bottom: #5792f0 solid 1px;
1011
+ }
1012
+
1013
+ .login-input img{
1014
+ margin-top: 14px;
1015
+ width: 18px;
1016
+ float: left;
1017
+ vertical-align: middle;
1018
+ }
1019
+ .login-input input{
1020
+ font-size: 1.6rem;
1021
+ margin-top: 10px;
1022
+ height: 30px;
1023
+ width: 85%;
1024
+ margin-left: 10px;
1025
+ border: none;
1026
+ background-color: white !important;
1027
+ padding-left: 10px;
1028
+ }
1029
+
1030
+ .login-input input:hover{
1031
+ margin-top: 10px;
1032
+ height: 30px;
1033
+ width: 85%;
1034
+ margin-left: 10px;
1035
+ border: none;
1036
+ background-color: white !important;
1037
+ padding-left: 10px;
1038
+ }
1039
+ .login-input-1{
1040
+ padding: 20px 0px 0px 4px;
1041
+ height: 60px;
1042
+ width: 60%;
1043
+ border: none;
1044
+ float: left;
1045
+ border-bottom: #e1e1e1 solid 1px;
1046
+ }
1047
+ .login-input-2{
1048
+ float: left;
1049
+ width: 40%;
1050
+ height: 60px;
1051
+ border: none;
1052
+ padding: 4% 0 0 2%;
1053
+ }
1054
+ .login-input-1:hover{
1055
+ border-bottom: #5792f0 solid 1px;
1056
+ }
1057
+
1058
+ .login-input-1 img{
1059
+ margin-top: 4px;
1060
+ width: 18px;
1061
+
1062
+ float: left;
1063
+ vertical-align: middle;
1064
+ }
1065
+ .login-input-1 input{
1066
+ height: 30px;
1067
+ width: 140px;
1068
+ margin-left: 10px;
1069
+ border: none;
1070
+ background-color: white !important;
1071
+ padding-left: 10px;
1072
+ }
1073
+ .login-input-1 input::-webkit-input-placeholder {
1074
+ color: #a9a9a9;
1075
+ font-size: 1.6rem;
1076
+ }
1077
+ .login-input input::-webkit-input-placeholder {
1078
+ color: #a9a9a9;
1079
+ font-size: 1.6rem;
1080
+ }
1081
+ .login-input-1 input:hover{
1082
+ height: 30px;
1083
+ width: 140px;
1084
+ margin-left: 10px;
1085
+ border: none;
1086
+ background-color: white !important;
1087
+ padding-left: 10px;
1088
+ }
1089
+ .login-check{
1090
+ height: 40px;
1091
+ float: left;
1092
+ width: 75% !important;
1093
+ border: none !important;
1094
+ background-color: white !important;
1095
+ }
1096
+
1097
+ .login-check-1{
1098
+ height: 40px;
1099
+ float: left;
1100
+ width: 95% !important;
1101
+ border: none !important;
1102
+ background-color:#e1e1e1 !important;
1103
+ letter-spacing:2px;
1104
+ font-size: 18px;
1105
+ font-weight: normal;
1106
+ font-stretch: normal;
1107
+ text-align: center;
1108
+ color: #6994d7;
1109
+ }
1110
+ //登录按钮
1111
+ .login-bt{
1112
+ margin-top: 30%;
1113
+ }
1114
+
1115
+ .login-button{
1116
+ font-size: 18px;
1117
+ letter-spacing: 8px;
1118
+ width: 100%;
1119
+ height: 40px;
1120
+ color: white;
1121
+ background-color: #5792f0;
1122
+ border-radius: 20px;
1123
+ border: solid 1px #1a72fe;
1124
+ }
1125
+ .login-button:hover{
1126
+ background-color: #357dee;
1127
+ }
1128
+
1129
+ .login-foot{
1130
+ height: 6%;
1131
+ text-align: center;
1132
+ font-family: PINGFANG-REGULAR;
1133
+ font-size: 1.8rem;
1134
+ font-weight: normal;
1135
+ font-stretch: normal;
1136
+ //line-height: 70px;
1137
+ letter-spacing: 2px;
1138
+ color: #ffffff;
1139
+ }
1140
+
1141
+ }
1142
+
1143
+
1144
+
1145
+ /*分辨率@1280*720*/
1146
+ @media screen and (max-width: 1280px) {
1147
+
1148
+ //登录背景
1149
+ .syslogin{
1150
+ overflow: hidden;
1151
+ background-image: url("../../../../../static/newStyle/loginbg1280.gif");
1152
+ background-size:100% 100%;
1153
+ background-repeat:no-repeat;
1154
+ font-family: PINGFANG-MEDIUM;
1155
+ }
1156
+ //登录logo
1157
+ .login-title{
1158
+ height: 5%;
1159
+ }
1160
+ //logo子
1161
+ .login-title-chi{
1162
+ padding: 1% 1% 0 0;
1163
+ float: right;
1164
+ color: white;
1165
+ font-size: 1.6rem;
1166
+ width: 20%;
1167
+ }
1168
+ //logo子 -图标
1169
+ .login-title-chi img{
1170
+ margin: 0 3% 0 10%;
1171
+ width: 18px;
1172
+ }
1173
+ //登录主体
1174
+ .loginmain{
1175
+ margin: 7% 24% 5% 24%;
1176
+ ///* padding: 8%; */
1177
+ width: 52%;
1178
+ height: 62%;
1179
+ background-color: #ffffff;
1180
+ border-radius: 30px;
1181
+ }
1182
+ //登录主体左部
1183
+ .loginmain-left{
1184
+ width: 50%;
1185
+ height: 100%;
1186
+ /* padding: 3%; */
1187
+ padding: 8% 6%;
1188
+ float: left;
1189
+ }
1190
+ //登录主体左部图片
1191
+ .loginmain-left-img{
1192
+ width: 100%;
1193
+ height: 100%;
1194
+ }
1195
+ //登录主体右部
1196
+ .loginmain-right{
1197
+ width: 50%;
1198
+ height: 100%;
1199
+ padding: 3% 6% 3% 2%;
1200
+ float: right;
1201
+ }
1202
+ //主体右部标题
1203
+ .loginmain-right p{
1204
+ height: 20%;
1205
+ margin-top: 4%;
1206
+ font-size: 26px;
1207
+ font-weight: normal;
1208
+ font-stretch: normal;
1209
+ line-height: 90px;
1210
+ letter-spacing: 7px;
1211
+ font-family: TRENDSTRENDS;
1212
+ color: #333333;
1213
+ text-align: center;
1214
+ }
1215
+ .login_load{
1216
+ width: 100%;
1217
+ height: 65%;
1218
+ padding: 10% 22%;
1219
+ }
1220
+ .login_load img{
1221
+ width: 100%;
1222
+ height: 100%;
1223
+ }
1224
+ //主体右部输入条
1225
+ .login-input{
1226
+ padding: 10px 0px 0px 4px;
1227
+ height: 60px;
1228
+ width: 100%;
1229
+ border: none;
1230
+ border-bottom: #e1e1e1 solid 1px;
1231
+ }
1232
+ .login-input:hover{
1233
+ border-bottom: #5792f0 solid 1px;
1234
+ }
1235
+
1236
+ .login-input img{
1237
+ margin-top: 14px;
1238
+ width: 18px;
1239
+ float: left;
1240
+ vertical-align: middle;
1241
+ }
1242
+ .login-input input{
1243
+ font-size: 1.6rem;
1244
+ margin-top: 10px;
1245
+ height: 30px;
1246
+ width: 85%;
1247
+ margin-left: 10px;
1248
+ border: none;
1249
+ background-color: white !important;
1250
+ padding-left: 10px;
1251
+ }
1252
+
1253
+ .login-input input:hover{
1254
+ margin-top: 10px;
1255
+ height: 30px;
1256
+ width: 85%;
1257
+ margin-left: 10px;
1258
+ border: none;
1259
+ background-color: white !important;
1260
+ padding-left: 10px;
1261
+ }
1262
+ .login-input-1{
1263
+ padding: 10px 0px 0px 4px;
1264
+ height: 60px;
1265
+ width: 60%;
1266
+ border: none;
1267
+ float: left;
1268
+ border-bottom: #e1e1e1 solid 1px;
1269
+ }
1270
+ .login-input-2{
1271
+ float: left;
1272
+ width: 40%;
1273
+ height: 60px;
1274
+ border: none;
1275
+ padding: 4% 0 0 2%;
1276
+ }
1277
+ .login-input-1:hover{
1278
+ border-bottom: #5792f0 solid 1px;
1279
+ }
1280
+
1281
+ .login-input-1 img{
1282
+ margin-top: 14px;
1283
+ width: 18px;
1284
+
1285
+ float: left;
1286
+ vertical-align: middle;
1287
+ }
1288
+ .login-input-1 input{
1289
+ height: 40px;
1290
+ width: 140px;
1291
+ margin-left: 10px;
1292
+ border: none;
1293
+ background-color: white !important;
1294
+ padding-left: 10px;
1295
+ }
1296
+ .login-input-1 input::-webkit-input-placeholder {
1297
+ color: #a9a9a9;
1298
+ font-size: 1.6rem;
1299
+ }
1300
+ .login-input input::-webkit-input-placeholder {
1301
+ color: #a9a9a9;
1302
+ font-size: 1.6rem;
1303
+ }
1304
+ .login-input-1 input:hover{
1305
+ height: 40px;
1306
+ width: 140px;
1307
+ margin-left: 10px;
1308
+ border: none;
1309
+ background-color: white !important;
1310
+ padding-left: 10px;
1311
+ }
1312
+ .login-check{
1313
+ height: 40px;
1314
+ float: left;
1315
+ width: 75% !important;
1316
+ border: none !important;
1317
+ background-color: white !important;
1318
+ }
1319
+
1320
+ .login-check-1{
1321
+ height: 40px;
1322
+ float: left;
1323
+ width: 95% !important;
1324
+ border: none !important;
1325
+ background-color:#e1e1e1 !important;
1326
+ letter-spacing:2px;
1327
+ font-size: 18px;
1328
+ font-weight: normal;
1329
+ font-stretch: normal;
1330
+ text-align: center;
1331
+ color: #6994d7;
1332
+ }
1333
+ //登录按钮
1334
+ .login-bt{
1335
+ margin-top: 35%;
1336
+ }
1337
+
1338
+ .login-button{
1339
+ font-size: 18px;
1340
+ letter-spacing: 8px;
1341
+ width: 100%;
1342
+ height: 40px;
1343
+ color: white;
1344
+ background-color: #5792f0;
1345
+ border-radius: 20px;
1346
+ border: solid 1px #1a72fe;
1347
+ }
1348
+ .login-button:hover{
1349
+ background-color: #357dee;
1350
+ }
1351
+
1352
+ .login-foot{
1353
+ height: 6%;
1354
+ text-align: center;
1355
+ font-family: PINGFANG-REGULAR;
1356
+ font-size: 1.8rem;
1357
+ font-weight: normal;
1358
+ font-stretch: normal;
1359
+ //line-height: 70px;
1360
+ letter-spacing: 2px;
1361
+ color: #ffffff;
1362
+ }
1363
+
1364
+ }
1365
+
1366
+
1367
+ /*分辨率@1024*/
1368
+ @media screen and (max-width: 1024px) {
1369
+
1370
+ //登录背景
1371
+ .syslogin{
1372
+ overflow: hidden;
1373
+ background-image: url("../../../../../static/newStyle/loginbg1280.gif");
1374
+ background-size:100% 100%;
1375
+ background-repeat:no-repeat;
1376
+ font-family: PINGFANG-MEDIUM;
1377
+ }
1378
+ //登录logo
1379
+ .login-title{
1380
+ height: 5%;
1381
+ }
1382
+ //logo子
1383
+ .login-title-chi{
1384
+ padding: 1% 1% 0 0;
1385
+ float: right;
1386
+ color: white;
1387
+ font-size: 1.4rem;
1388
+ width: 30%;
1389
+ }
1390
+ //logo子 -图标
1391
+ .login-title-chi img{
1392
+ margin: 0 3% 0 10%;
1393
+ width: 14px;
1394
+ }
1395
+ //登录主体
1396
+ .loginmain{
1397
+ margin: 11% 20% 5% 20%;
1398
+ ///* padding: 8%; */
1399
+ width: 60%;
1400
+ height: 57%;
1401
+ background-color: #ffffff;
1402
+ border-radius: 25px;
1403
+ }
1404
+ //登录主体左部
1405
+ .loginmain-left{
1406
+ width: 50%;
1407
+ height: 100%;
1408
+ /* padding: 3%; */
1409
+ padding: 10% 6%;
1410
+ float: left;
1411
+ }
1412
+ //登录主体左部图片
1413
+ .loginmain-left-img{
1414
+ width: 100%;
1415
+ height: 100%;
1416
+ }
1417
+ //登录主体右部
1418
+ .loginmain-right{
1419
+ width: 50%;
1420
+ height: 100%;
1421
+ padding: 1% 6% 1% 1%;
1422
+ float: right;
1423
+ }
1424
+ //主体右部标题
1425
+ .loginmain-right p{
1426
+ height: 20%;
1427
+ margin-top: 4%;
1428
+ font-size: 2rem;
1429
+ font-weight: normal;
1430
+ font-stretch: normal;
1431
+ line-height: 60px;
1432
+ letter-spacing: 3px;
1433
+ font-family: TRENDSTRENDS;
1434
+ color: #333333;
1435
+ text-align: center;
1436
+ }
1437
+ .login_load{
1438
+ width: 100%;
1439
+ height: 65%;
1440
+ padding: 10% 22%;
1441
+ }
1442
+ .login_load img{
1443
+ width: 100%;
1444
+ height: 100%;
1445
+ }
1446
+ //主体右部输入条
1447
+ .login-input{
1448
+ padding: 8px 0px 0px 4px;
1449
+ height: 50px;
1450
+ width: 100%;
1451
+ border: none;
1452
+ border-bottom: #e1e1e1 solid 1px;
1453
+ }
1454
+ .login-input:hover{
1455
+ border-bottom: #5792f0 solid 1px;
1456
+ }
1457
+
1458
+ .login-input img{
1459
+ margin-top: 14px;
1460
+ width: 18px;
1461
+ float: left;
1462
+ vertical-align: middle;
1463
+ }
1464
+ .login-input input{
1465
+ font-size: 1.4rem;
1466
+ margin-top: 10px;
1467
+ height: 30px;
1468
+ width: 85%;
1469
+ margin-left: 5px;
1470
+ border: none;
1471
+ background-color: white !important;
1472
+ padding-left: 5px;
1473
+ }
1474
+
1475
+ .login-input input:hover{
1476
+ margin-top: 10px;
1477
+ height: 30px;
1478
+ width: 85%;
1479
+ margin-left: 5px;
1480
+ border: none;
1481
+ background-color: white !important;
1482
+ padding-left: 5px;
1483
+ }
1484
+ .login-input-1{
1485
+ padding: 10px 0px 0px 4px;
1486
+ height: 60px;
1487
+ width: 60%;
1488
+ border: none;
1489
+ float: left;
1490
+ border-bottom: #e1e1e1 solid 1px;
1491
+ }
1492
+ .login-input-2{
1493
+ float: left;
1494
+ width: 40%;
1495
+ height: 60px;
1496
+ border: none;
1497
+ padding: 4% 0 0 2%;
1498
+ }
1499
+ .login-input-1:hover{
1500
+ border-bottom: #5792f0 solid 1px;
1501
+ }
1502
+
1503
+ .login-input-1 img{
1504
+ margin-top: 14px;
1505
+ width: 18px;
1506
+
1507
+ float: left;
1508
+ vertical-align: middle;
1509
+ }
1510
+ .login-input-1 input{
1511
+ height: 40px;
1512
+ width: 140px;
1513
+ margin-left: 5px;
1514
+ border: none;
1515
+ background-color: white !important;
1516
+ padding-left: 5px;
1517
+ }
1518
+ .login-input-1 input::-webkit-input-placeholder {
1519
+ color: #a9a9a9;
1520
+ font-size: 1.4rem;
1521
+ }
1522
+ .login-input input::-webkit-input-placeholder {
1523
+ color: #a9a9a9;
1524
+ font-size: 1.4rem;
1525
+ }
1526
+ .login-input-1 input:hover{
1527
+ height: 40px;
1528
+ width: 140px;
1529
+ margin-left: 5px;
1530
+ border: none;
1531
+ background-color: white !important;
1532
+ padding-left: 5px;
1533
+ }
1534
+ .login-check{
1535
+ height: 40px;
1536
+ float: left;
1537
+ width: 75% !important;
1538
+ border: none !important;
1539
+ background-color: white !important;
1540
+ }
1541
+
1542
+ .login-check-1{
1543
+ height: 40px;
1544
+ float: left;
1545
+ width: 95% !important;
1546
+ border: none !important;
1547
+ background-color:#e1e1e1 !important;
1548
+ letter-spacing:2px;
1549
+ font-size: 1.4rem;
1550
+ font-weight: normal;
1551
+ font-stretch: normal;
1552
+ text-align: center;
1553
+ color: #6994d7;
1554
+ }
1555
+ //登录按钮
1556
+ .login-bt{
1557
+ margin-top: 40%;
1558
+ }
1559
+
1560
+ .login-button{
1561
+ font-size: 1.4rem;
1562
+ letter-spacing: 8px;
1563
+ width: 100%;
1564
+ height: 30px;
1565
+ color: white;
1566
+ background-color: #5792f0;
1567
+ border-radius: 15px;
1568
+ border: solid 1px #1a72fe;
1569
+ }
1570
+ .login-button:hover{
1571
+ background-color: #357dee;
1572
+ }
1573
+
1574
+ .login-foot{
1575
+ height: 6%;
1576
+ text-align: center;
1577
+ font-family: PINGFANG-REGULAR;
1578
+ font-size: 1.6rem;
1579
+ font-weight: normal;
1580
+ font-stretch: normal;
1581
+ //line-height: 70px;
1582
+ letter-spacing: 2px;
1583
+ color: #ffffff;
1584
+ }
1585
+
1586
+ }