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
| .page-container {
|
| .left-container,
| .right-container {
| display: flex;
| flex-direction: column;
| position: absolute;
| top: 0;
| width: 408px;
| height: 100%;
| pointer-events: auto;
| background: rgba(28, 115, 195, 0.2);
|
| &>div {
| display: flex;
| flex-direction: column;
|
| .title-box {
| position: relative;
| height: 38px;
| line-height: 38px;
| background: url(/images/title-box.png) no-repeat center / 100% 100%;
|
| .title {
| margin-left: 30px;
| text-align: left;
| font-size: 18px;
| font-family: Alibaba PuHuiTi;
| font-weight: bold;
| font-style: italic;
| color: transparent;
| text-shadow: 0px 2px 8px rgba(5, 28, 55, 0.42);
| background-image: linear-gradient(180deg, rgba(14, 197, 236, 0.36) 5%, rgba(49, 190, 255, 0.36) 20%, rgba(255, 255, 255, 1) 40%);
| -webkit-background-clip: text;
| -webkit-text-fill-color: transparen
| }
|
| .title-sub {
| position: absolute;
| right: 10px;
| bottom: 4px;
| line-height: 1;
| }
| }
|
| .content-box {
| display: flex;
| flex-direction: column;
| height: calc(100% - 38px);
| }
| }
|
| .chart-box {
| // background: rgba(42,64,120,0.68);
| }
| }
|
| .left-container {}
|
| .right-container {
| right: 0;
| }
| }
|
|