style.css 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html,
  6. body {
  7. width: 100vw;
  8. height: 100vh;
  9. overflow: hidden;
  10. }
  11. #app {
  12. height: 100%;
  13. width: 100%;
  14. }
  15. .content {
  16. width: 100%;
  17. height: 100%;
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. overflow-y: hidden;
  22. background: #141414;
  23. }
  24. .rightBox {
  25. height: 100%;
  26. width: 70%;
  27. display: flex;
  28. align-items: center;
  29. justify-content: center;
  30. position: relative;
  31. }
  32. .map-layer {
  33. height: 800px;
  34. width: 94%;
  35. padding: 0px;
  36. margin: 0px;
  37. position: relative;
  38. }
  39. .map-layer .map {
  40. width: 100%;
  41. height: 100%;
  42. }
  43. #plane {
  44. /* width: 30%; */
  45. width: 100%;
  46. height: 100%;
  47. /* position: absolute; */
  48. /* top: 10px;
  49. left: 10px; */
  50. background-color: rgb(0, 0, 0, 0.3);
  51. color: #fff;
  52. border-right: 1px solid rgba(255, 255, 255, .2);
  53. position: relative;
  54. }
  55. .scrollBox {
  56. width: 100%;
  57. height: 100%;
  58. overflow-y: scroll;
  59. box-sizing: border-box;
  60. padding: 30px 30px 80px 30px;
  61. }
  62. /* ::-webkit-scrollbar-track {
  63. background-color: #000;
  64. -webkit-border-radius: 1em;
  65. -moz-border-radius: 1em;
  66. border-radius: 1em;
  67. }
  68. ::-webkit-scrollbar-thumb {
  69. background-color: rgba(255, 255, 255, .2);
  70. -webkit-border-radius: 1em;
  71. -moz-border-radius: 1em;
  72. border-radius: 1em;
  73. } */
  74. ::-webkit-scrollbar {
  75. width: 4px;
  76. height: 1px;
  77. }
  78. ::-webkit-scrollbar-thumb {
  79. border-radius: 4px;
  80. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  81. /* background: #ccc; */
  82. background: rgba(255, 255, 255, .2);
  83. }
  84. ::-webkit-scrollbar-thumb:hover {
  85. background: #999;
  86. }
  87. ::-webkit-scrollbar-track {
  88. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  89. border-radius: 4px;
  90. background: #000000;
  91. }
  92. .ol-overlaycontainer-stopevent {
  93. display: none;
  94. }
  95. #plane .title {
  96. font-size: 20px;
  97. color: #fff;
  98. margin-bottom: 10px;
  99. }
  100. #plane .desc {
  101. font-size: 14px;
  102. color: rgba(255, 255, 255, 0.6);
  103. margin-bottom: 10px;
  104. }
  105. form .formTitle {
  106. font-size: 16px;
  107. color: #fff;
  108. }
  109. .itemTitle {
  110. font-size: 14px;
  111. color: #fff;
  112. margin-bottom: 10px;
  113. }
  114. .inputItem {
  115. width: 100%;
  116. height: 34px;
  117. border-radius: 4px;
  118. border: 1px solid rgba(255, 255, 255, 0.4);
  119. display: flex;
  120. align-items: center;
  121. justify-content: space-between;
  122. box-sizing: border-box;
  123. padding: 0 10px 0 0;
  124. margin-bottom: 10px;
  125. }
  126. .inputItem .name {
  127. width: 23%;
  128. height: 34px;
  129. border-right: 1px solid rgba(255, 255, 255, 0.4);
  130. box-sizing: border-box;
  131. text-align: center;
  132. line-height: 34px;
  133. font-size: 14px;
  134. color: rgba(255, 255, 255, 0.4);
  135. background: rgba(255, 255, 255, 0.1)
  136. }
  137. .inputItem .ipt {
  138. width: 77%;
  139. height: 34px;
  140. background: transparent;
  141. }
  142. .inputItem .ipt input {
  143. width: 100%;
  144. height: 100%;
  145. /* padding: 0 30px; */
  146. box-sizing: border-box;
  147. background: transparent;
  148. border: none;
  149. outline: none;
  150. color: #15BEC8;
  151. text-align: right;
  152. border: none !important;
  153. }
  154. input::placeholder {
  155. color: rgba(255, 255, 255, 0.4);
  156. }
  157. input::-moz-placeholder {
  158. color: rgba(255, 255, 255, 0.4);
  159. }
  160. input::-webkit-input-placeholder {
  161. color: rgba(255, 255, 255, 0.4);
  162. }
  163. .inputItem .unit {
  164. font-size: 14px;
  165. color: rgba(255, 255, 255, 0.4);
  166. margin-left: 5px;
  167. }
  168. .allIpt {
  169. width: 100%;
  170. height: 34px;
  171. border-radius: 4px;
  172. border: 1px solid rgba(255, 255, 255, 0.4);
  173. display: flex;
  174. align-items: center;
  175. justify-content: space-between;
  176. box-sizing: border-box;
  177. padding: 0 10px;
  178. background: rgba(255, 255, 255, 0.1)
  179. }
  180. .allIpt input {
  181. width: 100%;
  182. height: 100%;
  183. /* padding: 0 30px; */
  184. box-sizing: border-box;
  185. background: transparent;
  186. border: none;
  187. outline: none;
  188. color: rgba(255, 255, 255, 0.6);
  189. }
  190. .bottom {
  191. position: absolute;
  192. bottom: 0;
  193. left: 0;
  194. width: 100%;
  195. height: 63px;
  196. background: #141414;
  197. z-index: 1;
  198. display: flex;
  199. align-items: center;
  200. justify-content: flex-end;
  201. padding: 0 20px;
  202. box-sizing: border-box;
  203. }
  204. .style {
  205. width: 100%;
  206. height: 10px;
  207. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  208. position: absolute;
  209. top: -10px;
  210. left: 0;
  211. }
  212. .submitBtn {
  213. width: 100px;
  214. height: 34px;
  215. background: #15BEC8;
  216. border-radius: 4px;
  217. color: #fff;
  218. text-align: center;
  219. line-height: 34px;
  220. font-size: 14px;
  221. margin-left: 10px;
  222. cursor: pointer;
  223. }
  224. #clear {
  225. width: 100px;
  226. height: 34px;
  227. border-radius: 4px;
  228. border: 1px solid #15BEC8;
  229. color: #15BEC8;
  230. text-align: center;
  231. line-height: 34px;
  232. font-size: 14px;
  233. cursor: pointer;
  234. }
  235. .tag {
  236. display: flex;
  237. align-items: center;
  238. justify-content: space-between;
  239. margin-bottom: 20px;
  240. margin-top: 30px;
  241. }
  242. .localIcon {
  243. width: 16px;
  244. height: 16px;
  245. background: url("img/local.png")no-repeat;
  246. background-size: 100% 100%;
  247. cursor: pointer;
  248. }
  249. .plane1 {
  250. position: absolute;
  251. top: 10px;
  252. left: 10px;
  253. background-color: rgb(0, 0, 0, 0.3);
  254. z-index: 1;
  255. color: #fff;
  256. }
  257. .transform-layer {
  258. top: 0;
  259. left: 0;
  260. }
  261. .upload-layer {
  262. z-index: 99;
  263. left: 0;
  264. top: 0;
  265. position: absolute;
  266. }
  267. .ctrls {
  268. position: absolute;
  269. z-index: 9;
  270. --margin: 10px;
  271. transform: translate(-50%, -50%);
  272. }
  273. .cctrls span {
  274. z-index: 10;
  275. position: absolute;
  276. width: 10px;
  277. height: 10px;
  278. border-radius: 50%;
  279. background: red;
  280. cursor: pointer;
  281. transform: translate(-50%, -50%);
  282. }
  283. .box-info {
  284. padding: 10px;
  285. color: #fff;
  286. position: absolute;
  287. bottom: 0;
  288. pointer-events: none;
  289. left: 0;
  290. background: rgba(0, 0, 0, 0.5);
  291. }
  292. #plane .main {
  293. width: 100%;
  294. height: 100%;
  295. overflow-y: scroll;
  296. box-sizing: border-box;
  297. padding: 20px;
  298. }
  299. #plane .main .Setting {
  300. display: flex;
  301. align-items: center;
  302. justify-content: space-between;
  303. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  304. padding: 20px 10px;
  305. box-sizing: border-box;
  306. }
  307. #plane .main:last-of-type .Setting {
  308. border-bottom: 1px solid transparent;
  309. }
  310. #plane .main>.title {
  311. padding: 0 10px;
  312. }
  313. #plane .main .Setting.msgBox {
  314. margin-right: 20px;
  315. color: #fff;
  316. font-style: 24px;
  317. }
  318. #plane .main .Setting.msgBox .title {
  319. font-size: 20px;
  320. color: #fff;
  321. margin-bottom: 10px;
  322. }
  323. #plane .main .Setting.msgBox .desc {
  324. font-size: 14px;
  325. color: rgba(255, 255, 255, 0.6);
  326. margin-bottom: 10px;
  327. }
  328. #plane .main .Setting .btnton {
  329. padding: 5px 10px;
  330. border: 1px solid #15BEC8;
  331. border-radius: 4px;
  332. cursor: pointer;
  333. }
  334. #plane .main .Setting .btnton:hover {
  335. background: #15BEC8;
  336. }
  337. .mapItem {
  338. border: 1px solid rgba(255, 255, 255, .2);
  339. display: flex;
  340. align-items: center;
  341. justify-content: space-between;
  342. padding: 15px 10px;
  343. box-sizing: border-box;
  344. }
  345. .fileName {
  346. font-size: 14px;
  347. color: #fff;
  348. }
  349. .fileBtn {
  350. display: flex;
  351. align-items: center;
  352. justify-content: center;
  353. }
  354. .fileBtnicon {
  355. width: 20px;
  356. height: 20px;
  357. margin-right: 10px;
  358. cursor: pointer;
  359. }
  360. .fileBtnicon:last-of-type {
  361. margin-right: 0;
  362. }
  363. .fileDel {
  364. background: url(../img/icon/icon_del.png)no-repeat;
  365. background-size: 100%;
  366. }
  367. .fileHide {
  368. background: url(../img/icon/icon_hide.png)no-repeat;
  369. background-size: 100%;
  370. }
  371. .fileSave {
  372. background: url(../img/icon/icon_save.png)no-repeat;
  373. background-size: 100%;
  374. }
  375. .main_item_title {
  376. margin-bottom: 20px;
  377. }
  378. .dataBox {
  379. border: 1px solid rgba(255, 255, 255, .2);
  380. padding: 10px;
  381. box-sizing: border-box;
  382. margin-bottom: 20px;
  383. }
  384. .dataBox>p {
  385. margin: 10px 0;
  386. }
  387. .editBtn {
  388. width: 100%;
  389. height: 40px;
  390. border: 1px solid #15BEC8;
  391. border-radius: 4px;
  392. box-sizing: border-box;
  393. text-align: center;
  394. line-height: 40px;
  395. cursor: pointer;
  396. margin-bottom: 10px;
  397. }
  398. .editBtn:hover {
  399. background: #143537;
  400. }