parking.acss 3.2 KB

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