cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
157
158
159
160
161
162
163
164
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
285
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
@charset "utf-8";
/* CSS Document */
 
a{
    cursor:pointer;
}
 
/*登陆login*/
body.login{
    background:#43536e;
}
body.login div.logoWrap{
    margin:80px auto 40px;
    width:90%;
}
body.login a.logo{
    float:left;
}
body.login div.logoWrap span{
    float:right;
    color:#FFF;
    font-size:16px;
    line-height:50px;
}
body.login ul{
    margin:0 auto;
    background:#FFF;
    border-radius:5px;
    box-shadow:0 0 10px #354156;
    width:90%;
}
body.login ul div.input_wrap{
    margin-left:10%;
    background:none;
    border:none;
    height:70px;
    width:90%;
    color:#5e5e5e;
    font-size:16px;
    line-height:70px;
}
body.login ul div.input_wrap input, body.login ul div.input_wrap span{
    padding:0 2%;
    height:70px;
    width:96%;
    line-height:70px;
    font-size:16px;
}
body.login ul div.input_wrap span{
    color:#d3d3d3;
}
body.login ul li:first-child{
    border-bottom:1px solid #eeeeee;
}
body.login ul li:first-child{
    background:url(../images/username.gif) no-repeat 4% 22px;
}
body.login ul li:last-child{
    background:url(../images/password.gif) no-repeat 4% 22px;
}
body.login input.loginbtn{
    margin:40px auto 0;
    background:#66a3d0;
    border:none;
    border-radius:5px;
    display:block;
    height:50px;
    width:90%;
    color:#FFF;
    font-size:26px;
    line-height:50px;
}
div.tips_back{
    margin:80px auto 40px;
    width:90%;
    font-size:16px;
}
div.tips_back a{
    color:#FFF;
}
div.tips_back a:first-child{
    float:left;
}
div.tips_back a:last-child{
    float:right;
}
div.error_tips{
    padding:0 2%;
    background:#FFF;
    border-radius:3px;
    box-shadow:0 0 10px #354156;
    display:none;
    width:90%;
    color:#000;
    font-size:18px;
    text-align:center;
}
div.error_tips h3{
    border-bottom:1px solid #bdbdbd;
    color:#0068d2;
    font-size:22px;
    line-height:80px;
}
div.error_tips p{
    border-bottom:1px solid #dbdbdb;
    line-height:70px;
}
div.error_tips a{
    display:block;
    line-height:70px;
}
 
/*详情detail*/
body.detail{
    padding:80px 0 50px 0;
    background:#ededed;
}
body.detail a{
    cursor:pointer;
}
body.detail nav{
    position:fixed;
    left:0;
    top:0;
    height:50px;
    background:#FFF;
    border-bottom:1px solid #d5d5d5;
    box-shadow:0px 0px 5px rgba(0, 0, 0, 0.6);
    width:100%;
    z-index:10;
}
body.detail nav a{
    float:left;
    border-bottom:2px solid #fff;
    display:block;
    height:48px;
    width:33.33%;
    line-height:48px;
    color:#000;
    font-size:16px;
    text-align:center;
}
body.detail nav a:last-child{
    float:right;
}
body.detail nav a:hover, body.detail nav a.focus{
    border-bottom:2px solid #0e78e5;
    color:#0e78e5;
}
body.detail ul{
    margin-bottom:30px;
    border-top:1px solid #d5d5d5;
}
body.detail li{
    padding:0 15px;
    background:#fff;
    border-bottom:1px solid #d5d5d5;
    display:block;
    height:40px;
    line-height:40px;
    color:#000;
    font-size:14px;
}
body.detail li span{
    float:left;
}
body.detail li a{
    float:right;
    color:#999999;
}
body.detail li a.phone{
    padding-left:27px;
    background:url(../images/phone.gif) no-repeat left;
    display:block;
    color:#4da209;
}
body.detail li a.ways_btn, body.detail li a.equip_btn{
    background:url(../images/arowone-down.gif) no-repeat;
    display:block;
    height:35px;
    width:27px;
}
body.detail li a.ways_btn.focus{
    background:url(../images/arowone-up.gif) no-repeat;
}
body.detail li a.equip_btn{
    background:url(../images/arow-down.gif) no-repeat;
}
body.detail li a.equip_btn.focus{
    background:url(../images/arow-up.gif) no-repeat;
}
 
body.detail li.ways{
    height:auto;
    display:none;
}
body.detail li.ways p{
    margin-bottom:10px;
    color:#666666;
    font-size:12px;
    line-height:24px;
    text-indent:2em;
}
body.detail li.ways p:first-child{
    padding-top:10px;
}
body.detail li.equip{
    padding:0;
    display:none;
    height:auto;
}
body.detail li.equip ul{
    margin-bottom:0;
    border-top:none;
}
body.detail li.equip li{
    font-size:12px;
}
body.detail li.equip li:last-child{
    border-bottom:none;
}
 
body.detail table.bottom{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
}
body.detail table.bottom td{
    padding:0 10px;
    background:#3e4651;
    height:50px;
    line-height:50px;
    color:#bdcbdb;
    font-size:14px;
}
body.detail .page{
    display:none;
}
.imgwrap{
    border-top:1px solid #d5d5d5;
}
 
