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
| .infoWindows {
| position: absolute;
| z-index: 9;
| border: none;
| border-radius: 2px;
| background-image: url("../img/windows/btl.png"), url("../img/windows/btr.png"), url("../img/windows/bbl.png"), url("../img/windows/bbr.png");
| background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
| background-position: left top, right top, bottom left, bottom right;
| background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px;
| box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
| overflow: hidden;
| }
| .infoWindows > div{
| color: #fff;
| margin-top: 0;
| }
| .topWindows{
| top: 0;
| left: 0;
| right: 0;
| color: #fff;
| background: rgba(9, 20, 33, 0.9);
| border: none;
| box-shadow: none;
| padding-top: 0;
| padding-bottom: 0;
| }
| .topBox{
| display: flex;
| height: 60px;
| background-image:url(../img/bg_top_left.png), url(../img/bg_top_right.png);
| background-repeat: no-repeat;
| background-position: left center, right center;
| }
| .topLeft{
| flex: 1;
| text-align: left;
| }
| .topCenter{
| margin-top: 4px;
| padding-top: 2px;
| width: 796px;
| height: 50px;
| font-size: 22px;
| font-weight: bold;
| text-align: center;
| color: #5BEDF6;
| background: url(../img/bg_top.png) no-repeat;
| }
| .topRight{
| flex: 1;
| text-align: right;
| }
| .bottomWindows{
| bottom: 0;
| left: 0;
| right: 0;
| height: 56px;
| background: rgba(9, 20, 33, 0.9);
| border: none;
| box-shadow: none;
| }
| .bottomWindows > div{
| margin: 0 auto;
| width: 300px;
| display: flex;
| justify-content: space-between;
| }
|
| .handle {
| top: 30%;
| left: 10px;
| width: 120px;
| padding: 15px;
| text-align: center
| }
| .handle > .btn-primary{
| margin: 0 0 8px!important;
| }
| .handle > .btn-primary:last-child{
| margin: 0!important;
| }
|
| .btn-primary{
| padding: auto 16px;
| border-radius: 20px;
| margin: 0;
| }
|
| /*隐藏底部toolbar*/
| .mars3d-distance-legend,
| .mars3d-locationbar{
| display: none;
| visibility: hidden;
| }
| /*自定义轮盘定位*/
| .mars3d-compass{
| bottom: 377px!important;
| right: 24px!important;
| }
| /*自定义工具栏定位*/
| .cesium-viewer-toolbar{
| right: 17px!important;
| }
| /*自定义时间轴定位*/
| .mars3d-clockAnimate,
| .cesium-viewer-timelineContainer{
| bottom: 56px;
| }
|
|