style.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html,
  6. body {
  7. width: 100vw;
  8. height: 100vh;
  9. overflow: hidden;
  10. }
  11. .content {
  12. width: 100vw;
  13. height: 100vh;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. overflow-y: hidden;
  18. background: #141414;
  19. }
  20. .rightBox {
  21. height: 100%;
  22. width: 70%;
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. }
  27. .map {
  28. height: 800px;
  29. width: 94%;
  30. padding: 0px;
  31. margin: 0px;
  32. }
  33. #plane {
  34. width: 30%;
  35. height: 100%;
  36. /* position: absolute; */
  37. /* top: 10px;
  38. left: 10px; */
  39. background-color: rgb(0, 0, 0, 0.3);
  40. color: #fff;
  41. border-right: 1px solid rgba(255, 255, 255, .2);
  42. position: relative;
  43. }
  44. .scrollBox {
  45. width: 100%;
  46. height: 100%;
  47. overflow-y: scroll;
  48. box-sizing: border-box;
  49. padding: 30px 30px 80px 30px;
  50. }
  51. /* ::-webkit-scrollbar-track {
  52. background-color: #000;
  53. -webkit-border-radius: 1em;
  54. -moz-border-radius: 1em;
  55. border-radius: 1em;
  56. }
  57. ::-webkit-scrollbar-thumb {
  58. background-color: rgba(255, 255, 255, .2);
  59. -webkit-border-radius: 1em;
  60. -moz-border-radius: 1em;
  61. border-radius: 1em;
  62. } */
  63. ::-webkit-scrollbar {
  64. width: 4px;
  65. height: 1px;
  66. }
  67. ::-webkit-scrollbar-thumb {
  68. border-radius: 4px;
  69. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  70. /* background: #ccc; */
  71. background: rgba(255, 255, 255, .2);
  72. }
  73. ::-webkit-scrollbar-thumb:hover {
  74. background: #999;
  75. }
  76. ::-webkit-scrollbar-track {
  77. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  78. border-radius: 4px;
  79. background: #000000;
  80. }
  81. .ol-overlaycontainer-stopevent {
  82. display: none;
  83. }
  84. #plane .title {
  85. font-size: 20px;
  86. color: #fff;
  87. margin-bottom: 10px;
  88. }
  89. #plane .desc {
  90. font-size: 14px;
  91. color: rgba(255, 255, 255, 0.6);
  92. margin-bottom: 10px;
  93. }
  94. form .formTitle {
  95. font-size: 16px;
  96. color: #fff;
  97. }
  98. .itemTitle {
  99. font-size: 14px;
  100. color: #fff;
  101. margin-bottom: 10px;
  102. }
  103. .inputItem {
  104. width: 100%;
  105. height: 34px;
  106. border-radius: 4px;
  107. border: 1px solid rgba(255, 255, 255, 0.4);
  108. display: flex;
  109. align-items: center;
  110. justify-content: space-between;
  111. box-sizing: border-box;
  112. padding: 0 10px 0 0;
  113. margin-bottom: 10px;
  114. }
  115. .inputItem .name {
  116. width: 23%;
  117. height: 34px;
  118. border-right: 1px solid rgba(255, 255, 255, 0.4);
  119. box-sizing: border-box;
  120. text-align: center;
  121. line-height: 34px;
  122. font-size: 14px;
  123. color: rgba(255, 255, 255, 0.4);
  124. background: rgba(255, 255, 255, 0.1)
  125. }
  126. .inputItem .ipt {
  127. width: 77%;
  128. height: 34px;
  129. background: transparent;
  130. }
  131. .inputItem .ipt input {
  132. width: 100%;
  133. height: 100%;
  134. /* padding: 0 30px; */
  135. box-sizing: border-box;
  136. background: transparent;
  137. border: none;
  138. outline: none;
  139. color: #15BEC8;
  140. text-align: right;
  141. }
  142. input::placeholder {
  143. color: rgba(255, 255, 255, 0.4);
  144. }
  145. input::-moz-placeholder {
  146. color: rgba(255, 255, 255, 0.4);
  147. }
  148. input::-webkit-input-placeholder {
  149. color: rgba(255, 255, 255, 0.4);
  150. }
  151. .inputItem .unit {
  152. font-size: 14px;
  153. color: rgba(255, 255, 255, 0.4);
  154. margin-left: 5px;
  155. }
  156. .allIpt {
  157. width: 100%;
  158. height: 34px;
  159. border-radius: 4px;
  160. border: 1px solid rgba(255, 255, 255, 0.4);
  161. display: flex;
  162. align-items: center;
  163. justify-content: space-between;
  164. box-sizing: border-box;
  165. padding: 0 10px;
  166. background: rgba(255, 255, 255, 0.1)
  167. }
  168. .allIpt input {
  169. width: 100%;
  170. height: 100%;
  171. /* padding: 0 30px; */
  172. box-sizing: border-box;
  173. background: transparent;
  174. border: none;
  175. outline: none;
  176. color: rgba(255, 255, 255, 0.6);
  177. }
  178. .bottom {
  179. position: absolute;
  180. bottom: 0;
  181. left: 0;
  182. width: 100%;
  183. height: 63px;
  184. background: #141414;
  185. z-index: 1;
  186. display: flex;
  187. align-items: center;
  188. justify-content: flex-end;
  189. padding: 0 20px;
  190. box-sizing: border-box;
  191. }
  192. .style {
  193. width: 100%;
  194. height: 10px;
  195. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  196. position: absolute;
  197. top: -10px;
  198. left: 0;
  199. }
  200. .submitBtn {
  201. width: 100px;
  202. height: 34px;
  203. background: #15BEC8;
  204. border-radius: 4px;
  205. color: #fff;
  206. text-align: center;
  207. line-height: 34px;
  208. font-size: 14px;
  209. margin-left: 10px;
  210. cursor: pointer;
  211. }
  212. #clear {
  213. width: 100px;
  214. height: 34px;
  215. border-radius: 4px;
  216. border: 1px solid #15BEC8;
  217. color: #15BEC8;
  218. text-align: center;
  219. line-height: 34px;
  220. font-size: 14px;
  221. cursor: pointer;
  222. }
  223. .tag{
  224. display: flex;
  225. align-items: center;
  226. justify-content: space-between;
  227. margin-bottom: 20px;
  228. margin-top: 30px;
  229. }
  230. .localIcon{
  231. width: 16px;
  232. height: 16px;
  233. background: url("img/local.png")no-repeat;
  234. background-size: 100% 100%;
  235. cursor: pointer;
  236. }