style.css 7.9 KB

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