.pagetwo{
    padding:10px;
    background:#fff;
    border-top:1px solid #d5d5d5;
}
.flow_wrap{
    background:url(../images/flow-2.gif) repeat-y;
}
.flow_wrap .flow_item{
    margin-bottom:10px;
    padding-left:31px;
}
.flow_wrap .flow_item h3{
    margin-left:5px;
    display:block;
    height:30px;
    color:#121212;
    font-size:12px;
    line-height:30px;
}
.flow_wrap .flow_item .fi_con{
    position:relative;
    margin-top:10px;
    border:1px solid #dbdbdb;
    width:100%;
}
.flow_wrap .flow_item .fi_con .fic_mid table{
    margin:15px;
    width:92%;
}
.flow_wrap .flow_item .fi_con .fic_mid table td{
    color:#999999;
    font-size:12px;
    line-height:24px;
}
.flow_wrap .flow_item .fi_con .fic_mid table td span{
    color:#414141;
}
.flow_wrap .flow_item .fi_con span.marks{
    position:absolute;
    left:20px;
    top:-8px;
    background:url(../images/flow-4.gif) no-repeat;
    height:8px;
    width:15px;
}
.flow_wrap .flow_item.completed{
    background:url(../images/flow-1.gif) no-repeat 0 0;
}
.flow_wrap .flow_item.underway{
    background:url(../images/flow-3.gif) no-repeat 0 0;
}
.flow_wrap .flow_item.nonarrival{
    background:url(../images/flow-0.gif) no-repeat 0 0;
    height:50px;
}
.flow_wrap .flow_item h3.greycolor{
    color:#818080;
}
ul.more_equip li{
    background:#eaf4fe;
}
 
 
/*body.detail*/
body.detail .detail_items{
    margin:20px auto;
    background:#FFF;
    border:1px solid #e4e4e4;
    border-radius:10px;
    width:90%;
}
body.detail .detail_items h3{
    margin:0 1%;
    padding-left:10px;
    border-bottom:1px dashed #e4e4e4;
    color:#121212;
    font-size:16px;
    line-height:38px;
}
body.detail .detail_items.detail_itemsone table{
    margin:0 1%;
    width:98%;
}
body.detail .detail_items.detail_itemsone table td{
    border-bottom:1px solid #e4e4e4;
    height:38px;
}
body.detail .detail_items.detail_itemsone table tr:last-child td{
    border:none;
}
body.detail .detail_items.detail_itemsone table td img{
    margin-right:10px;
}
 
.btnwrap{
    margin:20px 0 0 20px;
}
.btnwrap a{
    float:left;
    margin:0 20px 20px 0;
    padding:0 20px;
    background:#60a0f0;
    border-radius:5px;
    display:block;
    height:50px;
    color:#FFF;
    font-size:12px;
    line-height:50px;
    cursor:pointer;
}
 
/*用户中心usercenter*/
body.user_center{
    padding:50px 0 60px 0;
    background:#ededed;
}
body.user_center header{
    position:fixed;
    left:0;
    top:0;
    background:#3e8bc6;
    height:50px;
    width:100%;
    z-index:10;
}
body.user_center header input{
    float:left;
    margin:8px 0 0 2%;
    padding-left:10px;
    border:1px solid #3e8bc6;
    border-radius:4px;
    height:30px;
    width:80%;
    color:#b8b8b8;
    font-size:14px;
    line-height:32px;
}
body.user_center header a{
    float:right;
    margin:11px 2% 0 0;
    background:url(../images/crcode-btn.gif) no-repeat;
    background-size:100%;
    display:block;
    height:28px;
    width:27px;
}
body.user_center header a:last-child{
    background:url(../images/serach-btn.gif) no-repeat;
    background-size:100%;
    display:none;
}
body.user_center .banner{
    position:relative;
    background:#0e6eb8;
    height:95px;
    overflow:hidden;
}
body.user_center .banner a:first-child{
    position:absolute;
    left:5%;
    top:0;
}
body.user_center .banner a:first-child img{
    height:95px;
}
body.user_center .banner a:last-child{
    position:absolute;
    right:5%;
    top:-30px;
}
body.user_center .banner a:last-child img{
    height:160px;
}
body.user_center nav{
    margin-bottom:20px;
    padding-top:25px;
    background:#FFF;
}
body.user_center nav a{
    float:left;
    padding-bottom:25px;
    display:block;
    width:25%;
    color:#808080;
    font-size:14px;
    text-align:center;
}
body.user_center nav a span, .mt_content a em{
    background:#1ab8eb;
    border-radius:10px;
    display:inline-block;
    height:54px;
    width:54px;
}
body.user_center nav a span img, .mt_content a em img{
    margin-top:10px;
    height:32px;
    width:32px;
}
body.user_center nav a:nth-child(2) span{
    background:#f97b40;
}
body.user_center nav a:nth-child(3) span{
    background:#0b96ea;
}
body.user_center nav a:nth-child(4) span{
    background:#ff565b;
}
body.user_center nav a:nth-child(5) span{
    background:#f9a51f;
}
body.user_center nav a:nth-child(6) span{
    background:#6cc143;
}
body.user_center nav a:nth-child(7) span{
    background:#00d4f2;
}
body.user_center nav a:nth-child(8) span{
    background:#fe8864;
}
body.user_center nav a font{
    margin-top:5px;
    display:block;
}
body.user_center .going_order{
    margin-bottom:20px;
    background:#FFF;
}
body.user_center .going_order h3{
    padding:0 2%;
    border-bottom:1px solid #dde0e5;
    display:block;
    height:45px;
    color:#333333;
    font-size:16px;
    line-height:45px;
}
body.user_center .going_order h3 font{
    float:left;
}
body.user_center .going_order h3 a{
    float:right;
    color:#666666;
    font-size:14px;
}
body.user_center .going_order .go_wrap{
    border-bottom:1px solid #dde0e5;
    padding:20px 0;
}
body.user_center .going_order table{
    margin:0 2%;
    width:96%;
    color:#444444;
    font-size:14px;
    line-height:24px;
}
body.user_center .going_order p.norder{
    padding:0 2%;
    border-bottom:1px solid #dde0e5;
    color:#909090;
    font-size:12px;
    line-height:32px;
}
body.user_center .going_order a.iconwrap{
    margin-right:10px;
    padding:5px 0;
    border:1px solid #e5e5e5;
    display:block;
    width:70px;
    color:#909090;
    text-align:center;
}
body.user_center .going_order a font{
    display:block;
    font-size:12px;
}
body.user_center .going_order em{
    color:#0e78e5;
}
body.user_center .going_order span{
    color:#99a0b2;
}
body.user_center .next_check{
    margin-bottom:20px;
    padding:10px 2%;
    background:#fff;
    color:#5e5e5e;
    font-size:12px;
    line-height:20px;
}
body.user_center .next_check div:first-child{
    float:left;
    padding:10px 0;
    border-right:1px solid #e2e2e2;
    width:45%;
}
body.user_center .next_check div:first-child p:first-child{
    color:#5e5e5e;
}
body.user_center .next_check div:first-child p:nth-child(2){
    color:#0e77e4;
    font-size:14px;
    font-weight:bold;
}
body.user_center .next_check div:first-child p:last-child{
    color:#8f8f8f;
}
body.user_center .next_check div:last-child{
    float:left;
    margin-left:5%;
}
body.user_center .next_check div:last-child h3{
    color:#5e5e5e;
    font-size:12px;
    font-weight:bold;
}
body.user_center .next_check div:last-child p{
    margin-top:5px;
    display:block;
    color:#8f8f8f;
}
body.user_center .next_check div:last-child p span{
    margin-right:5px;
    border:1px solid #ff4400;
    display:inline-block;
    width:20px;
    color:#ff4400;
    text-align:center;
}
body.user_center footer{
    position:fixed;
    bottom:0;
    left:0;
    background:#fff;
    border-top:1px solid #e2e2e2;
    height:60px;  
    width:100%; 
    text-align:center;
}
body.user_center footer a{
    float:left;
    padding-top:10px;
    display:block;
    width:20%;
    color:#8a8a8a;
    font-size:14px;
    text-align:center;
}
body.user_center footer a span{
    margin-bottom:5px;
    background:url(../images/btn-home.gif) no-repeat;
    background-size:100%;
    display:inline-block;
    height:16px;
    width:16px;
}
body.user_center footer a:hover span, body.user_center footer a.focus span{
    background:url(../images/btn-home-hover.gif) no-repeat;
    background-size:100%;
}
body.user_center footer a:hover, body.user_center footer a.focus{
    color:#0e77e4;
}
body.user_center footer a:nth-child(2) span{
    background:url(../images/btn-reset.gif) no-repeat;
    background-size:100%;
}
body.user_center footer a:nth-child(3) span{
    background:url(../images/btn-page.gif) no-repeat;
    background-size:100%;
}
body.user_center footer a:nth-child(4) span{
    background:url(../images/btn-computer.gif) no-repeat;
    background-size:100%;
}
body.user_center footer a:nth-child(2):hover span, body.user_center footer a:nth-child(2).focus span{
    background:url(../images/btn-reset-hover.gif) no-repeat;
    background-size:100%;
}
body.user_center footer a:nth-child(3):hover span, body.user_center footer a:nth-child(3).focus span{
    background:url(../images/btn-page-hover.gif) no-repeat;
    background-size:100%;
}
body.user_center footer a:nth-child(4):hover span, body.user_center footer a:nth-child(4).focus span{
    background:url(../images/btn-computer-hover.gif) no-repeat;
    background-size:100%;
}
body.user_center footer a font{
    display:block;
}
body.user_center footer a:last-child{
    float:right;
}
 
