园林绿化
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1387 lines
32 KiB

  1. /**
  2. * Mars3D三维可视化平台 mars3d
  3. *
  4. * 版本信息v3.11.2
  5. * 编译日期2026-04-08 16:12
  6. * 版权所有Copyright by http://mars3d.cn
  7. * 使用单位免费公开版 2026-02-01
  8. */
  9. /**地球容器div*/
  10. .mars3d-container {
  11. width: 100%;
  12. height: 100%;
  13. margin: 0;
  14. padding: 0;
  15. overflow: hidden;
  16. position: relative;
  17. }
  18. .mars3d-container .cesium-widget-credits {
  19. display: none;
  20. }
  21. .mars3d-container .mars3d-vrButton {
  22. right: auto !important;
  23. }
  24. /**隐藏的div对象,如 DivBillboardEntity、HeatLayer 等*/
  25. .mars3d-hideDiv {
  26. z-index: -99;
  27. top: 0;
  28. left: 0;
  29. margin: 0;
  30. padding: 0;
  31. pointer-events: none;
  32. }
  33. /**右键菜单*/
  34. .mars3d-contextmenu {
  35. position: absolute;
  36. padding: 0;
  37. z-index: 20170825;
  38. display: none;
  39. }
  40. .mars3d-contextmenu-ul {
  41. background: rgba(43, 44, 47, 0.8);
  42. border: 1px solid #2b2c2f;
  43. border-radius: 2px;
  44. border-width: 1px;
  45. min-width: 80px;
  46. position: relative;
  47. list-style: none;
  48. margin: 0;
  49. padding: 0;
  50. }
  51. .mars3d-contextmenu-ul .mars3d-contextmenu-icon {
  52. position: absolute;
  53. left: 5px;
  54. width: 20px;
  55. height: 20px;
  56. text-align: center;
  57. overflow: hidden;
  58. }
  59. .mars3d-contextmenu-ul .mars3d-contextmenu-arrow {
  60. position: absolute;
  61. right: 0;
  62. width: 20px;
  63. height: 20px;
  64. text-align: center;
  65. }
  66. .mars3d-contextmenu-ul li + li {
  67. margin: 0;
  68. padding: 0;
  69. position: relative;
  70. }
  71. .mars3d-contextmenu-ul li + li:before {
  72. content: "";
  73. display: block;
  74. height: 1px;
  75. width: 100%;
  76. background: -webkit-linear-gradient(to left, transparent, rgba(255, 255, 255, 0.2), transparent);
  77. background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.2), transparent);
  78. position: absolute;
  79. top: 0;
  80. left: 0;
  81. }
  82. .mars3d-contextmenu-ul .mars3d-contextmenu-item ::marker {
  83. content: "";
  84. }
  85. .mars3d-contextmenu-ul .mars3d-contextmenu-line {
  86. position: absolute;
  87. left: 2%;
  88. height: 1px;
  89. width: 96%;
  90. background: #597086;
  91. border-radius: 2px;
  92. border-width: 1px;
  93. }
  94. .mars3d-contextmenu-ul > li > a {
  95. padding: 6px 10px 6px 30px;
  96. -webkit-transition: background-color 0.25s;
  97. -o-transition: background-color 0.25s;
  98. transition: background-color 0.25s;
  99. display: block;
  100. clear: both;
  101. line-height: 22px;
  102. color: #76838f;
  103. white-space: nowrap;
  104. color: #edffff;
  105. text-decoration: none;
  106. }
  107. .mars3d-contextmenu-ul > li > a:hover,
  108. .mars3d-contextmenu-ul > li > a:focus,
  109. .mars3d-contextmenu-ul > li > .active {
  110. color: #fff;
  111. background-color: #444d59;
  112. text-decoration: none;
  113. }
  114. .mars3d-contextmenu-ul > .active > a,
  115. .mars3d-contextmenu-ul > .active > a:hover,
  116. .mars3d-contextmenu-ul > .active > a:focus {
  117. color: #fff;
  118. background-color: var(--mars-hover-color, #3ea6ff);
  119. text-decoration: none;
  120. }
  121. .mars3d-sub-menu {
  122. position: absolute;
  123. background-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  124. min-width: 100px;
  125. display: none;
  126. }
  127. .mars3d-sub-menu li {
  128. width: 100%;
  129. box-sizing: border-box;
  130. font-size: 14px;
  131. color: var(--mars-text-color, #ffffff);
  132. margin: 0;
  133. padding: 0;
  134. }
  135. .mars3d-sub-menu li:hover {
  136. background-color: var(--mars-hover-color, #3ea6ff);
  137. }
  138. .mars3d-smallTooltip {
  139. display: block;
  140. position: absolute;
  141. max-width: 200px;
  142. min-width: 100px;
  143. padding: 2px 5px;
  144. font-size: 11px;
  145. z-index: 20170825;
  146. opacity: 0.8;
  147. -khtml-opacity: 0.8;
  148. -moz-opacity: 0.8;
  149. filter: alpha(opacity=80);
  150. pointer-events: none;
  151. }
  152. .mars3d-smallTooltip-inner {
  153. padding: 3px 5px;
  154. background-color: rgba(0, 0, 0, 0.8);
  155. color: white;
  156. text-align: left;
  157. max-width: 200px;
  158. text-decoration: none;
  159. -webkit-border-radius: 4px;
  160. -moz-border-radius: 4px;
  161. border-radius: 4px;
  162. }
  163. .mars3d-smallTooltip-inner p {
  164. margin: 0;
  165. }
  166. .mars3d-smallTooltip-arrow {
  167. position: absolute;
  168. width: 0;
  169. height: 0;
  170. top: 50%;
  171. }
  172. .mars3d-smallTooltip-leftArrow {
  173. right: 0;
  174. margin-top: -5px;
  175. border-top: 5px solid transparent;
  176. border-bottom: 5px solid transparent;
  177. border-left: 5px solid #000000;
  178. }
  179. .mars3d-smallTooltip-rightArrow {
  180. left: 0;
  181. margin-top: -5px;
  182. border-top: 5px solid transparent;
  183. border-bottom: 5px solid transparent;
  184. border-right: 5px solid #000000;
  185. }
  186. .mars3d-clockAnimate {
  187. z-index: 12;
  188. position: absolute;
  189. bottom: 0;
  190. left: 0;
  191. height: 27px;
  192. background: linear-gradient(to bottom, rgba(116, 117, 119, 0.8) 0%, rgba(58, 68, 82, 0.8) 11%, rgba(46, 50, 56, 0.8) 46%, rgba(53, 53, 53, 0.8) 81%, rgba(53, 53, 53, 0.8) 100%);
  193. }
  194. .mars3d-clockAnimate .time {
  195. margin: 0 4px;
  196. font-size: 13px;
  197. -webkit-user-select: none;
  198. -moz-user-select: none;
  199. -ms-user-select: none;
  200. user-select: none;
  201. }
  202. .mars3d-clockAnimate .mars3d-clockAnimate-btn {
  203. display: inline-block;
  204. vertical-align: middle;
  205. padding: 1px 8px;
  206. border: solid 1px #888;
  207. color: var(--mars-text-color, #ffffff);
  208. background-color: rgba(63, 72, 84, 0.7);
  209. border: none;
  210. cursor: pointer;
  211. width: 24px;
  212. }
  213. .mars3d-clockAnimate .mars3d-clockAnimate-btn svg {
  214. margin-top: 1px;
  215. }
  216. .mars3d-clockAnimate .mars3d-clockAnimate-speed {
  217. width: 80px;
  218. height: 24px;
  219. border: solid 1px rgba(136, 136, 136, 0.6);
  220. padding: 0 3px;
  221. margin: 0;
  222. color: var(--mars-text-color, #ffffff);
  223. background-color: rgba(63, 72, 84, 0.7);
  224. }
  225. .mars3d-clockAnimate .mars3d-clockAnimate-speed ::-webkit-outer-spin-button,
  226. .mars3d-clockAnimate .mars3d-clockAnimate-speed input::-webkit-inner-spin-button {
  227. appearance: none !important;
  228. margin: 0;
  229. }
  230. .mars3d-compass {
  231. position: absolute;
  232. cursor: pointer;
  233. pointer-events: auto;
  234. user-select: none;
  235. width: 55px;
  236. height: 55px;
  237. }
  238. .mars3d-compass .mars3d-compass-outer {
  239. position: absolute;
  240. top: 0;
  241. left: 0;
  242. height: 55px;
  243. width: 55px;
  244. background-repeat: no-repeat;
  245. background-size: contain;
  246. fill: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  247. border-radius: 50%;
  248. }
  249. .mars3d-compass .mars3d-compass-outer svg {
  250. height: 55px;
  251. width: 55px;
  252. }
  253. .mars3d-compass .mars3d-compass-inner {
  254. position: relative;
  255. top: 50%;
  256. transform: translateY(-50%);
  257. height: 25px;
  258. width: 25px;
  259. border-radius: 50%;
  260. display: block;
  261. margin: 0 auto;
  262. padding: 4px;
  263. box-sizing: border-box;
  264. background: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  265. fill: var(--mars-text-color, #ffffff);
  266. }
  267. .mars3d-compass .mars3d-compass-inner:hover {
  268. background: #3385ff;
  269. }
  270. .mars3d-compass .mars3d-compass-rotation-arc {
  271. position: absolute;
  272. top: 2px;
  273. left: 2px;
  274. height: 51px;
  275. width: 51px;
  276. border-radius: 50%;
  277. background-repeat: no-repeat;
  278. background-size: contain;
  279. }
  280. .mars3d-cubeview {
  281. position: absolute;
  282. width: 100px;
  283. height: 100px;
  284. }
  285. .mars3d-cubeview-cube {
  286. width: 50%;
  287. height: 50%;
  288. top: 25%;
  289. transform-style: preserve-3d;
  290. margin: auto;
  291. position: relative;
  292. will-change: transform;
  293. font-family: monospace;
  294. font-weight: bold;
  295. }
  296. .mars3d-cubeview-cube > div {
  297. display: flex;
  298. justify-content: center;
  299. align-items: center;
  300. position: absolute;
  301. width: 100%;
  302. height: 100%;
  303. user-select: none;
  304. cursor: pointer;
  305. color: var(--mars-text-color, #ffffff);
  306. background-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  307. border: 1px solid var(--mars-text-color, #ffffff);
  308. }
  309. .mars3d-cubeview-cube > div:hover {
  310. background: #3385ff;
  311. }
  312. .mars3d-cubeview-side-t {
  313. transform: rotatex(90deg) translateZ(25px);
  314. }
  315. .mars3d-cubeview-side-w {
  316. transform: rotateY(-90deg) translateZ(25px);
  317. border-right: 2px solid blue !important;
  318. border-bottom: 2px solid green !important;
  319. }
  320. .mars3d-cubeview-side-s {
  321. border-left: 2px solid blue !important;
  322. border-bottom: 2px solid red !important;
  323. transform: translateZ(25px);
  324. }
  325. .mars3d-cubeview-side-e {
  326. transform: rotateY(90deg) translateZ(25px);
  327. }
  328. .mars3d-cubeview-side-n {
  329. transform: rotateY(180deg) translateZ(25px);
  330. }
  331. .mars3d-cubeview-side-b {
  332. transform: rotateX(-90deg) translateZ(25px);
  333. border-top: 2px solid red !important;
  334. border-left: 2px solid green !important;
  335. }
  336. .mars3d-distance-legend {
  337. z-index: 11;
  338. position: absolute;
  339. width: 125px;
  340. height: 25px;
  341. pointer-events: none;
  342. user-select: none;
  343. }
  344. .mars3d-distance-legend .legend-label {
  345. font-size: 13px;
  346. color: #ffffff;
  347. text-align: center;
  348. width: 100%;
  349. }
  350. .mars3d-distance-legend .legend-scale-bar {
  351. position: absolute;
  352. height: 10px;
  353. top: 10px;
  354. border-left: 1px solid #ffffff;
  355. border-right: 1px solid #ffffff;
  356. border-bottom: 1px solid #ffffff;
  357. }
  358. /**左下角,鼠标经纬度提示*/
  359. .mars3d-locationbar {
  360. z-index: 10;
  361. position: absolute;
  362. padding: 3px 10px;
  363. font-size: 13px;
  364. color: #e9e9e9;
  365. background-color: rgba(0, 0, 0, 0.4);
  366. min-height: 26px;
  367. pointer-events: none;
  368. }
  369. .mars3d-locationbar-content {
  370. float: right;
  371. }
  372. .mars3d-locationbar-content > div {
  373. float: left;
  374. margin-right: 20px;
  375. }
  376. .cesium-performanceDisplay-ms,
  377. .cesium-performanceDisplay-fps {
  378. min-width: 65px;
  379. }
  380. /* 兼容屏幕大小 美观显示不同信息 */
  381. @media screen and (max-width: 1200px) {
  382. .mars3d-locationbar-content > div {
  383. margin-right: 15px;
  384. }
  385. }
  386. @media screen and (max-width: 1000px) {
  387. .cesium-performanceDisplay-ms,
  388. .cesium-performanceDisplay-fps,
  389. .mars3d-locationbar-content > .hide1000 {
  390. display: none !important;
  391. }
  392. .mars3d-locationbar-content > div {
  393. margin-right: 10px;
  394. }
  395. }
  396. @media screen and (max-width: 700px) {
  397. .mars3d-locationbar-content > .hide700 {
  398. display: none !important;
  399. }
  400. }
  401. @media screen and (max-width: 600px) {
  402. .mars3d-locationbar {
  403. display: none !important;
  404. }
  405. }
  406. .mars3d-slider {
  407. position: absolute;
  408. left: 50%;
  409. top: 0px;
  410. background-color: #d3d3d3;
  411. width: 3px;
  412. height: 100%;
  413. z-index: 9999;
  414. }
  415. .mars3d-slider .slider-splitter {
  416. position: absolute;
  417. left: -15px;
  418. top: calc(50% - 15px);
  419. width: 30px;
  420. height: 30px;
  421. background: #f0eeee;
  422. border-radius: 50%;
  423. text-align: center;
  424. line-height: 40px;
  425. padding: 2px;
  426. border: 1px solid lightgrey;
  427. z-index: 99999;
  428. }
  429. .mars3d-slider .slider-splitter:hover {
  430. cursor: ew-resize;
  431. }
  432. .mars3d-mapCompare {
  433. position: absolute;
  434. right: 0px;
  435. top: 0px;
  436. bottom: 0px;
  437. width: 50%;
  438. height: 100%;
  439. margin: 0;
  440. padding: 0;
  441. }
  442. /**滚轮样式*/
  443. .mars3d-mousedownview {
  444. position: absolute;
  445. top: 0px;
  446. left: 0px;
  447. width: 40px;
  448. height: 40px;
  449. margin-top: -23px;
  450. /*图片高度的一半*/
  451. margin-left: -23px;
  452. pointer-events: none;
  453. visibility: hidden;
  454. opacity: 0;
  455. -webkit-transition: visibility 0s 0.2s, opacity 0.2s ease-in;
  456. -moz-transition: visibility 0s 0.2s, opacity 0.2s ease-in;
  457. transition: visibility 0s 0.2s, opacity 0.2s ease-in;
  458. }
  459. .mars3d-mousedownview-img {
  460. width: 36px;
  461. height: 36px;
  462. background-image: url(./img/cursor.png);
  463. background-size: 100% 100%;
  464. }
  465. .mars3d-mousedownview-show {
  466. visibility: visible;
  467. opacity: 1;
  468. -webkit-transition: opacity 0.2s ease-out;
  469. -moz-transition: opacity 0.2s ease-out;
  470. transition: opacity 0.2s ease-out;
  471. }
  472. .mars3d-overviewMap {
  473. position: absolute;
  474. user-select: none;
  475. width: 200px;
  476. height: 150px;
  477. overflow: hidden;
  478. border: 1px solid orange;
  479. box-shadow: 2px 2px 3px #2b2b2b;
  480. }
  481. .mars3d-subtitles {
  482. position: absolute;
  483. user-select: none;
  484. overflow: hidden;
  485. padding: 10px;
  486. font-size: 30px;
  487. font-weight: bold;
  488. letter-spacing: 2px;
  489. text-align: center;
  490. z-index: 999;
  491. }
  492. .mar3d-toolButton img,
  493. .mar3d-toolButton svg,
  494. .mar3d-toolButton div {
  495. height: 100%;
  496. text-align: center;
  497. }
  498. .mars3d-divGraphic {
  499. position: absolute;
  500. left: 0;
  501. top: 0;
  502. }
  503. .mars3d-divGraphic:hover {
  504. z-index: 9999 !important;
  505. }
  506. .mars3d-divGraphic-edit {
  507. background-color: rgba(254, 87, 161, 0.1);
  508. border: 2px dashed rgba(172, 85, 59, 0.768);
  509. -webkit-border-radius: 2px;
  510. border-radius: 2px;
  511. margin: -2px;
  512. box-sizing: content-box;
  513. }
  514. /**内置的DivGraphic通用样式【文本动态边框】*/
  515. .mars3d-divBoderLabel {
  516. position: absolute;
  517. left: 0px;
  518. bottom: 0px;
  519. cursor: pointer;
  520. --animation-name: mars3d-divBoderLabel-animation;
  521. --text-left-position: -75px;
  522. }
  523. @keyframes mars3d-divBoderLabel-animation {
  524. 0%,
  525. 100% {
  526. clip: rect(0px, var(--clip-width-1), 2px, 0px);
  527. }
  528. 25% {
  529. clip: rect(0px, 2px, var(--clip-height-1), 0px);
  530. }
  531. 50% {
  532. clip: rect(var(--clip-height-2), var(--clip-width-1), var(--clip-width-1), 0px);
  533. }
  534. 75% {
  535. clip: rect(0px, var(--clip-width-1), var(--clip-height-1), var(--clip-width-2));
  536. }
  537. }
  538. .mars3d-divBoderLabel-boder {
  539. width: var(--boder-width);
  540. height: var(--boder-height);
  541. margin: auto;
  542. color: var(--border-color);
  543. box-shadow: inset 0 0 0 1px var(--box-shadow-color);
  544. }
  545. .mars3d-divBoderLabel-text {
  546. color: var(--text-color);
  547. font-size: var(--text-font-size);
  548. display: flex;
  549. width: 100%;
  550. height: 100%;
  551. align-items: center;
  552. justify-content: center;
  553. font-weight: bolder;
  554. user-select: none;
  555. cursor: pointer;
  556. }
  557. .mars3d-divBoderLabel-boder,
  558. .mars3d-divBoderLabel-boder::before,
  559. .mars3d-divBoderLabel-boder::after {
  560. position: absolute;
  561. top: 0;
  562. bottom: 0;
  563. left: 0;
  564. right: 0;
  565. }
  566. .mars3d-divBoderLabel-boder::before,
  567. .mars3d-divBoderLabel-boder::after {
  568. content: "";
  569. margin: -5%;
  570. box-shadow: inset 0 0 0 2px;
  571. animation: var(--animation-name) 8s linear infinite;
  572. }
  573. .mars3d-divBoderLabel-boder::before {
  574. animation-delay: -4s;
  575. }
  576. .mars3d-animation-point,
  577. .mars3d-animation-point:after,
  578. .mars3d-animation-point:before,
  579. .mars3d-animation-point p,
  580. .mars3d-animation-point p:after,
  581. .mars3d-animation-point p:before {
  582. margin: 0;
  583. padding: 0;
  584. -webkit-box-sizing: border-box;
  585. -moz-box-sizing: border-box;
  586. -o-box-sizing: border-box;
  587. -ms-box-sizing: border-box;
  588. box-sizing: border-box;
  589. }
  590. .mars3d-animation-point {
  591. width: 10px;
  592. height: 10px;
  593. border-radius: 50%;
  594. border: 1px solid hsla(0, 0%, 100%, 0.5);
  595. cursor: pointer;
  596. color: #0ff;
  597. background: currentColor;
  598. z-index: 3;
  599. left: 50%;
  600. top: 50%;
  601. -webkit-transform: translate(-50%, -50%);
  602. -moz-transform: translate(-50%, -50%);
  603. -o-transform: translate(-50%, -50%);
  604. -ms-transform: translate(-50%, -50%);
  605. transform: translate(-50%, -50%);
  606. box-shadow: 0 0 2em currentColor, 0 0 0.5em currentColor;
  607. position: absolute;
  608. }
  609. .mars3d-animation-point .mars3d-animation-point-lbl {
  610. position: absolute;
  611. transform: translate(-50%, -120%);
  612. left: 50%;
  613. font-size: 16px;
  614. width: fit-content;
  615. white-space: nowrap;
  616. }
  617. .mars3d-animation-point p {
  618. position: absolute;
  619. left: 50%;
  620. top: 50%;
  621. width: 0;
  622. height: 0;
  623. border-radius: 50%;
  624. -webkit-transform: translate(-50%, -50%);
  625. -moz-transform: translate(-50%, -50%);
  626. -o-transform: translate(-50%, -50%);
  627. -ms-transform: translate(-50%, -50%);
  628. transform: translate(-50%, -50%);
  629. -webkit-animation: mars3d-animation-point-mapAni 2s ease infinite;
  630. -moz-animation: mars3d-animation-point-mapAni 2s ease infinite;
  631. -o-animation: mars3d-animation-point-mapAni 2s ease infinite;
  632. -ms-animation: mars3d-animation-point-mapAni 2s ease infinite;
  633. animation: mars3d-animation-point-mapAni 2s ease infinite;
  634. }
  635. .mars3d-animation-point .mapError {
  636. color: red;
  637. }
  638. .mars3d-animation-point .mapWarn {
  639. color: #b5a603;
  640. }
  641. .mars3d-animation-point .mapSuccess {
  642. color: #239233;
  643. }
  644. .mars3d-animation-point .mapOrange {
  645. color: #8c4d34;
  646. }
  647. .mars3d-animation-point:after,
  648. .mars3d-animation-point:before,
  649. .mars3d-animation-point p:after,
  650. .mars3d-animation-point p:before {
  651. content: "";
  652. position: absolute;
  653. width: 100%;
  654. height: 100%;
  655. left: 50%;
  656. top: 50%;
  657. border-radius: 50%;
  658. -webkit-transform: translate(-50%, -50%);
  659. -moz-transform: translate(-50%, -50%);
  660. -o-transform: translate(-50%, -50%);
  661. -ms-transform: translate(-50%, -50%);
  662. transform: translate(-50%, -50%);
  663. }
  664. .mars3d-animation-point:after,
  665. .mars3d-animation-point:before {
  666. border: 1px solid;
  667. -webkit-animation: mars3d-animation-point-mapAni 1s ease infinite;
  668. -moz-animation: mars3d-animation-point-mapAni 1s ease infinite;
  669. -o-animation: mars3d-animation-point-mapAni 1s ease infinite;
  670. -ms-animation: mars3d-animation-point-mapAni 1s ease infinite;
  671. animation: mars3d-animation-point-mapAni 1s ease infinite;
  672. }
  673. .mars3d-animation-point p:before {
  674. border: 1px solid;
  675. }
  676. @-webkit-keyframes mars3d-animation-point-mapAni {
  677. 0% {
  678. width: 0;
  679. height: 0;
  680. opacity: 1;
  681. filter: alpha(opacity=1);
  682. }
  683. 25% {
  684. width: 120%;
  685. height: 120%;
  686. opacity: 0.7;
  687. filter: alpha(opacity=70);
  688. }
  689. 50% {
  690. width: 200%;
  691. height: 200%;
  692. opacity: 0.5;
  693. filter: alpha(opacity=50);
  694. }
  695. 75% {
  696. width: 300%;
  697. height: 300%;
  698. opacity: 0.2;
  699. filter: alpha(opacity=20);
  700. }
  701. to {
  702. width: 400%;
  703. height: 400%;
  704. opacity: 0;
  705. filter: alpha(opacity=0);
  706. }
  707. }
  708. @-moz-keyframes mars3d-animation-point-mapAni {
  709. 0% {
  710. width: 0;
  711. height: 0;
  712. opacity: 1;
  713. filter: alpha(opacity=1);
  714. }
  715. 25% {
  716. width: 120%;
  717. height: 120%;
  718. opacity: 0.7;
  719. filter: alpha(opacity=70);
  720. }
  721. 50% {
  722. width: 200%;
  723. height: 200%;
  724. opacity: 0.5;
  725. filter: alpha(opacity=50);
  726. }
  727. 75% {
  728. width: 300%;
  729. height: 300%;
  730. opacity: 0.2;
  731. filter: alpha(opacity=20);
  732. }
  733. to {
  734. width: 400%;
  735. height: 400%;
  736. opacity: 0;
  737. filter: alpha(opacity=0);
  738. }
  739. }
  740. @-o-keyframes mars3d-animation-point-mapAni {
  741. 0% {
  742. width: 0;
  743. height: 0;
  744. opacity: 1;
  745. filter: alpha(opacity=1);
  746. }
  747. 25% {
  748. width: 120%;
  749. height: 120%;
  750. opacity: 0.7;
  751. filter: alpha(opacity=70);
  752. }
  753. 50% {
  754. width: 200%;
  755. height: 200%;
  756. opacity: 0.5;
  757. filter: alpha(opacity=50);
  758. }
  759. 75% {
  760. width: 300%;
  761. height: 300%;
  762. opacity: 0.2;
  763. filter: alpha(opacity=20);
  764. }
  765. to {
  766. width: 400%;
  767. height: 400%;
  768. opacity: 0;
  769. filter: alpha(opacity=0);
  770. }
  771. }
  772. @-ms-keyframes mars3d-animation-point-mapAni {
  773. 0% {
  774. width: 0;
  775. height: 0;
  776. opacity: 1;
  777. filter: alpha(opacity=1);
  778. }
  779. 25% {
  780. width: 120%;
  781. height: 120%;
  782. opacity: 0.7;
  783. filter: alpha(opacity=70);
  784. }
  785. 50% {
  786. width: 200%;
  787. height: 200%;
  788. opacity: 0.5;
  789. filter: alpha(opacity=50);
  790. }
  791. 75% {
  792. width: 300%;
  793. height: 300%;
  794. opacity: 0.2;
  795. filter: alpha(opacity=20);
  796. }
  797. to {
  798. width: 400%;
  799. height: 400%;
  800. opacity: 0;
  801. filter: alpha(opacity=0);
  802. }
  803. }
  804. @keyframes mars3d-animation-point-mapAni {
  805. 0% {
  806. width: 0;
  807. height: 0;
  808. opacity: 1;
  809. filter: alpha(opacity=1);
  810. }
  811. 25% {
  812. width: 120%;
  813. height: 120%;
  814. opacity: 0.7;
  815. filter: alpha(opacity=70);
  816. }
  817. 50% {
  818. width: 200%;
  819. height: 200%;
  820. opacity: 0.5;
  821. filter: alpha(opacity=50);
  822. }
  823. 75% {
  824. width: 300%;
  825. height: 300%;
  826. opacity: 0.2;
  827. filter: alpha(opacity=20);
  828. }
  829. to {
  830. width: 400%;
  831. height: 400%;
  832. opacity: 0;
  833. filter: alpha(opacity=0);
  834. }
  835. }
  836. .mars3d-divUpLabel {
  837. text-align: center;
  838. background: transparent;
  839. color: white;
  840. display: block;
  841. box-sizing: border-box;
  842. animation-duration: 1s;
  843. animation-fill-mode: both;
  844. animation-name: mars3d-divUpLabel-tinUpIn;
  845. }
  846. .mars3d-divUpLabel-text {
  847. writing-mode: vertical-lr;
  848. font-size: 16px;
  849. letter-spacing: 4px;
  850. }
  851. .mars3d-divUpLabel-line {
  852. display: block;
  853. height: 100px;
  854. width: 1.5px;
  855. margin-left: calc(50% - 1px);
  856. margin-top: 3px;
  857. background-color: white;
  858. }
  859. @keyframes mars3d-divUpLabel-tinUpIn {
  860. 0% {
  861. opacity: 0;
  862. transform: scale(1, 1) translateY(-900%);
  863. }
  864. 50%,
  865. 70%,
  866. 90% {
  867. opacity: 1;
  868. transform: scale(1.1, 1.1) translateY(0);
  869. }
  870. 100%,
  871. 60%,
  872. 80% {
  873. opacity: 1;
  874. transform: scale(1, 1) translateY(0);
  875. }
  876. }
  877. /*****popup弹出框样式******/
  878. .mars3d-popup {
  879. -webkit-user-select: auto;
  880. -moz-user-select: auto;
  881. -ms-user-select: auto;
  882. user-select: auto;
  883. }
  884. .mars3d-popup-close-button {
  885. position: absolute;
  886. top: 0;
  887. right: 0;
  888. padding: 4px 4px 0 0;
  889. text-align: center;
  890. width: 20px;
  891. height: 20px;
  892. font: 16px/14px Tahoma, Verdana, sans-serif;
  893. text-decoration: none;
  894. font-weight: bold;
  895. background: transparent;
  896. z-index: 20170825;
  897. cursor: pointer;
  898. }
  899. .mars3d-popup-content-wrapper {
  900. text-align: center;
  901. box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
  902. padding: 1px;
  903. text-align: left;
  904. border-radius: 3px;
  905. }
  906. .mars3d-popup-content {
  907. margin: 10px;
  908. font-size: 13px;
  909. max-width: 700px;
  910. min-width: 50px;
  911. max-height: 550px;
  912. overflow-y: auto;
  913. }
  914. .mars3d-popup-tip-container {
  915. margin: 0 auto;
  916. width: 40px;
  917. height: 17px;
  918. position: relative;
  919. overflow: hidden;
  920. }
  921. .mars3d-popup-tip {
  922. box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
  923. width: 17px;
  924. height: 17px;
  925. padding: 1px;
  926. margin: -10px auto 0;
  927. -webkit-transform: rotate(45deg);
  928. -moz-transform: rotate(45deg);
  929. -ms-transform: rotate(45deg);
  930. -o-transform: rotate(45deg);
  931. transform: rotate(45deg);
  932. }
  933. .mars3d-popup-scrolled {
  934. overflow: auto;
  935. border-bottom: 1px solid #ddd;
  936. border-top: 1px solid #ddd;
  937. }
  938. .mars3d-popup-color {
  939. color: var(--mars-text-color, #ffffff);
  940. }
  941. .mars3d-popup-background {
  942. background: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  943. }
  944. .mars3d-popup-animation {
  945. animation-duration: 0.3s;
  946. animation-fill-mode: both;
  947. animation-name: mars3d-popup-swashIn;
  948. }
  949. @keyframes mars3d-popup-swashIn {
  950. 0% {
  951. opacity: 0;
  952. transform-origin: 50% 50%;
  953. transform: scale(0, 0);
  954. }
  955. 90% {
  956. opacity: 1;
  957. transform-origin: 50% 50%;
  958. transform: scale(0.9, 0.9);
  959. }
  960. 100% {
  961. opacity: 1;
  962. transform-origin: 50% 50%;
  963. transform: scale(1, 1);
  964. }
  965. }
  966. .mars3d-popup-btn {
  967. padding: 3px 10px;
  968. border: 1px solid #209ffd;
  969. background: #209ffd1c;
  970. }
  971. /* all 中的html样式 */
  972. .mars3d-template-title {
  973. height: 33px;
  974. line-height: 33px;
  975. padding: 0 10px 0 10px;
  976. font-size: 16px;
  977. color: var(--mars-text-color, #ffffff);
  978. border-bottom: 1px solid var(--mars-hover-color, #3ea6ff);
  979. overflow: hidden;
  980. }
  981. .mars3d-template-title a {
  982. color: var(--mars-msg-title-color, #479be0);
  983. text-decoration: none;
  984. }
  985. .mars3d-template-content {
  986. min-width: 150px;
  987. margin-top: 0px;
  988. padding: 10px;
  989. color: var(--mars-text-color, #ffffff);
  990. font-size: 14px;
  991. max-height: 490px;
  992. overflow-y: auto;
  993. }
  994. .mars3d-template-content > div {
  995. margin-top: 5px;
  996. }
  997. .mars3d-template-content label {
  998. margin: 0 10px;
  999. padding-right: 6px;
  1000. min-width: 55px;
  1001. float: left;
  1002. }
  1003. .mars3d-template-content input {
  1004. color: var(--mars-text-color, #ffffff);
  1005. background-color: transparent;
  1006. padding: 4px 5px;
  1007. border-width: 1px;
  1008. border-style: solid;
  1009. }
  1010. .mars3d-template-content input::placeholder {
  1011. color: #cdcdcd;
  1012. }
  1013. .mars3d-template-content textarea {
  1014. color: var(--mars-text-color, #ffffff);
  1015. background-color: transparent;
  1016. padding: 4px 5px;
  1017. border-width: 1px;
  1018. border-style: solid;
  1019. height: 60px;
  1020. resize: none;
  1021. }
  1022. .mars3d-template-content textarea::placeholder {
  1023. color: #cdcdcd;
  1024. }
  1025. .mars3d-popup-iframe {
  1026. overflow: auto;
  1027. margin: 0;
  1028. }
  1029. /*****tooltip弹出框样式******/
  1030. .mars3d-tooltip {
  1031. padding: 6px;
  1032. white-space: nowrap;
  1033. -webkit-user-select: none;
  1034. -moz-user-select: none;
  1035. -ms-user-select: none;
  1036. user-select: none;
  1037. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  1038. max-width: 700px;
  1039. min-width: 50px;
  1040. max-height: 550px;
  1041. color: var(--mars-text-color, #ffffff);
  1042. background: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1043. border: 1px solid var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1044. }
  1045. .mars3d-tooltip-top:before,
  1046. .mars3d-tooltip-bottom:before,
  1047. .mars3d-tooltip-left:before,
  1048. .mars3d-tooltip-right:before {
  1049. position: absolute;
  1050. pointer-events: none;
  1051. border: 6px solid transparent;
  1052. background: transparent;
  1053. content: "";
  1054. }
  1055. .mars3d-tooltip-top:before {
  1056. border-top-color: var(--mars-base-bg, rgba(23, 49, 71, 0.8));
  1057. }
  1058. .mars3d-tooltip-bottom:before {
  1059. border-bottom-color: var(--mars-base-bg, rgba(23, 49, 71, 0.8));
  1060. }
  1061. .mars3d-tooltip-left:before {
  1062. border-left-color: var(--mars-base-bg, rgba(23, 49, 71, 0.8));
  1063. }
  1064. .mars3d-tooltip-right:before {
  1065. border-right-color: var(--mars-base-bg, rgba(23, 49, 71, 0.8));
  1066. }
  1067. /* Directions */
  1068. .mars3d-tooltip-bottom {
  1069. margin-top: 6px;
  1070. }
  1071. .mars3d-tooltip-top {
  1072. margin-top: -6px;
  1073. }
  1074. .mars3d-tooltip-bottom:before,
  1075. .mars3d-tooltip-top:before {
  1076. left: 50%;
  1077. margin-left: -6px;
  1078. }
  1079. .mars3d-tooltip-top:before {
  1080. bottom: 0;
  1081. margin-bottom: -12px;
  1082. border-top-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1083. }
  1084. .mars3d-tooltip-bottom:before {
  1085. top: 0;
  1086. margin-top: -6px;
  1087. margin-left: -6px;
  1088. border-bottom-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1089. }
  1090. .mars3d-tooltip-left {
  1091. margin-left: -6px;
  1092. }
  1093. .mars3d-tooltip-right {
  1094. margin-left: 6px;
  1095. }
  1096. .mars3d-tooltip-left:before,
  1097. .mars3d-tooltip-right:before {
  1098. top: 50%;
  1099. margin-top: -6px;
  1100. }
  1101. .mars3d-tooltip-left:before {
  1102. right: 0;
  1103. margin-right: -12px;
  1104. border-left-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1105. }
  1106. .mars3d-tooltip-right:before {
  1107. left: 0;
  1108. margin-left: -6px;
  1109. border-right-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1110. }
  1111. .mars3d-divlayer-camera {
  1112. backface-visibility: hidden;
  1113. }
  1114. /** 覆盖cesium 控件相关样式 */
  1115. /**cesium info信息框*/
  1116. .cesium-infoBox {
  1117. background: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1118. }
  1119. .cesium-infoBox-title {
  1120. background-color: rgba(23, 49, 71, 0.8);
  1121. }
  1122. /**cesium 任务栏的FPS信息*/
  1123. .cesium-performanceDisplay-defaultContainer .cesium-performanceDisplay-ms,
  1124. .cesium-performanceDisplay-defaultContainer .cesium-performanceDisplay-fps {
  1125. color: #fff;
  1126. }
  1127. /**cesium tileset调试信息面板*/
  1128. .cesium-cesiumInspector {
  1129. background-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1130. }
  1131. /**animation时间面板*/
  1132. .cesium-viewer-animationContainer {
  1133. z-index: 12;
  1134. }
  1135. /** 按钮工具栏 */
  1136. .cesium-viewer-toolbar {
  1137. /** 按钮统一样式 */
  1138. /**底图切换 弹出面板*/
  1139. /**帮助 弹出面板*/
  1140. /**POI查询输入框*/
  1141. }
  1142. .cesium-viewer-toolbar .cesium-button {
  1143. background-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1144. border-radius: 2px;
  1145. border-width: 1px;
  1146. color: var(--mars-text-color, #ffffff);
  1147. fill: #e6e6e6;
  1148. line-height: 32px;
  1149. text-align: center;
  1150. cursor: pointer;
  1151. }
  1152. .cesium-viewer-toolbar .cesium-button:hover {
  1153. background-color: #3385ff;
  1154. box-shadow: none;
  1155. border: none;
  1156. }
  1157. .cesium-viewer-toolbar .cesium-button img,
  1158. .cesium-viewer-toolbar .cesium-button svg,
  1159. .cesium-viewer-toolbar .cesium-button div,
  1160. .cesium-viewer-toolbar .cesium-button .cesium-svgPath-svg {
  1161. scale: 0.8;
  1162. height: 100%;
  1163. max-width: 100%;
  1164. max-height: 100%;
  1165. text-align: center;
  1166. }
  1167. .cesium-viewer-toolbar .cesium-button img:hover,
  1168. .cesium-viewer-toolbar .cesium-button svg:hover,
  1169. .cesium-viewer-toolbar .cesium-button div:hover,
  1170. .cesium-viewer-toolbar .cesium-button .cesium-svgPath-svg:hover {
  1171. scale: 0.9;
  1172. }
  1173. .cesium-viewer-toolbar .cesium-baseLayerPicker-dropDown {
  1174. background-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1175. max-height: 700px;
  1176. z-index: 99;
  1177. }
  1178. .cesium-viewer-toolbar .cesium-navigationHelpButton-wrapper .cesium-navigation-help-instructions,
  1179. .cesium-viewer-toolbar .cesium-navigationHelpButton-wrapper .cesium-navigation-button {
  1180. background: none;
  1181. }
  1182. .cesium-viewer-toolbar .cesium-navigationHelpButton-wrapper .cesium-navigation-help,
  1183. .cesium-viewer-toolbar .cesium-navigationHelpButton-wrapper .cesium-navigation-button-selected {
  1184. background-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1185. }
  1186. .cesium-viewer-toolbar .cesium-navigationHelpButton-wrapper .cesium-navigation-button-unselected {
  1187. background-color: rgba(105, 105, 105, 0.75);
  1188. }
  1189. .cesium-viewer-toolbar .cesium-navigationHelpButton-wrapper .cesium-navigation-button-unselected:hover {
  1190. background-color: var(--mars-base-bg, rgba(76, 76, 76, 0.75));
  1191. }
  1192. .cesium-viewer-toolbar .cesium-viewer-geocoderContainer .cesium-geocoder-input {
  1193. background-color: rgba(63, 72, 84, 0.7);
  1194. border-width: 1px;
  1195. }
  1196. .cesium-viewer-toolbar .cesium-viewer-geocoderContainer .cesium-geocoder-input:focus {
  1197. background-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1198. }
  1199. .cesium-viewer-toolbar .cesium-viewer-geocoderContainer .search-results {
  1200. z-index: 99;
  1201. background-color: rgba(23, 49, 71, 0.8);
  1202. }
  1203. .cesium-viewer-toolbar .cesium-viewer-geocoderContainer .cesium-geocoder-searchButton {
  1204. background-color: var(--mars-base-bg, rgba(63, 72, 84, 0.9));
  1205. border-radius: 2px;
  1206. border-width: 1px;
  1207. fill: #e6e6e6;
  1208. }
  1209. /** 修改定位:"top-right"上侧靠右 */
  1210. /** 按钮工具栏修改定位:"top-left"上侧靠左 */
  1211. .cesium-viewer-toolbar-top-left {
  1212. top: 10px;
  1213. bottom: auto !important;
  1214. left: 10px;
  1215. right: auto !important;
  1216. /**帮助 弹出面板*/
  1217. /**底图切换 弹出面板*/
  1218. }
  1219. .cesium-viewer-toolbar-top-left .cesium-navigationHelpButton-wrapper .cesium-navigation-help {
  1220. left: 40px;
  1221. transform-origin: left top;
  1222. }
  1223. .cesium-viewer-toolbar-top-left .cesium-baseLayerPicker-dropDown {
  1224. left: 10px;
  1225. }
  1226. /** 修改定位:"left-top"左侧靠上 */
  1227. .cesium-viewer-toolbar-left-top {
  1228. top: 10px;
  1229. bottom: auto !important;
  1230. left: 10px;
  1231. right: auto !important;
  1232. /**底图切换 弹出面板*/
  1233. /**帮助 弹出面板*/
  1234. /**二维三维切换*/
  1235. /**POI查询输入框*/
  1236. }
  1237. .cesium-viewer-toolbar-left-top > .cesium-toolbar-button,
  1238. .cesium-viewer-toolbar-left-top .cesium-navigationHelpButton-wrapper,
  1239. .cesium-viewer-toolbar-left-top .cesium-viewer-geocoderContainer {
  1240. float: left;
  1241. clear: both;
  1242. margin-bottom: 5px;
  1243. }
  1244. .cesium-viewer-toolbar-left-top .cesium-baseLayerPicker-dropDown {
  1245. left: 40px;
  1246. margin-bottom: 5px;
  1247. }
  1248. .cesium-viewer-toolbar-left-top .cesium-navigationHelpButton-wrapper .cesium-navigation-help {
  1249. top: 0px;
  1250. left: 40px;
  1251. transform-origin: left top;
  1252. }
  1253. .cesium-viewer-toolbar-left-top .cesium-sceneModePicker-wrapper {
  1254. width: auto;
  1255. }
  1256. .cesium-viewer-toolbar-left-top .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-dropDown-icon {
  1257. float: right;
  1258. margin: 0 3px;
  1259. }
  1260. .cesium-viewer-toolbar-left-top .cesium-viewer-geocoderContainer .search-results {
  1261. left: 0;
  1262. right: 40px;
  1263. width: auto;
  1264. }
  1265. /** 修改定位:"left-bottom"左侧靠下 */
  1266. .cesium-viewer-toolbar-left-bottom {
  1267. top: auto !important;
  1268. bottom: 60px;
  1269. left: 10px;
  1270. right: auto !important;
  1271. /**底图切换 弹出面板*/
  1272. /**帮助 弹出面板*/
  1273. /**二维三维切换*/
  1274. /**POI查询输入框*/
  1275. }
  1276. .cesium-viewer-toolbar-left-bottom > .cesium-toolbar-button,
  1277. .cesium-viewer-toolbar-left-bottom .cesium-navigationHelpButton-wrapper,
  1278. .cesium-viewer-toolbar-left-bottom .cesium-viewer-geocoderContainer {
  1279. float: left;
  1280. clear: both;
  1281. margin-bottom: 5px;
  1282. }
  1283. .cesium-viewer-toolbar-left-bottom .cesium-baseLayerPicker-dropDown {
  1284. bottom: 0;
  1285. left: 40px;
  1286. margin-bottom: 5px;
  1287. }
  1288. .cesium-viewer-toolbar-left-bottom .cesium-navigationHelpButton-wrapper .cesium-navigation-help {
  1289. top: auto;
  1290. bottom: 0;
  1291. left: 40px;
  1292. transform-origin: left bottom;
  1293. }
  1294. .cesium-viewer-toolbar-left-bottom .cesium-sceneModePicker-wrapper {
  1295. width: auto;
  1296. }
  1297. .cesium-viewer-toolbar-left-bottom .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-dropDown-icon {
  1298. float: right;
  1299. margin: 0 3px;
  1300. }
  1301. .cesium-viewer-toolbar-left-bottom .cesium-viewer-geocoderContainer .search-results {
  1302. left: 0;
  1303. right: 40px;
  1304. width: auto;
  1305. }
  1306. /** 修改定位:"right-top"右侧靠上 */
  1307. .cesium-viewer-toolbar-right-top {
  1308. top: 10px;
  1309. bottom: auto !important;
  1310. right: 10px;
  1311. left: auto !important;
  1312. /**底图切换 弹出面板*/
  1313. /**帮助 弹出面板*/
  1314. /**二维三维切换*/
  1315. /**POI查询输入框*/
  1316. }
  1317. .cesium-viewer-toolbar-right-top > .cesium-toolbar-button,
  1318. .cesium-viewer-toolbar-right-top .cesium-navigationHelpButton-wrapper,
  1319. .cesium-viewer-toolbar-right-top .cesium-viewer-geocoderContainer {
  1320. float: right;
  1321. clear: both;
  1322. margin-bottom: 5px;
  1323. }
  1324. .cesium-viewer-toolbar-right-top .cesium-baseLayerPicker-dropDown {
  1325. right: 40px;
  1326. margin-bottom: 5px;
  1327. }
  1328. .cesium-viewer-toolbar-right-top .cesium-navigationHelpButton-wrapper .cesium-navigation-help {
  1329. top: 0;
  1330. bottom: auto;
  1331. right: 40px;
  1332. transform-origin: right top;
  1333. }
  1334. .cesium-viewer-toolbar-right-top .cesium-sceneModePicker-wrapper {
  1335. width: auto;
  1336. }
  1337. .cesium-viewer-toolbar-right-top .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-dropDown-icon {
  1338. float: left;
  1339. margin: 0 3px;
  1340. }
  1341. .cesium-viewer-toolbar-right-top .cesium-viewer-geocoderContainer .search-results {
  1342. right: 0;
  1343. left: 40px;
  1344. width: auto;
  1345. }
  1346. /** 修改定位:"right-bottom"右侧靠下 */
  1347. .cesium-viewer-toolbar-right-bottom {
  1348. top: auto !important;
  1349. bottom: 60px;
  1350. right: 10px;
  1351. left: auto !important;
  1352. /**底图切换 弹出面板*/
  1353. /**帮助 弹出面板*/
  1354. /**二维三维切换*/
  1355. /**POI查询输入框*/
  1356. }
  1357. .cesium-viewer-toolbar-right-bottom > .cesium-toolbar-button,
  1358. .cesium-viewer-toolbar-right-bottom .cesium-navigationHelpButton-wrapper,
  1359. .cesium-viewer-toolbar-right-bottom .cesium-viewer-geocoderContainer {
  1360. float: right;
  1361. clear: both;
  1362. margin-bottom: 5px;
  1363. }
  1364. .cesium-viewer-toolbar-right-bottom .cesium-baseLayerPicker-dropDown {
  1365. bottom: 0;
  1366. right: 40px;
  1367. margin-bottom: 5px;
  1368. }
  1369. .cesium-viewer-toolbar-right-bottom .cesium-navigationHelpButton-wrapper .cesium-navigation-help {
  1370. top: auto;
  1371. bottom: 0;
  1372. right: 40px;
  1373. transform-origin: right bottom;
  1374. }
  1375. .cesium-viewer-toolbar-right-bottom .cesium-sceneModePicker-wrapper {
  1376. width: auto;
  1377. }
  1378. .cesium-viewer-toolbar-right-bottom .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-dropDown-icon {
  1379. float: left;
  1380. margin: 0 3px;
  1381. }
  1382. .cesium-viewer-toolbar-right-bottom .cesium-viewer-geocoderContainer .search-results {
  1383. right: 0;
  1384. left: 40px;
  1385. width: auto;
  1386. }