合伙人运营小程序
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. page {
  2. background-color: #F7F8FA;
  3. margin: 0;
  4. padding: 0;
  5. font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", sans-serif;
  6. box-sizing: border-box;
  7. }
  8. /*
  9. */
  10. .navigation-bar {
  11. position: fixed;
  12. top: 80rpx;
  13. left: 0rpx;
  14. width: 100%;
  15. display: flex;
  16. align-items: center;
  17. /* justify-content: center; */
  18. font-size: 36rpx;
  19. padding-left: 20rpx;
  20. flex-direction: row;
  21. color: #ffffff;
  22. }
  23. .picker{
  24. display: flex;
  25. align-items: center;
  26. padding: 8rpx 20rpx;
  27. border-radius: 10rpx;
  28. background: linear-gradient(135deg, #007545 0%, #007545 100%);
  29. }
  30. .chevron_down{
  31. margin-left: 10rpx;
  32. }
  33. /* 全部 */
  34. .container {
  35. width: 100%;
  36. height: 100%;
  37. display: flex;
  38. flex-direction: column;
  39. box-sizing: border-box;
  40. }
  41. /* ===== 地图样式 ===== */
  42. .map {
  43. flex: 1;
  44. width: 100%;
  45. height: 800rpx;
  46. }
  47. .tab_box{
  48. flex: 1;
  49. display: flex;
  50. flex-direction: column;
  51. width: 100%;
  52. padding: 0rpx 20rpx;
  53. padding-bottom: 20rpx;
  54. overflow: hidden;
  55. box-sizing: border-box;
  56. }
  57. /* ===== 三选项卡样式 ===== */
  58. .tab-container {
  59. width: 100%;
  60. display: flex;
  61. background: #FFFFFF;
  62. padding: 8rpx 16rpx;
  63. border-radius: 12rpx;
  64. margin-top: 20rpx;
  65. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04);
  66. box-sizing: border-box;
  67. }
  68. .tab-item {
  69. flex: 1;
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. height: 80rpx;
  74. border-radius: 8rpx;
  75. position: relative;
  76. color: #4E5969;
  77. font-size: 30rpx;
  78. font-weight: 500;
  79. transition: all 0.2s ease;
  80. }
  81. .tab-active {
  82. background: linear-gradient(135deg, #007545 0%, #007545 100%);
  83. color: #FFFFFF;
  84. }
  85. .tab-item:active {
  86. opacity: 0.9;
  87. transform: scale(0.98);
  88. }
  89. .tab-badge {
  90. display: inline-flex;
  91. align-items: center;
  92. justify-content: center;
  93. width: 36rpx;
  94. height: 36rpx;
  95. background: rgba(255, 255, 255, 0.2);
  96. color: #FFFFFF;
  97. font-size: 22rpx;
  98. border-radius: 50%;
  99. margin-left: 8rpx;
  100. }
  101. .tab-item:not(.tab-active) .tab-badge {
  102. background: #E5E6EB;
  103. color: #86909C;
  104. }
  105. .tab-text {
  106. display: inline-block;
  107. }
  108. /* ===== 列表样式 ===== */
  109. .list-wrap {
  110. flex: 1;
  111. background: #FFFFFF;
  112. margin-top: 20rpx;
  113. border-radius: 16rpx;
  114. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.06);
  115. overflow: hidden;
  116. overflow: auto;
  117. box-sizing: border-box;
  118. }
  119. .list-header {
  120. display: flex;
  121. justify-content: space-between;
  122. align-items: center;
  123. /* padding: 24rpx 24rpx 16rpx; */
  124. padding:16rpx 24rpx;
  125. padding-top: 0rpx;
  126. border-bottom: 1rpx solid #F2F3F5;
  127. }
  128. .list-title {
  129. font-size: 32rpx;
  130. font-weight: 600;
  131. color: #1D2129;
  132. }
  133. .list-count {
  134. font-size: 24rpx;
  135. color: #86909C;
  136. }
  137. .empty-wrap {
  138. padding: 80rpx 0;
  139. text-align: center;
  140. }
  141. .empty-icon {
  142. font-size: 80rpx;
  143. color: #C9CDD4;
  144. margin-bottom: 20rpx;
  145. }
  146. .empty-text {
  147. font-size: 28rpx;
  148. color: #86909C;
  149. }
  150. .list-card {
  151. display: flex;
  152. justify-content: space-between;
  153. align-items: center;
  154. padding: 24rpx;
  155. border-bottom: 1rpx solid #F7F8FA;
  156. transition: background 0.2s ease;
  157. }
  158. .list-card:last-child {
  159. border-bottom: none;
  160. }
  161. .list-card:active {
  162. background: #F7F8FA;
  163. }
  164. .card-left {
  165. flex: 1;
  166. display: flex;
  167. flex-direction: column;
  168. gap: 8rpx;
  169. }
  170. /* 新增用户标签样式 */
  171. .card-tag {
  172. width: 100rpx;
  173. display: inline-block;
  174. padding: 4rpx 12rpx;
  175. border-radius: 6rpx;
  176. font-size: 22rpx;
  177. font-weight: 500;
  178. }
  179. .tag-car {
  180. background: #EEF7FF;
  181. color: #165DFF;
  182. }
  183. .tag-station {
  184. background: #E8FFF3;
  185. color: #00B42A;
  186. }
  187. .tag-user {
  188. background: #FFF7E6;
  189. color: #FF7D00;
  190. }
  191. .card-name {
  192. font-size: 30rpx;
  193. font-weight: 500;
  194. color: #1D2129;
  195. line-height: 1.4;
  196. }
  197. .card-address {
  198. font-size: 24rpx;
  199. color: #86909C;
  200. line-height: 1.4;
  201. max-width: 500rpx;
  202. white-space: nowrap;
  203. overflow: hidden;
  204. text-overflow: ellipsis;
  205. }
  206. .card-status {
  207. font-size: 22rpx;
  208. color: #FF7D00;
  209. margin-top: 4rpx;
  210. }
  211. .card-right {
  212. /* width: 100%; */
  213. display: flex;
  214. flex-direction: column;
  215. justify-content: space-around;
  216. flex-shrink: 0;
  217. margin-left: 16rpx;
  218. }
  219. .pos-btn {
  220. display: inline-flex;
  221. align-items: center;
  222. justify-content: center;
  223. width: 88rpx;
  224. height: 64rpx;
  225. background: linear-gradient(135deg, #165DFF 0%, #0F4CD3 100%);
  226. color: #FFFFFF;
  227. font-size: 26rpx;
  228. font-weight: 500;
  229. border-radius: 8rpx;
  230. box-shadow: 0 2rpx 8rpx rgba(22, 93, 255, 0.3);
  231. transition: all 0.2s ease;
  232. }
  233. .pos-btn:active {
  234. opacity: 0.9;
  235. transform: scale(0.96);
  236. }
  237. /* ===== 深色模式适配 ===== */
  238. @media (prefers-color-scheme: dark) {
  239. page {
  240. background-color: #1D1D1F;
  241. }
  242. .tab-container, .list-wrap {
  243. background: #2C2C2E;
  244. color: #FFFFFF;
  245. }
  246. .list-title {
  247. color: #FFFFFF;
  248. }
  249. .list-header {
  250. border-bottom-color: #3A3A3C;
  251. }
  252. .list-card {
  253. border-bottom-color: #3A3A3C;
  254. }
  255. .list-card:active {
  256. background: #3A3A3C;
  257. }
  258. .card-address, .list-count {
  259. color: #8E8E93;
  260. }
  261. }