355 lines
6.7 KiB
CSS
355 lines
6.7 KiB
CSS
![]() |
/*
|
||
|
* 地图页面css
|
||
|
*/
|
||
|
html,
|
||
|
body {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
border: none;
|
||
|
overflow: hidden;
|
||
|
font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "Microsoft Yahei",
|
||
|
"Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
|
||
|
font-size: 14px;
|
||
|
color: #ffffff;
|
||
|
background: #000;
|
||
|
-webkit-overflow-scrolling: touch;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
position: relative;
|
||
|
overflow-x: hidden;
|
||
|
overflow-y: hidden;
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
button,
|
||
|
select,
|
||
|
textarea {
|
||
|
font-family: inherit;
|
||
|
font-size: inherit;
|
||
|
line-height: inherit;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
color: #ffffff;
|
||
|
text-decoration: none;
|
||
|
margin-top: 1px;
|
||
|
margin-right: 2px;
|
||
|
}
|
||
|
|
||
|
a:hover,
|
||
|
a:focus {
|
||
|
color: #89bceb;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
a:focus {
|
||
|
outline: thin dotted;
|
||
|
outline: 5px auto -webkit-focus-ring-color;
|
||
|
outline: none;
|
||
|
outline-offset: -2px;
|
||
|
}
|
||
|
|
||
|
ul,
|
||
|
li {
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
:focus-visible {
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
#centerDiv3D {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
border: none;
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/*用于测试非全屏地图*/
|
||
|
/* #centerDiv3D {
|
||
|
height: calc(100% - 200px);
|
||
|
width: calc(100% - 400px);
|
||
|
left: 200px;
|
||
|
right: 200px;
|
||
|
top: 100px;
|
||
|
bottom: 100px;
|
||
|
} */
|
||
|
|
||
|
.content {
|
||
|
overflow: auto;
|
||
|
position: relative;
|
||
|
background: transparent;
|
||
|
height: 400px;
|
||
|
-webkit-box-sizing: border-box;
|
||
|
-moz-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
/*滚动条*/
|
||
|
body,
|
||
|
html {
|
||
|
scrollbar-base-color: #f4f7fc;
|
||
|
scrollbar-track-color: #f4f7fc;
|
||
|
scrollbar-face-color: #797979;
|
||
|
scrollbar-arrow-color: #f4f7fc;
|
||
|
scrollbar-shadow-color: #f4f7fc;
|
||
|
scrollbar-3dlight-color: #f4f7fc;
|
||
|
scrollbar-highlight-color: #f4f7fc;
|
||
|
scrollbar-darkshadow-color: #f4f7fc;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-button {
|
||
|
height: 0;
|
||
|
width: 0;
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-track {
|
||
|
background: transparent;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-track,
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar {
|
||
|
height: 10px;
|
||
|
width: 10px;
|
||
|
background: transparent;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
padding-top: 100px;
|
||
|
-webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1),
|
||
|
inset -1px -1px 0 rgba(0, 0, 0, 0.07);
|
||
|
background-color: #797979;
|
||
|
min-height: 28px;
|
||
|
border-radius: 4px;
|
||
|
background-clip: padding-box;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-track,
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-thumb:hover {
|
||
|
-webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
|
||
|
background-color: rgba(0, 0, 0, 0.4);
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-thumb:active {
|
||
|
-webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.35);
|
||
|
background-color: rgba(0, 0, 0, 0.5);
|
||
|
}
|
||
|
|
||
|
/**cesium 工具按钮栏*/
|
||
|
|
||
|
.cesium-viewer-toolbar {
|
||
|
top: auto;
|
||
|
bottom: 35px;
|
||
|
left: 12px;
|
||
|
right: auto;
|
||
|
}
|
||
|
|
||
|
.cesium-toolbar-button img {
|
||
|
height: 100%;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
.cesium-viewer-toolbar > .cesium-toolbar-button,
|
||
|
.cesium-navigationHelpButton-wrapper,
|
||
|
.cesium-viewer-geocoderContainer {
|
||
|
margin-bottom: 5px;
|
||
|
float: left;
|
||
|
clear: both;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.cesium-button {
|
||
|
background-color: rgba(23, 49, 71, 0.7);
|
||
|
border: none;
|
||
|
color: #ffffff;
|
||
|
fill: #e6e6e6;
|
||
|
line-height: 32px;
|
||
|
}
|
||
|
|
||
|
.cesium-button:hover {
|
||
|
background-color: rgba(0, 138, 255, 0.7);
|
||
|
box-shadow: none;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
/**cesium 底图切换面板*/
|
||
|
.cesium-baseLayerPicker-dropDown {
|
||
|
bottom: 0;
|
||
|
left: 40px;
|
||
|
max-height: 700px;
|
||
|
margin-bottom: 5px;
|
||
|
background-color: rgba(23, 49, 71, 0.7);
|
||
|
}
|
||
|
|
||
|
/**cesium 帮助面板*/
|
||
|
.cesium-navigation-help {
|
||
|
top: auto;
|
||
|
bottom: 0;
|
||
|
left: 40px;
|
||
|
transform-origin: left bottom;
|
||
|
}
|
||
|
.cesium-navigation-help-instructions,
|
||
|
.cesium-navigation-button {
|
||
|
background-color: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
.cesium-navigation-button-selected,
|
||
|
.cesium-navigation-button-unselected:hover {
|
||
|
background-color: rgba(23, 49, 71, 1);
|
||
|
}
|
||
|
|
||
|
/**cesium 二维三维切换*/
|
||
|
.cesium-toolbar-button.cesium-sceneModePicker-wrapper {
|
||
|
width: auto;
|
||
|
}
|
||
|
|
||
|
.cesium-toolbar-button.cesium-sceneModePicker-wrapper
|
||
|
.cesium-sceneModePicker-dropDown-icon {
|
||
|
float: right;
|
||
|
margin: 0 3px;
|
||
|
}
|
||
|
|
||
|
/**cesium POI查询输入框*/
|
||
|
.cesium-viewer-geocoderContainer .search-results {
|
||
|
left: 0;
|
||
|
right: 40px;
|
||
|
width: auto;
|
||
|
z-index: 9999;
|
||
|
}
|
||
|
|
||
|
.cesium-geocoder-searchButton {
|
||
|
background-color: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
|
||
|
.cesium-viewer-geocoderContainer .cesium-geocoder-input {
|
||
|
background-color: rgba(63, 72, 84, 0.7);
|
||
|
}
|
||
|
|
||
|
.cesium-viewer-geocoderContainer .cesium-geocoder-input:focus {
|
||
|
background-color: rgba(63, 72, 84, 0.9);
|
||
|
}
|
||
|
|
||
|
.cesium-viewer-geocoderContainer .search-results {
|
||
|
background-color: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
|
||
|
/**cesium info信息框*/
|
||
|
.cesium-infoBox {
|
||
|
top: 50px;
|
||
|
background: rgba(63, 72, 84, 0.9);
|
||
|
}
|
||
|
|
||
|
.cesium-infoBox-title {
|
||
|
background-color: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
|
||
|
/**cesium 任务栏的FPS信息*/
|
||
|
.cesium-performanceDisplay-defaultContainer {
|
||
|
top: auto;
|
||
|
bottom: 35px;
|
||
|
right: 50px;
|
||
|
}
|
||
|
|
||
|
.cesium-performanceDisplay-ms,
|
||
|
.cesium-performanceDisplay-fps {
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
/**cesium tileset调试信息面板*/
|
||
|
.cesium-viewer-cesiumInspectorContainer {
|
||
|
top: 10px;
|
||
|
left: 10px;
|
||
|
right: auto;
|
||
|
}
|
||
|
.cesium-cesiumInspector {
|
||
|
background-color: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
|
||
|
/**覆盖mars3d内部控件的颜色等样式*/
|
||
|
.mars3d-compass .mars3d-compass-outer {
|
||
|
fill: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
.mars3d-contextmenu-ul,
|
||
|
.mars3d-sub-menu {
|
||
|
background-color: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
.mars3d-contextmenu-ul > li > a:hover,
|
||
|
.mars3d-sub-menu > li > a:hover,
|
||
|
.mars3d-contextmenu-ul > li > a:focus,
|
||
|
.mars3d-sub-menu > li > a:focus,
|
||
|
.mars3d-contextmenu-ul > li > .active,
|
||
|
.mars3d-sub-menu > li > .active {
|
||
|
background-color: #3ea6ff;
|
||
|
}
|
||
|
.mars3d-contextmenu-ul > .active > a,
|
||
|
.mars3d-sub-menu > .active > a,
|
||
|
.mars3d-contextmenu-ul > .active > a:hover,
|
||
|
.mars3d-sub-menu > .active > a:hover,
|
||
|
.mars3d-contextmenu-ul > .active > a:focus,
|
||
|
.mars3d-sub-menu > .active > a:focus {
|
||
|
background-color: #3ea6ff;
|
||
|
}
|
||
|
/* Popup样式*/
|
||
|
.mars3d-popup-color {
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
.mars3d-popup-background {
|
||
|
background: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
|
||
|
.mars3d-tooltip {
|
||
|
background: rgba(23, 49, 71, 0.8);
|
||
|
border: 1px solid rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
.mars3d-tooltip-top:before {
|
||
|
border-top-color: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
.mars3d-tooltip-bottom:before {
|
||
|
border-bottom-color: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
.mars3d-tooltip-left:before {
|
||
|
border-left-color: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
.mars3d-tooltip-right:before {
|
||
|
border-right-color: rgba(23, 49, 71, 0.8);
|
||
|
}
|
||
|
|
||
|
.mars3d-template-content label {
|
||
|
padding-right: 6px;
|
||
|
}
|
||
|
.mars3d-template-titile {
|
||
|
border-bottom: 1px solid #3ea6ff;
|
||
|
}
|
||
|
.mars3d-template-titile a {
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
.mars3d-popup-btn-custom {
|
||
|
padding: 3px 10px;
|
||
|
border: 1px solid #209ffd;
|
||
|
background: #209ffd1c;
|
||
|
}
|
||
|
.mars3d-popup-content {
|
||
|
margin: 15px;
|
||
|
}
|
||
|
.mars3d-divGraphic:hover {
|
||
|
z-index: 999 !important;
|
||
|
}
|