body.uc_date{
    padding-top:0;
    background:#fff;
}
.uc_date_top{
    width:100%;
}
.uc_date_top td{
    height:70px;
    border-bottom:1px solid #dce0e2;
    line-height:70px;
    text-align:center;
}
.uc_date_top h3{
    color:#000;
    font-size:24px;
}
.uc_date_top a{
    display:block;
    height:100%;
    width:100%;
}
.uc_date_top a img{
    margin-top:24px;
    height:22px;
    width:13px;
}
.uc_date_top_usual td{
    height:50px;
    line-height:50px;
}
.uc_date_top_usual h3{
    font-size:20px;
}
.uc_date_top_usual a img{
    margin-top:15px;
}
.uc_date_top a:first-child{
    border-right:1px solid #dce0e2;
}
.uc_date_top a:last-child{
    border-left:1px solid #dce0e2;
}
.uc_date_week{
    border-bottom:1px solid #b2d2f2;
    height:40px;
    width:100%;
}
.uc_date_week span{
    float:left;
    background:#f5f9fd;
    display:block;
    height:40px;
    width:14.28%;
    color:#0e78e5;
    font-size:16px;
    font-weight:bold;
    line-height:40px;
    text-align:center;
}
.uc_date_day{
    padding:20px 0;
    width:100%;
}
.uc_date_day a{
    float:left;
    position:relative;
    display:block;
    width:14.28%;
    color:#384047;
    font-size:20px;
    font-weight:bold;
    line-height:56px;
    text-align:center;
}
.uc_date_day a.focus{
    background:url(../images/date-day-bg.gif) no-repeat center;
    background-size:40px;
    color:#fff;
}
.uc_date_day a.not_focus_day{
    color:#9b9fa3;
}
.uc_date_day a span{
    position:absolute;
    left:5px;
    top:0;
    background:#0e77e4;
    display:block;
    color:#fff;
    font-size:12px;
    line-height:normal;
}
.uc_date_day a span.adnormal{
    background:#ff0000;
}
.uc_date_day a span.no_nspection{
    background:#afb3b5;
    color:#fff;
}
.uc_date_day a.not_focus_day span.adnormal, .uc_date_day a.not_focus_day span.no_nspection, .uc_date_day a.not_focus_day span{
    opacity:0.4;
}
.loading{
    position:fixed;
    left:49%;
    top:49%;
    margin:0 auto;
    height:32px;
    width:32px;
}
 
