智慧水务管理系统 - 精河县供水工程综合管理平台

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .cesium-infoBox {
  2. display: block;
  3. position: absolute;
  4. top: 50px;
  5. right: 0;
  6. width: 40%;
  7. max-width: 480px;
  8. background: rgba(38, 38, 38, 0.95);
  9. color: #edffff;
  10. border: 1px solid #444;
  11. border-right: none;
  12. border-top-left-radius: 7px;
  13. border-bottom-left-radius: 7px;
  14. box-shadow: 0 0 10px 1px #000;
  15. transform: translate(100%, 0);
  16. visibility: hidden;
  17. opacity: 0;
  18. transition:
  19. visibility 0s 0.2s,
  20. opacity 0.2s ease-in,
  21. transform 0.2s ease-in;
  22. }
  23. .cesium-infoBox-visible {
  24. transform: translate(0, 0);
  25. visibility: visible;
  26. opacity: 1;
  27. transition:
  28. opacity 0.2s ease-out,
  29. transform 0.2s ease-out;
  30. }
  31. .cesium-infoBox-title {
  32. display: block;
  33. height: 20px;
  34. padding: 5px 30px 5px 25px;
  35. background: rgba(84, 84, 84, 1);
  36. border-top-left-radius: 7px;
  37. text-align: center;
  38. text-overflow: ellipsis;
  39. white-space: nowrap;
  40. overflow: hidden;
  41. box-sizing: content-box;
  42. }
  43. .cesium-infoBox-bodyless .cesium-infoBox-title {
  44. border-bottom-left-radius: 7px;
  45. }
  46. button.cesium-infoBox-camera {
  47. display: block;
  48. position: absolute;
  49. top: 4px;
  50. left: 4px;
  51. width: 22px;
  52. height: 22px;
  53. background: transparent;
  54. border-color: transparent;
  55. border-radius: 3px;
  56. padding: 0 5px;
  57. margin: 0;
  58. }
  59. button.cesium-infoBox-close {
  60. display: block;
  61. position: absolute;
  62. top: 5px;
  63. right: 5px;
  64. height: 20px;
  65. background: transparent;
  66. border: none;
  67. border-radius: 2px;
  68. font-weight: bold;
  69. font-size: 16px;
  70. padding: 0 5px;
  71. margin: 0;
  72. color: #edffff;
  73. }
  74. button.cesium-infoBox-close:focus {
  75. background: rgba(238, 136, 0, 0.44);
  76. outline: none;
  77. }
  78. button.cesium-infoBox-close:hover {
  79. background: #888;
  80. color: #000;
  81. }
  82. button.cesium-infoBox-close:active {
  83. background: #a00;
  84. color: #000;
  85. }
  86. .cesium-infoBox-bodyless .cesium-infoBox-iframe {
  87. display: none;
  88. }
  89. .cesium-infoBox-iframe {
  90. border: none;
  91. width: 100%; /* Fallback */
  92. width: calc(100% - 2px);
  93. }