parkingLists.scss 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  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: 80rpx;
  80. z-index: 1000;
  81. width: 100%;
  82. height: 345rpx;
  83. }
  84. .parking-current-address .swiper {
  85. height: 430rpx;
  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: 24rpx;
  126. }
  127. .parking-address-list {
  128. position: absolute;
  129. z-index: 99;
  130. width: 100%;
  131. padding: 32rpx 28rpx;
  132. bottom: 0;
  133. max-height: 65vh;
  134. overflow-y: scroll;
  135. // background-image: linear-gradient(top, rgba(246, 245, 255, 0) 0%, rgba(246, 245, 255, 1) 100%);
  136. background-image: url('./../../static/img/parking-search-list-bg.png');
  137. background-size: 100% 100%;
  138. }
  139. .parking-address-list-item {
  140. background-color: #fff;
  141. border-radius: 25rpx;
  142. display: flex;
  143. flex-direction: row;
  144. justify-content: space-between;
  145. padding: 26rpx;
  146. margin-top: 20rpx;
  147. }
  148. .pali-left {
  149. width: 74%;
  150. }
  151. .pali-left view:first-child {
  152. font-size: 32rpx;
  153. font-weight: 500;
  154. color: #484848;
  155. }
  156. .pali-left view:last-child {
  157. font-size: 24rpx;
  158. font-weight: 400;
  159. color: #969696;
  160. margin-top: 10rpx;
  161. overflow: hidden;
  162. text-overflow: ellipsis;
  163. white-space: nowrap;
  164. }
  165. .pali-right image {
  166. width: 58rpx;
  167. height: 58rpx;
  168. }
  169. .pali-right view {
  170. color: #969696;
  171. font-size: 20rpx;
  172. }
  173. .yellow-font {
  174. color: #fa6400;
  175. margin-left: 10rpx;
  176. }
  177. .swiper-item-font {
  178. color: #6d6d6d;
  179. font-size: 28rpx;
  180. }
  181. .swiper-item-button button {
  182. width: 48%;
  183. height: 70rpx;
  184. line-height: 70rpx;
  185. font-size: 30rpx;
  186. }
  187. .swiper-item-button button:first-child {
  188. border: solid 1px #008cff;
  189. color: #008cff;
  190. margin-right: 4%;
  191. }
  192. .swiper-item-button button:last-child {
  193. background-color: #008cff;
  194. color: #fff;
  195. }
  196. .swiper-item-button .disabled {
  197. background-color: #d2d2d2 !important;
  198. }
  199. .loading {
  200. width: 100%;
  201. height: calc(100vh - 100rpx);
  202. line-height: calc(100vh - 100rpx);
  203. position: absolute;
  204. z-index: 99999;
  205. text-align: center;
  206. background-color: rgba(0, 0, 0, 0.1);
  207. }
  208. .parking-address-details {
  209. position: absolute;
  210. bottom: 50rpx;
  211. z-index: 1000000;
  212. background: transparent;
  213. width: 100%;
  214. }
  215. .parking-address-details-title {
  216. width: calc(100% - 30rpx);
  217. margin: 0 auto;
  218. background: url(../../static/img/parking-info-bg.png) center center;
  219. background-size: 100% 100%;
  220. }
  221. .padt-header {
  222. display: flex;
  223. flex-direction: row;
  224. justify-content: space-between;
  225. padding: 25rpx;
  226. }
  227. .padt-header > view > view:nth-child(1) {
  228. color: #484848;
  229. font-size: 32rpx;
  230. }
  231. .padt-header > view.padt-header-title > view:nth-child(2) {
  232. color: #969696;
  233. font-size: 24rpx;
  234. margin-top: 16rpx;
  235. }
  236. .padt-header-icon {
  237. text-align: center;
  238. }
  239. .padt-header-icon view {
  240. font-size: 18rpx;
  241. color: #3a3a3a;
  242. }
  243. .padt-header image {
  244. width: 45rpx;
  245. height: 45rpx;
  246. }
  247. .padt-timeline {
  248. padding-left: 25rpx;
  249. padding-bottom: 25rpx;
  250. font-size: 25rpx;
  251. color: #727275;
  252. }
  253. .padt-timeline text {
  254. color: #fa6b0b;
  255. margin-left: 5rpx;
  256. font-size: 29rpx;
  257. }
  258. .parking-address-details-numer {
  259. background-color: #fff;
  260. border-radius: 25rpx;
  261. width: calc(100% - 30rpx);
  262. margin: 10rpx auto 0;
  263. padding: 35rpx 25rpx;
  264. display: flex;
  265. flex-direction: row;
  266. }
  267. .parking-address-details-numer > view {
  268. width: 48%;
  269. height: 110rpx;
  270. padding: 15rpx;
  271. text-align: center;
  272. background: linear-gradient(359deg, #ffffff 0%, #f6f6ff 100%);
  273. border-radius: 15px;
  274. }
  275. .parking-address-details-numer > view > view:first-child {
  276. color: #008cff;
  277. font-size: 56rpx;
  278. font-weight: 400;
  279. }
  280. .parking-address-details-numer > view > view:last-child {
  281. color: #838383;
  282. font-size: 24rpx;
  283. font-weight: 400;
  284. }
  285. .parking-address-details-numer > view:last-child {
  286. margin-left: 4%;
  287. }
  288. .parking-address-details-price {
  289. background-color: #fff;
  290. border-radius: 25rpx;
  291. width: calc(100% - 30rpx);
  292. margin: 10rpx auto 0;
  293. }
  294. .parking-address-details-price > view:first-child {
  295. font-size: 24rpx;
  296. color: #787878;
  297. font-weight: 400;
  298. text-align: center;
  299. padding-top: 24rpx;
  300. }
  301. .parking-address-details-price > view > text:first-child {
  302. font-size: 66rpx;
  303. color: #008cff;
  304. }
  305. .parking-address-details-price > view:last-child {
  306. width: 100%;
  307. height: 81rpx;
  308. line-height: 81rpx;
  309. background: linear-gradient(180deg, #efefff 0%, #ffffff 100%);
  310. border-bottom-left-radius: 25rpx;
  311. border-bottom-right-radius: 25rpx;
  312. text-align: center;
  313. margin-top: 36rpx;
  314. }
  315. .parking-address-details-button {
  316. width: calc(100% - 80rpx);
  317. height: 96rpx;
  318. line-height: 96rpx;
  319. margin: 103rpx auto 57rpx;
  320. background-color: #008cff;
  321. border-radius: 10rpx;
  322. text-align: center;
  323. font-size: 28rpx;
  324. color: #fff;
  325. }
  326. .address-box {
  327. width: calc(100% - 60rpx);
  328. height: 70vh;
  329. padding: 15rpx 0;
  330. position: absolute;
  331. left: 30rpx;
  332. bottom: 0;
  333. z-index: 1000;
  334. background-color: #f9f9f9;
  335. transition: height .5s linear;
  336. &-down-icon {
  337. width: 32rpx;
  338. height: 28rpx;
  339. margin: 0 auto;
  340. background: url('./../../static/img/down-icon.svg') no-repeat center center;
  341. background-size: 100% 100%;
  342. transform: rotate(0deg);
  343. transition: transform 0.5s linear;
  344. }
  345. .up-icon {
  346. transform: rotate(180deg);
  347. }
  348. &-scroll {
  349. overflow: hidden;
  350. }
  351. &-list {
  352. padding: 12rpx 30rpx;
  353. &-item {
  354. padding: 30rpx 40rpx;
  355. background-color: #fff;
  356. box-shadow: 0px 0px 10rpx 0px rgba(0, 0, 0, 0.08);
  357. border-radius: 16rpx;
  358. margin-bottom: 20rpx;
  359. .abli-header {
  360. padding-bottom: 26rpx;
  361. margin-bottom: 26rpx;
  362. border-bottom: dashed 1px #e1e5eb;
  363. &-title {
  364. font-size: 30rpx;
  365. font-weight: 500;
  366. color: #333333;
  367. margin-bottom: 16rpx;
  368. }
  369. &-subtitle {
  370. font-size: 26rpx;
  371. color: #999;
  372. margin-bottom: 26rpx;
  373. margin-left: 30rpx;
  374. }
  375. &-surplus {
  376. display: flex;
  377. justify-content: space-between;
  378. &-left {
  379. font-size: 26rpx;
  380. color: #999999;
  381. text {
  382. font-size: 30rpx;
  383. color: #ff6d6d;
  384. margin-left: 10rpx;
  385. }
  386. }
  387. &-right {
  388. padding: 6rpx 17rpx;
  389. background-color: #008cff;
  390. border-radius: 4rpx;
  391. color: #fff;
  392. font-size: 24rpx;
  393. }
  394. .disabled {
  395. background-color: #cccccc;
  396. }
  397. }
  398. }
  399. .abli-bottom {
  400. display: flex;
  401. justify-content: space-between;
  402. align-items: center;
  403. &-left {
  404. display: flex;
  405. align-items: center;
  406. &-navigation {
  407. color: #008cff;
  408. font-size: 26rpx;
  409. border-right: solid 1px #cccccc;
  410. padding-right: 20rpx;
  411. &::before {
  412. content: '';
  413. display: inline-block;
  414. width: 40rpx;
  415. height: 31rpx;
  416. background: url('./../../static/img/navigation-icon.svg') no-repeat center center;
  417. background-size: 100% 100%;
  418. margin-right: 10rpx;
  419. vertical-align: middle;
  420. }
  421. }
  422. &-distance {
  423. padding-left: 20rpx;
  424. color: #666666;
  425. font-size: 26rpx;
  426. }
  427. }
  428. &-right {
  429. color: #999999;
  430. font-size: 22rpx;
  431. }
  432. }
  433. }
  434. }
  435. }
  436. .address-down {
  437. height: 60vh;
  438. }
  439. .address-up {
  440. height: 20vh;
  441. }