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
| body {
| margin: 0;
| color: #fff;
| }
| /* my page */
| .page {
| display: flex;
| flex-direction: column;
| height: 100vh;
| background-color: #031D67;
| }
| .page-content{
| flex: 1;
| overflow-y: auto;
| }
| .page-header {
| top: 0;
| z-index: 1;
| }
| /* page animate */
| .Router {
| position: absolute;
| width: 100%;
| transition: all .3s ease;
| }
| .slide-left-enter,
| .slide-right-leave-active {
| opacity: 0;
| -webkit-transform: translate(100%, 0);
| transform: translate(100%, 0);
| }
|
| .slide-left-leave-active,
| .slide-right-enter {
| opacity: 0;
| -webkit-transform: translate(-100%, 0);
| transform: translate(-100% 0);
| }
|
| /* bg-color */
| .bg-white {
| background-color: #FFFFFF;
| }
|
| /* echarts css */
| .echarts-wrapper,
| .echarts-content {
| width: 100%;
| height: 100%;
| }
|
| .video-container {
| width: 100%;
| height: 100%;
| overflow-y: hidden;
| }
| .video-container canvas {
| width: 100%;
| height: 100%;
| }
|
|