body.uc_equip{
    padding-top:0;
}
.equip_classify_top{
    border-bottom:1px solid #d5d5d5;
    border-top:1px solid #d5d5d5;
    height:50px;
}
.equip_classify_top{
    background:#fff;
}
.equip_classify_top a{
    float:left;
    border-bottom:2px solid #fff;
    display:block;
    width:50%;
    color:#000;
    line-height:48px;
    text-align:center;
}
.equip_classify_top a.focus{
    border-bottom:2px solid #1a7fe6;
    color:#0e78e5;
}
h3.ect_title{
    padding:0 2%;
    height:50px;
    color:#0d78e2;
    font-size:16px;
    line-height:50px;
}
.ect_itmes{
    border-top:1px solid #e2e2e2;
    background:#fff;
}
.ect_itmes a{
    float:left;
    padding:20px 0;
    border-bottom:1px solid #e2e2e2;
    border-right:1px solid #e2e2e2;
    display:block;
    width:33%;
    color:#666666;
    font-size:12px;
    text-align:center;
}
.ect_itmes a em{
    display:inline-block;
    height:61px;
    width:90px;
    overflow:hidden;
}
.ect_itmes a em img{
    height:100%;
    width:100%;
}
.ect_itmes a:nth-child(3n){
    border-right:none;
}
.ect_itmes a span{
    margin-top:10px;
    display:block;
}
.ect_itmes a span font{
    color:#0e77e4;
}
.tabcon{
    display:none;
}
.tabconone{
    display:block;
}
.tabcontwo{
    margin-top:20px;
    background:#fff;
    border-top:1px solid #e2e2e2;
}
.highcharts_wrap{
    border-bottom:1px solid #e2e2e2;
}
 
body.maintenance{
    background:#fff;
    padding-top:0;
}
h3.mt_title{
    padding:0 2%;
    background:#fff;
    border-bottom:1px solid #e2e2e2;
    color:#000;
    font-size:16px;
    line-height:40px;
}
.mt_content{
    padding-bottom:30px;
    background:#fff;
}
.mt_content a{
    float:left;
    padding:20px 0;
    display:block;
    width:25%;
    text-align:center;
}
.mt_content a span{
    margin-top:10px;
    display:block;
    color:#808080;
    font-size:14px;
}
.mt_contentone a:nth-child(1) em{
    background:#0995ea;
}
.mt_contentone a:nth-child(2) em{
    background:#01d4f2;
}
.mt_contentone a:nth-child(3) em, .mt_contentfour a:nth-child(2) em{
    background:#ff7b2b;
}
.mt_contentone a:nth-child(4) em, .mt_contentfour a:nth-child(1) em{
    background:#09b8ea;
}
.mt_contentwo a:nth-child(1) em, .mt_contentthree a:nth-child(4) em{
    background:#ff555b;
}
.mt_contentwo a:nth-child(2) em, .mt_contentthree a:nth-child(3) em{
    background:#1bb8eb;
}
.mt_contentwo a:nth-child(3) em, .mt_contentthree a:nth-child(2) em{
    background:#fe8864;
}
.mt_contentwo a:nth-child(4) em, .mt_contentthree a:nth-child(1) em{
    background:#0995ea;
}{
    background:#f97b40;
}
 
 
body.equiplist{
    background:#fff;
}
body.equiplist header{
    z-index:999;
}
.el_items{
    padding:20px 2%;
    border-bottom:1px solid #dedede;
}
.el_items table{
    width:100%;
}
.el_items td{
    color:#2e2e2e;
    font-size:14px;
    line-height:20px;
}
.el_items td em{
    color:#0e77e4;
}
.el_items td span{
    float:right;
}
.el_items td span img{
    height:40px;
    width:40px;
}
.el_items a.filename{
    height:20px;
    line-height:20px;
}
.el_items a.filename img{
    float:left;
    margin:1px 5px 0 0;
}
.el_items a.filename em{
    float:left;
}
.el_items td.fileicon{
    width:45px;
}
.el_items td.fileicon img{
    height:45px;
    width:40px;
}
.el_nav{
    position:relative;
    background:#fff;
    border-bottom:1px solid #d5d5d5;
    height:50px;
    color:#000;
    font-size:16px;
    z-index:10;
}
.el_nav .eln_btn{
    float:left;
    border-right:1px solid #d5d5d5;
    height:50px;
    width:49.5%;
    line-height:50px;
    text-align:center;
    cursor:pointer;
}
.el_nav .eln_btn:nth-child(2){
    border:none;
}
.el_nav .eln_btn span{
    margin-right:5px;
    padding-left:20px;
    background:url(../images/icon-20.jpg) no-repeat left;
    display:inline-block;
}
.el_nav .eln_btn a{
    margin-top:18px;
    background:url(../images/icon-21.jpg) no-repeat;
    display:inline-block;
    height:16px;
    width:16px;
}
.el_nav .eln_btn.focus a{
    background:url(../images/icon-21-focus.jpg) no-repeat;
}
.el_nav .eln_btn.elnorder span{
    background:url(../images/icon-23.jpg) no-repeat left;
}
.el_nav .eln_con{
    padding:10px 0;
    position:absolute;
    left:0;
    top:51px;
    background:#fff;
    display:none;
    width:100%;
    z-index:12;
}
.el_nav .eln_con a{
    padding:0 2%;
    display:block;
    color:#000;
    font-size:14px;
    line-height:32px;
}
.el_nav .eln_con a:hover, .el_nav .eln_con a.focus{
    background:#dadada;
    color:#0e77e4;
}
.el_popmask{
    position:fixed;
    left:0;
    top:0;
    background:rgba(0, 0, 0, 0.4);
    display:none;
    height:100%;
    width:100%;
    z-index:5;
}
.loadmore{
    background:#fff;
    border-bottom:1px solid #e2e2e2;
    height:50px;
    color:#0e78e5;
    line-height:50px;
    text-align:center;
}
.loadmore span{
    padding-right:20px;
    background:url(../images/icon-24.jpg) no-repeat right;
    display:inline-block;
}
body.servicecard, body.ordertype{
    padding-top:0;
}
body.ordertype .going_order{
    margin:0;
}
 
 
 
