parkingLists.scss 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  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: 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. display: flex;
  106. flex-direction: row;
  107. background: -webkit-gradient(linear, 0% 0%, 0% 100%,from(#fff), to(#F4F7FF));/*谷歌*/
  108. background: linear-gradient(to right, #fff 0%, #F4F7FF 50%, #fff 100%);
  109. justify-content: space-around;
  110. height: 71rpx;
  111. line-height: 71rpx;
  112. border-radius: 20rpx;
  113. margin-top: 20rpx;
  114. margin-bottom: 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: 48%;
  180. height: 64rpx;
  181. line-height: 64rpx;
  182. font-size: 30rpx;
  183. }
  184. .swiper-item-button button:first-child {
  185. border: solid 1px #008CFF;
  186. color: #008CFF;
  187. margin-right: 4%;
  188. }
  189. .swiper-item-button button:last-child {
  190. background-color: #008CFF;
  191. color: #fff;
  192. }
  193. .swiper-item-button .disabled {
  194. background-color: #d2d2d2!important;
  195. }
  196. .loading {
  197. width: 100%;
  198. height: calc(100vh - 100rpx);
  199. line-height: calc(100vh - 100rpx);
  200. position: absolute;
  201. z-index: 99999;
  202. text-align: center;
  203. background-color: rgba(0, 0, 0, 0.1);
  204. }
  205. .parking-address-details {
  206. position: absolute;
  207. bottom: 50rpx;
  208. z-index: 1000000;
  209. background: transparent;
  210. width: 100%;
  211. }
  212. .parking-address-details-title {
  213. width: calc(100% - 30rpx);
  214. margin: 0 auto;
  215. background: url(../../static/img/parking-info-bg.png) center center;
  216. background-size: 100% 100%;
  217. }
  218. .padt-header {
  219. display: flex;
  220. flex-direction: row;
  221. justify-content: space-between;
  222. padding: 25rpx;
  223. }
  224. .padt-header>view>view:nth-child(1) {
  225. color: #484848;
  226. font-size: 32rpx;
  227. }
  228. .padt-header>view.padt-header-title>view:nth-child(2) {
  229. color: #969696;
  230. font-size: 24rpx;
  231. margin-top: 16rpx;
  232. }
  233. .padt-header-icon {
  234. text-align: center;
  235. }
  236. .padt-header-icon view {
  237. font-size: 18rpx;
  238. color: #3A3A3A;
  239. }
  240. .padt-header image {
  241. width: 45rpx;
  242. height: 45rpx;
  243. }
  244. .padt-timeline {
  245. padding-left: 25rpx;
  246. padding-bottom: 25rpx;
  247. font-size: 25rpx;
  248. color: #727275;
  249. }
  250. .padt-timeline text {
  251. color: #FA6B0B;
  252. margin-left: 5rpx;
  253. font-size: 29rpx;
  254. }
  255. .parking-address-details-numer {
  256. background-color: #fff;
  257. border-radius: 25rpx;
  258. width: calc(100% - 30rpx);
  259. margin: 10rpx auto 0;
  260. padding: 35rpx 25rpx;
  261. display: flex;
  262. flex-direction: row;
  263. }
  264. .parking-address-details-numer>view {
  265. width: 48%;
  266. height: 110rpx;
  267. padding: 15rpx;
  268. text-align: center;
  269. background: linear-gradient(359deg, #FFFFFF 0%, #F6F6FF 100%);
  270. border-radius: 15px;
  271. }
  272. .parking-address-details-numer>view>view:first-child {
  273. color: #008CFF;
  274. font-size: 56rpx;
  275. font-weight: 400;
  276. }
  277. .parking-address-details-numer>view>view:last-child {
  278. color: #838383;
  279. font-size: 24rpx;
  280. font-weight: 400;
  281. }
  282. .parking-address-details-numer>view:last-child {
  283. margin-left: 4%;
  284. }
  285. .parking-address-details-price {
  286. background-color: #fff;
  287. border-radius: 25rpx;
  288. width: calc(100% - 30rpx);
  289. margin: 10rpx auto 0;
  290. }
  291. .parking-address-details-price>view:first-child {
  292. font-size: 24rpx;
  293. color: #787878;
  294. font-weight: 400;
  295. text-align: center;
  296. padding-top: 24rpx;
  297. }
  298. .parking-address-details-price>view>text:first-child {
  299. font-size: 66rpx;
  300. color: #008CFF;
  301. }
  302. .parking-address-details-price>view:last-child {
  303. width: 100%;
  304. height: 81rpx;
  305. line-height: 81rpx;
  306. background: linear-gradient(180deg, #EFEFFF 0%, #FFFFFF 100%);
  307. border-bottom-left-radius: 25rpx;
  308. border-bottom-right-radius: 25rpx;
  309. text-align: center;
  310. margin-top: 36rpx;
  311. }
  312. .parking-address-details-button {
  313. width: calc(100% - 80rpx);
  314. height: 96rpx;
  315. line-height: 96rpx;
  316. margin: 103rpx auto 57rpx;
  317. background-color: #008CFF;
  318. border-radius: 10rpx;
  319. text-align: center;
  320. font-size: 28rpx;
  321. color: #fff;
  322. }