style.css 4.9 KB

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