|
|
@@ -59,6 +59,83 @@ div {
|
|
59
|
59
|
height: 290px;
|
|
60
|
60
|
background-size: cover;
|
|
61
|
61
|
}
|
|
|
62
|
+.topRec_List dl,
|
|
|
63
|
+.maquee {
|
|
|
64
|
+ width: 90%;
|
|
|
65
|
+ overflow: hidden;
|
|
|
66
|
+ margin: 0 auto;
|
|
|
67
|
+ color: #f0ece2
|
|
|
68
|
+}
|
|
|
69
|
+
|
|
|
70
|
+.topRec_List dd {
|
|
|
71
|
+ float: left;
|
|
|
72
|
+ text-align: left;
|
|
|
73
|
+ color: #fff;
|
|
|
74
|
+ font-size: 14px;
|
|
|
75
|
+ background-color: #075871;
|
|
|
76
|
+ padding-left: 20px;
|
|
|
77
|
+ box-sizing: border-box;
|
|
|
78
|
+}
|
|
|
79
|
+
|
|
|
80
|
+.topRec_List dl dd:nth-child(1) {
|
|
|
81
|
+ width: 30%;
|
|
|
82
|
+ height: 40px;
|
|
|
83
|
+ line-height: 40px;
|
|
|
84
|
+}
|
|
|
85
|
+
|
|
|
86
|
+.topRec_List dl dd:nth-child(2) {
|
|
|
87
|
+ width: 40%;
|
|
|
88
|
+ height: 40px;
|
|
|
89
|
+ line-height: 40px;
|
|
|
90
|
+}
|
|
|
91
|
+
|
|
|
92
|
+.topRec_List dl dd:nth-child(3) {
|
|
|
93
|
+ width: 30%;
|
|
|
94
|
+ height: 40px;
|
|
|
95
|
+ line-height: 40px;
|
|
|
96
|
+}
|
|
|
97
|
+
|
|
|
98
|
+.topRec_List .maquee {
|
|
|
99
|
+ height: 165px;
|
|
|
100
|
+ /* background-color: #005EFC; */
|
|
|
101
|
+}
|
|
|
102
|
+
|
|
|
103
|
+.topRec_List ul {
|
|
|
104
|
+ width: 100%;
|
|
|
105
|
+ /* height: 195px; */
|
|
|
106
|
+}
|
|
|
107
|
+
|
|
|
108
|
+.topRec_List li {
|
|
|
109
|
+ width: 100%;
|
|
|
110
|
+ height: 40px;
|
|
|
111
|
+ line-height: 40px;
|
|
|
112
|
+ text-align: left;
|
|
|
113
|
+ font-size: 12px;
|
|
|
114
|
+ color: #fff;
|
|
|
115
|
+ border-bottom: 1px solid #536d7f;
|
|
|
116
|
+}
|
|
|
117
|
+
|
|
|
118
|
+.topRec_List li div {
|
|
|
119
|
+ float: left;
|
|
|
120
|
+ padding-left: 20px;
|
|
|
121
|
+ box-sizing: border-box;
|
|
|
122
|
+}
|
|
|
123
|
+
|
|
|
124
|
+.topRec_List li div img {
|
|
|
125
|
+ vertical-align: middle;
|
|
|
126
|
+}
|
|
|
127
|
+
|
|
|
128
|
+.topRec_List li div:nth-child(1) {
|
|
|
129
|
+ width: 30%;
|
|
|
130
|
+}
|
|
|
131
|
+
|
|
|
132
|
+.topRec_List li div:nth-child(2) {
|
|
|
133
|
+ width: 40%;
|
|
|
134
|
+}
|
|
|
135
|
+
|
|
|
136
|
+.topRec_List li div:nth-child(3) {
|
|
|
137
|
+ width: 30%;
|
|
|
138
|
+}
|
|
62
|
139
|
|
|
63
|
140
|
* {
|
|
64
|
141
|
margin: 0px;
|
|
|
@@ -250,17 +327,25 @@ body {
|
|
250
|
327
|
.map {
|
|
251
|
328
|
background-image: url(../images/map.png);
|
|
252
|
329
|
background-repeat: no-repeat;
|
|
253
|
|
- background-size: 100% 100%;
|
|
254
|
|
- /* background-color: #F0ECE2; */
|
|
|
330
|
+ background-size: 0 0;
|
|
|
331
|
+ background-position: center;
|
|
255
|
332
|
margin-left: -33px;
|
|
256
|
333
|
position: relative;
|
|
|
334
|
+ animation: myfirst 2.5s;
|
|
|
335
|
+ animation-fill-mode: forwards;
|
|
|
336
|
+}
|
|
|
337
|
+@keyframes myfirst {
|
|
|
338
|
+ 0% {
|
|
|
339
|
+ background-size: 0 0;
|
|
|
340
|
+ }
|
|
|
341
|
+ 100% {
|
|
|
342
|
+ background-size: 100% 100%;
|
|
|
343
|
+ animation-fill-mode:forwards ;
|
|
|
344
|
+ }
|
|
257
|
345
|
}
|
|
258
|
|
-
|
|
259
|
346
|
.lzmap {
|
|
260
|
347
|
background-image: url(../images/map/linzhou.png);
|
|
261
|
348
|
background-size: 100% 100%;
|
|
262
|
|
- /* width: 219px; */
|
|
263
|
|
- /* height: 440px; */
|
|
264
|
349
|
width: 36%;
|
|
265
|
350
|
height: 61%;
|
|
266
|
351
|
opacity: 0;
|
|
|
@@ -272,7 +357,11 @@ body {
|
|
272
|
357
|
|
|
273
|
358
|
.lzmap:hover {
|
|
274
|
359
|
background-image: url(../images/map_active/linzhou.png);
|
|
275
|
|
- background-size: 100% 100%;
|
|
|
360
|
+ background-size: 0 0;
|
|
|
361
|
+ background-repeat: no-repeat;
|
|
|
362
|
+ background-position: center;
|
|
|
363
|
+ animation: myfirst1 1s;
|
|
|
364
|
+ animation-fill-mode: forwards;
|
|
276
|
365
|
width: 36%;
|
|
277
|
366
|
height: 61%;
|
|
278
|
367
|
opacity: 1;
|
|
|
@@ -282,7 +371,14 @@ body {
|
|
282
|
371
|
cursor: pointer;
|
|
283
|
372
|
color: rgba(255, 255, 255, 0);
|
|
284
|
373
|
}
|
|
285
|
|
-
|
|
|
374
|
+@keyframes myfirst1 {
|
|
|
375
|
+ 0% {
|
|
|
376
|
+ background-size: 0 0;
|
|
|
377
|
+ }
|
|
|
378
|
+ 100% {
|
|
|
379
|
+ background-size: 100% 100%;
|
|
|
380
|
+ }
|
|
|
381
|
+}
|
|
286
|
382
|
.aymap {
|
|
287
|
383
|
background-image: url(../images/map/anyang.png);
|
|
288
|
384
|
background-size: 100% 100%;
|
|
|
@@ -297,7 +393,11 @@ body {
|
|
297
|
393
|
|
|
298
|
394
|
.aymap:hover {
|
|
299
|
395
|
background-image: url(../images/map_active/anyang.png);
|
|
300
|
|
- background-size: 100% 100%;
|
|
|
396
|
+ background-size: 0 0;
|
|
|
397
|
+ background-position: center;
|
|
|
398
|
+ background-repeat: no-repeat;
|
|
|
399
|
+ animation: myfirst2 1s;
|
|
|
400
|
+ animation-fill-mode: forwards;
|
|
301
|
401
|
width: 62.4%;
|
|
302
|
402
|
height: 36.7%;
|
|
303
|
403
|
opacity: 1;
|
|
|
@@ -307,7 +407,14 @@ body {
|
|
307
|
407
|
cursor: pointer;
|
|
308
|
408
|
color: rgba(255, 255, 255, 0);
|
|
309
|
409
|
}
|
|
310
|
|
-
|
|
|
410
|
+@keyframes myfirst2 {
|
|
|
411
|
+ 0% {
|
|
|
412
|
+ background-size: 0 0;
|
|
|
413
|
+ }
|
|
|
414
|
+ 100% {
|
|
|
415
|
+ background-size: 100% 100%;
|
|
|
416
|
+ }
|
|
|
417
|
+}
|
|
311
|
418
|
.lamap {
|
|
312
|
419
|
background-image: url(../images/map/longan.png);
|
|
313
|
420
|
background-size: 100% 100%;
|
|
|
@@ -324,9 +431,11 @@ body {
|
|
324
|
431
|
|
|
325
|
432
|
.lamap:hover {
|
|
326
|
433
|
background-image: url(../images/map_active/longan.png);
|
|
327
|
|
- background-size: 100% 100%;
|
|
328
|
|
- /* width: 52px;
|
|
329
|
|
- height: 50px; */
|
|
|
434
|
+ background-size: 0 0;
|
|
|
435
|
+ background-position: center;
|
|
|
436
|
+ background-repeat: no-repeat;
|
|
|
437
|
+ animation: myfirst3 1s;
|
|
|
438
|
+ animation-fill-mode: forwards;
|
|
330
|
439
|
width: 9%;
|
|
331
|
440
|
height: 8.7%;
|
|
332
|
441
|
opacity: 1;
|
|
|
@@ -336,7 +445,14 @@ body {
|
|
336
|
445
|
cursor: pointer;
|
|
337
|
446
|
color: rgba(255, 255, 255, 0);
|
|
338
|
447
|
}
|
|
339
|
|
-
|
|
|
448
|
+@keyframes myfirst3 {
|
|
|
449
|
+ 0% {
|
|
|
450
|
+ background-size: 0 0;
|
|
|
451
|
+ }
|
|
|
452
|
+ 100% {
|
|
|
453
|
+ background-size: 100% 100%;
|
|
|
454
|
+ }
|
|
|
455
|
+}
|
|
340
|
456
|
.bgmap {
|
|
341
|
457
|
background-image: url(../images/map/beiguan.png);
|
|
342
|
458
|
background-size: 100% 100%;
|
|
|
@@ -353,9 +469,11 @@ body {
|
|
353
|
469
|
|
|
354
|
470
|
.bgmap:hover {
|
|
355
|
471
|
background-image: url(../images/map_active/beiguan.png);
|
|
356
|
|
- background-size: 100% 100%;
|
|
357
|
|
- /* width: 50px;
|
|
358
|
|
- height: 47px; */
|
|
|
472
|
+ background-size: 0 0;
|
|
|
473
|
+ background-position: center;
|
|
|
474
|
+ background-repeat: no-repeat;
|
|
|
475
|
+ animation: myfirst4 1s;
|
|
|
476
|
+ animation-fill-mode: forwards;
|
|
359
|
477
|
width: 9.9%;
|
|
360
|
478
|
height: 6.9%;
|
|
361
|
479
|
opacity: 1;
|
|
|
@@ -365,7 +483,14 @@ body {
|
|
365
|
483
|
cursor: pointer;
|
|
366
|
484
|
color: rgba(255, 255, 255, 0);
|
|
367
|
485
|
}
|
|
368
|
|
-
|
|
|
486
|
+@keyframes myfirst4 {
|
|
|
487
|
+ 0% {
|
|
|
488
|
+ background-size: 0 0;
|
|
|
489
|
+ }
|
|
|
490
|
+ 100% {
|
|
|
491
|
+ background-size: 100% 100%;
|
|
|
492
|
+ }
|
|
|
493
|
+}
|
|
369
|
494
|
.gxmap {
|
|
370
|
495
|
background-image: url(../images/map/gaoxin.png);
|
|
371
|
496
|
background-size: 100% 100%;
|
|
|
@@ -383,9 +508,11 @@ body {
|
|
383
|
508
|
|
|
384
|
509
|
.gxmap:hover {
|
|
385
|
510
|
background-image: url(../images/map_active/gaoxin.png);
|
|
386
|
|
- background-size: 100% 100%;
|
|
387
|
|
- /* width: 43px;
|
|
388
|
|
- height: 33px; */
|
|
|
511
|
+ background-size: 0 0;
|
|
|
512
|
+ background-position: center;
|
|
|
513
|
+ background-repeat: no-repeat;
|
|
|
514
|
+ animation: myfirst5 1s;
|
|
|
515
|
+ animation-fill-mode: forwards;
|
|
389
|
516
|
width: 7.6%;
|
|
390
|
517
|
height: 5.5%;
|
|
391
|
518
|
opacity: 1;
|
|
|
@@ -395,7 +522,14 @@ body {
|
|
395
|
522
|
cursor: pointer;
|
|
396
|
523
|
color: rgba(255, 255, 255, 0);
|
|
397
|
524
|
}
|
|
398
|
|
-
|
|
|
525
|
+@keyframes myfirst5 {
|
|
|
526
|
+ 0% {
|
|
|
527
|
+ background-size: 0 0;
|
|
|
528
|
+ }
|
|
|
529
|
+ 100% {
|
|
|
530
|
+ background-size: 100% 100%;
|
|
|
531
|
+ }
|
|
|
532
|
+}
|
|
399
|
533
|
.ydmap {
|
|
400
|
534
|
background-image: url(../images/map/yindu.png);
|
|
401
|
535
|
background-size: 100% 100%;
|
|
|
@@ -412,9 +546,11 @@ body {
|
|
412
|
546
|
|
|
413
|
547
|
.ydmap:hover {
|
|
414
|
548
|
background-image: url(../images/map_active/yindu.png);
|
|
415
|
|
- background-size: 100% 100%;
|
|
416
|
|
- /* width: 43px;
|
|
417
|
|
- height: 33px; */
|
|
|
549
|
+ background-size: 0 0;
|
|
|
550
|
+ background-position: center;
|
|
|
551
|
+ background-repeat: no-repeat;
|
|
|
552
|
+ animation: myfirst6 1s;
|
|
|
553
|
+ animation-fill-mode: forwards;
|
|
418
|
554
|
width: 20%;
|
|
419
|
555
|
height: 14.4%;
|
|
420
|
556
|
opacity: 1;
|
|
|
@@ -424,7 +560,14 @@ body {
|
|
424
|
560
|
cursor: pointer;
|
|
425
|
561
|
color: rgba(255, 255, 255, 0);
|
|
426
|
562
|
}
|
|
427
|
|
-
|
|
|
563
|
+@keyframes myfirst6 {
|
|
|
564
|
+ 0% {
|
|
|
565
|
+ background-size: 0 0;
|
|
|
566
|
+ }
|
|
|
567
|
+ 100% {
|
|
|
568
|
+ background-size: 100% 100%;
|
|
|
569
|
+ }
|
|
|
570
|
+}
|
|
428
|
571
|
.wfmap {
|
|
429
|
572
|
background-image: url(../images/map/wenfeng.png);
|
|
430
|
573
|
background-size: 100% 100%;
|
|
|
@@ -441,7 +584,11 @@ body {
|
|
441
|
584
|
|
|
442
|
585
|
.wfmap:hover {
|
|
443
|
586
|
background-image: url(../images/map_active/wenfeng.png);
|
|
444
|
|
- background-size: 100% 100%;
|
|
|
587
|
+ background-size: 0 0;
|
|
|
588
|
+ background-position: center;
|
|
|
589
|
+ background-repeat: no-repeat;
|
|
|
590
|
+ animation: myfirst7 1s;
|
|
|
591
|
+ animation-fill-mode: forwards;
|
|
445
|
592
|
width: 15.9%;
|
|
446
|
593
|
height: 14%;
|
|
447
|
594
|
opacity: 1;
|
|
|
@@ -451,7 +598,14 @@ body {
|
|
451
|
598
|
cursor: pointer;
|
|
452
|
599
|
color: rgba(255, 255, 255, 0);
|
|
453
|
600
|
}
|
|
454
|
|
-
|
|
|
601
|
+@keyframes myfirst7 {
|
|
|
602
|
+ 0% {
|
|
|
603
|
+ background-size: 0 0;
|
|
|
604
|
+ }
|
|
|
605
|
+ 100% {
|
|
|
606
|
+ background-size: 100% 100%;
|
|
|
607
|
+ }
|
|
|
608
|
+}
|
|
455
|
609
|
.tymap {
|
|
456
|
610
|
background-image: url(../images/map/tangyin.png);
|
|
457
|
611
|
background-size: 100% 100%;
|
|
|
@@ -468,9 +622,11 @@ body {
|
|
468
|
622
|
|
|
469
|
623
|
.tymap:hover {
|
|
470
|
624
|
background-image: url(../images/map_active/tangyin.png);
|
|
471
|
|
- background-size: 100% 100%;
|
|
472
|
|
- /* width: 43px;
|
|
473
|
|
- height: 33px; */
|
|
|
625
|
+ background-size: 0 0;
|
|
|
626
|
+ background-position: center;
|
|
|
627
|
+ background-repeat: no-repeat;
|
|
|
628
|
+ animation: myfirst8 1s;
|
|
|
629
|
+ animation-fill-mode: forwards;
|
|
474
|
630
|
width: 36%;
|
|
475
|
631
|
height: 23%;
|
|
476
|
632
|
opacity: 1;
|
|
|
@@ -480,7 +636,14 @@ body {
|
|
480
|
636
|
cursor: pointer;
|
|
481
|
637
|
color: rgba(255, 255, 255, 0);
|
|
482
|
638
|
}
|
|
483
|
|
-
|
|
|
639
|
+@keyframes myfirst8 {
|
|
|
640
|
+ 0% {
|
|
|
641
|
+ background-size: 0 0;
|
|
|
642
|
+ }
|
|
|
643
|
+ 100% {
|
|
|
644
|
+ background-size: 100% 100%;
|
|
|
645
|
+ }
|
|
|
646
|
+}
|
|
484
|
647
|
.nhmap {
|
|
485
|
648
|
background-image: url(../images/map/neihuang.png);
|
|
486
|
649
|
background-size: 100% 100%;
|
|
|
@@ -497,9 +660,11 @@ body {
|
|
497
|
660
|
|
|
498
|
661
|
.nhmap:hover {
|
|
499
|
662
|
background-image: url(../images/map_active/neihuang.png);
|
|
500
|
|
- background-size: 100% 100%;
|
|
501
|
|
- /* width: 43px;
|
|
502
|
|
- height: 33px; */
|
|
|
663
|
+ background-size: 0 0;
|
|
|
664
|
+ background-position: center;
|
|
|
665
|
+ background-repeat: no-repeat;
|
|
|
666
|
+ animation: myfirst9 1s;
|
|
|
667
|
+ animation-fill-mode: forwards;
|
|
503
|
668
|
width: 30%;
|
|
504
|
669
|
height: 45%;
|
|
505
|
670
|
opacity: 1;
|
|
|
@@ -509,7 +674,14 @@ body {
|
|
509
|
674
|
cursor: pointer;
|
|
510
|
675
|
color: rgba(255, 255, 255, 0);
|
|
511
|
676
|
}
|
|
512
|
|
-
|
|
|
677
|
+@keyframes myfirst9 {
|
|
|
678
|
+ 0% {
|
|
|
679
|
+ background-size: 0 0;
|
|
|
680
|
+ }
|
|
|
681
|
+ 100% {
|
|
|
682
|
+ background-size: 100% 100%;
|
|
|
683
|
+ }
|
|
|
684
|
+}
|
|
513
|
685
|
.hxmap {
|
|
514
|
686
|
background-image: url(../images/map/huaxian.png);
|
|
515
|
687
|
background-size: 100% 100%;
|
|
|
@@ -526,9 +698,11 @@ body {
|
|
526
|
698
|
|
|
527
|
699
|
.hxmap:hover {
|
|
528
|
700
|
background-image: url(../images/map_active/huaxian.png);
|
|
529
|
|
- background-size: 100% 100%;
|
|
530
|
|
- /* width: 43px;
|
|
531
|
|
- height: 33px; */
|
|
|
701
|
+ background-size: 0 0;
|
|
|
702
|
+ background-position: center;
|
|
|
703
|
+ background-repeat: no-repeat;
|
|
|
704
|
+ animation: myfirst10 1s;
|
|
|
705
|
+ animation-fill-mode: forwards;
|
|
532
|
706
|
width: 46%;
|
|
533
|
707
|
height: 43%;
|
|
534
|
708
|
opacity: 1;
|
|
|
@@ -538,37 +712,69 @@ body {
|
|
538
|
712
|
cursor: pointer;
|
|
539
|
713
|
color: rgba(255, 255, 255, 0);
|
|
540
|
714
|
}
|
|
541
|
|
-
|
|
|
715
|
+@keyframes myfirst10 {
|
|
|
716
|
+ 0% {
|
|
|
717
|
+ background-size: 0 0;
|
|
|
718
|
+ }
|
|
|
719
|
+ 100% {
|
|
|
720
|
+ background-size: 100% 100%;
|
|
|
721
|
+ }
|
|
|
722
|
+}
|
|
542
|
723
|
.wrap {
|
|
543
|
724
|
width: 180px;
|
|
544
|
|
- /* height: 200px; */
|
|
545
|
725
|
position: absolute;
|
|
546
|
|
- z-index: 100000;
|
|
|
726
|
+ z-index: 100;
|
|
547
|
727
|
display: none;
|
|
548
|
|
- z-index: 1;
|
|
|
728
|
+
|
|
549
|
729
|
}
|
|
550
|
730
|
|
|
551
|
731
|
.dataCont {
|
|
552
|
732
|
background-image: url(../images/reminder_box.png);
|
|
553
|
733
|
background-size: 100% 100%;
|
|
554
|
734
|
width: 100%;
|
|
555
|
|
- height: 130px;
|
|
|
735
|
+ height: 0;
|
|
556
|
736
|
padding: 5px 10px;
|
|
557
|
737
|
box-sizing: border-box;
|
|
558
|
738
|
font-size: 12px;
|
|
|
739
|
+ overflow: hidden;
|
|
|
740
|
+ color: #e4cc07;
|
|
|
741
|
+ animation:mywrap 1.5s;
|
|
|
742
|
+ animation-fill-mode: forwards;
|
|
|
743
|
+}
|
|
|
744
|
+@keyframes mywrap {
|
|
|
745
|
+ 0% {
|
|
|
746
|
+ height: 0;
|
|
|
747
|
+ }
|
|
|
748
|
+ 100% {
|
|
|
749
|
+ height: 130px;
|
|
|
750
|
+ }
|
|
559
|
751
|
}
|
|
560
|
|
-
|
|
561
|
752
|
.bar {
|
|
562
|
753
|
width: 3px;
|
|
563
|
|
- height: 70px;
|
|
|
754
|
+ height: 0;
|
|
564
|
755
|
margin: 0 auto;
|
|
565
|
756
|
border-right: 2px dashed #ffe000;
|
|
566
|
|
- /* background-color: #005EFC; */
|
|
567
|
757
|
position: absolute;
|
|
568
|
|
- left: 82px;
|
|
569
|
|
-
|
|
|
758
|
+ left: 87px;
|
|
|
759
|
+ animation: mybar 1.5s;
|
|
|
760
|
+ animation-fill-mode: forwards;
|
|
|
761
|
+}
|
|
|
762
|
+@keyframes mybar {
|
|
|
763
|
+ 0% {
|
|
|
764
|
+ height: 0;
|
|
|
765
|
+ }
|
|
|
766
|
+ 100% {
|
|
|
767
|
+ height: 70px;
|
|
|
768
|
+ }
|
|
|
769
|
+}
|
|
|
770
|
+@keyframes mydataCont {
|
|
|
771
|
+ 0% {
|
|
|
772
|
+
|
|
|
773
|
+ }
|
|
|
774
|
+ 100% {
|
|
|
775
|
+
|
|
|
776
|
+ }
|
|
570
|
777
|
}
|
|
571
|
|
-
|
|
572
|
778
|
.dataCont li {
|
|
573
|
779
|
padding: 3px;
|
|
574
|
780
|
}
|
|
|
@@ -583,10 +789,11 @@ body {
|
|
583
|
789
|
}
|
|
584
|
790
|
|
|
585
|
791
|
.lable_num {
|
|
586
|
|
- width: 40%;
|
|
|
792
|
+ width: 20%;
|
|
587
|
793
|
color: #e4cc07;
|
|
588
|
|
- padding-right: 5px;
|
|
589
|
|
- text-align: left;
|
|
|
794
|
+ /* padding-right: 5px; */
|
|
|
795
|
+ text-align: right;
|
|
|
796
|
+ /* background-color: #007AFF; */
|
|
590
|
797
|
}
|
|
591
|
798
|
.bulletFrame,.bulletFrameT{
|
|
592
|
799
|
display: none;
|
|
|
@@ -959,28 +1166,33 @@ thead {
|
|
959
|
1166
|
/* background-color: darkblue; */
|
|
960
|
1167
|
}
|
|
961
|
1168
|
.infoTitle li{
|
|
962
|
|
- padding: 10px 20px;
|
|
|
1169
|
+ float: left;
|
|
|
1170
|
+ width: 16%;
|
|
|
1171
|
+ text-align: center;
|
|
963
|
1172
|
margin-bottom: 10px;
|
|
964
|
1173
|
}
|
|
965
|
1174
|
.infoTitle label{
|
|
966
|
|
- width: 32.33%;
|
|
|
1175
|
+ width: 100%;
|
|
967
|
1176
|
display: inline-block;
|
|
968
|
1177
|
text-align: center;
|
|
969
|
|
- /* margin-right: 20px; */
|
|
970
|
1178
|
}
|
|
971
|
1179
|
.infoTitle img{
|
|
972
|
1180
|
width: 24px;
|
|
973
|
1181
|
height: 24px;
|
|
974
|
1182
|
vertical-align: middle;
|
|
975
|
1183
|
}
|
|
|
1184
|
+.infoTitle span{
|
|
|
1185
|
+ display: inline-block;
|
|
|
1186
|
+ width: 100%;
|
|
|
1187
|
+}
|
|
976
|
1188
|
.infoTitle{
|
|
977
|
|
- width: 460px;
|
|
978
|
|
- height: 120px;
|
|
|
1189
|
+ width: 600px;
|
|
979
|
1190
|
padding: 10px 20px;
|
|
980
|
1191
|
background-color: #fff;
|
|
981
|
1192
|
position: absolute;
|
|
982
|
1193
|
top:120px;
|
|
983
|
1194
|
left:60px;
|
|
|
1195
|
+ margin-bottom: 10px;
|
|
984
|
1196
|
box-sizing: border-box;
|
|
985
|
1197
|
}
|
|
986
|
1198
|
.showInfo{
|
|
|
@@ -989,7 +1201,7 @@ thead {
|
|
989
|
1201
|
background-color: #fff;
|
|
990
|
1202
|
padding: 10px 20px;
|
|
991
|
1203
|
position: absolute;
|
|
992
|
|
- top:285px;
|
|
|
1204
|
+ top:330px;
|
|
993
|
1205
|
left:60px;
|
|
994
|
1206
|
box-shadow: 5px 5px 2px #d3d3d3;
|
|
995
|
1207
|
}
|
|
|
@@ -1003,7 +1215,23 @@ thead {
|
|
1003
|
1215
|
color: #222;
|
|
1004
|
1216
|
margin-bottom: 10px;
|
|
1005
|
1217
|
}
|
|
1006
|
|
-
|
|
|
1218
|
+.showInfo h3 .btn_right,.showInfo h3 .btn_left{
|
|
|
1219
|
+ display: inline-block;
|
|
|
1220
|
+ width: 100px;
|
|
|
1221
|
+ cursor: pointer;
|
|
|
1222
|
+ opacity: 0;
|
|
|
1223
|
+ background-color: #007AFF;
|
|
|
1224
|
+ position: absolute;
|
|
|
1225
|
+}
|
|
|
1226
|
+.showInfo h3 .btn_left{
|
|
|
1227
|
+ left:100px
|
|
|
1228
|
+}
|
|
|
1229
|
+.showInfo h3 .btn_right{
|
|
|
1230
|
+ right: 100px;
|
|
|
1231
|
+}
|
|
|
1232
|
+.showInfo tbody{
|
|
|
1233
|
+ overflow-y: auto;
|
|
|
1234
|
+}
|
|
1007
|
1235
|
.tablebox table {
|
|
1008
|
1236
|
border-collapse: separate;
|
|
1009
|
1237
|
border-spacing: 0
|
|
|
@@ -1011,15 +1239,14 @@ thead {
|
|
1011
|
1239
|
|
|
1012
|
1240
|
.tablebox{
|
|
1013
|
1241
|
width: 100%;
|
|
1014
|
|
- height: auto;
|
|
1015
|
|
- overflow: hidden;
|
|
|
1242
|
+ height: 336px;
|
|
1016
|
1243
|
margin: 10px auto;
|
|
1017
|
1244
|
}
|
|
1018
|
1245
|
|
|
1019
|
1246
|
.tablebox table {
|
|
1020
|
1247
|
width: 100%;
|
|
1021
|
1248
|
cellspacing:0;
|
|
1022
|
|
- border-collapse:collapse;/* 取消表格边框 */
|
|
|
1249
|
+ border-collapse:collapse;
|
|
1023
|
1250
|
}
|
|
1024
|
1251
|
|
|
1025
|
1252
|
.tablebox table th, .tablebox table td {
|
|
|
@@ -1033,17 +1260,17 @@ thead {
|
|
1033
|
1260
|
background: #e5e8e9 !important;
|
|
1034
|
1261
|
}
|
|
1035
|
1262
|
.tablebox table td{
|
|
1036
|
|
- padding: 15px;
|
|
|
1263
|
+ padding: 10px;
|
|
1037
|
1264
|
border-bottom: 1px solid #e5e8e9;
|
|
1038
|
1265
|
}
|
|
1039
|
1266
|
.showInfo .tablebox table th {
|
|
1040
|
|
- padding: 12px 4px;
|
|
|
1267
|
+ padding: 4px;
|
|
1041
|
1268
|
height: 30px;
|
|
1042
|
1269
|
line-height: 30px;
|
|
1043
|
1270
|
background: #e5e8e9;
|
|
1044
|
1271
|
font-size: 14px;
|
|
1045
|
1272
|
font-weight: normal;
|
|
1046
|
|
- /* border-left: none !important; */
|
|
|
1273
|
+ border-left: none !important;
|
|
1047
|
1274
|
}
|
|
1048
|
1275
|
|
|
1049
|
1276
|
.tablebox table td img {
|
|
|
@@ -1056,23 +1283,29 @@ thead {
|
|
1056
|
1283
|
}
|
|
1057
|
1284
|
.tablebox table .callType{
|
|
1058
|
1285
|
background-color: #fff5cc;
|
|
|
1286
|
+ /* padding: 5px !important; */
|
|
|
1287
|
+ width: 28%;
|
|
1059
|
1288
|
}
|
|
1060
|
1289
|
.tablebox table .caalTypeTitle{
|
|
1061
|
1290
|
background-color: #ffcc00;
|
|
1062
|
1291
|
}
|
|
|
1292
|
+/* 工单详情 */
|
|
1063
|
1293
|
.workDetails .tablebox table thead tr{
|
|
1064
|
1294
|
width: 100%;
|
|
1065
|
1295
|
}
|
|
1066
|
1296
|
.workDetails .tablebox{
|
|
1067
|
1297
|
width: 95%;
|
|
1068
|
|
- border: 1px solid #035d6e;
|
|
|
1298
|
+ border-top: 1px solid #035d6e;
|
|
1069
|
1299
|
}
|
|
1070
|
|
-.workDetails .tablebox table td,.three .tablebox table thead tr{
|
|
|
1300
|
+.workDetails .tablebox table td{
|
|
1071
|
1301
|
color: #fff;
|
|
1072
|
1302
|
line-height: 37px;
|
|
1073
|
1303
|
border-bottom: 1px solid #028c9a;
|
|
1074
|
1304
|
background-color: rgba(255,255,255,0);
|
|
1075
|
1305
|
}
|
|
|
1306
|
+.workDetails .tablebox table tr{
|
|
|
1307
|
+ border-right: 1px solid #028c9a;
|
|
|
1308
|
+}
|
|
1076
|
1309
|
.workDetails .tablebox .infoName{
|
|
1077
|
1310
|
background-color: #027282;
|
|
1078
|
1311
|
width: 10%;
|
|
|
@@ -1181,4 +1414,55 @@ a.aBtn{
|
|
1181
|
1414
|
.rankListDetial .tablebox td{
|
|
1182
|
1415
|
padding: 54px 20px;
|
|
1183
|
1416
|
}
|
|
1184
|
|
-
|
|
|
1417
|
+.rank_wrap h4{
|
|
|
1418
|
+ padding-bottom: 10px;
|
|
|
1419
|
+ text-align: center;
|
|
|
1420
|
+ font-size: 18px;
|
|
|
1421
|
+ color: #fff;
|
|
|
1422
|
+}
|
|
|
1423
|
+#orderlist2{
|
|
|
1424
|
+ overflow-y: auto;
|
|
|
1425
|
+}
|
|
|
1426
|
+.test_rank .maquee ul{
|
|
|
1427
|
+ animation: row 5s linear infinite;
|
|
|
1428
|
+}
|
|
|
1429
|
+@keyframes row{
|
|
|
1430
|
+ 0%{}
|
|
|
1431
|
+ 100%{
|
|
|
1432
|
+ transform: translateY(-50%);
|
|
|
1433
|
+ }
|
|
|
1434
|
+}
|
|
|
1435
|
+.time_statistics .maquee ul{
|
|
|
1436
|
+ animation: row1 30s linear infinite;
|
|
|
1437
|
+}
|
|
|
1438
|
+@keyframes row1{
|
|
|
1439
|
+ 0%{}
|
|
|
1440
|
+ 100%{
|
|
|
1441
|
+ transform: translateY(-50%);
|
|
|
1442
|
+ }
|
|
|
1443
|
+}
|
|
|
1444
|
+/* 地图样式 */
|
|
|
1445
|
+#mapList{
|
|
|
1446
|
+ color: rgb(25,25,25)!important;
|
|
|
1447
|
+ overflow-y: auto;
|
|
|
1448
|
+}
|
|
|
1449
|
+#mapList thead{
|
|
|
1450
|
+ background-color: rgb(229,232,233) !important;
|
|
|
1451
|
+}
|
|
|
1452
|
+.showInfo .bootstrap-table .table .list tr{
|
|
|
1453
|
+ border-bottom: 1px solid rgb(235,237,238) !important;
|
|
|
1454
|
+}
|
|
|
1455
|
+.showInfo .fixed-table-loading{
|
|
|
1456
|
+ background-color: #fff !important;
|
|
|
1457
|
+}
|
|
|
1458
|
+/* 表格分页的样式 */
|
|
|
1459
|
+.page-list{
|
|
|
1460
|
+ display: none !important;
|
|
|
1461
|
+}
|
|
|
1462
|
+.pagination-info{
|
|
|
1463
|
+ color: #fff;
|
|
|
1464
|
+ font-size: 16px;
|
|
|
1465
|
+}
|
|
|
1466
|
+.pull-right{
|
|
|
1467
|
+ float: left !important;
|
|
|
1468
|
+}
|