style.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941
  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. .control_box {
  56. width: 100%;
  57. height: 100%;
  58. position: relative;
  59. }
  60. .scrollBox {
  61. width: 100%;
  62. height: 100%;
  63. overflow-y: scroll;
  64. box-sizing: border-box;
  65. padding: 70px 57px 80px;
  66. }
  67. /* ::-webkit-scrollbar-track {
  68. background-color: #000;
  69. -webkit-border-radius: 1em;
  70. -moz-border-radius: 1em;
  71. border-radius: 1em;
  72. }
  73. ::-webkit-scrollbar-thumb {
  74. background-color: rgba(255, 255, 255, .2);
  75. -webkit-border-radius: 1em;
  76. -moz-border-radius: 1em;
  77. border-radius: 1em;
  78. } */
  79. ::-webkit-scrollbar {
  80. width: 4px;
  81. height: 1px;
  82. }
  83. ::-webkit-scrollbar-thumb {
  84. border-radius: 4px;
  85. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  86. /* background: #ccc; */
  87. background: rgba(255, 255, 255, .2);
  88. }
  89. ::-webkit-scrollbar-thumb:hover {
  90. background: #999;
  91. }
  92. ::-webkit-scrollbar-track {
  93. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  94. border-radius: 4px;
  95. background: #000000;
  96. }
  97. .ol-overlaycontainer-stopevent {
  98. display: none;
  99. }
  100. #plane .title {
  101. font-size: 20px;
  102. color: #fff;
  103. margin-bottom: 10px;
  104. }
  105. #plane .desc {
  106. font-size: 14px;
  107. color: rgba(255, 255, 255, 0.6);
  108. margin-bottom: 10px;
  109. }
  110. form .formTitle {
  111. font-size: 16px;
  112. color: #fff;
  113. }
  114. .itemTitle {
  115. font-size: 14px;
  116. color: #fff;
  117. margin-bottom: 10px;
  118. }
  119. .inputItem {
  120. width: 100%;
  121. height: 34px;
  122. border-radius: 4px;
  123. border: 1px solid rgba(255, 255, 255, 0.4);
  124. display: flex;
  125. align-items: center;
  126. justify-content: space-between;
  127. box-sizing: border-box;
  128. padding: 0 5px 0 0;
  129. margin-bottom: 10px;
  130. }
  131. .inputItem .name {
  132. width: 23%;
  133. height: 34px;
  134. border-right: 1px solid rgba(255, 255, 255, 0.4);
  135. box-sizing: border-box;
  136. text-align: center;
  137. line-height: 34px;
  138. font-size: 14px;
  139. color: rgba(255, 255, 255, 0.4);
  140. background: rgba(255, 255, 255, 0.1)
  141. }
  142. .inputItem .ipt {
  143. width: 77%;
  144. height: 34px;
  145. background: transparent;
  146. }
  147. .inputItem .ipt input {
  148. width: 100%;
  149. height: 100%;
  150. /* padding: 0 30px; */
  151. box-sizing: border-box;
  152. background: transparent;
  153. border: none;
  154. outline: none;
  155. color: #15BEC8;
  156. text-align: right;
  157. border: none !important;
  158. padding: 0 5px;
  159. box-sizing: border-box;
  160. }
  161. input::placeholder {
  162. color: rgba(255, 255, 255, 0.4);
  163. }
  164. input::-moz-placeholder {
  165. color: rgba(255, 255, 255, 0.4);
  166. }
  167. input::-webkit-input-placeholder {
  168. color: rgba(255, 255, 255, 0.4);
  169. }
  170. .inputItem .unit {
  171. font-size: 14px;
  172. color: rgba(255, 255, 255, 0.4);
  173. /* margin-left: 5px; */
  174. }
  175. .allIpt {
  176. width: 100%;
  177. height: 34px;
  178. border-radius: 4px;
  179. border: 1px solid rgba(255, 255, 255, 0.4);
  180. display: flex;
  181. align-items: center;
  182. justify-content: space-between;
  183. box-sizing: border-box;
  184. padding: 0 10px;
  185. background: rgba(255, 255, 255, 0.1)
  186. }
  187. .allIpt input {
  188. width: 100%;
  189. height: 100%;
  190. /* padding: 0 30px; */
  191. box-sizing: border-box;
  192. background: transparent;
  193. border: none;
  194. outline: none;
  195. color: rgba(255, 255, 255, 0.6);
  196. border: none !important;
  197. }
  198. #plane .bottom {
  199. position: absolute;
  200. bottom: 0;
  201. left: 0;
  202. width: 100%;
  203. height: 63px;
  204. background: #141414;
  205. z-index: 1;
  206. display: flex;
  207. align-items: center;
  208. justify-content: flex-end;
  209. padding: 0 60px 0 0;
  210. box-sizing: border-box;
  211. }
  212. .style {
  213. width: 100%;
  214. height: 10px;
  215. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  216. position: absolute;
  217. top: -10px;
  218. left: 0;
  219. }
  220. .submitBtn {
  221. width: 100px;
  222. height: 34px;
  223. background: #15BEC8;
  224. border-radius: 4px;
  225. color: #fff;
  226. text-align: center;
  227. line-height: 34px;
  228. font-size: 14px;
  229. margin-left: 10px;
  230. cursor: pointer;
  231. }
  232. #clear {
  233. width: 100px;
  234. height: 34px;
  235. border-radius: 4px;
  236. border: 1px solid #15BEC8;
  237. color: #15BEC8;
  238. text-align: center;
  239. line-height: 34px;
  240. font-size: 14px;
  241. cursor: pointer;
  242. }
  243. .tag {
  244. display: flex;
  245. align-items: center;
  246. justify-content: space-between;
  247. margin-bottom: 20px;
  248. margin-top: 30px;
  249. }
  250. .localIcon {
  251. width: 16px;
  252. height: 16px;
  253. background: url("img/local.png")no-repeat;
  254. background-size: 100% 100%;
  255. cursor: pointer;
  256. }
  257. .plane1 {
  258. position: absolute;
  259. top: 10px;
  260. left: 10px;
  261. background-color: rgb(0, 0, 0, 0.3);
  262. z-index: 1;
  263. color: #fff;
  264. }
  265. .transform-layer {
  266. top: 0;
  267. left: 0;
  268. }
  269. .upload-layer {
  270. z-index: 99;
  271. left: 0;
  272. top: 0;
  273. position: absolute;
  274. }
  275. .ctrls {
  276. position: absolute;
  277. z-index: 9;
  278. --margin: 10px;
  279. transform: translate(-50%, -50%);
  280. }
  281. .cctrls span {
  282. z-index: 10;
  283. position: absolute;
  284. width: 10px;
  285. height: 10px;
  286. border-radius: 50%;
  287. background: red;
  288. cursor: pointer;
  289. transform: translate(-50%, -50%);
  290. }
  291. .box-info {
  292. padding: 10px;
  293. color: #fff;
  294. position: absolute;
  295. bottom: 0;
  296. pointer-events: none;
  297. left: 0;
  298. background: rgba(0, 0, 0, 0.5);
  299. }
  300. #plane .main {
  301. width: 100%;
  302. height: 100%;
  303. overflow-y: scroll;
  304. box-sizing: border-box;
  305. padding: 20px 57px;
  306. }
  307. #plane .main .Setting {
  308. display: flex;
  309. align-items: center;
  310. justify-content: space-between;
  311. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  312. padding: 20px 10px;
  313. box-sizing: border-box;
  314. }
  315. #plane .main:last-of-type .Setting {
  316. border-bottom: 1px solid transparent;
  317. }
  318. #plane .main>.title {
  319. padding: 0 10px;
  320. }
  321. #plane .main .Setting.msgBox {
  322. margin-right: 20px;
  323. color: #fff;
  324. font-style: 24px;
  325. }
  326. #plane .main .Setting.msgBox .title {
  327. font-size: 20px;
  328. color: #fff;
  329. margin-bottom: 10px;
  330. }
  331. #plane .main .Setting.msgBox .desc {
  332. font-size: 14px;
  333. color: rgba(255, 255, 255, 0.6);
  334. margin-bottom: 10px;
  335. }
  336. #plane .main .Setting .btnton {
  337. padding: 5px 10px;
  338. border: 1px solid #15BEC8;
  339. border-radius: 4px;
  340. cursor: pointer;
  341. }
  342. #plane .main .Setting .btnton:hover {
  343. background: #15BEC8;
  344. }
  345. .mapItem {
  346. border: 1px solid rgba(255, 255, 255, .2);
  347. display: flex;
  348. align-items: center;
  349. justify-content: space-between;
  350. padding: 15px 10px;
  351. box-sizing: border-box;
  352. }
  353. .fileName {
  354. font-size: 14px;
  355. color: #fff;
  356. }
  357. .fileBtn {
  358. display: flex;
  359. align-items: center;
  360. justify-content: center;
  361. }
  362. .fileBtnicon {
  363. width: 20px;
  364. height: 20px;
  365. margin-right: 10px;
  366. cursor: pointer;
  367. }
  368. .fileBtnicon:last-of-type {
  369. margin-right: 0;
  370. }
  371. .fileDel {
  372. background: url(../img/icon/icon_del.png)no-repeat;
  373. background-size: 100%;
  374. }
  375. .fileHide {
  376. background: url(../img/icon/icon_hide.png)no-repeat;
  377. background-size: 100%;
  378. }
  379. .fileSave {
  380. background: url(../img/icon/icon_save.png)no-repeat;
  381. background-size: 100%;
  382. }
  383. .main_item_title {
  384. margin-bottom: 20px;
  385. }
  386. .dataBox {
  387. border: 1px solid rgba(255, 255, 255, .2);
  388. padding: 10px;
  389. box-sizing: border-box;
  390. margin-bottom: 20px;
  391. }
  392. .dataBox>p {
  393. margin: 10px 0;
  394. }
  395. .editBtn {
  396. width: 100%;
  397. height: 40px;
  398. border: 1px solid #15BEC8;
  399. border-radius: 4px;
  400. box-sizing: border-box;
  401. text-align: center;
  402. line-height: 40px;
  403. cursor: pointer;
  404. margin-bottom: 10px;
  405. position: relative;
  406. color: #15BEC8;
  407. }
  408. .editBtn:hover {
  409. background: #143537;
  410. }
  411. .editBtn #file {
  412. width: 100%;
  413. height: 100%;
  414. position: absolute;
  415. z-index: 10;
  416. top: 0;
  417. left: 0;
  418. opacity: 0;
  419. }
  420. .pointClound {
  421. margin-top: 50px;
  422. }
  423. #upload-loading {
  424. width: 100%;
  425. height: 100%;
  426. position: fixed;
  427. top: 0;
  428. left: 0;
  429. z-index: 1999;
  430. background: rgba(0, 0, 0, 0.8);
  431. }
  432. #upload-loading .icon {
  433. width: 124px;
  434. height: 124px;
  435. position: absolute;
  436. top: 50%;
  437. left: 50%;
  438. /* transform: translate(-50%, -50%); */
  439. animation: 2s loading_rotate infinite linear;
  440. transform-origin: center 50%;
  441. }
  442. #upload-loading .text {
  443. font-size: 14px;
  444. color: #fff !important;
  445. position: absolute;
  446. top: 50%;
  447. left: 50%;
  448. transform: translate(-50%, -50%);
  449. }
  450. @keyframes loading_rotate {
  451. 0% {
  452. transform: translate(-50%, -50%) rotate(0deg);
  453. }
  454. 100% {
  455. transform: translate(-50%, -50%)rotate(360deg);
  456. }
  457. }
  458. #uploadBox {
  459. width: 100%;
  460. height: 100%;
  461. overflow-y: scroll;
  462. box-sizing: border-box;
  463. padding: 70px 57px 20px;
  464. }
  465. #uploadBox .selectBox {
  466. width: 100%;
  467. height: auto;
  468. /* border-bottom: 1px solid rgba(255, 255, 255, .2); */
  469. margin-bottom: 20px;
  470. }
  471. #uploadBox .selectBox .el-select {
  472. width: 100% !important;
  473. }
  474. .el-select-dropdown {
  475. border: 1px solid rgba(255, 255, 255, 0.4) !important;
  476. background-color: #141414!important;
  477. color: #fff !important;
  478. }
  479. .el-select-dropdown .el-select-dropdown__item {
  480. color: #fff !important;
  481. display: flex;
  482. align-items: center;
  483. justify-content: space-between;
  484. height: auto !important;
  485. line-height: normal !important;
  486. padding: 5px 10px !important;
  487. border-bottom: 1px solid rgba(255, 255, 255, .2);
  488. }
  489. .el-popper[x-placement^=bottom] .popper__arrow {
  490. border-bottom-color: rgba(255, 255, 255, 0.4) !important;
  491. }
  492. .el-popper[x-placement^=bottom] .popper__arrow::after {
  493. border-bottom-color: #141414 !important;
  494. }
  495. .el-select-dropdown .el-select-dropdown__item:hover {
  496. background: #143537 !important
  497. }
  498. #uploadBox .selectBox .el-input__inner {
  499. color: #fff !important;
  500. }
  501. .el-select-dropdown__item.selected {
  502. color: #15BEC8 !important;
  503. }
  504. .el-select-dropdown__item.hover {
  505. background: #143537 !important
  506. }
  507. .el-scrollbar__wrap {
  508. margin-bottom: -4px !important;
  509. margin-right: -4px !important;
  510. }
  511. #uploadBox .uploadBtn {
  512. width: 100%;
  513. height: 40px;
  514. color: #fff;
  515. background: #15BEC8;
  516. cursor: pointer;
  517. display: flex;
  518. align-items: center;
  519. justify-content: center;
  520. border-radius: 4px;
  521. margin-bottom: 30px;
  522. cursor: pointer;
  523. }
  524. #uploadBox .uploadBtn.disabled {
  525. cursor: no-drop;
  526. }
  527. /* #uploadBox .selectBox select {
  528. width: 100%;
  529. height: 30px;
  530. line-height: 30px;
  531. }
  532. #uploadBox .selectBox option {
  533. width: 100%;
  534. } */
  535. .listBox {
  536. width: 100%;
  537. height: auto;
  538. }
  539. .sceneList {
  540. width: 100%;
  541. height: auto;
  542. /* border: 1px solid rgba(255, 255, 255, .2); */
  543. }
  544. .sceneItem {
  545. width: 100%;
  546. /* height: 40px; */
  547. display: flex;
  548. align-items: center;
  549. justify-content: space-between;
  550. color: #fff;
  551. border-bottom: 1px solid rgba(255, 255, 255, .2);
  552. padding: 10px 0;
  553. box-sizing: border-box;
  554. }
  555. .sceneItem:last-of-type {
  556. border-bottom: none;
  557. }
  558. .sceneName {
  559. font-size: 12px;
  560. }
  561. .sceneName>span {
  562. display: block;
  563. }
  564. .sceneName .code {
  565. color: #fff !important;
  566. margin-bottom: 3px;
  567. font-size: 14px;
  568. }
  569. .sceneName .name {
  570. color: #999;
  571. }
  572. .scene_control {}
  573. .scene_control .delBtn {
  574. background: url(./img/icon/icon_del.png?4)no-repeat;
  575. background-size: 100% 100%;
  576. width: 14px;
  577. height: 14px;
  578. color: transparent !important;
  579. cursor: pointer;
  580. padding: 0!important;
  581. border: none !important;
  582. }
  583. .el-message-box {
  584. background: #141414!important;
  585. border: none !important;
  586. }
  587. .el-message-box__content {
  588. color: #fff !important;
  589. }
  590. .el-message-box .el-button {
  591. color: #fff !important;
  592. background: transparent !important;
  593. }
  594. .el-message-box .el-button:hover {
  595. background: transparent !important;
  596. }
  597. .el-message-box .el-button--primary {
  598. color: #fff !important;
  599. background: #15BEC8 !important;
  600. border-color: #15BEC8 !important;
  601. }
  602. .el-message-box .el-button--primary:hover {
  603. color: #fff !important;
  604. background: #15BEC8 !important;
  605. }
  606. .el-message-box .el-icon-close:before {
  607. color: #fff !important;
  608. }
  609. .el-popover {
  610. border: 1px solid rgba(255, 255, 255, 0.4) !important;
  611. background-color: #141414!important;
  612. color: #fff !important;
  613. }
  614. .el-popper[x-placement^=top] .popper__arrow {
  615. border-top-color: rgba(255, 255, 255, 0.4) !important;
  616. }
  617. .el-popper[x-placement^=top] .popper__arrow::after {
  618. border-top-color: #141414!important;
  619. }
  620. .el-button--primary {
  621. background: #15BEC8 !important;
  622. }
  623. .el-button--primary:hover {
  624. background: #15BEC8 !important;
  625. }
  626. .el-popconfirm__action button.el-button--text {
  627. color: #fff !important;
  628. }
  629. .headerBack {
  630. height: auto;
  631. width: 100%;
  632. background: #141414;
  633. padding: 0 52px;
  634. box-sizing: border-box;
  635. position: absolute;
  636. top: 0;
  637. left: 0;
  638. z-index: 10;
  639. display: flex;
  640. align-items: center;
  641. justify-content: space-between;
  642. }
  643. .topBox {
  644. height: 60px;
  645. width: 100%;
  646. display: flex;
  647. align-items: center;
  648. justify-content: flex-start;
  649. }
  650. .headerBack .backIcon {
  651. width: 24px;
  652. height: 24px;
  653. background: url(./img/icon/icon_back.png)no-repeat;
  654. background-size: 100% 100%;
  655. cursor: pointer;
  656. }
  657. .headerBack .headerTitle {
  658. font-size: 18px;
  659. color: #fff;
  660. margin-bottom: 0;
  661. }
  662. #planePic {
  663. width: 100%;
  664. height: 100%;
  665. overflow-y: scroll;
  666. box-sizing: border-box;
  667. padding: 60px 47px 20px;
  668. }
  669. .itemBox {
  670. width: 100%;
  671. height: auto;
  672. display: flex;
  673. align-items: center;
  674. justify-content: space-between;
  675. box-sizing: border-box;
  676. padding: 10px 0 10px 14px;
  677. position: relative;
  678. }
  679. .itemBox.active {
  680. background: #143537;
  681. }
  682. .itemBox.active::after {
  683. content: '';
  684. position: absolute;
  685. width: 20px;
  686. height: 20px;
  687. background: url(./img/icon/selectBtn.png)no-repeat;
  688. background-size: 100% 100%;
  689. top: 8px;
  690. right: 10px;
  691. }
  692. .itemBox .ctrlBox {}
  693. .itemBox .ctrlBox .ctrlTitle {
  694. color: #fff;
  695. position: relative;
  696. margin-bottom: 10px;
  697. }
  698. .btnBox {
  699. display: flex;
  700. align-items: center;
  701. justify-content: space-between;
  702. }
  703. .ctrlBtn {
  704. display: flex;
  705. align-items: center;
  706. justify-content: center;
  707. border: 1px solid #15BEC8;
  708. padding: 3px 5px;
  709. border-radius: 4px;
  710. cursor: pointer;
  711. position: relative;
  712. margin-right: 10px;
  713. }
  714. label.ctrlBtn {
  715. margin-bottom: 0px;
  716. }
  717. #files {
  718. position: absolute;
  719. width: 100%;
  720. height: 100%;
  721. opacity: 0;
  722. z-index: 10;
  723. cursor: pointer;
  724. display: none;
  725. }
  726. .ctrlBox .el-button {
  727. border: none;
  728. background: transparent;
  729. padding: 0;
  730. line-height: normal;
  731. }
  732. .ctrlBtn.none {
  733. border: 1px solid #cdcdcd;
  734. }
  735. .ctrlIcon {
  736. width: 12px;
  737. height: 12px;
  738. margin-right: 5px;
  739. }
  740. .refreshIcon {
  741. background: url(./img/icon/refreshBtn.png)no-repeat;
  742. background-size: 100% 100%;
  743. }
  744. .disableIcon {
  745. background: url(./img/icon/disable-1.png)no-repeat;
  746. background-size: 100% 100%;
  747. }
  748. .ctrlBtn.none .disableIcon {
  749. background: url(./img/icon/disable-2.png)no-repeat;
  750. background-size: 100% 100%;
  751. }
  752. .downloadIcon {
  753. background: url(./img/icon/download-1.png)no-repeat;
  754. background-size: 100% 100%;
  755. }
  756. .ctrlBtn.none .downloadIcon {
  757. background: url(./img/icon/download-2.png)no-repeat;
  758. background-size: 100% 100%;
  759. }
  760. .uploadIcon {
  761. background: url(./img/icon/upload-1.png)no-repeat;
  762. background-size: 100% 100%;
  763. }
  764. .ctrlBtn.none .uploadIcon {
  765. background: url(./img/icon/upload-2.png)no-repeat;
  766. background-size: 100% 100%;
  767. }
  768. .ctrlText {
  769. font-size: 14px;
  770. color: #15BEC8;
  771. margin-bottom: 0;
  772. }
  773. .ctrlBtn.none .ctrlText {
  774. color: #cdcdcd;
  775. cursor: no-drop;
  776. }
  777. .tipBox {
  778. width: 18px;
  779. height: 18px;
  780. background: url(./img/icon/tipBtn.png)no-repeat;
  781. background-size: 100% 100%;
  782. display: inline-block;
  783. position: absolute;
  784. top: 50%;
  785. right: -30px;
  786. transform: translateY(-50%);
  787. }
  788. #planePic .tipText {
  789. font-size: 12px;
  790. color: #999;
  791. line-height: 20px;
  792. padding: 5px 15px;
  793. box-sizing: border-box;
  794. background: #000;
  795. margin-top: 10px;
  796. border-radius: 4px;
  797. }
  798. .el-popconfirm__main {
  799. max-width: 220px;
  800. font-size: 14px;
  801. }