.list_mode{
    background:#fff;
}
.list_mode h3{
    padding:0 2%;
    color:#000;
    font-size:12px;
    font-weight:bold;
    line-height:40px;
}
.list_mode .lm_item{
    margin-bottom:15px;
    border:1px solid #afd9ff;
}
.list_mode .lmi_title{
    padding:0 2%;
    background:#eaf8ff;
    height:38px;
    color:#000;
    font-size:12px;
    line-height:38px;
    cursor:pointer;
}
.list_mode .lmi_title h4{
    float:left;
}
.list_mode .lmi_title span{
    float:left;
    margin-left:5px;
    background:url(../images/segood.gif) no-repeat right;
    display:block;
    height:38px;
    width:20px;
}
.list_mode .lmi_title span.abnormal{
    background:url(../images/sebad.gif) no-repeat right;
}
.list_mode .lmi_title a{
    float:right;
    margin-top:15px;
    background:url(../images/sedown.gif) no-repeat;
    display:block;
    height:7px;
    width:11px;
}
.list_mode .lmi_title a.focus{
    background:url(../images/seup.gif) no-repeat;
}
.list_mode .lmi_con{
    display:none;
}
.list_mode .lmi_con ul{
    padding:10px 0;
}
.list_mode .lmi_con ul:nth-child(2n){
    background:#f2f2f2;
}
.list_mode .lmi_con li{
    padding:0 2%;
    color:#666666;
    font-size:12px;
    line-height:24px;
}
.list_mode .lmi_con li span{
    color:#0f78e5;
}
.list_mode .lmi_con li span.abnormal{
    color:#ff0000;
}
 
 
.onekeyfix{
    margin-top:60px;
}
.onekeyfix input{
    padding:0 0 0 35px;
    margin:0 auto 20px;
    background:url(../images/icon-26.jpg) no-repeat 10px 13px;
    border:1px solid #cccccc;
    border-radius:3px;
    display:block;
    height:42px;
    width:60%;
    color:#878787;
    font-size:12px;
    line-height:42px;
}
.onekeyfix input:nth-child(2){
    background-image:url(../images/icon-27.jpg);
}
.onekeyfix input:nth-child(3){
    background-image:url(../images/icon-25.jpg);
}
.onekeyfix a{
    margin:0 auto;
    padding:0 17.5px;
    background:#3396f1;
    border:1px solid #007ef1;
    border-radius:3px;
    display:block;
    height:50px;
    width:60%;
    color:#fff;
    font-size:18px;
    line-height:50px;
    text-align:center;
}
 
 
body.user_center.detail .polling_detail{
    display:none;
}
.polling_detail_btn{
    margin-bottom:20px;
    background:#fff;
    border-bottom:1px solid #d5d5d5;
    border-top:1px solid #d5d5d5;
    height:48px;
}
.polling_detail_btn span{
    float:left;
    position:absolute;
    left:0;
    top:0;
    border-right:1px solid #d5d5d5;
    display:block;
    height:48px;
    width:95%;
    line-height:48px;
    text-align:center;
    cursor:pointer;
}
.polling_detail_btn table{
    width:100%;
}
.polling_detail_btn table td:first-child, .polling_detail_btn table td:last-child, table.uc_date_top td:first-child, table.uc_date_top td:last-child{
    position:relative;
    width:13%;
}
.polling_detail_btn table td:nth-child(2), table.uc_date_top td:nth-child(2){
    width:74%;
}
@media screen and (max-width:420px){
    .polling_detail_btn table td:first-child, .polling_detail_btn table td:last-child, table.uc_date_top td:first-child, table.uc_date_top td:last-child{
        position:relative;
        width:18%;
    }
    .polling_detail_btn table td:nth-child(2), table.uc_date_top td:nth-child(2){
        width:64%;
    }
}
.polling_detail_btn table td:last-child span{
    border-left:1px solid #d5d5d5;
    border-right:none;
}
.polling_detail_btn .pdb_item_wrap{
    position:relative;
    height:48px;
    width:100%;
    overflow:hidden;
    color:#010101;
    font-size:16px;
    line-height:48px;
}
.polling_detail_btn .pdb_item_wrap a{
    float:left;
    display:block;
}
.polling_detail_btn .pdb_item_wrap a em{
    padding:0 20px;
    border-bottom:2px solid #fff;
    display:block;
    line-height:46px;
}
.polling_detail_btn .pdb_item_wrap a.focus em, .polling_detail_btn .pdb_item_wrap a:hover em{
    border-bottom:2px solid #0e78e5;
    color:#0e78e5;
}
.polling_detail_btn .pdb_item_wrap .pdb_item{
    position:absolute;
    left:0;
    top:0;
}
.wordtips{
    padding:0 20px;
    position:fixed;
    left:40%;
    top:45%;
    background:rgba(0, 0, 0, 0.6);
    border-radius:3px;
    display:none;
    height:32px;
    color:#fff;
    font-size:12px;
    line-height:32px;
    text-align:center;
    z-index:9999;
}
#pdPrevHide, #pdNextHide{
    display:none;
}
div.monthshow, div.weekshow{
    width:100%;
}
div.monthshow div, div.weekshow div{
    float:left;
    padding:15px 0;
    border-bottom:1px solid #e2e2e2;
    border-right:1px solid #e2e2e2;
    height:55px;
    width:33%;
    color:#e2e2e2;
    font-size:14px;
    text-align:center;
}
div.monthshow div:nth-child(3n), div.weekshow div:nth-child(3n){
    border-right:none;
}
div.monthshow div h4{
    margin-bottom:5px;
    font-size:28px;
}
div.monthshow div.hadmonth{
    color:#8a9ca8;
}
div.monthshow div.hadmonth h4{
    color:#0e77e4;
}
div.monthshow div.focusmonth h4{
    color:#ff5b45;
}
div.weekshow div{
    position:relative;
    padding-left:2%;
    width:31%;
    color:#000000;
    font-size:12px;
    text-align:left;
    opacity:0.5;
}
div.weekshow div.focusweek{
    background:#ededed;
    opacity:1;
}
div.weekshow div.hadweek{
    opacity:1;
}
div.weekshow div span{
    position:absolute;
    right:0;
    top:0;
}
div.weekshow div p{
    color:#999999;
    line-height:24px;
}
div.weekshow div em{
    color:#0d77e5;
}
body.uc_equip .going_order{
    margin:0;
}
.tabcon.twotab{
    margin-top:20px;
    border-top:1px solid #d5d5d5;
}
body.nopadding_top{
    padding-top:0;
}
 
