control.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. .scroll-view {
  2. overflow-x: scroll;
  3. white-space: nowrap;
  4. }
  5. .contril-item,
  6. .more-item{
  7. display: inline-flex;
  8. flex-direction: column;
  9. align-items: center;
  10. justify-content: center;
  11. /* width: 60px;
  12. height: 60px; */
  13. /* background-color: #fff; */
  14. /* border-radius: 50%; */
  15. /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  16. margin: 20rpx;
  17. }
  18. .contril-item-e,
  19. .more-item-e{
  20. margin: 20rpx 10rpx;
  21. }
  22. .contril-item-img{
  23. width: 112rpx;
  24. height: 112rpx;
  25. }
  26. .contril-item text{
  27. margin-top: 20rpx;
  28. font-weight: 400;
  29. font-size: 28rpx;
  30. color: #060809;
  31. opacity: 0.8;
  32. }
  33. .popup-title{
  34. font-weight: 600;
  35. font-size: 36rpx;
  36. color: #060809;
  37. text-align: center;
  38. margin-bottom:32rpx;
  39. }
  40. .popup-content{
  41. text-align: center;
  42. font-weight: 400;
  43. font-size: 28rpx;
  44. color: #828384;
  45. margin-bottom: 48rpx;
  46. }
  47. .sure-btn{
  48. margin-right: 10rpx;
  49. text-align: center;
  50. border-radius: 32rpx;
  51. display: flex;
  52. flex-grow: 1;
  53. justify-content: center;
  54. align-items: center;
  55. }
  56. .show-more {
  57. position: fixed;
  58. bottom: 0;
  59. left: 0;
  60. z-index: 10;
  61. width: 100%;
  62. height: 100vh;
  63. background-color: rgba(0, 0, 0, 0.4);
  64. }
  65. .more-info {
  66. border-radius: 40rpx 40rpx 0rpx 0rpx;
  67. overflow: hidden;
  68. z-index: 100;
  69. position: fixed;
  70. bottom: 0;
  71. width: 100%;
  72. background: #F1F3F4;
  73. height: 600rpx;
  74. }
  75. .model-title{
  76. margin-bottom: 46rpx;
  77. padding: 40rpx 32rpx 0rpx 32rpx;
  78. font-weight: 600;
  79. font-size: 40rpx;
  80. color: #060809;
  81. }
  82. .pay-money {
  83. background-color: #ffffff;
  84. padding: 40rpx 32rpx 0rpx 32rpx;
  85. }
  86. .more-img{
  87. width: 30rpx;
  88. height: 30rpx;
  89. }
  90. .lift-btn-view{
  91. display: flex;
  92. justify-content: center;
  93. align-items: center;
  94. padding: 32rpx;
  95. width: 100%;
  96. height: 148rpx;
  97. position: relative;
  98. margin-bottom: 40rpx;
  99. }
  100. .lift-btn{
  101. height: 80rpx;
  102. display: flex;
  103. flex: 1;
  104. font-weight: 600;
  105. font-size: 32rpx;
  106. color: #060809;
  107. font-family: PingFangSC, PingFang SC;
  108. background: #E4E7EC;
  109. border-radius: 40rpx;
  110. justify-content: center;
  111. align-items: center;
  112. }
  113. .show-modal{
  114. position: fixed;
  115. top: 0;
  116. left: 0;
  117. width: 100%;
  118. height: 100%;
  119. background-color: rgba(0, 0, 0, 0.5);
  120. display: flex;
  121. justify-content: center;
  122. align-items: center;
  123. z-index: 9999;
  124. }
  125. .modal-info{
  126. background-color: #fff;
  127. padding: 20px;
  128. border-radius: 20px;
  129. width: 80%;
  130. max-width: 300px;
  131. }
  132. .modal-footer{
  133. width: 100%;
  134. align-items: center;
  135. }
  136. .show-btn{
  137. border-radius: 40rpx;
  138. width: 50%;
  139. /* width: 230rpx; */
  140. text-align: center;
  141. font-weight: 600;
  142. font-size: 32rpx;
  143. border-radius: 40rpx;
  144. height: 80rpx;
  145. line-height: 80rpx;
  146. }
  147. .cencel-btn-pop{
  148. color: #060809;
  149. background: #EBECEC;
  150. margin-right: 12rpx;
  151. }
  152. .ok-btn-pop{
  153. color: #FFFFFF;
  154. background: #060809;
  155. }
  156. .power-view{
  157. padding: 0 32rpx;
  158. margin-bottom: 40rpx;
  159. }
  160. .power-on-off{
  161. align-items: center;
  162. flex-grow: 1;
  163. margin-right: 14rpx;
  164. height: 96rpx;
  165. background: #FFFFFF;
  166. border-radius: 48rpx;
  167. font-family: PingFangSC, PingFang SC;
  168. font-weight: 600;
  169. font-size: 32rpx;
  170. color: #060809;
  171. border: 4rpx solid #F1F3F4;
  172. }
  173. .power-on-btn{
  174. height: 96rpx;
  175. display: flex;
  176. justify-content: center;
  177. align-items: center;
  178. width: 144rpx;
  179. background: #060809;
  180. border-radius: 52rpx;
  181. border: 6rpx solid #FFF;
  182. }
  183. .power-on-text{
  184. display:flex;
  185. flex-grow: 1;
  186. margin-left: 40rpx;
  187. translateX:('-135px');
  188. }
  189. .car-change-battery{
  190. align-items: center;
  191. width: 272rpx;
  192. height: 96rpx;
  193. background: #FFFFFF;
  194. border-radius: 48rpx;
  195. font-family: PingFangSC, PingFang SC;
  196. font-weight: 500;
  197. font-size: 32rpx;
  198. color: #060809;
  199. margin-left: 20rpx;
  200. padding-left: 20rpx;
  201. }
  202. .car-change-text{
  203. margin-left: 8rpx;
  204. display: flex;
  205. flex-grow: 1;
  206. }