电速宝
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

index.wxss 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. background-color: #f9f9f9;
  10. }
  11. .map {
  12. width: 100%;
  13. height: 70%;
  14. }
  15. .control-panel {
  16. position: fixed;
  17. bottom: 60rpx;
  18. left: 0;
  19. right: 0;
  20. display: flex;
  21. justify-content: center;
  22. padding: 0 20rpx;
  23. }
  24. .btn {
  25. width: 80%;
  26. height: 80rpx;
  27. line-height: 80rpx;
  28. text-align: center;
  29. color: white;
  30. border-radius: 40rpx;
  31. font-size: 30rpx;
  32. }
  33. .info {
  34. position: fixed;
  35. top: 30rpx;
  36. left: 50%;
  37. transform: translateX(-50%);
  38. background-color: rgba(0, 0, 0, 0.7);
  39. color: white;
  40. padding: 15rpx 30rpx;
  41. border-radius: 10rpx;
  42. font-size: 28rpx;
  43. z-index: 100;
  44. }
  45. /* 加载提示 */
  46. .loading-mask {
  47. position: fixed;
  48. top: 0;
  49. left: 0;
  50. right: 0;
  51. bottom: 0;
  52. background-color: rgba(0, 0, 0, 0.3);
  53. display: flex;
  54. justify-content: center;
  55. align-items: center;
  56. z-index: 100;
  57. }
  58. .loading-view {
  59. background-color: white;
  60. padding: 30rpx 60rpx;
  61. border-radius: 10rpx;
  62. }
  63. /* 错误提示 */
  64. .error-message {
  65. position: fixed;
  66. top: 50%;
  67. left: 50%;
  68. transform: translate(-50%, -50%);
  69. background-color: rgba(0, 0, 0, 0.7);
  70. color: white;
  71. padding: 20rpx 40rpx;
  72. border-radius: 8rpx;
  73. font-size: 28rpx;
  74. z-index: 99;
  75. }
  76. /* 路线列表容器 */
  77. .routes-container {
  78. /* background-color: white; */
  79. padding: 20rpx;
  80. /* border-top: 1px solid #eee; */
  81. max-height: 50vh;
  82. overflow-y: auto;
  83. }
  84. /* 目的地标题 */
  85. .destination-title {
  86. font-size: 32rpx;
  87. color: #333;
  88. padding-bottom: 10rpx;
  89. /* border-bottom: 1px solid #f0f0f0; */
  90. }
  91. .destination-font {
  92. font-size: 28rpx;
  93. width: 100%;
  94. display: flex;
  95. align-items: center;
  96. justify-content: space-between;
  97. color: #333;
  98. margin-top: 20rpx;
  99. /* border-bottom: 1px solid #f0f0f0; */
  100. }
  101. .route{
  102. width: 100%;
  103. display: flex;
  104. }
  105. /* 路线列表 */
  106. .routes-list {
  107. display: flex;
  108. flex-direction: column;
  109. gap: 15rpx;
  110. }
  111. /* 路线项 */
  112. .route-item {
  113. padding: 15rpx;
  114. border-radius: 8rpx;
  115. background-color: #f9f9f9;
  116. border: 1px solid #eee;
  117. }
  118. .route-item.active {
  119. background-color: #e8f4ff;
  120. border-color: #007aff;
  121. }
  122. /* 路线头部 */
  123. .route-header {
  124. display: flex;
  125. justify-content: space-between;
  126. margin-bottom: 10rpx;
  127. }
  128. .route-number {
  129. font-size: 28rpx;
  130. font-weight: 500;
  131. color: #333;
  132. }
  133. .route-policy {
  134. font-size: 24rpx;
  135. color: #666;
  136. background-color: #f0f0f0;
  137. padding: 2rpx 10rpx;
  138. border-radius: 12rpx;
  139. }
  140. .route-item.active .route-policy {
  141. background-color: #007aff;
  142. color: white;
  143. }
  144. /* 路线详情 */
  145. .route-details {
  146. display: flex;
  147. justify-content: space-between;
  148. align-items: center;
  149. }
  150. .detail-item {
  151. display: flex;
  152. align-items: center;
  153. margin-right: 20rpx;
  154. }
  155. .detail-text {
  156. font-size: 26rpx;
  157. color: #333;
  158. margin-left: 8rpx;
  159. }
  160. /* 路况信息 */
  161. .traffic-info {
  162. margin-top: 10rpx;
  163. }
  164. .traffic-text {
  165. font-size: 24rpx;
  166. color: #ff6b00;
  167. }
  168. .storagecartext{
  169. width:100%;
  170. display: flex;
  171. justify-content: space-between;
  172. /* justify-content:space-around; */
  173. align-items: center;
  174. padding-left:20rpx;
  175. box-sizing: border-box;
  176. margin-top: 20rpx;
  177. }
  178. .storagecar{
  179. width: 260rpx;
  180. height: 180rpx;
  181. }
  182. .viewmore{
  183. margin-top: 20rpx;
  184. }