body.uc_newaddpage{
    padding-top:50px;
}
body.uc_newaddpage nav{
    margin-top:0;
    padding-top:0;
}
body.uc_newaddpage nav a{
    padding-bottom:0;
    width:33.33%;
}
 
body.fileways_bogy{
    padding-top:50px;
    background:#fff;
}
.fileways{
    padding:0 2%;
    position:fixed;
    left:0;
    top:0;
    background:url(../images/filenav-bg.gif) repeat-x;
    border-bottom:1px solid #c3c3c4;
    background-size:7px 50px;
    height:50px;
    width:100%;
    color:#818181;
    font-size:16px;
    line-height:50px;
}
.fileways .fileways_wrap{
    position:relative;
    height:50px;
    overflow:hidden;
}
.fileways .fileways_con{
    position:absolute;
    left:0;
    right:0;
}
.fileways a{
    float:left;
    margin-right:15px;
    padding-right:25px;
    background:url(../images/filenav-line.gif) no-repeat right;
    background-size:21px 50px;
    display:block;
    max-width:200px;
    height:50px;
    color:#0e78e5;
    overflow:hidden;
}
.fileways a:last-child{
    background:none;
    color:#818181;
}
.fileways span{
    margin:0 5px;    
}
.el_items font{
    color:#9ca0a3;
}
body.fileways_bogy .el_items table td em{
    color:#333;
    font-size:16px;
}
body.fileways_bogy .el_items table td font{
    font-size:12px;
}
body.detail .list_mode  ul{
    margin:0;
    border:none;
}
body.detail .list_mode li{
    background:none;
    border-bottom:none;
    font-size:12px;
    height:auto;
}
body.detail .list_mode li span{
    float:none;
}
 
body.uc_newaddpage .twoitem a{
    width:50%;
}
 
/*----------------------------运维周报----------------------------*/
body.weekreport{
    padding:0 20px;
    background:#fff;
    font-size:12px;
}
div.weekreport_wrap{
    margin:0 auto;
    min-width:800px;    
}
body.weekreport h1{
    margin-top:20px;
    color:3000000;
    font:18px "微软雅黑";
    line-height:50px;
    text-align:center;
}
body.weekreport h1 span{
    color:#eb6100;
}
body.weekreport h1 font{
    color:#cccccc;
    font-size:14px;
}
body.weekreport h2{
    margin:20px 0 10px;
    position:relative;
    border-bottom:1px solid #dddddd;
    display:block;
    height:35px;
    color:#0e76e5;
    font:14px "宋体";
    font-weight:bold;
}
body.weekreport h2 span{
    position:absolute;
    left:0;
    top:0;
    padding:0 5px;
    border-bottom:2px solid #0e76e5;
    display:block;
    height:33px;
    line-height:33px;
}
body.weekreport p.checknum{
    color:#000;
    font-size:12px;
    line-height:24px;
}
body.weekreport p.checknum span, body.weekreport p.checknum font{
    margin-right:10px;
    color:#0e76e5;
}
body.weekreport p.checknum font{
    color:#f00000;
}
body.weekreport div.checknum_con{
    margin-top:10px;
    border-left:1px solid #8bc5ff;
    color:#3c3c3c;
    line-height:40px;
}
body.weekreport div.checknum_con span{
    float:left;
    padding:0 10px;
    border:1px solid #8bc5ff;
    border-left:none;
    display:block;
}
body.weekreport div.checknum_con span em{
    padding-right:20px;
    background:url(../images/icon-uc-0.gif) no-repeat right;
    display:block;
}
body.weekreport div.checknum_con span.exclamatory em{
    background:url(../images/icon-uc-1.gif) no-repeat right;
}
body.weekreport div.checknum_con span.error em{
    background:url(../images/icon-uc-2.gif) no-repeat right;
}
body.weekreport div.usualcheck, body.weekreport table.usualcheck_con, body.weekreport table.trouble_shoot, body.weekreport table.monthcheck, body.weekreport .filemanager{
    margin:0 auto;
    width:96%;
}
body.weekreport table.usualcheck_con{
    border:1px solid #d2d2d2;
    color:#333333;
    font-size:12px;
    line-height:20px;
}
body.weekreport table.usualcheck_con td{
    padding:15px;
    border-bottom:1px solid #d2d2d2;
}
body.weekreport table.usualcheck_con td span{
    color:#999999;
}
body.weekreport table.usualcheck_con td em, body.weekreport table.trouble_shoot td em{
    color:#0e76e5;
}
body.weekreport table.usualcheck_con td font.dealing, body.weekreport table.trouble_shoot td font.dealing{
    color:#ff6900;
}
body.weekreport table.usualcheck_con td font.notdeal, body.weekreport table.trouble_shoot td font.notdeal{
    color:#e60012;
}
body.weekreport table.usualcheck_con .title td{
    padding:0 15px;
    border:1px solid #a7d6ff;
    color:#00;
    background:#ebf7ff;
    line-height:30px;
}
body.weekreport table.trouble_shoot{
    margin:20px auto 30px;
    border:1px solid #e8e8e8;
    color:#333333;
    line-height:36px;
}
body.weekreport table.trouble_shoot td{
    padding:0 15px;
    border-bottom:1px solid #e8e8e8;
}
body.weekreport table.trouble_shoot tr.title td{
    background:#f0f0f0;
}
body.weekreport table.trouble_shoot td span{
    padding:0 5px;
    background:#ffd6cc;
    border:1px solid #ff3800;
    display:inline-block;
    color:#ff3800;
    line-height:18px;
}
body.weekreport table.trouble_shoot td font{
    color:#333333;
}
body.weekreport table.monthcheck{
    margin:20px auto 30px;
    color:#666666;
    line-height:30px;
    text-align:center;
}
body.weekreport table.monthcheck td{
    border:1px solid #cccccc;
}
body.weekreport table.monthcheck tr.title td{
    background:#f0f0f0;
}
body.weekreport table.monthcheck tr.time td{
    background:#dddddd;
}
body.weekreport table.monthcheck td font{
    color:#ff3800;
}
body.weekreport .filemanager{
    margin:20px auto 30px;
    border:1px solid #d2d2d2;
    border-bottom:none;
}
/*---------------------------文件管理module_toolbar------------------------------*/
.module_toolbar{
    padding:0 25px;
    background:#f7f7f7;
    border-bottom:1px solid #d2d2d2;
    height:41px;
    color:#666;
    font-size:12px;
    line-height:41px;
    overflow:hidden;
}
.navpath{
    float:left;
}
.navpath a, .navpath span{
    margin-right:5px;
}
.navpath a{
    color:#0066cc;
}
.searchfunc{
    float:right;
    margin:7px 10px 0 0;
    background:#FFF;
    border:1px solid #a8a8a8;
    border-radius:3px;
    height:26px;
    width:260px;
}
.searchfunc a{
    float:left;
    background:#f2f2f2;
    border-left:1px solid #a7a7a7;
    display:block;
    width:59px;
    color:#666666;
    font:14px "微软雅黑";
    line-height:26px;
    text-align:center;
}
.searchfunc .input_wrap{
    float:left;
    border:none;
    height:26px;
    width:200px;
}
.searchfunc .input_wrap input, .searchfunc .input_wrap span{
    height:26px;
    width:190px;
    line-height:26px;
}
.searchfunc .input_wrap span{
    color:#999;
}
.btnarea{
    margin-top:7px;
    float:right;
}
.btnarea a{
    float:left;
    margin-left:10px;
    display:block;
    height:28px;
    width:65px;
    color:#666666;
}
.btnarea a.upload_file{
    background:url(../images/uploadfile-btn.gif) no-repeat;
    width:110px;
    line-height:26px;
    text-indent:-9999em;
}
.btnarea a.new_folder{
    padding-left:31px;
    background:url(../images/btn_icon.gif) no-repeat 0 -416px;
    line-height:26px;
}
.btnarea a.new_folder:hover{
    backgrund-position:
}
.file_con table{
    table-layout:fixed;
    width:100%;
}
.file_con table td{
    padding:0 25px;
    position:relative;
    border-bottom:1px solid #d2d2d2;
    height:38px;
    color:#262626;
    font-size:12px;
    line-height:38px;
    min-width:100px;
    overflow:hidden;
}
.file_con table td input{
    float:left;
    margin:13px 5px 0 0;
}
.file_con table td img{
    float:left;
    margin:12px 5px 0 0;
}
.file_con table td span{
    float:left;
    display:block;
    white-space:nowrap;
}
.file_con table td span.tdivider{
    float:none;
    position:absolute;
    right:0;
    top:0;
    border-right:1px solid #e5e5e5;
    height:41px;
    width:10px;
    cursor:col-resize;
}
.file_con table tr.filecon_title td{
    background:#f2f6ff;
    height:41px;
    color:#888888;
    line-height:41px;
}
.file_con table tr.filecon_title td a.sorting_btn{
    float:left;
    margin:15px 0 0 5px;
    background:url(../images/btn_icon.gif) no-repeat -50px -354px;
    display:inline-block;
    height:10px;
    width:9px;
}
.file_con table tr.filecon_title td a.sorting_btn.focus{
    background-position:-50px -337px;
}
div.flilename{
    cursor:pointer;
}
 
