-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
1054 lines (1015 loc) · 98 KB
/
index.html
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
<!DOCTYPE html><html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="x-ua-compatible" content="ie=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<script type="text/javascript" src="./static/echarts.js"></script>
<link href="http://cdn.webfont.youziku.com/webfonts/nomal/109796/46121/5a842157f629d8180cf89d28.css" rel="stylesheet" type="text/css"/><link rel="preload" href="/component---src-layouts-index-js-0fced4a4e4b226701baa.js" as="script"/><link rel="preload" href="/component---src-pages-index-js-8f1a898dbc0025a56aae.js" as="script"/><link rel="preload" href="/path---index-a0e39f21c11f6a62c5ab.js" as="script"/><link rel="preload" href="/app-0f47bf2c75bb53851939.js" as="script"/>
<link rel="preload" href="/commons-d41d8cd98f00b204e980.js" as="script"/><style id="gatsby-inlined-css">@font-face{font-family:Monospaced Number;src:local("Tahoma");unicode-range:u+30-39}@font-face{font-family:Chinese Quote;src:local("PingFang SC"),local("SimSun");unicode-range:u+2018,u+2019,u+201c,u+201d}body,html{width:100%;height:100%}input::-ms-clear,input::-ms-reveal{display:none}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:rgba(0,0,0,0)}@at-root{@-ms-viewport{width:device-width}}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:Monospaced Number,Chinese Quote,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.5;color:rgba(0,0,0,.65);background-color:#fff}[tabindex="-1"]:focus{outline:none!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5em;color:rgba(0,0,0,.85);font-weight:500}p{margin-top:0;margin-bottom:1em}abbr[data-original-title],abbr[title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1em;font-style:normal;line-height:inherit}input[type=number],input[type=password],input[type=text],textarea{-webkit-appearance:none}dl,ol,ul{margin-top:0;margin-bottom:1em}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:500}dd{margin-bottom:.5em;margin-left:0}blockquote{margin:0 0 1em}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#1890ff;background-color:transparent;text-decoration:none;outline:none;cursor:pointer;transition:color .3s;-webkit-text-decoration-skip:objects}a:focus{text-decoration:underline;text-decoration-skip:ink}a:hover{color:#40a9ff}a:active{color:#096dd9}a:active,a:hover{outline:0;text-decoration:none}a[disabled]{color:rgba(0,0,0,.25);cursor:not-allowed;pointer-events:none}code,kbd,pre,samp{font-family:Consolas,Menlo,Courier,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1em;overflow:auto}figure{margin:0 0 1em}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea{touch-action:manipulation}table{border-collapse:collapse}caption{padding-top:.75em;padding-bottom:.3em;color:rgba(0,0,0,.45);text-align:left;caption-side:bottom}th{text-align:inherit}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5em;font-size:1.5em;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important}mark{padding:.2em;background-color:#feffe6}::selection{background:#1890ff;color:#fff}.clearfix{zoom:1}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both;visibility:hidden;font-size:0;height:0}@font-face{font-family:anticon;src:url("https://at.alicdn.com/t/font_148784_dky7e838xq4obt9.eot");src:url("https://at.alicdn.com/t/font_148784_dky7e838xq4obt9.woff") format("woff"),url("https://at.alicdn.com/t/font_148784_dky7e838xq4obt9.ttf") format("truetype"),url("https://at.alicdn.com/t/font_148784_dky7e838xq4obt9.svg#iconfont") format("svg")}.anticon{display:inline-block;font-style:normal;vertical-align:baseline;text-align:center;text-transform:none;line-height:1;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.anticon:before{display:block;font-family:anticon!important}.anticon-step-forward:before{content:"\E600"}.anticon-step-backward:before{content:"\E601"}.anticon-forward:before{content:"\E602"}.anticon-backward:before{content:"\E603"}.anticon-caret-right:before{content:"\E604"}.anticon-caret-left:before{content:"\E605"}.anticon-caret-down:before{content:"\E606"}.anticon-caret-up:before{content:"\E607"}.anticon-caret-circle-right:before,.anticon-circle-right:before,.anticon-right-circle:before{content:"\E608"}.anticon-caret-circle-left:before,.anticon-circle-left:before,.anticon-left-circle:before{content:"\E609"}.anticon-caret-circle-up:before,.anticon-circle-up:before,.anticon-up-circle:before{content:"\E60A"}.anticon-caret-circle-down:before,.anticon-circle-down:before,.anticon-down-circle:before{content:"\E60B"}.anticon-right-circle-o:before{content:"\E60C"}.anticon-caret-circle-o-right:before,.anticon-circle-o-right:before{content:"\E60C"}.anticon-left-circle-o:before{content:"\E60D"}.anticon-caret-circle-o-left:before,.anticon-circle-o-left:before{content:"\E60D"}.anticon-up-circle-o:before{content:"\E60E"}.anticon-caret-circle-o-up:before,.anticon-circle-o-up:before{content:"\E60E"}.anticon-down-circle-o:before{content:"\E60F"}.anticon-caret-circle-o-down:before,.anticon-circle-o-down:before{content:"\E60F"}.anticon-verticle-left:before{content:"\E610"}.anticon-verticle-right:before{content:"\E611"}.anticon-rollback:before{content:"\E612"}.anticon-retweet:before{content:"\E613"}.anticon-shrink:before{content:"\E614"}.anticon-arrow-salt:before,.anticon-arrows-alt:before{content:"\E615"}.anticon-reload:before{content:"\E616"}.anticon-double-right:before{content:"\E617"}.anticon-double-left:before{content:"\E618"}.anticon-arrow-down:before{content:"\E619"}.anticon-arrow-up:before{content:"\E61A"}.anticon-arrow-right:before{content:"\E61B"}.anticon-arrow-left:before{content:"\E61C"}.anticon-down:before{content:"\E61D"}.anticon-up:before{content:"\E61E"}.anticon-right:before{content:"\E61F"}.anticon-left:before{content:"\E620"}.anticon-minus-square-o:before{content:"\E621"}.anticon-minus-circle:before{content:"\E622"}.anticon-minus-circle-o:before{content:"\E623"}.anticon-minus:before{content:"\E624"}.anticon-plus-circle-o:before{content:"\E625"}.anticon-plus-circle:before{content:"\E626"}.anticon-plus:before{content:"\E627"}.anticon-info-circle:before{content:"\E628"}.anticon-info-circle-o:before{content:"\E629"}.anticon-info:before{content:"\E62A"}.anticon-exclamation:before{content:"\E62B"}.anticon-exclamation-circle:before{content:"\E62C"}.anticon-exclamation-circle-o:before{content:"\E62D"}.anticon-close-circle:before,.anticon-cross-circle:before{content:"\E62E"}.anticon-close-circle-o:before,.anticon-cross-circle-o:before{content:"\E62F"}.anticon-check-circle:before{content:"\E630"}.anticon-check-circle-o:before{content:"\E631"}.anticon-check:before{content:"\E632"}.anticon-close:before,.anticon-cross:before{content:"\E633"}.anticon-customer-service:before,.anticon-customerservice:before{content:"\E634"}.anticon-credit-card:before{content:"\E635"}.anticon-code-o:before{content:"\E636"}.anticon-book:before{content:"\E637"}.anticon-bars:before{content:"\E639"}.anticon-question:before{content:"\E63A"}.anticon-question-circle:before{content:"\E63B"}.anticon-question-circle-o:before{content:"\E63C"}.anticon-pause:before{content:"\E63D"}.anticon-pause-circle:before{content:"\E63E"}.anticon-pause-circle-o:before{content:"\E63F"}.anticon-clock-circle:before{content:"\E640"}.anticon-clock-circle-o:before{content:"\E641"}.anticon-swap:before{content:"\E642"}.anticon-swap-left:before{content:"\E643"}.anticon-swap-right:before{content:"\E644"}.anticon-plus-square-o:before{content:"\E645"}.anticon-frown-circle:before,.anticon-frown:before{content:"\E646"}.anticon-ellipsis:before{content:"\E647"}.anticon-copy:before{content:"\E648"}.anticon-menu-fold:before{content:"\E9AC"}.anticon-mail:before{content:"\E659"}.anticon-logout:before{content:"\E65A"}.anticon-link:before{content:"\E65B"}.anticon-area-chart:before{content:"\E65C"}.anticon-line-chart:before{content:"\E65D"}.anticon-home:before{content:"\E65E"}.anticon-laptop:before{content:"\E65F"}.anticon-star:before{content:"\E660"}.anticon-star-o:before{content:"\E661"}.anticon-folder:before{content:"\E662"}.anticon-filter:before{content:"\E663"}.anticon-file:before{content:"\E664"}.anticon-exception:before{content:"\E665"}.anticon-meh-circle:before,.anticon-meh:before{content:"\E666"}.anticon-meh-o:before{content:"\E667"}.anticon-shopping-cart:before{content:"\E668"}.anticon-save:before{content:"\E669"}.anticon-user:before{content:"\E66A"}.anticon-video-camera:before{content:"\E66B"}.anticon-to-top:before{content:"\E66C"}.anticon-team:before{content:"\E66D"}.anticon-tablet:before{content:"\E66E"}.anticon-solution:before{content:"\E66F"}.anticon-search:before{content:"\E670"}.anticon-share-alt:before{content:"\E671"}.anticon-setting:before{content:"\E672"}.anticon-poweroff:before{content:"\E6D5"}.anticon-picture:before{content:"\E674"}.anticon-phone:before{content:"\E675"}.anticon-paper-clip:before{content:"\E676"}.anticon-notification:before{content:"\E677"}.anticon-mobile:before{content:"\E678"}.anticon-menu-unfold:before{content:"\E9AD"}.anticon-inbox:before{content:"\E67A"}.anticon-lock:before{content:"\E67B"}.anticon-qrcode:before{content:"\E67C"}.anticon-play-circle:before{content:"\E6D0"}.anticon-play-circle-o:before{content:"\E6D1"}.anticon-tag:before{content:"\E6D2"}.anticon-tag-o:before{content:"\E6D3"}.anticon-tags:before{content:"\E67D"}.anticon-tags-o:before{content:"\E67E"}.anticon-cloud-o:before{content:"\E67F"}.anticon-cloud:before{content:"\E680"}.anticon-cloud-upload:before{content:"\E681"}.anticon-cloud-download:before{content:"\E682"}.anticon-cloud-download-o:before{content:"\E683"}.anticon-cloud-upload-o:before{content:"\E684"}.anticon-environment:before{content:"\E685"}.anticon-environment-o:before{content:"\E686"}.anticon-eye:before{content:"\E687"}.anticon-eye-o:before{content:"\E688"}.anticon-camera:before{content:"\E689"}.anticon-camera-o:before{content:"\E68A"}.anticon-windows:before{content:"\E68B"}.anticon-apple:before{content:"\E68C"}.anticon-apple-o:before{content:"\E6D4"}.anticon-android:before{content:"\E938"}.anticon-android-o:before{content:"\E68D"}.anticon-aliwangwang:before{content:"\E68E"}.anticon-aliwangwang-o:before{content:"\E68F"}.anticon-export:before{content:"\E691"}.anticon-edit:before{content:"\E692"}.anticon-circle-down-o:before{content:"\E693"}.anticon-circle-down-:before{content:"\E694"}.anticon-appstore-o:before{content:"\E695"}.anticon-appstore:before{content:"\E696"}.anticon-scan:before{content:"\E697"}.anticon-file-text:before{content:"\E698"}.anticon-folder-open:before{content:"\E699"}.anticon-hdd:before{content:"\E69A"}.anticon-ie:before{content:"\E69B"}.anticon-file-jpg:before{content:"\E69C"}.anticon-like:before{content:"\E64C"}.anticon-like-o:before{content:"\E69D"}.anticon-dislike:before{content:"\E64B"}.anticon-dislike-o:before{content:"\E69E"}.anticon-delete:before{content:"\E69F"}.anticon-enter:before{content:"\E6A0"}.anticon-pushpin-o:before{content:"\E6A1"}.anticon-pushpin:before{content:"\E6A2"}.anticon-heart:before{content:"\E6A3"}.anticon-heart-o:before{content:"\E6A4"}.anticon-pay-circle:before{content:"\E6A5"}.anticon-pay-circle-o:before{content:"\E6A6"}.anticon-smile-circle:before,.anticon-smile:before{content:"\E6A7"}.anticon-smile-o:before{content:"\E6A8"}.anticon-frown-o:before{content:"\E6A9"}.anticon-calculator:before{content:"\E6AA"}.anticon-message:before{content:"\E6AB"}.anticon-chrome:before{content:"\E6AC"}.anticon-github:before{content:"\E6AD"}.anticon-file-unknown:before{content:"\E6AF"}.anticon-file-excel:before{content:"\E6B0"}.anticon-file-ppt:before{content:"\E6B1"}.anticon-file-word:before{content:"\E6B2"}.anticon-file-pdf:before{content:"\E6B3"}.anticon-desktop:before{content:"\E6B4"}.anticon-upload:before{content:"\E6B6"}.anticon-download:before{content:"\E6B7"}.anticon-pie-chart:before{content:"\E6B8"}.anticon-unlock:before{content:"\E6BA"}.anticon-calendar:before{content:"\E6BB"}.anticon-windows-o:before{content:"\E6BC"}.anticon-dot-chart:before{content:"\E6BD"}.anticon-bar-chart:before{content:"\E6BE"}.anticon-code:before{content:"\E6BF"}.anticon-api:before{content:"\E951"}.anticon-plus-square:before{content:"\E6C0"}.anticon-minus-square:before{content:"\E6C1"}.anticon-close-square:before{content:"\E6C2"}.anticon-close-square-o:before{content:"\E6C3"}.anticon-check-square:before{content:"\E6C4"}.anticon-check-square-o:before{content:"\E6C5"}.anticon-fast-backward:before{content:"\E6C6"}.anticon-fast-forward:before{content:"\E6C7"}.anticon-up-square:before{content:"\E6C8"}.anticon-down-square:before{content:"\E6C9"}.anticon-left-square:before{content:"\E6CA"}.anticon-right-square:before{content:"\E6CB"}.anticon-right-square-o:before{content:"\E6CC"}.anticon-left-square-o:before{content:"\E6CD"}.anticon-down-square-o:before{content:"\E6CE"}.anticon-up-square-o:before{content:"\E6CF"}.anticon-loading:before{content:"\E64D"}.anticon-loading-3-quarters:before{content:"\E6AE"}.anticon-bulb:before{content:"\E649"}.anticon-select:before{content:"\E64A"}.anticon-addfile:before,.anticon-file-add:before{content:"\E910"}.anticon-addfolder:before,.anticon-folder-add:before{content:"\E914"}.anticon-switcher:before{content:"\E913"}.anticon-rocket:before{content:"\E90F"}.anticon-dingding:before{content:"\E923"}.anticon-dingding-o:before{content:"\E925"}.anticon-bell:before{content:"\E64E"}.anticon-disconnect:before{content:"\E64F"}.anticon-database:before{content:"\E650"}.anticon-compass:before{content:"\E6DB"}.anticon-barcode:before{content:"\E652"}.anticon-hourglass:before{content:"\E653"}.anticon-key:before{content:"\E654"}.anticon-flag:before{content:"\E655"}.anticon-layout:before{content:"\E656"}.anticon-login:before{content:"\E657"}.anticon-printer:before{content:"\E673"}.anticon-sound:before{content:"\E6E9"}.anticon-usb:before{content:"\E6D7"}.anticon-skin:before{content:"\E6D8"}.anticon-tool:before{content:"\E6D9"}.anticon-sync:before{content:"\E6DA"}.anticon-wifi:before{content:"\E6D6"}.anticon-car:before{content:"\E6DC"}.anticon-copyright:before{content:"\E6DE"}.anticon-schedule:before{content:"\E6DF"}.anticon-user-add:before{content:"\E6ED"}.anticon-user-delete:before{content:"\E6E0"}.anticon-usergroup-add:before{content:"\E6DD"}.anticon-usergroup-delete:before{content:"\E6E1"}.anticon-man:before{content:"\E6E2"}.anticon-woman:before{content:"\E6EC"}.anticon-shop:before{content:"\E6E3"}.anticon-gift:before{content:"\E6E4"}.anticon-idcard:before{content:"\E6E5"}.anticon-medicine-box:before{content:"\E6E6"}.anticon-red-envelope:before{content:"\E6E7"}.anticon-coffee:before{content:"\E6E8"}.anticon-trademark:before{content:"\E651"}.anticon-safety:before{content:"\E6EA"}.anticon-wallet:before{content:"\E6EB"}.anticon-bank:before{content:"\E6EE"}.anticon-trophy:before{content:"\E6EF"}.anticon-contacts:before{content:"\E6F0"}.anticon-global:before{content:"\E6F1"}.anticon-shake:before{content:"\E94F"}.anticon-fork:before{content:"\E6F2"}.anticon-dashboard:before{content:"\E99A"}.anticon-profile:before{content:"\E999"}.anticon-table:before{content:"\E998"}.anticon-warning:before{content:"\E997"}.anticon-form:before{content:"\E996"}.anticon-spin:before{display:inline-block;animation:loadingCircle 1s infinite linear}.anticon-weibo-square:before{content:"\E6F5"}.anticon-weibo-circle:before{content:"\E6F4"}.anticon-taobao-circle:before{content:"\E6F3"}.anticon-html5:before{content:"\E9C7"}.anticon-weibo:before{content:"\E9C6"}.anticon-twitter:before{content:"\E9C5"}.anticon-wechat:before{content:"\E9C4"}.anticon-youtube:before{content:"\E9C3"}.anticon-alipay-circle:before{content:"\E9C2"}.anticon-taobao:before{content:"\E9C1"}.anticon-skype:before{content:"\E9C0"}.anticon-qq:before{content:"\E9BF"}.anticon-medium-workmark:before{content:"\E9BE"}.anticon-gitlab:before{content:"\E9BD"}.anticon-medium:before{content:"\E9BC"}.anticon-linkedin:before{content:"\E9BB"}.anticon-google-plus:before{content:"\E9BA"}.anticon-dropbox:before{content:"\E9B9"}.anticon-facebook:before{content:"\E9B8"}.anticon-codepen:before{content:"\E9B7"}.anticon-amazon:before{content:"\E9B6"}.anticon-google:before{content:"\E9B5"}.anticon-codepen-circle:before{content:"\E9B4"}.anticon-alipay:before{content:"\E9B3"}.anticon-ant-design:before{content:"\E9B2"}.anticon-aliyun:before{content:"\E9F4"}.fade-appear,.fade-enter,.fade-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.fade-appear.fade-appear-active,.fade-enter.fade-enter-active{animation-name:antFadeIn;animation-play-state:running}.fade-leave.fade-leave-active{animation-name:antFadeOut;animation-play-state:running;pointer-events:none}.fade-appear,.fade-enter{opacity:0}.fade-appear,.fade-enter,.fade-leave{animation-timing-function:linear}@keyframes antFadeIn{0%{opacity:0}to{opacity:1}}@keyframes antFadeOut{0%{opacity:1}to{opacity:0}}.move-up-appear,.move-up-enter,.move-up-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.move-up-appear.move-up-appear-active,.move-up-enter.move-up-enter-active{animation-name:antMoveUpIn;animation-play-state:running}.move-up-leave.move-up-leave-active{animation-name:antMoveUpOut;animation-play-state:running;pointer-events:none}.move-up-appear,.move-up-enter{opacity:0;animation-timing-function:cubic-bezier(.08,.82,.17,1)}.move-up-leave{animation-timing-function:cubic-bezier(.6,.04,.98,.34)}.move-down-appear,.move-down-enter,.move-down-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.move-down-appear.move-down-appear-active,.move-down-enter.move-down-enter-active{animation-name:antMoveDownIn;animation-play-state:running}.move-down-leave.move-down-leave-active{animation-name:antMoveDownOut;animation-play-state:running;pointer-events:none}.move-down-appear,.move-down-enter{opacity:0;animation-timing-function:cubic-bezier(.08,.82,.17,1)}.move-down-leave{animation-timing-function:cubic-bezier(.6,.04,.98,.34)}.move-left-appear,.move-left-enter,.move-left-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.move-left-appear.move-left-appear-active,.move-left-enter.move-left-enter-active{animation-name:antMoveLeftIn;animation-play-state:running}.move-left-leave.move-left-leave-active{animation-name:antMoveLeftOut;animation-play-state:running;pointer-events:none}.move-left-appear,.move-left-enter{opacity:0;animation-timing-function:cubic-bezier(.08,.82,.17,1)}.move-left-leave{animation-timing-function:cubic-bezier(.6,.04,.98,.34)}.move-right-appear,.move-right-enter,.move-right-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.move-right-appear.move-right-appear-active,.move-right-enter.move-right-enter-active{animation-name:antMoveRightIn;animation-play-state:running}.move-right-leave.move-right-leave-active{animation-name:antMoveRightOut;animation-play-state:running;pointer-events:none}.move-right-appear,.move-right-enter{opacity:0;animation-timing-function:cubic-bezier(.08,.82,.17,1)}.move-right-leave{animation-timing-function:cubic-bezier(.6,.04,.98,.34)}@keyframes antMoveDownIn{0%{transform-origin:0 0;transform:translateY(100%);opacity:0}to{transform-origin:0 0;transform:translateY(0);opacity:1}}@keyframes antMoveDownOut{0%{transform-origin:0 0;transform:translateY(0);opacity:1}to{transform-origin:0 0;transform:translateY(100%);opacity:0}}@keyframes antMoveLeftIn{0%{transform-origin:0 0;transform:translateX(-100%);opacity:0}to{transform-origin:0 0;transform:translateX(0);opacity:1}}@keyframes antMoveLeftOut{0%{transform-origin:0 0;transform:translateX(0);opacity:1}to{transform-origin:0 0;transform:translateX(-100%);opacity:0}}@keyframes antMoveRightIn{0%{opacity:0;transform-origin:0 0;transform:translateX(100%)}to{opacity:1;transform-origin:0 0;transform:translateX(0)}}@keyframes antMoveRightOut{0%{transform-origin:0 0;transform:translateX(0);opacity:1}to{transform-origin:0 0;transform:translateX(100%);opacity:0}}@keyframes antMoveUpIn{0%{transform-origin:0 0;transform:translateY(-100%);opacity:0}to{transform-origin:0 0;transform:translateY(0);opacity:1}}@keyframes antMoveUpOut{0%{transform-origin:0 0;transform:translateY(0);opacity:1}to{transform-origin:0 0;transform:translateY(-100%);opacity:0}}@keyframes loadingCircle{0%{transform-origin:50% 50%;transform:rotate(0deg)}to{transform-origin:50% 50%;transform:rotate(1turn)}}.slide-up-appear,.slide-up-enter,.slide-up-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.slide-up-appear.slide-up-appear-active,.slide-up-enter.slide-up-enter-active{animation-name:antSlideUpIn;animation-play-state:running}.slide-up-leave.slide-up-leave-active{animation-name:antSlideUpOut;animation-play-state:running;pointer-events:none}.slide-up-appear,.slide-up-enter{opacity:0;animation-timing-function:cubic-bezier(.23,1,.32,1)}.slide-up-leave{animation-timing-function:cubic-bezier(.755,.05,.855,.06)}.slide-down-appear,.slide-down-enter,.slide-down-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.slide-down-appear.slide-down-appear-active,.slide-down-enter.slide-down-enter-active{animation-name:antSlideDownIn;animation-play-state:running}.slide-down-leave.slide-down-leave-active{animation-name:antSlideDownOut;animation-play-state:running;pointer-events:none}.slide-down-appear,.slide-down-enter{opacity:0;animation-timing-function:cubic-bezier(.23,1,.32,1)}.slide-down-leave{animation-timing-function:cubic-bezier(.755,.05,.855,.06)}.slide-left-appear,.slide-left-enter,.slide-left-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.slide-left-appear.slide-left-appear-active,.slide-left-enter.slide-left-enter-active{animation-name:antSlideLeftIn;animation-play-state:running}.slide-left-leave.slide-left-leave-active{animation-name:antSlideLeftOut;animation-play-state:running;pointer-events:none}.slide-left-appear,.slide-left-enter{opacity:0;animation-timing-function:cubic-bezier(.23,1,.32,1)}.slide-left-leave{animation-timing-function:cubic-bezier(.755,.05,.855,.06)}.slide-right-appear,.slide-right-enter,.slide-right-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.slide-right-appear.slide-right-appear-active,.slide-right-enter.slide-right-enter-active{animation-name:antSlideRightIn;animation-play-state:running}.slide-right-leave.slide-right-leave-active{animation-name:antSlideRightOut;animation-play-state:running;pointer-events:none}.slide-right-appear,.slide-right-enter{opacity:0;animation-timing-function:cubic-bezier(.23,1,.32,1)}.slide-right-leave{animation-timing-function:cubic-bezier(.755,.05,.855,.06)}@keyframes antSlideUpIn{0%{opacity:0;transform-origin:0 0;transform:scaleY(.8)}to{opacity:1;transform-origin:0 0;transform:scaleY(1)}}@keyframes antSlideUpOut{0%{opacity:1;transform-origin:0 0;transform:scaleY(1)}to{opacity:0;transform-origin:0 0;transform:scaleY(.8)}}@keyframes antSlideDownIn{0%{opacity:0;transform-origin:100% 100%;transform:scaleY(.8)}to{opacity:1;transform-origin:100% 100%;transform:scaleY(1)}}@keyframes antSlideDownOut{0%{opacity:1;transform-origin:100% 100%;transform:scaleY(1)}to{opacity:0;transform-origin:100% 100%;transform:scaleY(.8)}}@keyframes antSlideLeftIn{0%{opacity:0;transform-origin:0 0;transform:scaleX(.8)}to{opacity:1;transform-origin:0 0;transform:scaleX(1)}}@keyframes antSlideLeftOut{0%{opacity:1;transform-origin:0 0;transform:scaleX(1)}to{opacity:0;transform-origin:0 0;transform:scaleX(.8)}}@keyframes antSlideRightIn{0%{opacity:0;transform-origin:100% 0;transform:scaleX(.8)}to{opacity:1;transform-origin:100% 0;transform:scaleX(1)}}@keyframes antSlideRightOut{0%{opacity:1;transform-origin:100% 0;transform:scaleX(1)}to{opacity:0;transform-origin:100% 0;transform:scaleX(.8)}}.swing-appear,.swing-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.swing-appear.swing-appear-active,.swing-enter.swing-enter-active{animation-name:antSwingIn;animation-play-state:running}@keyframes antSwingIn{0%,to{transform:translateX(0)}20%{transform:translateX(-10px)}40%{transform:translateX(10px)}60%{transform:translateX(-5px)}80%{transform:translateX(5px)}}.zoom-appear,.zoom-enter,.zoom-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.zoom-appear.zoom-appear-active,.zoom-enter.zoom-enter-active{animation-name:antZoomIn;animation-play-state:running}.zoom-leave.zoom-leave-active{animation-name:antZoomOut;animation-play-state:running;pointer-events:none}.zoom-appear,.zoom-enter{transform:scale(0);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-leave{animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-big-appear,.zoom-big-enter,.zoom-big-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.zoom-big-appear.zoom-big-appear-active,.zoom-big-enter.zoom-big-enter-active{animation-name:antZoomBigIn;animation-play-state:running}.zoom-big-leave.zoom-big-leave-active{animation-name:antZoomBigOut;animation-play-state:running;pointer-events:none}.zoom-big-appear,.zoom-big-enter{transform:scale(0);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-big-leave{animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-big-fast-appear,.zoom-big-fast-enter,.zoom-big-fast-leave{animation-duration:.1s;animation-fill-mode:both;animation-play-state:paused}.zoom-big-fast-appear.zoom-big-fast-appear-active,.zoom-big-fast-enter.zoom-big-fast-enter-active{animation-name:antZoomBigIn;animation-play-state:running}.zoom-big-fast-leave.zoom-big-fast-leave-active{animation-name:antZoomBigOut;animation-play-state:running;pointer-events:none}.zoom-big-fast-appear,.zoom-big-fast-enter{transform:scale(0);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-big-fast-leave{animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-up-appear,.zoom-up-enter,.zoom-up-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.zoom-up-appear.zoom-up-appear-active,.zoom-up-enter.zoom-up-enter-active{animation-name:antZoomUpIn;animation-play-state:running}.zoom-up-leave.zoom-up-leave-active{animation-name:antZoomUpOut;animation-play-state:running;pointer-events:none}.zoom-up-appear,.zoom-up-enter{transform:scale(0);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-up-leave{animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-down-appear,.zoom-down-enter,.zoom-down-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.zoom-down-appear.zoom-down-appear-active,.zoom-down-enter.zoom-down-enter-active{animation-name:antZoomDownIn;animation-play-state:running}.zoom-down-leave.zoom-down-leave-active{animation-name:antZoomDownOut;animation-play-state:running;pointer-events:none}.zoom-down-appear,.zoom-down-enter{transform:scale(0);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-down-leave{animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-left-appear,.zoom-left-enter,.zoom-left-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.zoom-left-appear.zoom-left-appear-active,.zoom-left-enter.zoom-left-enter-active{animation-name:antZoomLeftIn;animation-play-state:running}.zoom-left-leave.zoom-left-leave-active{animation-name:antZoomLeftOut;animation-play-state:running;pointer-events:none}.zoom-left-appear,.zoom-left-enter{transform:scale(0);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-left-leave{animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-right-appear,.zoom-right-enter,.zoom-right-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.zoom-right-appear.zoom-right-appear-active,.zoom-right-enter.zoom-right-enter-active{animation-name:antZoomRightIn;animation-play-state:running}.zoom-right-leave.zoom-right-leave-active{animation-name:antZoomRightOut;animation-play-state:running;pointer-events:none}.zoom-right-appear,.zoom-right-enter{transform:scale(0);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-right-leave{animation-timing-function:cubic-bezier(.78,.14,.15,.86)}@keyframes antZoomIn{0%{opacity:0;transform:scale(.2)}to{opacity:1;transform:scale(1)}}@keyframes antZoomOut{0%{transform:scale(1)}to{opacity:0;transform:scale(.2)}}@keyframes antZoomBigIn{0%{opacity:0;transform:scale(.8)}to{transform:scale(1)}}@keyframes antZoomBigOut{0%{transform:scale(1)}to{opacity:0;transform:scale(.8)}}@keyframes antZoomUpIn{0%{opacity:0;transform-origin:50% 0;transform:scale(.8)}to{transform-origin:50% 0;transform:scale(1)}}@keyframes antZoomUpOut{0%{transform-origin:50% 0;transform:scale(1)}to{opacity:0;transform-origin:50% 0;transform:scale(.8)}}@keyframes antZoomLeftIn{0%{opacity:0;transform-origin:0 50%;transform:scale(.8)}to{transform-origin:0 50%;transform:scale(1)}}@keyframes antZoomLeftOut{0%{transform-origin:0 50%;transform:scale(1)}to{opacity:0;transform-origin:0 50%;transform:scale(.8)}}@keyframes antZoomRightIn{0%{opacity:0;transform-origin:100% 50%;transform:scale(.8)}to{transform-origin:100% 50%;transform:scale(1)}}@keyframes antZoomRightOut{0%{transform-origin:100% 50%;transform:scale(1)}to{opacity:0;transform-origin:100% 50%;transform:scale(.8)}}@keyframes antZoomDownIn{0%{opacity:0;transform-origin:50% 100%;transform:scale(.8)}to{transform-origin:50% 100%;transform:scale(1)}}@keyframes antZoomDownOut{0%{transform-origin:50% 100%;transform:scale(1)}to{opacity:0;transform-origin:50% 100%;transform:scale(.8)}}.ant-motion-collapse{overflow:hidden}.ant-motion-collapse-active{transition:height .15s cubic-bezier(.645,.045,.355,1),opacity .15s cubic-bezier(.645,.045,.355,1)!important}.ant-layout{display:flex;flex-direction:column;flex:auto;background:#fff}.ant-layout,.ant-layout *{box-sizing:border-box}.ant-layout.ant-layout-has-sider{flex-direction:row}.ant-layout.ant-layout-has-sider>.ant-layout,.ant-layout.ant-layout-has-sider>.ant-layout-content{overflow-x:hidden}.ant-layout-footer,.ant-layout-header{flex:0 0 auto}.ant-layout-header{background:#001529;padding:0 50px;height:64px;line-height:64px}.ant-layout-footer{background:#fff;padding:24px 50px;color:rgba(0,0,0,.65);font-size:14px}.ant-layout-content{flex:auto}.ant-layout-sider{transition:all .2s;position:relative;background:#001529;min-width:0}.ant-layout-sider-children{height:100%;padding-top:.1px;margin-top:-.1px}.ant-layout-sider-has-trigger{padding-bottom:48px}.ant-layout-sider-right{order:1}.ant-layout-sider-trigger{position:fixed;text-align:center;bottom:0;cursor:pointer;height:48px;line-height:48px;color:#fff;background:#002140;z-index:1;transition:all .2s}.ant-layout-sider-zero-width>*{overflow:hidden}.ant-layout-sider-zero-width-trigger{position:absolute;top:64px;right:-36px;text-align:center;width:36px;height:42px;line-height:42px;background:#001529;color:#fff;font-size:18px;border-radius:0 10px 10px 0;cursor:pointer;transition:background .3s ease}.ant-layout-sider-zero-width-trigger:hover{background:#192c3e}#___gatsby .ant-layout{height:100%;min-height:100%;-webkit-box-flex:1;-ms-flex:1;flex:1}#___gatsby{min-height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.layout{height:100%}.ant-card-hoverable:hover{-webkit-transform:translateY(-4px);-ms-transform:translateY(-4px);transform:translateY(-4px)}.main-content .ant-card-bordered{box-shadow:0 5px 40px rgba(0,0,0,.0902);border-width:0}.main-content .ant-card{border-radius:10px;margin:20px 0}.ant-divider-inner-text{font-size:2em}.page-header{background:#000;background-blend-mode:multiply,multiply;height:700px;box-shadow:0 2px 50px rgba(0,0,0,.68);margin-bottom:50px}.header-components{text-align:center;height:700px;background-image:url(./static/background.735138c2.jpg);background-attachment:fixed;background-size:auto 700px;background-repeat:no-repeat;background-position:top}.header-img{margin-top:30px;margin-left:100px;box-shadow:0 10px 50px rgba(0,0,0,.322)}.main-title{color:#fff;padding:100px 0 10px;font-size:50px;letter-spacing:13px;text-shadow:0 3px 30px rgba(0,0,0,.418)}.sub-title{color:hsla(0,0%,100%,.568);letter-spacing:13px;font-size:25px}.box .special{color:#fff;font-size:250px;line-height:250px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);padding:20px;width:300px;height:300px;font-family:JetLinkMediumOl10394b861a1ace4;text-shadow:0 1px 30px rgba(0,0,0,.596)}.box{display:inline-block;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);overflow:hidden;border:5px solid #fff;margin-top:70px}.ant-card{font-family:Monospaced Number,Chinese Quote,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.5;color:rgba(0,0,0,.65);box-sizing:border-box;margin:0;padding:0;list-style:none;background:#fff;border-radius:2px;position:relative;transition:all .3s}.ant-card-hoverable{cursor:pointer}.ant-card-hoverable:hover{box-shadow:0 2px 8px rgba(0,0,0,.09);border-color:rgba(0,0,0,.09)}.ant-card-bordered{border:1px solid #e8e8e8}.ant-card-head{background:#fff;border-bottom:1px solid #e8e8e8;padding:0 24px;border-radius:2px 2px 0 0;zoom:1;margin-bottom:-1px;min-height:48px}.ant-card-head:after,.ant-card-head:before{content:" ";display:table}.ant-card-head:after{clear:both;visibility:hidden;font-size:0;height:0}.ant-card-head-wrapper{display:flex}.ant-card-head-title{font-size:16px;padding:16px 0;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:rgba(0,0,0,.85);font-weight:500;display:inline-block;flex:1}.ant-card-head .ant-tabs{margin-bottom:-17px;clear:both}.ant-card-head .ant-tabs-bar{border-bottom:1px solid #e8e8e8}.ant-card-extra{float:right;padding:17.5px 0;text-align:right;margin-left:auto}.ant-card-body{padding:24px;zoom:1}.ant-card-body:after,.ant-card-body:before{content:" ";display:table}.ant-card-body:after{clear:both;visibility:hidden;font-size:0;height:0}.ant-card-contain-grid .ant-card-body{margin:-1px 0 0 -1px;padding:0}.ant-card-grid{border-radius:0;border:0;box-shadow:1px 0 0 0 #e8e8e8,0 1px 0 0 #e8e8e8,1px 1px 0 0 #e8e8e8,inset 1px 0 0 0 #e8e8e8,inset 0 1px 0 0 #e8e8e8;width:33.33%;float:left;padding:24px;transition:all .3s}.ant-card-grid:hover{position:relative;z-index:1;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-card-contain-tabs .ant-card-head-title{padding-bottom:0;min-height:32px}.ant-card-contain-tabs .ant-card-extra{padding-bottom:0}.ant-card-cover>*{width:100%;display:block}.ant-card-actions{border-top:1px solid #e8e8e8;background:#fafafa;zoom:1;list-style:none;margin:0;padding:0}.ant-card-actions:after,.ant-card-actions:before{content:" ";display:table}.ant-card-actions:after{clear:both;visibility:hidden;font-size:0;height:0}.ant-card-actions>li{float:left;text-align:center;margin:12px 0;color:rgba(0,0,0,.45)}.ant-card-actions>li>span{display:inline-block;font-size:14px;cursor:pointer;line-height:22px;min-width:32px;position:relative}.ant-card-actions>li>span:hover{color:#1890ff;transition:color .3s}.ant-card-actions>li>span>.anticon{font-size:16px}.ant-card-actions>li>span a{color:rgba(0,0,0,.45)}.ant-card-actions>li>span a:hover{color:#1890ff}.ant-card-actions>li:not(:last-child){border-right:1px solid #e8e8e8}.ant-card-wider-padding .ant-card-head{padding:0 32px}.ant-card-wider-padding .ant-card-body{padding:24px 32px}.ant-card-padding-transition .ant-card-body,.ant-card-padding-transition .ant-card-head{transition:padding .3s}.ant-card-padding-transition .ant-card-extra{transition:right .3s}.ant-card-type-inner .ant-card-head{padding:0 24px;background:#fafafa}.ant-card-type-inner .ant-card-head-title{padding:12px 0;font-size:14px}.ant-card-type-inner .ant-card-body{padding:16px 24px}.ant-card-type-inner .ant-card-extra{padding:13.5px 0}.ant-card-meta{margin:-4px 0;zoom:1}.ant-card-meta:after,.ant-card-meta:before{content:" ";display:table}.ant-card-meta:after{clear:both;visibility:hidden;font-size:0;height:0}.ant-card-meta-avatar{padding-right:16px;float:left}.ant-card-meta-detail{overflow:hidden}.ant-card-meta-detail>div:not(:last-child){margin-bottom:8px}.ant-card-meta-title{font-size:16px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:rgba(0,0,0,.85);font-weight:500}.ant-card-meta-description{color:rgba(0,0,0,.45)}.ant-card-loading .ant-card-body{user-select:none;padding:0}.ant-card-loading-content{padding:24px}.ant-card-loading-content p{margin:0}.ant-card-loading-block{display:inline-block;margin:5px 2% 0 0;height:14px;border-radius:2px;background:linear-gradient(90deg,rgba(207,216,220,.2),rgba(207,216,220,.4),rgba(207,216,220,.2));animation:card-loading 1.4s ease infinite;background-size:600% 600%}@keyframes card-loading{0%,to{background-position:0 50%}50%{background-position:100% 50%}}.ant-tabs.ant-tabs-card>.ant-tabs-bar .ant-tabs-nav-container{height:40px}.ant-tabs.ant-tabs-card>.ant-tabs-bar .ant-tabs-ink-bar{visibility:hidden}.ant-tabs.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab{margin:0;border:1px solid #e8e8e8;border-bottom:0;border-radius:10px 10px 0 0;background:#fafafa;margin-right:2px;padding:0 16px;transition:all .3s cubic-bezier(.645,.045,.355,1);line-height:38px}.ant-tabs.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab-active{background:#fff;border-color:#e8e8e8;color:#1890ff;padding-bottom:1px}.ant-tabs.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab-inactive{padding:0}.ant-tabs.ant-tabs-card>.ant-tabs-bar .ant-tabs-nav-wrap{margin-bottom:0}.ant-tabs.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab .anticon-close{color:rgba(0,0,0,.45);transition:all .3s;font-size:12px;margin-left:3px;margin-right:-5px;overflow:hidden;vertical-align:middle;width:16px;height:16px;height:14px}.ant-tabs.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab .anticon-close:hover{color:rgba(0,0,0,.85)}.ant-tabs.ant-tabs-card .ant-tabs-content>.ant-tabs-tabpane,.ant-tabs.ant-tabs-editable-card .ant-tabs-content>.ant-tabs-tabpane{transition:none!important}.ant-tabs.ant-tabs-card .ant-tabs-content>.ant-tabs-tabpane-inactive,.ant-tabs.ant-tabs-editable-card .ant-tabs-content>.ant-tabs-tabpane-inactive{overflow:hidden}.ant-tabs.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab:hover .anticon-close{opacity:1}.ant-tabs-extra-content{line-height:40px}.ant-tabs-extra-content .ant-tabs-new-tab{width:20px;height:20px;line-height:20px;text-align:center;cursor:pointer;border-radius:2px;border:1px solid #e8e8e8;font-size:12px;color:rgba(0,0,0,.65);transition:all .3s}.ant-tabs-extra-content .ant-tabs-new-tab:hover{color:#1890ff;border-color:#1890ff}.ant-tabs-vertical.ant-tabs-card>.ant-tabs-bar .ant-tabs-nav-container{height:auto}.ant-tabs-vertical.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab{border-bottom:1px solid #e8e8e8;margin-bottom:8px}.ant-tabs-vertical.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab-active{padding-bottom:4px}.ant-tabs-vertical.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab:last-child{margin-bottom:8px}.ant-tabs-vertical.ant-tabs-card>.ant-tabs-bar .ant-tabs-new-tab{width:90%}.ant-tabs-vertical.ant-tabs-card.ant-tabs-left>.ant-tabs-bar .ant-tabs-nav-wrap{margin-right:0}.ant-tabs-vertical.ant-tabs-card.ant-tabs-left>.ant-tabs-bar .ant-tabs-tab{border-right:0;border-radius:10px 0 0 10px;margin-right:1px}.ant-tabs-vertical.ant-tabs-card.ant-tabs-left>.ant-tabs-bar .ant-tabs-tab-active{margin-right:-1px;padding-right:18px}.ant-tabs-vertical.ant-tabs-card.ant-tabs-right>.ant-tabs-bar .ant-tabs-nav-wrap{margin-left:0}.ant-tabs-vertical.ant-tabs-card.ant-tabs-right>.ant-tabs-bar .ant-tabs-tab{border-left:0;border-radius:0 10px 10px 0;margin-left:1px}.ant-tabs-vertical.ant-tabs-card.ant-tabs-right>.ant-tabs-bar .ant-tabs-tab-active{margin-left:-1px;padding-left:18px}.ant-tabs.ant-tabs-card.ant-tabs-bottom>.ant-tabs-bar .ant-tabs-tab{border-bottom:1px solid #e8e8e8;border-top:0;border-radius:0 0 10px 10px}.ant-tabs.ant-tabs-card.ant-tabs-bottom>.ant-tabs-bar .ant-tabs-tab-active{color:#1890ff;padding-bottom:0;padding-top:1px}.ant-tabs{font-family:Monospaced Number,Chinese Quote,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.5;color:rgba(0,0,0,.65);box-sizing:border-box;margin:0;padding:0;list-style:none;position:relative;overflow:hidden;zoom:1}.ant-tabs:after,.ant-tabs:before{content:" ";display:table}.ant-tabs:after{clear:both;visibility:hidden;font-size:0;height:0}.ant-tabs-ink-bar{z-index:1;position:absolute;left:0;bottom:1px;box-sizing:border-box;height:2px;background-color:#1890ff;transform-origin:0 0}.ant-tabs-bar{border-bottom:1px solid #e8e8e8;margin:0 0 16px;outline:none}.ant-tabs-bar,.ant-tabs-nav-container{transition:padding .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs-nav-container{overflow:hidden;font-size:14px;line-height:1.5;box-sizing:border-box;position:relative;white-space:nowrap;margin-bottom:-1px;zoom:1}.ant-tabs-nav-container:after,.ant-tabs-nav-container:before{content:" ";display:table}.ant-tabs-nav-container:after{clear:both;visibility:hidden;font-size:0;height:0}.ant-tabs-nav-container-scrolling{padding-left:32px;padding-right:32px}.ant-tabs-bottom .ant-tabs-bar{border-bottom:none;border-top:1px solid #e8e8e8}.ant-tabs-bottom .ant-tabs-ink-bar{bottom:auto;top:1px}.ant-tabs-bottom .ant-tabs-nav-container{margin-bottom:0;margin-top:-1px}.ant-tabs-tab-next,.ant-tabs-tab-prev{user-select:none;z-index:2;width:0;height:100%;cursor:pointer;border:0;background-color:transparent;position:absolute;text-align:center;color:rgba(0,0,0,.45);transition:width .3s cubic-bezier(.645,.045,.355,1),opacity .3s cubic-bezier(.645,.045,.355,1),color .3s cubic-bezier(.645,.045,.355,1);opacity:0;pointer-events:none}.ant-tabs-tab-next.ant-tabs-tab-arrow-show,.ant-tabs-tab-prev.ant-tabs-tab-arrow-show{opacity:1;width:32px;height:100%;pointer-events:auto}.ant-tabs-tab-next:hover,.ant-tabs-tab-prev:hover{color:rgba(0,0,0,.65)}.ant-tabs-tab-next-icon,.ant-tabs-tab-prev-icon{font-style:normal;font-weight:700;font-variant:normal;line-height:inherit;vertical-align:baseline;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;text-transform:none}.ant-tabs-tab-next-icon:before,.ant-tabs-tab-prev-icon:before{display:block;font-family:anticon!important;display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg)}:root .ant-tabs-tab-next-icon:before,:root .ant-tabs-tab-prev-icon:before{font-size:12px}.ant-tabs-tab-btn-disabled{cursor:not-allowed}.ant-tabs-tab-btn-disabled,.ant-tabs-tab-btn-disabled:hover{color:rgba(0,0,0,.25)}.ant-tabs-tab-next{right:2px}.ant-tabs-tab-next-icon:before{content:"\E61F"}.ant-tabs-tab-prev{left:0}.ant-tabs-tab-prev-icon:before{content:"\E620"}:root .ant-tabs-tab-prev{filter:none}.ant-tabs-nav-wrap{overflow:hidden;margin-bottom:-1px}.ant-tabs-nav-scroll{overflow:hidden;white-space:nowrap}.ant-tabs-nav{box-sizing:border-box;padding-left:0;transition:transform .3s cubic-bezier(.645,.045,.355,1);position:relative;margin:0;list-style:none;display:inline-block}.ant-tabs-nav:after,.ant-tabs-nav:before{display:table;content:" "}.ant-tabs-nav:after{clear:both}.ant-tabs-nav .ant-tabs-tab-disabled{pointer-events:none;cursor:default;color:rgba(0,0,0,.25)}.ant-tabs-nav .ant-tabs-tab{display:inline-block;height:100%;margin:0 32px 0 0;padding:12px 16px;box-sizing:border-box;position:relative;transition:color .3s cubic-bezier(.645,.045,.355,1);cursor:pointer;text-decoration:none}.ant-tabs-nav .ant-tabs-tab:last-child{margin-right:0}.ant-tabs-nav .ant-tabs-tab:hover{color:#40a9ff}.ant-tabs-nav .ant-tabs-tab:active{color:#096dd9}.ant-tabs-nav .ant-tabs-tab .anticon{margin-right:8px}.ant-tabs-nav .ant-tabs-tab-active{color:#1890ff;font-weight:500}.ant-tabs-large .ant-tabs-nav-container{font-size:16px}.ant-tabs-large .ant-tabs-tab{padding:16px}.ant-tabs-small .ant-tabs-nav-container{font-size:14px}.ant-tabs-small .ant-tabs-tab{padding:8px 16px}.ant-tabs:not(.ant-tabs-vertical)>.ant-tabs-content{width:100%}.ant-tabs:not(.ant-tabs-vertical)>.ant-tabs-content>.ant-tabs-tabpane{flex-shrink:0;width:100%;transition:opacity .45s;opacity:1}.ant-tabs:not(.ant-tabs-vertical)>.ant-tabs-content>.ant-tabs-tabpane-inactive{opacity:0;height:0;padding:0!important;pointer-events:none}.ant-tabs:not(.ant-tabs-vertical)>.ant-tabs-content-animated{display:flex;flex-direction:row;will-change:margin-left;transition:margin-left .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs-vertical>.ant-tabs-bar{border-bottom:0;height:100%}.ant-tabs-vertical>.ant-tabs-bar-tab-next,.ant-tabs-vertical>.ant-tabs-bar-tab-prev{width:32px;height:0;transition:height .3s cubic-bezier(.645,.045,.355,1),opacity .3s cubic-bezier(.645,.045,.355,1),color .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs-vertical>.ant-tabs-bar-tab-next.ant-tabs-tab-arrow-show,.ant-tabs-vertical>.ant-tabs-bar-tab-prev.ant-tabs-tab-arrow-show{width:100%;height:32px}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-tab{float:none;margin:0 0 16px;padding:8px 24px;display:block}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-tab:last-child{margin-bottom:0}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-extra-content{text-align:center}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-nav-scroll{width:auto}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-nav-container,.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-nav-wrap{height:100%}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-nav-container{margin-bottom:0}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-nav-container.ant-tabs-nav-container-scrolling{padding:32px 0}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-nav-wrap{margin-bottom:0}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-nav{width:100%}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-ink-bar{width:2px;left:auto;height:auto;top:0}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-tab-next{width:100%;bottom:0;height:32px}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-tab-next-icon:before{content:"\E61D"}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-tab-prev{top:0;width:100%;height:32px}.ant-tabs-vertical>.ant-tabs-bar .ant-tabs-tab-prev-icon:before{content:"\E61E"}.ant-tabs-vertical>.ant-tabs-content{overflow:hidden;width:auto;margin-top:0!important}.ant-tabs-vertical.ant-tabs-left>.ant-tabs-bar{float:left;border-right:1px solid #e8e8e8;margin-right:-1px;margin-bottom:0}.ant-tabs-vertical.ant-tabs-left>.ant-tabs-bar .ant-tabs-tab{text-align:right}.ant-tabs-vertical.ant-tabs-left>.ant-tabs-bar .ant-tabs-nav-container,.ant-tabs-vertical.ant-tabs-left>.ant-tabs-bar .ant-tabs-nav-wrap{margin-right:-1px}.ant-tabs-vertical.ant-tabs-left>.ant-tabs-bar .ant-tabs-ink-bar{right:1px}.ant-tabs-vertical.ant-tabs-left>.ant-tabs-content{padding-left:24px;border-left:1px solid #e8e8e8}.ant-tabs-vertical.ant-tabs-right>.ant-tabs-bar{float:right;border-left:1px solid #e8e8e8;margin-left:-1px;margin-bottom:0}.ant-tabs-vertical.ant-tabs-right>.ant-tabs-bar .ant-tabs-nav-container,.ant-tabs-vertical.ant-tabs-right>.ant-tabs-bar .ant-tabs-nav-wrap{margin-left:-1px}.ant-tabs-vertical.ant-tabs-right>.ant-tabs-bar .ant-tabs-ink-bar{left:1px}.ant-tabs-vertical.ant-tabs-right>.ant-tabs-content{padding-right:24px;border-right:1px solid #e8e8e8}.ant-tabs-bottom>.ant-tabs-bar{margin-bottom:0;margin-top:16px}.ant-tabs-bottom .ant-tabs-ink-bar-animated,.ant-tabs-top .ant-tabs-ink-bar-animated{transition:transform .3s cubic-bezier(.645,.045,.355,1),width .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs-left .ant-tabs-ink-bar-animated,.ant-tabs-right .ant-tabs-ink-bar-animated{transition:transform .3s cubic-bezier(.645,.045,.355,1),height .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs-no-animation>.ant-tabs-content-animated,.ant-tabs-vertical>.ant-tabs-content-animated,.no-flex>.ant-tabs-content-animated{transform:none!important;margin-left:0!important}.ant-tabs-no-animation>.ant-tabs-content>.ant-tabs-tabpane-inactive,.ant-tabs-vertical>.ant-tabs-content>.ant-tabs-tabpane-inactive,.no-flex>.ant-tabs-content>.ant-tabs-tabpane-inactive{display:none}.ant-divider{font-family:Monospaced Number,Chinese Quote,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.5;color:rgba(0,0,0,.65);box-sizing:border-box;margin:0;padding:0;list-style:none;background:#e8e8e8}.ant-divider,.ant-divider-vertical{margin:0 8px;display:inline-block;height:.9em;width:1px;vertical-align:middle;position:relative;top:-.06em}.ant-divider-horizontal{display:block;height:1px;width:100%;margin:24px 0}.ant-divider-horizontal.ant-divider-with-text{display:table;white-space:nowrap;text-align:center;background:transparent;font-weight:500;color:rgba(0,0,0,.85);font-size:16px;margin:16px 0}.ant-divider-horizontal.ant-divider-with-text:after,.ant-divider-horizontal.ant-divider-with-text:before{content:"";display:table-cell;position:relative;top:50%;width:50%;border-top:1px solid #e8e8e8;transform:translateY(50%)}.ant-divider-inner-text{display:inline-block;padding:0 24px}.ant-divider-dashed{background:none;border-top:1px dashed #e8e8e8}.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed{border-top:0}.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed:after,.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed:before{border-style:dashed none none}.main-content{max-width:700px;margin:0 auto}</style></head>
<body>
<div id="___gatsby"><div class="ant-layout" data-reactroot="" data-reactid="1" data-react-checksum="77998708"><div class="ant-layout-content" style="padding:0;margin-top:0;" data-reactid="2"><div data-reactid="3"><div data-reactid="4"><div class="page-header" data-reactid="5"><div class="header-components" data-reactid="6"><div class="box" data-reactid="7"><div class="css1034ec73ed1ace4 special" data-reactid="8">宝</div></div><div class="main-title" data-reactid="9">国宝特攻</div><div class="sub-title" data-reactid="10">带你走近国家宝藏</div></div></div>
<div class="main-content" data-reactid="11">
<div class="ant-card ant-card-bordered" data-reactid="12"><div class="ant-card-body" data-reactid="13"><p style="margin:0;" data-reactid="14"><p data-reactid="15">2017年12月初,《国家宝藏》在央视三套正式上线。这是一档将纪录片与综艺手法融合运用的文博探索节目,由央视与故宫博物院、上海博物馆、南京博物院、湖南省博物馆、河南博物院、陕西历史博物馆、湖北省博物馆、浙江省博物馆、辽宁省博物馆九大国家级重点博物馆合作,在文博领域进行深入挖掘。</p><p data-reactid="16">上线之后,《国家宝藏》一夜刷屏,豆瓣评分更是高达9.3,成为2017年末综艺最强黑马。节目中九大博物馆每集一家,推荐3件镇馆之宝,每件宝藏都拥有自己的明星“国宝守护人”,由他们讲述“大国重器”们的前世今生,解读中华文化的基因密码,最终交予民众甄选。</p><p data-reactid="17">当文化综艺拓展到更加深邃广袤的领域,当历史的纵横向我们栩栩如生的展现,当上下五千年中华文明凝练与舞台之上,古老与年轻握手,古代与现代对话。我们对中华文物宝藏的归属感和延续感熊熊燃烧,文物,见证着中国源远流长的历史;宝藏,凝聚着华夏经久不息的文化自信。当我们步入新的时代,那些屹立的文物,那些矗立的博物馆,在亘古的光年那端,向我们投来坚定的目光。</p></p></div></div>
<div style="height:30px;" data-reactid="18"></div><div class="ant-divider ant-divider-horizontal ant-divider-with-text" data-reactid="19"><span class="ant-divider-inner-text" data-reactid="20">一、宝藏在中国</span></div>
<p data-reactid="21"><!-- react-text: 22 -->在选用一二三级博物馆相关信息并剔除纪念馆、美术馆和图书馆后,<!-- /react-text --><strong data-reactid="23">广东省</strong><!-- react-text: 24 -->以40家博物馆居于数量第一,<!-- /react-text --><strong data-reactid="25">浙江省</strong><!-- react-text: 26 -->、<!-- /react-text --><strong data-reactid="27">山东省</strong><!-- react-text: 28 -->以37与35的数量居第二及第三。<!-- /react-text --></p>
<div id="main" style="height:400px;width:100%;" class="echarts-for-react " ></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main'));
var data = [
[40, 3, 15, 22],
[37, 4, 13, 20],
[35, 4, 10, 21],
[31, 3, 10, 18],
[30, 3, 10, 17],
[30, 6, 9, 15],
[26, 1, 9, 16],
[26, 4, 8, 14],
[25, 1, 6, 18],
[25, 3, 8, 14],
[25, 6, 6, 13],
[23, 3, 8, 14],
[22, 1, 6, 15],
[19, 1, 11, 7],
[19, 2, 1, 16],
[19, 1, 5, 13],
[18, 1, 5, 12],
[16, 5, 4, 7],
[15, 3, 8, 14],
[15, 1, 4, 10],
[13, 3, 6, 4],
[9, 1, 4, 4],
[9, 2, 1, 6],
[8, 1, 2, 5],
[7, 1, 3, 3],
[6, 0, 1, 5],
[4, 0, 2, 2],
[3, 2, 1, 0],
[3, 2, 0, 1],
[1, 1, 0, 0],
[1, 1, 0, 0]
];
var cities = ['广东', '浙江', '山东', '河南', '湖北', '陕西', '内蒙古', '江苏', '安徽', '福建', '四川', '河北', '甘肃', '山西', '江西', '广西', '黑龙江', '北京', '湖南', '云南', '辽宁','吉林', '重庆', '新疆', '上海', '青海', '贵州', '天津', '宁夏', '海南', '西藏'];
var barHeight = 50;
option = {
title: {
text: '全国各省博物馆数目统计',
subtext: ''
},
legend: {
show: true,
data: ['价格范围', '均值']
},
grid: {
top: 100
},
angleAxis: {
type: 'category',
data: cities
},
tooltip: {
show: true,
formatter: function (params) {
var id = params.dataIndex;
return cities[id] + '<br>总计:' + data[id][0] + '<br>一级博物馆:' + data[id][1] + '<br>二级博物馆:' + data[id][2] + '<br>三级博物馆:' + data[id][3];
}
},
radiusAxis: {
},
polar: {
},
series: [{
type: 'bar',
data: data.map(function (d) {
return d[0];
}),
coordinateSystem: 'polar',
name: '价格范围',
stack: '最大最小值'
}, ],
legend: {
show: true,
data: ['A', 'B', 'C','D']
}
};
myChart.setOption(option);
</script>
</div>
<div class="main-content" data-reactid="11">
<p>目前我国可移动文物数量最多的五个省(直辖市)分别是:<!-- /react-text --><strong data-reactid="35">北京市、陕西省、山东省、河南省、山西省</strong><!-- react-text: 36 -->。以上五省(直辖市)合计32948978件,占可移动文物总量的51.42%。<!-- /react-text --></p><p data-reactid="37"><!-- react-text: 38 -->根据35种文物不同分类结果汇总,数量最多的五个类别分别是:<!-- /react-text --><strong data-reactid="39">钱币,古籍图书,档案文书,陶器与瓷器</strong><!-- react-text: 40 -->。以上五个类别合计45353663件,数量占比70.78%。<!-- /react-text --></p>
<div id="main2" style="height:350px;width:100%;" class="echarts-for-react " ></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main2'));
var option = {
title: {
text: '全国各省、各种类文物数量统计',
subtext: '',
x: '50%',
},
tooltip: {
trigger: 'item',
formatter: "{a} <br/>{b}: {c} ({d}%)"
},
legend: [{
orient: 'vertical',
x: 'left',
data:['北京','陕西','山东','河南','山西', '其他城市']
},{
orient: 'vertical',
x: 'right',
data:['钱币','古籍图书','档案文书','陶器','瓷器','其他']
}],
series: [
{
name:'各省可移动文物数量',
type:'pie',
center : ['25%', '50%'],
radius: ['30%', '50%'],
avoidLabelOverlap: false,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '30',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:11615758, name:'北京'},
{value:7748750, name:'陕西'},
{value:5580463, name:'山东'},
{value:4783457, name:'河南'},
{value:3220550, name:'山西'},
{value:31129159, name:'其他城市'}
]
},
{
name:'各种类文物数量',
type:'pie',
center : ['75%', '50%'],
radius: ['30%', '50%'],
avoidLabelOverlap: false,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '30',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:24827078, name:'钱币'},
{value:11912756, name:'古籍图书'},
{value:4073555, name:'档案文书'},
{value:2287469, name:'陶器'},
{value:2252805, name:'瓷器'},
{value:18723284, name:'其他'}
]
}
],
};
myChart.setOption(option);
</script>
</div>
<!--
<div class="ant-card ant-card-bordered" data-reactid="41"><div class="ant-card-body" data-reactid="42"><div class="parent" data-reactid="43"><div style="height:350px;width:100%;" class="echarts-for-react " data-reactid="44"></div></div></div></div> -->
<div class="main-content" data-reactid="11">
<p data-reactid="45">藏品具有为博物馆研究工作提供物证价值的作用,是大自然演变及人类社会进步过程中的初始物证。它们真实地再现了事物的本来面目,给研究者和观众提供了原本的历史、自然信息。</p>
<!-- <div class="ant-card ant-card-bordered" data-reactid="46"><div class="ant-card-body" data-reactid="47"><div class="parent" data-reactid="48"><div style="height:400px;width:100%;" class="echarts-for-react " data-reactid="49"></div></div></div></div> -->
<div id="main3" style="height:400px;width:100%;" class="echarts-for-react "></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main3'));
var option = {
title: {
text: '全国各级可移动文物数量及文物保存程度',
subtext: '',
x: 'center'
},
tooltip: {
trigger: 'item',
formatter: "{a} <br/>{b}: {c} ({d}%)"
},
legend: [{
orient: 'vertical',
x: 'left', y:'10%',
data:['一级','二级','三级','一般','未定级']
},{
orient: 'vertical',
x: 'right', y:'10%',
data:['不需修复','需要修复','急需修复','已修复']
},{
orient: 'vertical',
x: 'center', y:'10%',
data:['完整','基本完整','残缺','严重残缺']
}],
series: [
{
name:'各级别可移动文物数量',
type:'pie',
center : ['20%', '50%'],
radius: ['20%', '33%'],
avoidLabelOverlap: false,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '25',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:218911, name:'一级'},
{value:551192, name:'二级'},
{value:3086165, name:'三级'},
{value:24353746, name:'一般'},
{value:35863164, name:'未定级'}
]
},
{
name:'可移动文物保存状态',
type:'pie',
center : ['80%', '50%'],
radius: ['20%', '33%'],
avoidLabelOverlap: false,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '20',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:37515953, name:'不需修复'},
{value:23222812, name:'需要修复'},
{value:1134956, name:'急需修复'},
{value:684776, name:'已修复'}
]
},
{
name:'可移动文物完残程度',
type:'pie',
center : ['50%', '50%'],
radius: ['20%', '33%'],
avoidLabelOverlap: false,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '25',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:14970248, name:'完整'},
{value:37466284, name:'基本完整'},
{value:9027191, name:'残缺'},
{value:1094774, name:'严重残缺'}
]
}
],
};
myChart.setOption(option);
</script>
</div>
<div class="main-content" data-reactid="11">
<div class="ant-divider ant-divider-horizontal ant-divider-with-text" data-reactid="50"><span class="ant-divider-inner-text" data-reactid="51">二、文物来自哪里</span></div><p data-reactid="52">我国博物馆中的藏品,主要有以下来源和获取途径:</p><ul data-reactid="53"><li data-reactid="54"><p data-reactid="55"><strong data-reactid="56">征集购买</strong><!-- react-text: 57 -->:以有偿形式取得所有权的文物,来源于原所有权单位或所有权人。<!-- /react-text --></p></li><li data-reactid="58"><p data-reactid="59"><strong data-reactid="60">接受捐赠</strong><!-- react-text: 61 -->:以无偿或奖励形式取得所有权的文物。<!-- /react-text --></p></li><li data-reactid="62"><p data-reactid="63"><strong data-reactid="64">依法交换</strong><!-- react-text: 65 -->:国有文物收藏单位之间依据相关程序交换的文物。<!-- /react-text --></p></li><li data-reactid="66"><p data-reactid="67"><strong data-reactid="68">拨交</strong><!-- react-text: 69 -->:通过行政手段变更使用权或保管权的文物。<!-- /react-text --></p></li><li data-reactid="70"><p data-reactid="71"><strong data-reactid="72">移交</strong><!-- react-text: 73 -->:公安、海关、工商等执法部门移交罚没的文物。<!-- /react-text --></p></li><li data-reactid="74"><p data-reactid="75"><strong data-reactid="76">旧藏</strong><!-- react-text: 77 -->:收藏单位继承的历史上原有的收藏并保存至今的文物。<!-- /react-text --></p></li><li data-reactid="78"><p data-reactid="79"><strong data-reactid="80">发掘</strong><!-- react-text: 81 -->:经正式考古发掘出土(水)的文物。<!-- /react-text --></p></li><li data-reactid="82"><p data-reactid="83"><strong data-reactid="84">采集</strong><!-- react-text: 85 -->:捡拾上交的文物。<!-- /react-text --></p></li><li data-reactid="86"><p data-reactid="87"><strong data-reactid="88">拣选</strong><!-- react-text: 89 -->:银行、冶炼厂、造纸厂及物资回收部门将拣选的文物移交给主管部门指定的文物收藏单位。<!-- /react-text --></p></li><li data-reactid="90"><p data-reactid="91">其他</p></li></ul><p data-reactid="92">其中,我国的旧藏文物数量最多,所占比重也最大,达到了我国全部可移动文物的41%,这也足见我国千年历史的深厚蕴藏。</p>
<!-- <div class="ant-card ant-card-bordered" data-reactid="93"><div class="ant-card-body" data-reactid="94"><div class="parent" data-reactid="95"><div style="height:500px;width:100%;" class="echarts-for-react " data-reactid="96"></div></div></div></div> -->
<div id="main4" style="height:500px;width:100%;" class="echarts-for-react "></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main4'));
var option = {
title: {
text: '各途径来源可移动文物数量',
subtext: '',
sublink: 'http://e.weibo.com/1341556070/AjQH99che'
},
tooltip : {
trigger: 'axis',
axisPointer : { // 坐标轴指示器,坐标轴触发有效
type : 'shadow' // 默认为直线,可选为:'line' | 'shadow'
},
formatter: function (params) {
var tar = params[1];
return tar.name + '<br/>' + tar.seriesName + ' : ' + tar.value;
}
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type : 'category',
splitLine: {show:false},
data : ['合计','旧藏','发掘','征集购买','移交','接受捐赠', '拨交', '采集', '其他', '拣选', '依法交换']
},
yAxis: {
type : 'value'
},
series: [
{
name: '辅助',
type: 'bar',
stack: '总量',
itemStyle: {
normal: {
barBorderColor: 'rgba(0,0,0,0)',
color: 'rgba(0,0,0,0)'
},
emphasis: {
barBorderColor: 'rgba(0,0,0,0)',
color: 'rgba(0,0,0,0)'
}
},
data: [0, 38105390, 27170327, 16681612, 12775574, 8934299, 5496422, 2412599, 1161876, 92536]
},
{
name: '可移动文物数量',
type: 'bar',
stack: '总量',
label: {
normal: {
show: true,
position: 'inside'
}
},
data:[64073178, 25967788, 10935063, 10488715, 3906038, 3841275, 3437877, 3083823, 1250723, 1069340, 92536]
}
]
};
myChart.setOption(option);
</script>
<div>
<div class="main-content" data-reactid="11">
<div class="ant-divider ant-divider-horizontal ant-divider-with-text" data-reactid="97"><span class="ant-divider-inner-text" data-reactid="98">三、你所在的城市博物馆发展情况如何</span></div><p data-reactid="99"><!-- react-text: 100 -->受历史渊源和城市发展水平等多因素影响,各个城市的博物馆基本情况呈现出不同的样态。其中,从2016年数据来看,<!-- /react-text --><strong data-reactid="101">山东省</strong><!-- react-text: 102 -->的博物馆机构数量、基本陈列展览数量均位于全国所有地区(除港澳台)的第一位,而<!-- /react-text --><strong data-reactid="103">四川省</strong><!-- react-text: 104 -->的文物藏品数量、总参观人次位于全国所有地区(除港澳台)的第一位。<!-- /react-text --></p>
<!-- <div class="ant-card ant-card-bordered" data-reactid="105"><div class="ant-card-body" data-reactid="106"><div class="parent" data-reactid="107"><div style="height:600px;width:100%;" class="echarts-for-react " data-reactid="108"></div></div></div></div> -->
<div id="main5" style="height:600px;width:100%;" class="echarts-for-react "></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main5'));
var builderJson = {
"charts": {
"江苏": 8512,
"四川": 5976,
"浙江": 5957,
"山东": 5836,
"陕西": 5338,
"河南": 4964,
"湖南": 4784,
"广东": 4727,
"江西": 3391,
"安徽": 2798,
"河北": 2724,
"湖北": 2671,
"福建": 2545,
"重庆": 2528,
"甘肃": 2317
},
"components": {
"西藏": 55,
"海南": 104,
"宁夏": 188,
"青海": 247,
"北京": 649,
"新疆": 686,
"吉林": 943,
"天津": 1013,
"内蒙古": 1124,
"辽宁": 1389,
"山西": 1460,
"贵州": 1654,
"广西": 1773,
"云南": 1912,
"黑龙江": 2201,
"上海": 2218
},
"ie": 2000
};
var downloadJson = {
"山东": 393,
"江苏": 317,
"浙江": 275,
"陕西": 274,
"河南": 270,
"四川": 239,
"湖北": 183,
"广东": 177,
"黑龙江": 176,
"安徽": 171,
"其他省份": 1634
};
var themeJson = {
"山东": 2474,
"江苏": 1986,
"浙江": 1968,
"广东": 1733,
"陕西": 1183,
"四川": 1161,
"河南": 1133,
"上海": 1094,
"湖北": 988,
"福建": 909,
"其他省份": 8480
};
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
canvas.width = canvas.height = 100;
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
ctx.globalAlpha = 0.08;
ctx.font = '20px Microsoft Yahei';
ctx.translate(50, 50);
ctx.rotate(-Math.PI / 4);
option = {
backgroundColor: {
type: 'pattern',
image: canvas,
repeat: 'repeat'
},
tooltip: {},
title: [{
text: '',
subtext: '',
x:'center'
},{
text: '2016年全国各省区博物馆参观人数',
subtext: '总计:' + 85059 + '(万人)',
x: '25%',
textAlign: 'center'
}, {
text: '各省文物相关机构数',
subtext: '总计: ' + '4109(个)',
x: '75%',
textAlign: 'center'
}, {
text: '各省博物馆基本陈列展览数',
subtext: '总计 ' + '23109(个)',
x: '75%',
y: '50%',
textAlign: 'center'
}],
grid: [{
top: 50,
width: '50%',
bottom: '45%',
left: 10,
containLabel: true
}, {
top: '55%',
width: '50%',
bottom: 0,
left: 10,
containLabel: true
}],
xAxis: [{
type: 'value',
max: builderJson.all,
splitLine: {
show: false
}
}, {
type: 'value',
max: builderJson.all,
gridIndex: 1,
splitLine: {
show: false
}
}],
yAxis: [{
type: 'category',
data: Object.keys(builderJson.charts),
axisLabel: {
interval: 0,
rotate: 30
},
splitLine: {
show: false
}
}, {
gridIndex: 1,
type: 'category',
data: Object.keys(builderJson.components),
axisLabel: {
interval: 0,
rotate: 30
},
splitLine: {
show: false
}
}],
series: [{
type: 'bar',
stack: 'chart',
z: 3,
label: {
normal: {
position: 'right',
show: true
}
},
data: Object.keys(builderJson.charts).map(function (key) {
return builderJson.charts[key];
})
}, {
type: 'bar',
stack: 'chart',
silent: true,
itemStyle: {
normal: {
color: '#eee'
}
},
data: Object.keys(builderJson.charts).map(function (key) {
return builderJson.all - builderJson.charts[key];
})
}, {
type: 'bar',
stack: 'component',
xAxisIndex: 1,
yAxisIndex: 1,
z: 3,
label: {
normal: {
position: 'right',
show: true
}
},
data: Object.keys(builderJson.components).map(function (key) {
return builderJson.components[key];
})
}, {
type: 'bar',
stack: 'component',
silent: true,
xAxisIndex: 1,
yAxisIndex: 1,
itemStyle: {
normal: {
color: '#eee'
}
},
data: Object.keys(builderJson.components).map(function (key) {
return builderJson.all - builderJson.components[key];
})
}, {
type: 'pie',
radius: [0, '30%'],
center: ['75%', '25%'],
data: Object.keys(downloadJson).map(function (key) {
return {
name: key.replace('.js', ''),
value: downloadJson[key]
}
})
}, {
type: 'pie',
radius: [0, '30%'],
center: ['75%', '75%'],
data: Object.keys(themeJson).map(function (key) {
return {
name: key.replace('.js', ''),
value: themeJson[key]
}
})
}]
}
myChart.setOption(option);
</script>
<div class="main-content" data-reactid="11">
<p data-reactid="109">影响博物馆发展情况的的因素有多种,数据能帮助我们看出一些端倪。山东是中国文化的发源地,中国人所尊崇的孔孟之道也起源于山东,形成了以龙山文化为代表的“华夏文明”;四川在距今25000年前开始出现人类文明,并在新石器时代晚期形成了以宝墩文化、三星堆遗址、金沙遗址为代表的高度发达的“古蜀文明”。“华夏文明”与“古蜀文明”共同构成了中国上古三大文明之二。由此可见,历史文化底蕴作为影响城市博物馆发展的重要因素,对其有着至关重要的意义。</p><div class="ant-divider ant-divider-horizontal ant-divider-with-text" data-reactid="110"><span class="ant-divider-inner-text" data-reactid="111">四、以江苏为例</span></div><p data-reactid="112">江苏省是中国东部沿海地区经济发达、人口素质较高的地区之一,作为“中国三大博物院之一”的南京博物院就坐落于此。随着中国博物馆建设步伐的加快,江苏省内的众多博物馆,无疑为省内的经济、文化建设起到了巨大的推动作用。</p>
<div class="main-content" data-reactid="11">
<!-- <div class="ant-card ant-card-bordered" data-reactid="113"><div class="ant-card-body" data-reactid="114"><div class="parent" data-reactid="115"><div style="height:400px;width:100%;" class="echarts-for-react " data-reactid="116"></div></div></div></div> -->
<div class="main-content" data-reactid="11">
<div id="main6" style="height:400px;width:100%;" class="echarts-for-react "></div>
<script type="text/javascript">
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main6'));
var colors = ['#5793f3', '#d14a61', '#675bba'];
var option = {
color: colors,
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'cross'
}
},
title: {
text: '2013-2016年江苏省博物馆总体发展情况',
subtext: '',
x: '25%',
textAlign: 'center'
},
grid: {
right: '30%'
},
toolbox: {
feature: {
dataView: {show: true, readOnly: false},
restore: {show: true},
saveAsImage: {show: true}
}
},
legend: {
data:['藏品数','基本陈列数','参观人次'],
x: '50%',
},
xAxis: [
{
type: 'category',
axisTick: {
alignWithLabel: true
},
data: ['1月','2月','3月','4月']
}
],
yAxis: [
{
type: 'value',
name: '藏品数',
min: 0,
max: 2000000,
interval: 200000,
position: 'right',
axisLine: {
lineStyle: {
color: colors[0]
}
},
axisLabel: {
formatter: '{value} 个/套'
}
},
{
type: 'value',
name: '基本陈列数',
min: 0,
max: 1000,
interval: 100,
position: 'right',
offset: 120,
axisLine: {
lineStyle: {
color: colors[1]
}
},
axisLabel: {
formatter: '{value} 个'
}
},
{
type: 'value',
name: '参观人次',
min: 0,
max: 10000,
position: 'left',
axisLine: {
lineStyle: {
color: colors[2]
}
},
axisLabel: {
formatter: '{value} 万人'
}
}
],
series: [
{
name:'藏品数',
type:'bar',
data:[1665928, 1721406, 1754310, 1767257]
},
{
name:'基本陈列数',
type:'bar',
yAxisIndex: 1,
data:[698, 790, 837, 870]
},
{
name:'参观人次',
type:'line',
yAxisIndex: 2,
data:[6122.41, 7044.37, 7849.64, 8511.60]
}
]
};
myChart.setOption(option);
</script>
<div id="main7" style="height:400px;width:100%;" class="echarts-for-react "></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main7'));
var option = {
title: {
text: '2016年江苏省各地区博物馆综合情况',
subtext: '',
x:'50%',
},
tooltip: {
trigger: 'item',
formatter: "{a} <br/>{b}: {c} ({d}%)"
},
legend: [{
orient: 'vertical',
x: 'left',
data:['南京','无锡','苏州','常州','南通', '徐州', '泰州', '镇江', '淮安', '盐城', '连云港', '扬州','宿迁']
}],
series: [
{
name:'各市文物相关机构数',
type:'pie',
center : ['42%', '30%'],
radius: ['20%', '40%'],
avoidLabelOverlap: false,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '30',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:54, name:'南京'},
{value:62, name:'无锡'},
{value:42, name:'苏州'},
{value:27, name:'常州'},
{value:24, name:'南通'},
{value:21, name:'徐州'},
{value:19, name:'泰州'},
{value:14, name:'镇江'},
{value:11, name:'淮安'},
{value:11, name:'盐城'},
{value:10, name:'连云港'},
{value:10, name:'扬州'},
{value:9, name:'宿迁'}
]
},{
name:'各市藏品数(件/套)',
type:'pie',
center : ['80%', '30%'],
radius: ['20%', '40%'],
avoidLabelOverlap: false,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '30',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:355247, name:'南京'},
{value:87875, name:'无锡'},
{value:162074, name:'苏州'},
{value:249603, name:'常州'},
{value:166675, name:'南通'},
{value:90496, name:'徐州'},
{value:28302, name:'泰州'},
{value:46744, name:'镇江'},
{value:58094, name:'淮安'},
{value:25495, name:'盐城'},
{value:21237, name:'连云港'},
{value:37358, name:'扬州'},
{value:5668, name:'宿迁'}
]
},{
name:'各市基本陈列数(个)',
type:'pie',
center : ['42%', '80%'],
radius: ['20%', '40%'],
avoidLabelOverlap: false,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '30',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:102, name:'南京'},
{value:166, name:'无锡'},
{value:143, name:'苏州'},
{value:81, name:'常州'},
{value:86, name:'南通'},
{value:32, name:'徐州'},
{value:42, name:'泰州'},
{value:36, name:'镇江'},
{value:41, name:'淮安'},
{value:50, name:'盐城'},
{value:25, name:'连云港'},
{value:30, name:'扬州'},
{value:10, name:'宿迁'}
]
}, {
name:'各市博物馆参观人数(万人次)',
type:'pie',
center : ['80%', '80%'],
radius: ['20%', '40%'],
avoidLabelOverlap: false,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '30',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:2645.51, name:'南京'},
{value:615.16, name:'无锡'},
{value:955.40, name:'苏州'},
{value:372.51, name:'常州'},
{value:393.96, name:'南通'},
{value:619.73, name:'徐州'},
{value:491.89, name:'泰州'},
{value:373.18, name:'镇江'},
{value:605.61, name:'淮安'},
{value:362.73, name:'盐城'},
{value:166.67, name:'连云港'},
{value:201.26, name:'扬州'},
{value:56.95, name:'宿迁'}
]
}
],
};
myChart.setOption(option);
</script>
<div id="main8" style="height:400px;width:100%;" class="echarts-for-react "></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main8'));
var option = {
title: {
text: '2016年江苏省各地区各级藏品情况',
subtext: '',
x:'50%',
},
tooltip : {
trigger: 'axis',
axisPointer : { // 坐标轴指示器,坐标轴触发有效
type : 'shadow' // 默认为直线,可选为:'line' | 'shadow'
}
},
legend: {
y: '4%',
data: ['一级品', '二级品','三级品','其他藏品']
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'value'
},
yAxis: {
type: 'category',
data: ['宿迁','镇江','扬州','连云港','泰州','淮安','盐城', '南京', '南通', '徐州', '苏州', '常州', '无锡']
},
series: [
{
name: '一级品',
type: 'bar',
stack: '总量',
label: {
normal: {
show: true,
position: 'insideRight'