parkingLists.scss 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. .parking {
  2. background-color: #008CFF;
  3. position: relative;
  4. }
  5. .parking-header {
  6. padding: 36rpx 40rpx;
  7. display: flex;
  8. justify-content: space-between;
  9. }
  10. .parking-header .icon {
  11. margin-left: 42rpx;
  12. }
  13. .parking-details {
  14. position: absolute;
  15. width: calc(100% - 60rpx);
  16. margin: 0 auto;
  17. bottom: 68rpx;
  18. z-index: 1000;
  19. left: 30rpx;
  20. background-color: #fff;
  21. border-radius: 26.5rpx;
  22. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)
  23. }
  24. .parking-details-header {
  25. display: flex;
  26. flex-direction: row;
  27. justify-content: space-between;
  28. padding: 40rpx;
  29. }
  30. .parking-details-left-address {
  31. font-size: 28rpx;
  32. font-weight: 700;
  33. }
  34. .parking-details-left-number {
  35. display: flex;
  36. flex-direction: row;
  37. color: rgba(47, 47, 47, 0.5);
  38. justify-content: space-between;
  39. margin-top: 10rpx;
  40. }
  41. .parking-details-left-number text {
  42. font-size: 40rpx;
  43. color: rgba(0, 140, 255, 1);
  44. }
  45. .parking-details-button {
  46. background-color: #008CFF;
  47. height: 103rpx;
  48. line-height: 103rpx;
  49. border-bottom-left-radius: 26.5rpx;
  50. border-bottom-right-radius: 26.5rpx;
  51. text-align: center;
  52. color: #fff;
  53. font-size: 28rpx;
  54. font-family: PingFangSC-Medium;
  55. }
  56. .parking-details-right-time,
  57. .parking-details-right-distance {
  58. height: 44rpx;
  59. line-height: 44rpx;
  60. color: #008CFF;
  61. display: flex;
  62. flex-direction: row;
  63. margin-bottom: 20rpx;
  64. margin-top: 30rpx;
  65. }
  66. .parking-details-right-time image,
  67. .parking-details-right-distance image {
  68. width: 44rpx;
  69. height: 44rpx;
  70. margin-right: 10rpx;
  71. }
  72. .parking-details-right-time text,
  73. .parking-details-right-distance text {
  74. display: block;
  75. font-weight: 500;
  76. }
  77. .parking-current-address {
  78. position: absolute;
  79. bottom: 84rpx;
  80. z-index: 1000;
  81. width: 100%;
  82. height: 345rpx;
  83. }
  84. .parking-current-address .swiper {
  85. height: 400rpx;
  86. }
  87. .parking-current-address .swiper-item {
  88. background-color: #fff;
  89. transform: scaleY(0.9);
  90. margin: 0 10rpx;
  91. border-radius: 25rpx;
  92. padding: 20rpx 30rpx;
  93. }
  94. .parking-current-address .swiper-item>view:first-child {
  95. font-size: 32rpx;
  96. color: #484848;
  97. line-height: 50rpx;
  98. }
  99. .parking-current-address .swiper-item>view:nth-child(2) {
  100. font-size: 24rpx;
  101. color: #969696;
  102. line-height: 50rpx;
  103. }
  104. .parking-current-address .swiper-item>view:nth-child(3) {
  105. background-image: url('./../../static/img/remaining-position-bg.png');
  106. background-position: center center;
  107. // background-size: 100% 100%;
  108. display: flex;
  109. flex-direction: row;
  110. justify-content: space-around;
  111. line-height: 120rpx;
  112. height: 120rpx;
  113. border-radius: 20rpx;
  114. margin-top: 20rpx;
  115. }
  116. .parking-current-address .swiper-item>view:nth-child(4) {
  117. display: flex;
  118. flex-direction: row;
  119. justify-content: space-around;
  120. }
  121. .parking-current-address .swiper-item>view:nth-child(5) {
  122. text-align: center;
  123. margin-top: 30rpx;
  124. color: #A4A4A4;
  125. font-size: 20rpx;
  126. }
  127. .parking-address-list {
  128. position: absolute;
  129. z-index: 99;
  130. width: calc(100% - 28rpx);
  131. left: 14rpx;
  132. bottom: 0;
  133. max-height: 65vh;
  134. overflow-y: scroll;
  135. }
  136. .parking-address-list-item {
  137. background-color: #fff;
  138. border-radius: 25rpx;
  139. display: flex;
  140. flex-direction: row;
  141. justify-content: space-between;
  142. padding: 26rpx;
  143. margin-top: 20rpx;
  144. }
  145. .pali-left {
  146. width: 74%;
  147. }
  148. .pali-left view:first-child {
  149. font-size: 32rpx;
  150. font-weight: 500;
  151. color: #484848;
  152. }
  153. .pali-left view:last-child {
  154. font-size: 24rpx;
  155. font-weight: 400;
  156. color: #969696;
  157. margin-top: 10rpx;
  158. overflow: hidden;
  159. text-overflow:ellipsis;
  160. white-space: nowrap;
  161. }
  162. .pali-right image {
  163. width: 58rpx;
  164. height: 58rpx;
  165. }
  166. .pali-right view {
  167. color: #969696;
  168. font-size: 20rpx;
  169. }
  170. .yellow-font {
  171. color: #FA6400;
  172. margin-left: 10rpx;
  173. }
  174. .swiper-item-font {
  175. color: #6D6D6D;
  176. font-size: 28rpx;
  177. }
  178. .swiper-item-button button {
  179. width: 45%;
  180. height: 90rpx;
  181. }
  182. .swiper-item-button button:first-child {
  183. border: solid 1px #008CFF;
  184. color: #008CFF;
  185. }
  186. .swiper-item-button button:last-child {
  187. background-color: #008CFF;
  188. color: #fff;
  189. }
  190. .loading {
  191. width: 100%;
  192. height: calc(100vh - 100rpx);
  193. line-height: calc(100vh - 100rpx);
  194. position: absolute;
  195. z-index: 99999;
  196. text-align: center;
  197. background-color: rgba(0, 0, 0, 0.1);
  198. }
  199. .parking-address-details {
  200. position: absolute;
  201. bottom: 50rpx;
  202. z-index: 1000000;
  203. background: transparent;
  204. width: 100%;
  205. }
  206. .parking-address-details-title {
  207. width: calc(100% - 30rpx);
  208. margin: 0 auto;
  209. background: url(../../static/img/parking-info-bg.png) center center;
  210. background-size: 100% 100%;
  211. }
  212. .padt-header {
  213. display: flex;
  214. flex-direction: row;
  215. justify-content: space-between;
  216. padding: 25rpx;
  217. }
  218. .padt-header>view>view:nth-child(1) {
  219. color: #484848;
  220. font-size: 32rpx;
  221. }
  222. .padt-header>view.padt-header-title>view:nth-child(2) {
  223. color: #969696;
  224. font-size: 24rpx;
  225. margin-top: 16rpx;
  226. }
  227. .padt-header-icon {
  228. text-align: center;
  229. }
  230. .padt-header-icon view {
  231. font-size: 18rpx;
  232. color: #3A3A3A;
  233. }
  234. .padt-header image {
  235. width: 45rpx;
  236. height: 45rpx;
  237. }
  238. .padt-timeline {
  239. padding-left: 25rpx;
  240. padding-bottom: 25rpx;
  241. font-size: 25rpx;
  242. color: #727275;
  243. }
  244. .padt-timeline text {
  245. color: #FA6B0B;
  246. margin-left: 5rpx;
  247. font-size: 29rpx;
  248. }
  249. .parking-address-details-numer {
  250. background-color: #fff;
  251. border-radius: 25rpx;
  252. width: calc(100% - 30rpx);
  253. margin: 10rpx auto 0;
  254. padding: 35rpx 25rpx;
  255. display: flex;
  256. flex-direction: row;
  257. }
  258. .parking-address-details-numer>view {
  259. width: 48%;
  260. height: 110rpx;
  261. padding: 15rpx;
  262. text-align: center;
  263. background: linear-gradient(359deg, #FFFFFF 0%, #F6F6FF 100%);
  264. border-radius: 15px;
  265. }
  266. .parking-address-details-numer>view>view:first-child {
  267. color: #008CFF;
  268. font-size: 56rpx;
  269. font-weight: 400;
  270. }
  271. .parking-address-details-numer>view>view:last-child {
  272. color: #838383;
  273. font-size: 24rpx;
  274. font-weight: 400;
  275. }
  276. .parking-address-details-numer>view:last-child {
  277. margin-left: 4%;
  278. }
  279. .parking-address-details-price {
  280. background-color: #fff;
  281. border-radius: 25rpx;
  282. width: calc(100% - 30rpx);
  283. margin: 10rpx auto 0;
  284. }
  285. .parking-address-details-price>view:first-child {
  286. font-size: 24rpx;
  287. color: #787878;
  288. font-weight: 400;
  289. text-align: center;
  290. padding-top: 24rpx;
  291. }
  292. .parking-address-details-price>view>text:first-child {
  293. font-size: 66rpx;
  294. color: #008CFF;
  295. }
  296. .parking-address-details-price>view:last-child {
  297. width: 100%;
  298. height: 81rpx;
  299. line-height: 81rpx;
  300. background: linear-gradient(180deg, #EFEFFF 0%, #FFFFFF 100%);
  301. border-bottom-left-radius: 25rpx;
  302. border-bottom-right-radius: 25rpx;
  303. text-align: center;
  304. margin-top: 36rpx;
  305. }
  306. .parking-address-details-button {
  307. width: calc(100% - 80rpx);
  308. height: 96rpx;
  309. line-height: 96rpx;
  310. margin: 103rpx auto 57rpx;
  311. background-color: #008CFF;
  312. border-radius: 10rpx;
  313. text-align: center;
  314. font-size: 28rpx;
  315. color: #fff;
  316. }