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
| .gdpView {
| min-width: 90px;
| min-height: 35px;
| position: absolute;
| left: 16px;
| bottom: 31px;
| cursor: default;
| border-radius: 4px;
| opacity: 0.96;
| color: #ffffff;
| border: 1px solid rgba(35, 40, 44, 0.226);
| box-shadow: 0px 2px 21px 0px rgba(35, 40, 44, 0.226);
| border-radius: 4px;
| box-sizing: border-box;
| background: rgba(2, 79, 128, 0.425);
| }
|
| .gdpView::before {
| content: "";
| width: calc(100% + 22px);
| height: 39px;
| position: absolute;
| bottom: -39px;
| left: -22px;
| background: url("/img/marker/popupLbl.png") 0px 0px no-repeat;
| background-position: 0px 0px;
| }
|
| .gdpCharts {
| width: 470px;
| height: 275px;
| text-align: center;
| padding: 1px;
| font-size: 14px;
| font-family: "MicrosoftYaHei";
| font-weight: 400;
| color: #ffffff;
| line-height: 33px;
| /* border: 1px solid #ffffff4f; */
| -webkit-box-sizing: border-box;
| box-sizing: border-box;
| white-space: nowrap;
| }
|
| .gdpCharts::before {
| content: "";
| width: 100%;
| height: 40px;
| position: absolute;
| left: 0;
| background-color: #1f3f8e;
| }
|
| .btnClosePopup {
| position: absolute;
| right: 5px;
| top: 2px;
| width: 30px;
| height: 40px;
| font-size: 25px;
| color: white;
| border: none;
| background-color: #1f3f8e !important;
| }
|
|