电速宝
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.

index.wxss 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. .container {
  2. display: flex;
  3. height: 100%;
  4. flex-direction: column;
  5. overflow: hidden;
  6. box-sizing: border-box;
  7. }
  8. .map {
  9. width: 100%;
  10. min-height: 700rpx;
  11. box-sizing: border-box;
  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. padding-top: 0rpx;
  24. box-sizing: border-box;
  25. }
  26. .trip-card {
  27. background-color: white;
  28. border-radius: 16rpx;
  29. padding: 24rpx;
  30. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
  31. }
  32. .location-item {
  33. display: flex;
  34. align-items: flex-start;
  35. margin-bottom: 24rpx;
  36. }
  37. .location-icon {
  38. margin-right: 16rpx;
  39. margin-top: 8rpx;
  40. }
  41. .start-icon .icon-circle {
  42. width: 24rpx;
  43. height: 24rpx;
  44. border-radius: 50%;
  45. background-color: #666;
  46. }
  47. .end-icon .icon-marker {
  48. width: 24rpx;
  49. height: 24rpx;
  50. background-color: #2C85FF;
  51. clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  52. }
  53. .location-input input {
  54. font-size: 32rpx;
  55. color: #333;
  56. width: 560rpx;
  57. }
  58. .trip-info {
  59. margin-top: 16rpx;
  60. padding-top: 16rpx;
  61. border-top: 1rpx solid #eee;
  62. display: flex;
  63. justify-content: space-between;
  64. font-size: 28rpx;
  65. color: #666;
  66. }
  67. /* */
  68. .call-btn {
  69. position: absolute;
  70. bottom: 0;
  71. left: 0;
  72. right: 0;
  73. margin-bottom: 24rpx;
  74. background-color: #00C775;
  75. color: white;
  76. width: 90%;
  77. height: 96rpx;
  78. line-height: 96rpx;
  79. font-size: 34rpx;
  80. border-radius: 48rpx;
  81. box-sizing: border-box;
  82. display: flex;
  83. justify-content:space-around;
  84. }
  85. .call-btn_left_electricity{
  86. width: 50%;
  87. height: 100%;
  88. }
  89. .call-btn_right_electricity{
  90. width: 50%;
  91. height: 100%;
  92. border-left: 4rpx solid #ffffff;
  93. }
  94. .driver-info {
  95. background-color: white;
  96. border-radius: 16rpx;
  97. padding: 24rpx;
  98. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
  99. display: flex;
  100. align-items: center;
  101. margin-top: 26rpx;
  102. }
  103. .driver-avatar {
  104. width: 100rpx;
  105. height: 100rpx;
  106. border-radius: 50%;
  107. }
  108. .driver-details {
  109. margin-left: 24rpx;
  110. flex: 1;
  111. display: flex;
  112. flex-direction: column;
  113. justify-content: center;
  114. /* justify-content:space-around; */
  115. /* justify-content: space-between; */
  116. /* align-items: center; */
  117. }
  118. .driver-name {
  119. font-size: 32rpx;
  120. font-weight: bold;
  121. }
  122. .driver-car {
  123. font-size: 28rpx;
  124. color: #ccc;
  125. margin-top: 8rpx;
  126. }
  127. .driver-car1 {
  128. font-size: 28rpx;
  129. color: #00C775;
  130. margin-top: 8rpx;
  131. }
  132. .driver-car2 {
  133. font-size: 28rpx;
  134. color: #EA6E38;
  135. margin-top: 8rpx;
  136. }
  137. .driver-arrive {
  138. font-size: 28rpx;
  139. color: #2C85FF;
  140. margin-top: 8rpx;
  141. }
  142. .driver-arrive1 {
  143. font-size: 28rpx;
  144. margin-top: 8rpx;
  145. margin-left: 20rpx;
  146. }
  147. .cancel-btn {
  148. padding: 0rpx 20rpx;
  149. height: 48rpx;
  150. line-height: 48rpx;
  151. font-size: 28rpx;
  152. color: #2c85ff;
  153. border-radius: 32rpx;
  154. /* background-color: #2C85FF; */
  155. border: 1rpx solid #2c85ff;
  156. }
  157. .cars-nearby {
  158. position: fixed;
  159. top: 620rpx;
  160. left: 10rpx;
  161. background-color: rgba(255, 255, 255, 1);
  162. border-radius: 16rpx;
  163. padding: 12rpx 20rpx;
  164. display: flex;
  165. /* flex-direction: column; */
  166. align-items: center;
  167. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
  168. box-sizing: border-box;
  169. }
  170. .positioning{
  171. position: fixed;
  172. top: 630rpx;
  173. right: 40rpx;
  174. }
  175. .cars-icon {
  176. color: #2C85FF;
  177. margin-right: 12rpx;
  178. }
  179. .cars-count {
  180. font-size: 28rpx;
  181. color: #333;
  182. }
  183. .icon-car {
  184. font-size: 32rpx;
  185. }
  186. .available{
  187. width: 100%;
  188. height: 380rpx;
  189. display: flex;
  190. align-items: center;
  191. justify-content: center;
  192. }
  193. .available{
  194. display: flex;
  195. justify-content: center;
  196. align-items: center;
  197. margin-top: 100rpx;
  198. }
  199. .carousel{
  200. width: 100%;
  201. height: 300rpx;
  202. /* background-color: #222222; */
  203. padding: 20rpx;
  204. padding-bottom: 0rpx;
  205. border-radius:16rpx;
  206. box-sizing: border-box;
  207. }
  208. .swiper_img{
  209. width: 100%;
  210. height: 380rpx;
  211. border-radius:16rpx;
  212. overflow: hidden;
  213. }
  214. .swiper-item{
  215. width: 100%;
  216. height: 100%;
  217. display: flex;
  218. align-items: center;
  219. justify-content: center;
  220. color: #222222;
  221. border-radius:16rpx;
  222. background-color: #00C775;
  223. }
  224. /* */
  225. .nearby_icon{
  226. width: 44rpx;
  227. height: 44rpx;
  228. }