C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.1 KiB

  1. /* pages/passCar/showList.wxss */
  2. page {}
  3. .list {
  4. padding-top: 10rpx;
  5. }
  6. .list .item {
  7. position: relative;
  8. background-color: #fff;
  9. margin-bottom: 15rpx;
  10. border-radius: 20rpx;
  11. padding: 20rpx 0 15rpx 0;
  12. }
  13. .list .item .child {
  14. font-size: 28rpx;
  15. margin: 0 0 20rpx 20rpx;
  16. }
  17. .list .item .payInfo {
  18. display: flex;
  19. padding: 0 0 20rpx 40rpx;
  20. border-bottom: 1px solid #d1d1d1;
  21. }
  22. .list .item .payInfo .parking {
  23. width: 110rpx;
  24. height: 110rpx;
  25. }
  26. .list .item .payInfo .time {
  27. position: relative;
  28. color: #979797;
  29. font-size: 25rpx;
  30. top: 10rpx;
  31. left: 30rpx;
  32. }
  33. .list .item .payFee {
  34. margin: 20rpx 0 0 20rpx;
  35. }
  36. .list .item .payFee .highLight {
  37. color: #fe725c;
  38. }
  39. .list .item .detail {
  40. position: absolute;
  41. right: 40rpx;
  42. top: 50%;
  43. width: 100rpx;
  44. height: 40rpx;
  45. color: #fff;
  46. line-height: 40rpx;
  47. font-size: 25rpx;
  48. transform: translateY(-50%);
  49. border-radius: 10rpx;
  50. background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
  51. padding: 5rpx 10rpx 5rpx 10rpx;
  52. }
  53. .list .item .notice {
  54. position: absolute;
  55. right: 40rpx;
  56. top: 30rpx;
  57. transform: translateY(-50%);
  58. color: #ff0000;
  59. }