电速宝
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

index.wxss 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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. }
  13. .bottom-panel {
  14. /* position: absolute;
  15. bottom: 0;
  16. left: 0;
  17. right: 0; */
  18. width: 100%;
  19. height: 660rpx;
  20. overflow: hidden;
  21. overflow: auto;
  22. padding: 16rpx;
  23. box-sizing: border-box;
  24. }
  25. .trip-card {
  26. background-color: white;
  27. border-radius: 16rpx;
  28. padding: 24rpx;
  29. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
  30. }
  31. .location-item {
  32. display: flex;
  33. align-items: flex-start;
  34. margin-bottom: 24rpx;
  35. }
  36. .location-icon {
  37. margin-right: 16rpx;
  38. margin-top: 8rpx;
  39. }
  40. .start-icon .icon-circle {
  41. width: 24rpx;
  42. height: 24rpx;
  43. border-radius: 50%;
  44. background-color: #666;
  45. }
  46. .end-icon .icon-marker {
  47. width: 24rpx;
  48. height: 24rpx;
  49. background-color: #2C85FF;
  50. clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  51. }
  52. .location-input input {
  53. font-size: 32rpx;
  54. color: #333;
  55. width: 560rpx;
  56. }
  57. .trip-info {
  58. margin-top: 16rpx;
  59. padding-top: 16rpx;
  60. border-top: 1rpx solid #eee;
  61. display: flex;
  62. justify-content: space-between;
  63. font-size: 28rpx;
  64. color: #666;
  65. }
  66. /* */
  67. .call-btn {
  68. position: absolute;
  69. bottom: 0;
  70. left: 0;
  71. right: 0;
  72. margin-bottom: 24rpx;
  73. background-color: #00C775;
  74. color: white;
  75. width: 90%;
  76. height: 96rpx;
  77. line-height: 96rpx;
  78. font-size: 34rpx;
  79. border-radius: 48rpx;
  80. box-sizing: border-box;
  81. display: flex;
  82. justify-content:space-around;
  83. }
  84. .call-btn_left_electricity{
  85. width: 50%;
  86. height: 100%;
  87. }
  88. .call-btn_right_electricity{
  89. width: 50%;
  90. height: 100%;
  91. border-left: 4rpx solid #ffffff;
  92. }
  93. .driver-info {
  94. background-color: white;
  95. border-radius: 16rpx;
  96. padding: 24rpx;
  97. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
  98. display: flex;
  99. align-items: center;
  100. margin-top: 26rpx;
  101. }
  102. .driver-avatar {
  103. width: 100rpx;
  104. height: 100rpx;
  105. border-radius: 50%;
  106. }
  107. .driver-details {
  108. margin-left: 24rpx;
  109. flex: 1;
  110. display: flex;
  111. flex-direction: column;
  112. justify-content: center;
  113. /* justify-content:space-around; */
  114. /* justify-content: space-between; */
  115. /* align-items: center; */
  116. }
  117. .driver-name {
  118. font-size: 32rpx;
  119. font-weight: bold;
  120. }
  121. .driver-car {
  122. font-size: 28rpx;
  123. color: #666;
  124. margin-top: 8rpx;
  125. }
  126. .driver-arrive {
  127. font-size: 28rpx;
  128. color: #2C85FF;
  129. margin-top: 8rpx;
  130. }
  131. .driver-arrive1 {
  132. font-size: 28rpx;
  133. margin-top: 8rpx;
  134. margin-left: 20rpx;
  135. }
  136. .cancel-btn {
  137. padding: 0rpx 20rpx;
  138. height: 48rpx;
  139. line-height: 48rpx;
  140. font-size: 28rpx;
  141. color: #2c85ff;
  142. border-radius: 32rpx;
  143. /* background-color: #2C85FF; */
  144. border: 1rpx solid #2c85ff;
  145. }
  146. .cars-nearby {
  147. position: absolute;
  148. top: 104rpx;
  149. left: 24rpx;
  150. background-color: rgba(255, 255, 255, 0.9);
  151. border-radius: 32rpx;
  152. padding: 12rpx 20rpx;
  153. display: flex;
  154. align-items: center;
  155. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
  156. }
  157. .cars-icon {
  158. color: #2C85FF;
  159. margin-right: 12rpx;
  160. }
  161. .cars-count {
  162. font-size: 28rpx;
  163. color: #333;
  164. }
  165. .icon-car {
  166. font-size: 32rpx;
  167. }
  168. .available{
  169. width: 100%;
  170. height: 380rpx;
  171. display: flex;
  172. align-items: center;
  173. justify-content: center;
  174. }
  175. .positioning{
  176. position: fixed;
  177. /* top: 740rpx; */
  178. right: 40rpx;
  179. }
  180. .available{
  181. display: flex;
  182. justify-content: center;
  183. align-items: center;
  184. margin-top: 100rpx;
  185. }