style.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html,
  6. body {
  7. width: 100vw;
  8. height: 100vh;
  9. overflow: hidden;
  10. }
  11. .content {
  12. width: 100vw;
  13. height: 100vh;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. overflow-y: hidden;
  18. background: #141414;
  19. }
  20. .rightBox {
  21. height: 100%;
  22. width: 70%;
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. }
  27. .map-layer {
  28. height: 800px;
  29. width: 94%;
  30. padding: 0px;
  31. margin: 0px;
  32. position: relative;
  33. }
  34. .map-layer .map {
  35. width: 100%;
  36. height: 100%;
  37. }
  38. #plane {
  39. width: 30%;
  40. height: 100%;
  41. /* position: absolute; */
  42. /* top: 10px;
  43. left: 10px; */
  44. background-color: rgb(0, 0, 0, 0.3);
  45. color: #fff;
  46. border-right: 1px solid rgba(255, 255, 255, .2);
  47. position: relative;
  48. }
  49. .scrollBox {
  50. width: 100%;
  51. height: 100%;
  52. overflow-y: scroll;
  53. box-sizing: border-box;
  54. padding: 30px 30px 80px 30px;
  55. }
  56. /* ::-webkit-scrollbar-track {
  57. background-color: #000;
  58. -webkit-border-radius: 1em;
  59. -moz-border-radius: 1em;
  60. border-radius: 1em;
  61. }
  62. ::-webkit-scrollbar-thumb {
  63. background-color: rgba(255, 255, 255, .2);
  64. -webkit-border-radius: 1em;
  65. -moz-border-radius: 1em;
  66. border-radius: 1em;
  67. } */
  68. ::-webkit-scrollbar {
  69. width: 4px;
  70. height: 1px;
  71. }
  72. ::-webkit-scrollbar-thumb {
  73. border-radius: 4px;
  74. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  75. /* background: #ccc; */
  76. background: rgba(255, 255, 255, .2);
  77. }
  78. ::-webkit-scrollbar-thumb:hover {
  79. background: #999;
  80. }
  81. ::-webkit-scrollbar-track {
  82. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  83. border-radius: 4px;
  84. background: #000000;
  85. }
  86. .ol-overlaycontainer-stopevent {
  87. display: none;
  88. }
  89. #plane .title {
  90. font-size: 20px;
  91. color: #fff;
  92. margin-bottom: 10px;
  93. }
  94. #plane .desc {
  95. font-size: 14px;
  96. color: rgba(255, 255, 255, 0.6);
  97. margin-bottom: 10px;
  98. }
  99. form .formTitle {
  100. font-size: 16px;
  101. color: #fff;
  102. }
  103. .itemTitle {
  104. font-size: 14px;
  105. color: #fff;
  106. margin-bottom: 10px;
  107. }
  108. .inputItem {
  109. width: 100%;
  110. height: 34px;
  111. border-radius: 4px;
  112. border: 1px solid rgba(255, 255, 255, 0.4);
  113. display: flex;
  114. align-items: center;
  115. justify-content: space-between;
  116. box-sizing: border-box;
  117. padding: 0 10px 0 0;
  118. margin-bottom: 10px;
  119. }
  120. .inputItem .name {
  121. width: 23%;
  122. height: 34px;
  123. border-right: 1px solid rgba(255, 255, 255, 0.4);
  124. box-sizing: border-box;
  125. text-align: center;
  126. line-height: 34px;
  127. font-size: 14px;
  128. color: rgba(255, 255, 255, 0.4);
  129. background: rgba(255, 255, 255, 0.1)
  130. }
  131. .inputItem .ipt {
  132. width: 77%;
  133. height: 34px;
  134. background: transparent;
  135. }
  136. .inputItem .ipt input {
  137. width: 100%;
  138. height: 100%;
  139. /* padding: 0 30px; */
  140. box-sizing: border-box;
  141. background: transparent;
  142. border: none;
  143. outline: none;
  144. color: #15BEC8;
  145. text-align: right;
  146. }
  147. input::placeholder {
  148. color: rgba(255, 255, 255, 0.4);
  149. }
  150. input::-moz-placeholder {
  151. color: rgba(255, 255, 255, 0.4);
  152. }
  153. input::-webkit-input-placeholder {
  154. color: rgba(255, 255, 255, 0.4);
  155. }
  156. .inputItem .unit {
  157. font-size: 14px;
  158. color: rgba(255, 255, 255, 0.4);
  159. margin-left: 5px;
  160. }
  161. .allIpt {
  162. width: 100%;
  163. height: 34px;
  164. border-radius: 4px;
  165. border: 1px solid rgba(255, 255, 255, 0.4);
  166. display: flex;
  167. align-items: center;
  168. justify-content: space-between;
  169. box-sizing: border-box;
  170. padding: 0 10px;
  171. background: rgba(255, 255, 255, 0.1)
  172. }
  173. .allIpt input {
  174. width: 100%;
  175. height: 100%;
  176. /* padding: 0 30px; */
  177. box-sizing: border-box;
  178. background: transparent;
  179. border: none;
  180. outline: none;
  181. color: rgba(255, 255, 255, 0.6);
  182. }
  183. .bottom {
  184. position: absolute;
  185. bottom: 0;
  186. left: 0;
  187. width: 100%;
  188. height: 63px;
  189. background: #141414;
  190. z-index: 1;
  191. display: flex;
  192. align-items: center;
  193. justify-content: flex-end;
  194. padding: 0 20px;
  195. box-sizing: border-box;
  196. }
  197. .style {
  198. width: 100%;
  199. height: 10px;
  200. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  201. position: absolute;
  202. top: -10px;
  203. left: 0;
  204. }
  205. .submitBtn {
  206. width: 100px;
  207. height: 34px;
  208. background: #15BEC8;
  209. border-radius: 4px;
  210. color: #fff;
  211. text-align: center;
  212. line-height: 34px;
  213. font-size: 14px;
  214. margin-left: 10px;
  215. cursor: pointer;
  216. }
  217. #clear {
  218. width: 100px;
  219. height: 34px;
  220. border-radius: 4px;
  221. border: 1px solid #15BEC8;
  222. color: #15BEC8;
  223. text-align: center;
  224. line-height: 34px;
  225. font-size: 14px;
  226. cursor: pointer;
  227. }
  228. .tag{
  229. display: flex;
  230. align-items: center;
  231. justify-content: space-between;
  232. margin-bottom: 20px;
  233. margin-top: 30px;
  234. }
  235. .localIcon{
  236. width: 16px;
  237. height: 16px;
  238. background: url("img/local.png")no-repeat;
  239. background-size: 100% 100%;
  240. cursor: pointer;
  241. }
  242. .plane1 {
  243. position: absolute;
  244. top: 10px;
  245. left: 10px;
  246. background-color: rgb(0, 0, 0, 0.3);
  247. z-index: 1;
  248. color: #fff;
  249. }
  250. .transform-layer {
  251. top: 0;
  252. left: 0;
  253. }
  254. .upload-layer {
  255. z-index: 99;
  256. left: 0;
  257. top: 0;
  258. position: absolute;
  259. }
  260. .ctrls {
  261. position: absolute;
  262. z-index: 9;
  263. --margin: 10px;
  264. transform: translate(-50%, -50%);
  265. }
  266. .cctrls span {
  267. z-index: 10;
  268. position: absolute;
  269. width: 10px;
  270. height: 10px;
  271. border-radius: 50%;
  272. background: red;
  273. cursor: pointer;
  274. transform: translate(-50%, -50%);
  275. }
  276. .box-info {
  277. padding: 10px;
  278. color: #fff;
  279. position: absolute;
  280. bottom: 0;
  281. pointer-events: none;
  282. left: 0;
  283. background: rgba(0, 0, 0, 0.5);
  284. }