/*body.newdetail*/
body.newdetail{
    padding-top:0;
}
body.newdetail .detail_items{
    margin:0 0 20px;
    border-radius:0;
    border-bottom:none;
    width:100%;
    color:#333333;
    font-size:14px;
}
body.newdetail .detail_items.detail_itemsone table{
    margin:0;
    width:100%;
}
body.newdetail .detail_items td.last{
    padding-right:1%;
    font-size:12px;
    text-align:right;
}
body.newdetail h2{
    margin-top:10px;
    padding:0 1.5%;
    color:#0082e7;
    font-size:14px;
    line-height:36px;
}
body.newdetail .detail_items .detail_con a{
    float:left;
    display:block;
    width:33.33%;
}
body.newdetail .detail_items .detail_con a:nth-child(3n){
    border-right:none;
}
body.newdetail .detail_items .detail_con a span{
    padding-left:45px;
    background:url(../images/icon-16.jpg) no-repeat 10px 15px;
    background-size:26px;
    border-bottom:1px solid #d0d0d0;
    border-right:1px solid #d0d0d0;
    display:block;
    height:56px;
    overflow:hidden;
}
body.newdetail .detail_items .detail_con a span em{
    display:table;
    height:56px;
    color:#333333;
    font-size:12px;
}
body.newdetail .detail_items .detail_con a span em font{
    display:table-cell;
    vertical-align:middle;
    line-height:18px;
}
body.newdetail .detail_items.dithree a span{
    background:url(../images/icon-17.jpg) no-repeat 10px 15px; 
    background-size:26px;   
}
body.newdetail .detail_items.difour a span{
    background:url(../images/icon-18.jpg) no-repeat 10px 15px; 
    background-size:26px;   
}
body.newdetail .detail_items.difive a span{
    background:url(../images/icon-19.jpg) no-repeat 10px 15px; 
    background-size:26px;   
}
 
