合伙人运营小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.wxss 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .container {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. display: flex;
  8. flex-direction: column;
  9. }
  10. .map {
  11. width: 100%;
  12. height: 800rpx;
  13. }
  14. .bottom-panel {
  15. position: absolute;
  16. bottom: 0;
  17. left: 0;
  18. right: 0;
  19. padding: 16rpx;
  20. box-sizing: border-box;
  21. }
  22. .trip-card {
  23. background-color: white;
  24. border-radius: 16rpx;
  25. padding: 24rpx;
  26. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
  27. }
  28. .location-item {
  29. display: flex;
  30. align-items: flex-start;
  31. margin-bottom: 24rpx;
  32. }
  33. .location-icon {
  34. margin-right: 16rpx;
  35. margin-top: 8rpx;
  36. }
  37. .start-icon .icon-circle {
  38. width: 24rpx;
  39. height: 24rpx;
  40. border-radius: 50%;
  41. background-color: #666;
  42. }
  43. .end-icon .icon-marker {
  44. width: 24rpx;
  45. height: 24rpx;
  46. background-color: #2C85FF;
  47. clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  48. }
  49. .location-input input {
  50. font-size: 32rpx;
  51. color: #333;
  52. width: 560rpx;
  53. }
  54. .trip-info {
  55. margin-top: 16rpx;
  56. padding-top: 16rpx;
  57. border-top: 1rpx solid #eee;
  58. display: flex;
  59. justify-content: space-between;
  60. font-size: 28rpx;
  61. color: #666;
  62. }
  63. .call-btn {
  64. margin-top: 24rpx;
  65. background-color: #2C85FF;
  66. color: white;
  67. height: 96rpx;
  68. line-height: 96rpx;
  69. font-size: 34rpx;
  70. border-radius: 48rpx;
  71. }
  72. .driver-info {
  73. background-color: white;
  74. border-radius: 16rpx;
  75. padding: 24rpx;
  76. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
  77. display: flex;
  78. align-items: center;
  79. }
  80. .driver-avatar {
  81. width: 100rpx;
  82. height: 100rpx;
  83. border-radius: 50%;
  84. }
  85. .driver-details {
  86. margin-left: 24rpx;
  87. flex: 1;
  88. }
  89. .driver-name {
  90. font-size: 32rpx;
  91. font-weight: bold;
  92. }
  93. .driver-car {
  94. font-size: 28rpx;
  95. color: #666;
  96. margin-top: 8rpx;
  97. }
  98. .driver-arrive {
  99. font-size: 28rpx;
  100. color: #2C85FF;
  101. margin-top: 8rpx;
  102. }
  103. .cancel-btn {
  104. width: 160rpx;
  105. height: 64rpx;
  106. line-height: 64rpx;
  107. font-size: 28rpx;
  108. color: #FF5252;
  109. border: 1rpx solid #FF5252;
  110. background-color: white;
  111. border-radius: 32rpx;
  112. }
  113. .cars-nearby {
  114. position: absolute;
  115. top: 24rpx;
  116. left: 24rpx;
  117. background-color: rgba(255, 255, 255, 0.9);
  118. border-radius: 32rpx;
  119. padding: 12rpx 20rpx;
  120. display: flex;
  121. align-items: center;
  122. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
  123. }
  124. .cars-icon {
  125. color: #2C85FF;
  126. margin-right: 12rpx;
  127. }
  128. .cars-count {
  129. font-size: 28rpx;
  130. color: #333;
  131. }
  132. .icon-car {
  133. font-size: 32rpx;
  134. }