style.css 7.4 KB

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