style.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732
  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. position: relative;
  401. }
  402. .editBtn:hover {
  403. background: #143537;
  404. }
  405. .editBtn #file {
  406. width: 100%;
  407. height: 100%;
  408. position: absolute;
  409. z-index: 10;
  410. top: 0;
  411. left: 0;
  412. opacity: 0;
  413. }
  414. .pointClound {
  415. margin-top: 50px;
  416. }
  417. #upload-loading {
  418. width: 100%;
  419. height: 100%;
  420. position: fixed;
  421. top: 0;
  422. left: 0;
  423. z-index: 999;
  424. background: rgba(0, 0, 0, 0.8);
  425. }
  426. #upload-loading .icon {
  427. width: 124px;
  428. height: 124px;
  429. position: absolute;
  430. top: 50%;
  431. left: 50%;
  432. /* transform: translate(-50%, -50%); */
  433. animation: 2s loading_rotate infinite linear;
  434. transform-origin: center 50%;
  435. }
  436. #upload-loading .text {
  437. font-size: 14px;
  438. color: #fff !important;
  439. position: absolute;
  440. top: 50%;
  441. left: 50%;
  442. transform: translate(-50%, -50%);
  443. }
  444. @keyframes loading_rotate {
  445. 0% {
  446. transform: translate(-50%, -50%) rotate(0deg);
  447. }
  448. 100% {
  449. transform: translate(-50%, -50%)rotate(360deg);
  450. }
  451. }
  452. #uploadBox {
  453. width: 100%;
  454. height: 100%;
  455. overflow-y: scroll;
  456. box-sizing: border-box;
  457. padding: 20px 57px 20px;
  458. }
  459. #uploadBox .selectBox {
  460. width: 100%;
  461. height: auto;
  462. /* border-bottom: 1px solid rgba(255, 255, 255, .2); */
  463. margin-bottom: 20px;
  464. }
  465. #uploadBox .selectBox .el-select {
  466. width: 100% !important;
  467. }
  468. .el-select-dropdown {
  469. border: 1px solid rgba(255, 255, 255, 0.4) !important;
  470. background-color: #141414!important;
  471. color: #fff !important;
  472. }
  473. .el-select-dropdown .el-select-dropdown__item {
  474. color: #fff !important;
  475. display: flex;
  476. align-items: center;
  477. justify-content: space-between;
  478. height: auto !important;
  479. line-height: normal !important;
  480. padding: 5px 10px !important;
  481. border-bottom: 1px solid rgba(255, 255, 255, .2);
  482. }
  483. .el-popper[x-placement^=bottom] .popper__arrow {
  484. border-bottom-color: rgba(255, 255, 255, 0.4) !important;
  485. }
  486. .el-popper[x-placement^=bottom] .popper__arrow::after {
  487. border-bottom-color: rgba(255, 255, 255, 0.4) !important;
  488. }
  489. .el-select-dropdown .el-select-dropdown__item:hover {
  490. background: #143537 !important
  491. }
  492. #uploadBox .selectBox .el-input__inner {
  493. color: #fff !important;
  494. }
  495. .el-select-dropdown__item.selected {
  496. color: #15BEC8 !important;
  497. }
  498. .el-select-dropdown__item.hover {
  499. background: #143537 !important
  500. }
  501. .el-scrollbar__wrap {
  502. margin-bottom: -4px !important;
  503. margin-right: -4px !important;
  504. }
  505. #uploadBox .uploadBtn {
  506. width: 100%;
  507. height: 40px;
  508. color: #fff;
  509. background: #15BEC8;
  510. cursor: pointer;
  511. display: flex;
  512. align-items: center;
  513. justify-content: center;
  514. border-radius: 4px;
  515. margin-bottom: 30px;
  516. cursor: pointer;
  517. }
  518. #uploadBox .uploadBtn.disabled {
  519. cursor: no-drop;
  520. }
  521. /* #uploadBox .selectBox select {
  522. width: 100%;
  523. height: 30px;
  524. line-height: 30px;
  525. }
  526. #uploadBox .selectBox option {
  527. width: 100%;
  528. } */
  529. .listBox {
  530. width: 100%;
  531. height: auto;
  532. }
  533. .sceneList {
  534. width: 100%;
  535. height: auto;
  536. /* border: 1px solid rgba(255, 255, 255, .2); */
  537. }
  538. .sceneItem {
  539. width: 100%;
  540. /* height: 40px; */
  541. display: flex;
  542. align-items: center;
  543. justify-content: space-between;
  544. color: #fff;
  545. border-bottom: 1px solid rgba(255, 255, 255, .2);
  546. padding: 10px 0;
  547. box-sizing: border-box;
  548. }
  549. .sceneItem:last-of-type {
  550. border-bottom: none;
  551. }
  552. .sceneName {
  553. font-size: 12px;
  554. }
  555. .sceneName>span {
  556. display: block;
  557. }
  558. .sceneName .code {
  559. color: #fff !important;
  560. margin-bottom: 3px;
  561. font-size: 14px;
  562. }
  563. .sceneName .name {
  564. color: #999;
  565. }
  566. .scene_control {}
  567. .scene_control .delBtn {
  568. background: url(../img/icon/icon_del.png?4)no-repeat;
  569. background-size: 100% 100%;
  570. width: 14px;
  571. height: 14px;
  572. color: transparent !important;
  573. cursor: pointer;
  574. padding: 0!important;
  575. border: none !important;
  576. }
  577. .el-message-box {
  578. background: #141414!important;
  579. border: none !important;
  580. }
  581. .el-message-box__content {
  582. color: #fff !important;
  583. }
  584. .el-message-box .el-button {
  585. color: #fff !important;
  586. background: transparent !important;
  587. }
  588. .el-message-box .el-button:hover {
  589. background: transparent !important;
  590. }
  591. .el-message-box .el-button--primary {
  592. color: #fff !important;
  593. background: #15BEC8 !important;
  594. border-color: #15BEC8 !important;
  595. }
  596. .el-message-box .el-button--primary:hover {
  597. color: #fff !important;
  598. background: #15BEC8 !important;
  599. }
  600. .el-message-box .el-icon-close:before {
  601. color: #fff !important;
  602. }
  603. .el-popover {
  604. border: 1px solid rgba(255, 255, 255, 0.4) !important;
  605. background-color: #141414!important;
  606. color: #fff !important;
  607. }
  608. .el-popper[x-placement^=top] .popper__arrow {
  609. border-top-color: rgba(255, 255, 255, 0.4) !important;
  610. }
  611. .el-popper[x-placement^=top] .popper__arrow::after {
  612. border-top-color: rgba(255, 255, 255, 0.4) !important;
  613. }
  614. .el-button--primary {
  615. background: #15BEC8 !important;
  616. }
  617. .el-button--primary:hover {
  618. background: #15BEC8 !important;
  619. }
  620. .el-popconfirm__action button.el-button--text {
  621. color: #fff !important;
  622. }