style.css 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  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 57px 80px;
  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. border: none !important;
  190. }
  191. .bottom {
  192. position: absolute;
  193. bottom: 0;
  194. left: 0;
  195. width: 100%;
  196. height: 63px;
  197. background: #141414;
  198. z-index: 1;
  199. display: flex;
  200. align-items: center;
  201. justify-content: flex-end;
  202. padding: 0 60px 0 0;
  203. box-sizing: border-box;
  204. }
  205. .style {
  206. width: 100%;
  207. height: 10px;
  208. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  209. position: absolute;
  210. top: -10px;
  211. left: 0;
  212. }
  213. .submitBtn {
  214. width: 100px;
  215. height: 34px;
  216. background: #15BEC8;
  217. border-radius: 4px;
  218. color: #fff;
  219. text-align: center;
  220. line-height: 34px;
  221. font-size: 14px;
  222. margin-left: 10px;
  223. cursor: pointer;
  224. }
  225. #clear {
  226. width: 100px;
  227. height: 34px;
  228. border-radius: 4px;
  229. border: 1px solid #15BEC8;
  230. color: #15BEC8;
  231. text-align: center;
  232. line-height: 34px;
  233. font-size: 14px;
  234. cursor: pointer;
  235. }
  236. .tag {
  237. display: flex;
  238. align-items: center;
  239. justify-content: space-between;
  240. margin-bottom: 20px;
  241. margin-top: 30px;
  242. }
  243. .localIcon {
  244. width: 16px;
  245. height: 16px;
  246. background: url("img/local.png")no-repeat;
  247. background-size: 100% 100%;
  248. cursor: pointer;
  249. }
  250. .plane1 {
  251. position: absolute;
  252. top: 10px;
  253. left: 10px;
  254. background-color: rgb(0, 0, 0, 0.3);
  255. z-index: 1;
  256. color: #fff;
  257. }
  258. .transform-layer {
  259. top: 0;
  260. left: 0;
  261. }
  262. .upload-layer {
  263. z-index: 99;
  264. left: 0;
  265. top: 0;
  266. position: absolute;
  267. }
  268. .ctrls {
  269. position: absolute;
  270. z-index: 9;
  271. --margin: 10px;
  272. transform: translate(-50%, -50%);
  273. }
  274. .cctrls span {
  275. z-index: 10;
  276. position: absolute;
  277. width: 10px;
  278. height: 10px;
  279. border-radius: 50%;
  280. background: red;
  281. cursor: pointer;
  282. transform: translate(-50%, -50%);
  283. }
  284. .box-info {
  285. padding: 10px;
  286. color: #fff;
  287. position: absolute;
  288. bottom: 0;
  289. pointer-events: none;
  290. left: 0;
  291. background: rgba(0, 0, 0, 0.5);
  292. }
  293. #plane .main {
  294. width: 100%;
  295. height: 100%;
  296. overflow-y: scroll;
  297. box-sizing: border-box;
  298. padding: 20px 57px;
  299. }
  300. #plane .main .Setting {
  301. display: flex;
  302. align-items: center;
  303. justify-content: space-between;
  304. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  305. padding: 20px 10px;
  306. box-sizing: border-box;
  307. }
  308. #plane .main:last-of-type .Setting {
  309. border-bottom: 1px solid transparent;
  310. }
  311. #plane .main>.title {
  312. padding: 0 10px;
  313. }
  314. #plane .main .Setting.msgBox {
  315. margin-right: 20px;
  316. color: #fff;
  317. font-style: 24px;
  318. }
  319. #plane .main .Setting.msgBox .title {
  320. font-size: 20px;
  321. color: #fff;
  322. margin-bottom: 10px;
  323. }
  324. #plane .main .Setting.msgBox .desc {
  325. font-size: 14px;
  326. color: rgba(255, 255, 255, 0.6);
  327. margin-bottom: 10px;
  328. }
  329. #plane .main .Setting .btnton {
  330. padding: 5px 10px;
  331. border: 1px solid #15BEC8;
  332. border-radius: 4px;
  333. cursor: pointer;
  334. }
  335. #plane .main .Setting .btnton:hover {
  336. background: #15BEC8;
  337. }
  338. .mapItem {
  339. border: 1px solid rgba(255, 255, 255, .2);
  340. display: flex;
  341. align-items: center;
  342. justify-content: space-between;
  343. padding: 15px 10px;
  344. box-sizing: border-box;
  345. }
  346. .fileName {
  347. font-size: 14px;
  348. color: #fff;
  349. }
  350. .fileBtn {
  351. display: flex;
  352. align-items: center;
  353. justify-content: center;
  354. }
  355. .fileBtnicon {
  356. width: 20px;
  357. height: 20px;
  358. margin-right: 10px;
  359. cursor: pointer;
  360. }
  361. .fileBtnicon:last-of-type {
  362. margin-right: 0;
  363. }
  364. .fileDel {
  365. background: url(../img/icon/icon_del.png)no-repeat;
  366. background-size: 100%;
  367. }
  368. .fileHide {
  369. background: url(../img/icon/icon_hide.png)no-repeat;
  370. background-size: 100%;
  371. }
  372. .fileSave {
  373. background: url(../img/icon/icon_save.png)no-repeat;
  374. background-size: 100%;
  375. }
  376. .main_item_title {
  377. margin-bottom: 20px;
  378. }
  379. .dataBox {
  380. border: 1px solid rgba(255, 255, 255, .2);
  381. padding: 10px;
  382. box-sizing: border-box;
  383. margin-bottom: 20px;
  384. }
  385. .dataBox>p {
  386. margin: 10px 0;
  387. }
  388. .editBtn {
  389. width: 100%;
  390. height: 40px;
  391. border: 1px solid #15BEC8;
  392. border-radius: 4px;
  393. box-sizing: border-box;
  394. text-align: center;
  395. line-height: 40px;
  396. cursor: pointer;
  397. margin-bottom: 10px;
  398. }
  399. .editBtn:hover {
  400. background: #143537;
  401. }