/*knowlege_doc*/
body.knowlege_doc{
    padding-top:106px;
    background:#fff;
}
body.knowlege_doc header{
    padding:0 4%;
    position:fixed;
    left:0;
    top:0;
    background:#ededed;
    border-bottom:1px solid #d5d5d5;
    height:55px;
    width:92%;
}
body.knowlege_doc header .search_wrap a{
    float:right;
    margin:9px 0 0 0;
    background:#1a7fe6 url(../images/serach-btn-0.gif) no-repeat;
    background-position:center;
    background-size:20px;
    border:1px solid #177de4;
    border-radius:3px;
    display:block;
    height:34px;
    width:10%;
}
body.knowlege_doc header .search_wrap div{
    float:left;
    margin:9px 0;
    background:#fff;
    border:1px solid #d5d5d5;
    border-radius:3px;
    height:34px;
    width:85%;
}
body.knowlege_doc header .search_wrap div input{
    margin:0;
    padding-left:30px;
    background:url(../images/knowlege_search.gif) no-repeat 10px 10px;
    background-size:16px;
    border-radius:3px;
    border:none;
    height:34px;
    width:100%;
    color:#d5d5d5;
    font-size:12px;
    line-height:34px;
}
body.knowlege_doc header p{
    color:#aaa9a9;
    font-size:12px;
}
body.knowlege_doc header p span{
    margin:0 5px;
}
body.knowlege_doc .equip_classify_top{
    position:fixed;
    left:0;
    top:55px;
    width:100%;
}
body.knowlege_doc li{
    padding:0 2%;
    border-bottom:1px solid #dedede;
    color:#121212;
    font-size:14px;
    line-height:50px;
}
body.knowlege_doc li span{
    margin-right:10px;
    color:3bcbcbc;
    font-size:20px;
}
body.knowlege_doc li:nth-child(1) span, body.knowlege_doc li:nth-child(2) span, body.knowlege_doc li:nth-child(3) span{
    color:#ff4400;
}
 
body.knowlege_detail{
    padding-top:53px;
    background:#fff;
}
body.knowlege_detail h1{
    position:fixed;
    left:0;
    top:0;
    background:#fff;
    border-bottom:1px solid #e7e7e7;
    width:100%;
    color:#000;
    font-size:16px;
    line-height:52px;
    text-align:center;
}
body.knowlege_detail h2{
    height:40px;
}
body.knowlege_detail h2 span{
    padding:0 2%;
    display:block;
    border-bottom:1px solid #e7e7e7;
}
body.knowlege_detail h2 span em{
     padding-left:40px;
    background:url(../images/icon-20.gif) no-repeat left;
    background-size:30px;
    display:block;
    color:#000;
    font-size:14px;
    line-height:40px;
}
body.knowlege_detail h2.two span em{
    background-image:url(../images/icon-21.gif);
}
body.knowlege_detail h2.three span em{
    background-image:url(../images/icon-22.gif);
}
body.knowlege_detail h2.four span em{
    background-image:url(../images/icon-23.gif);
}
body.knowlege_detail div.content, body.knowlege_detail .keywords{
    padding:10px 2%;
}
body.knowlege_detail .keywords a{
    margin-right:10px;
    color:#0e77e4;
    font-size:12px;
}
body.knowlege_detail div.content p{
    color:#666666;
    font-size:12px;
    line-height:30px;
    text-indent:2em;
}
body.knowlege_detail .file a{
    margin-bottom:10px;
    display:block;
    height:16px;
    color:#333333;
    font-size:12px;
    line-height:16px;
}
body.knowlege_detail .file a img{
    float:left;
    margin-right:5px;
    display:block;
}
body.knowlege_detail .file a span{
    float:left;
}
 
/*事件处理event_deal_title*/
body.event_deal{
    padding-top:0;
    background:#fff;
}
.event_deal_title{
    padding:0 15px;
    border-bottom:1px solid #e2e2e2;
    color:#000000;
    font-size:18px;
    line-height:45px;
}
.event_deal_con{
    width:100%;
    color:#333333;
    font-size:12px;
}
.event_deal_con th, .event_deal_con td{
    padding:10px 0;
    border-bottom:1px dotted #d9d9d9;
    line-height:24px;
}
.event_deal_con th{
    padding-left:15px;
    color:#666666;
    white-space:nowrap;
    vertical-align:top;
}
.event_deal_con th:last-child{
    border:none;
}
.event_deal_con td{
    padding-right:15px;
}
.event_deal_con .blue_txt{
    color:#0e76e5;
}
.event_deal_con span.star_score{
    float:left;
}
.event_deal_con span.star_score a{
    margin:4px 2px 3px 0;
    background:url(../images/zc-icon-17.gif);
    background-size:16px 15px;
    display:inline-block;
    height:15px;
    width:16px;    
}
.event_deal_con span.star_score a.focus{
    background-image:url(../images/zc-icon-16.gif);
}
.event_deal_con p{
    float:left;
    white-space:nowrap;
}
.event_deal_con p span{
    padding-left:20px;
    background:url(../images/zc-icon-22.gif) no-repeat left;
    background-size:17px 17px;
    display:inline-block;
    white-space:nowrap;
}
.event_deal_con p span:last-child{
    margin-left:10px;
}
.event_deal_con p span em{
    color:#ff4902;
    font-weight:bold;
}
.event_deal_con a.surebtn{
    margin:10px 0;
    padding:0 40px;
    background:#3396f1;
    border:1px solid #007ef1;
    border-radius:3px;
    display:inline-block;
    height:35px;
    color:#fff;
    font-size:18px;
    line-height:35px;
}
 
 
/*guide css*/
.guide_title{
    margin:2rem 0rem 3rem;
    text-align:center;
    width:100%;
}
.guide_title img,.guide_cont img{
    width:100%;
}
.guide_cont{
    margin:0rem 0rem 3rem
}
.guide_submit{
    margin:0rem 0rem 3rem;
    text-align:center;
    height:2rem;
}
.guide_submit a.guisubmit{
    margin: 0 0.2rem;
    padding: 0;
    background: #e9e9e9;
    border: none;
    border-radius: 3px;
    display: inline-block;
    height: 2.2rem;
    width: 8rem;
    color: #ccc;
    font-size: 1.2rem;
    line-height: 2.2rem;
    text-align: center;
}
.guide_submit a.blue{
    background:#2592e0;
    border:1px solid #0273c4;
    color:#fff;
}
.guide_submit a.yellow{
    background:#ff6500;
    border:1px solid #e45a00;
    color:#fff;
}
 
.tips_popup{
    padding: 0 10px;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    visibility: hidden;
    display: block;
    border-radius: 3px;
    height: 2rem;
    color: #fff;
    line-height: 2rem;
    text-align: center;
    white-space: nowrap;
}
.paging{
    margin: 1rem;
    background: #ffa924;
    border: 1px solid #ffa213;
    border-radius: 3px;
    display: block;
    height: 2rem;
    color: #fff;
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
}