navigation.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. page{
  2. width: 100%;
  3. height: 100%;
  4. }
  5. .box{
  6. width: 100%;
  7. height: 100%;
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. position: relative;
  12. }
  13. map{
  14. width: 100%;
  15. height: 100%;
  16. position: relative;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. }
  21. .search{
  22. width: 90%;
  23. display: flex;
  24. z-index: 999;
  25. align-items: center;
  26. background: #fff;
  27. height: 80rpx;
  28. margin: 0 auto;
  29. justify-content: center;
  30. position: fixed;
  31. top: 40rpx;
  32. border-radius: 10rpx;
  33. }
  34. .search .place{
  35. font-size: 26rpx;
  36. color: #707070;
  37. }
  38. .search input{
  39. width: 75%;
  40. height: 100%;
  41. font-size: 26rpx;
  42. color: #707070;
  43. }
  44. .list{
  45. width: 90%;
  46. z-index: 999;
  47. background: #fff;
  48. position: fixed;
  49. top: 140rpx;
  50. overflow-y: auto;
  51. border-radius: 10rpx;
  52. height: 1008rpx;
  53. }
  54. .list image{
  55. width: 32rpx;
  56. height: 32rpx;
  57. margin-top: 16rpx;
  58. }
  59. .city_list{
  60. display: flex;
  61. align-items: center;
  62. width: 82%;
  63. font-size: 26rpx;
  64. justify-content: space-around;
  65. padding: 16rpx 0rpx;
  66. border-bottom: 2rpx solid #E8E8E8;
  67. margin-right: 26rpx;
  68. margin: 0 auto;
  69. }
  70. .city_list view{
  71. display: flex;
  72. flex-direction: column;
  73. overflow: hidden;
  74. width: 90%;
  75. }
  76. .city_list view .title1{
  77. font-size: 21rpx;
  78. overflow: hidden;
  79. white-space: nowrap;
  80. text-overflow: ellipsis;
  81. color: #989898;
  82. }
  83. .city_list view .title{
  84. font-size: 25rpx;
  85. overflow: hidden;
  86. white-space: nowrap;
  87. text-overflow: ellipsis;
  88. color: black;
  89. padding-top: 14rpx;
  90. }
  91. .city_list:last-of-type{
  92. border: none;
  93. }
  94. .parking{
  95. position: fixed;
  96. bottom: 0rpx;
  97. width: 100%;
  98. left: 0rpx;
  99. height: 270rpx;
  100. background: #fff;
  101. z-index: 999;
  102. -webkit-transform:translateY(100%);
  103. transform:translateY(100%);
  104. display: flex;
  105. align-items: center;
  106. justify-content: space-around;
  107. }
  108. .background{
  109. width: 100%;
  110. height: 100%;
  111. position: fixed;
  112. z-index: 888;
  113. background: #989898;
  114. opacity: 0.5;
  115. }
  116. .parking .view{
  117. display: flex;
  118. flex-direction: column;
  119. }
  120. .parking .view1{
  121. width: 65%;
  122. display: flex;
  123. padding-left: 25rpx;
  124. }
  125. .parking .view2{
  126. width: 20%;
  127. font-size: 24rpx;
  128. color: #989898;
  129. align-items: center;
  130. justify-content: center;
  131. }
  132. .parking .view1 view{
  133. width: 100%;
  134. font-size: 24rpx;
  135. color: #989898;
  136. padding-top: 20rpx;
  137. }
  138. .parking .view1 .title{
  139. font-size: 30rpx;
  140. color: black;
  141. }
  142. .coverImage{
  143. position: absolute;
  144. top: 50%;
  145. left: 50%;
  146. z-index: 999;
  147. }
  148. .bottom image{
  149. width: 18px;
  150. margin: 3px 2px;
  151. height: 20px;
  152. }
  153. .bottom{
  154. width: 80%;
  155. display: flex;
  156. align-items: center;
  157. justify-content: space-around;
  158. position: fixed;
  159. bottom: 30rpx;
  160. left: 10%;
  161. background: white;
  162. padding: 15rpx 0rpx;
  163. border-radius: 10rpx;
  164. }
  165. .bottom .view{
  166. display: flex;
  167. flex-direction: column;
  168. align-items: center;
  169. font-size: 26rpx;
  170. }
  171. .bottom .view text{
  172. padding-top: 10rpx;
  173. }
  174. .bottom .view .bikeBorder{
  175. width: 24px;
  176. height: 28px;
  177. border: #0000FF 2rpx solid;
  178. background: #C0D2EF;
  179. box-sizing: border-box;
  180. }
  181. .parkBorder{
  182. width: 24px;
  183. height: 28px;
  184. border: #FF00FF 2rpx solid;
  185. background: #FF00FF66;
  186. box-sizing: border-box;
  187. }
  188. .noPark{
  189. width: 24px;
  190. height: 28px;
  191. border: #FF0000 2rpx solid;
  192. background: #FF000030;
  193. box-sizing: border-box;
  194. }