select-activity.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. .select-activity {
  2. background: #F8F9FA;
  3. min-height: 100vh;
  4. padding-bottom: 40rpx;
  5. }
  6. .header-info {
  7. background: linear-gradient(135deg, #4A90C2 0%, #357ABD 100%);
  8. padding: 40rpx 32rpx;
  9. color: #fff;
  10. }
  11. .route-info {
  12. font-size: 40rpx;
  13. font-weight: bold;
  14. margin-bottom: 16rpx;
  15. }
  16. .date-info {
  17. font-size: 28rpx;
  18. opacity: 0.9;
  19. }
  20. .section-title {
  21. font-weight: bold;
  22. font-size: 36rpx;
  23. margin: 40rpx 32rpx 16rpx 32rpx;
  24. color: #333;
  25. }
  26. .tip-text {
  27. font-size: 26rpx;
  28. color: #666;
  29. margin: 0 32rpx 16rpx 32rpx;
  30. }
  31. .date-filter-tip {
  32. font-size: 24rpx;
  33. color: #4A90C2;
  34. background: rgba(74, 144, 194, 0.1);
  35. padding: 12rpx 16rpx;
  36. border-radius: 20rpx;
  37. margin: 0 32rpx 32rpx 32rpx;
  38. text-align: center;
  39. border: 1rpx solid rgba(74, 144, 194, 0.2);
  40. }
  41. /* 行程区域 */
  42. .trip-section {
  43. margin: 32rpx 32rpx 48rpx 32rpx;
  44. }
  45. .trip-header {
  46. padding: 24rpx;
  47. border-radius: 16rpx 16rpx 0 0;
  48. margin-bottom: 0;
  49. }
  50. .trip-header.departure {
  51. background: linear-gradient(135deg, #4A90C2 0%, #357ABD 100%);
  52. color: #fff;
  53. }
  54. .trip-header.return {
  55. background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
  56. color: #fff;
  57. }
  58. .trip-title {
  59. display: flex;
  60. align-items: center;
  61. margin-bottom: 8rpx;
  62. }
  63. .trip-icon {
  64. font-size: 32rpx;
  65. margin-right: 12rpx;
  66. }
  67. .trip-text {
  68. font-size: 32rpx;
  69. font-weight: bold;
  70. }
  71. .trip-desc {
  72. font-size: 24rpx;
  73. opacity: 0.9;
  74. }
  75. .activity-card {
  76. background: #FFFFFF;
  77. display: flex;
  78. align-items: center;
  79. border-radius: 0;
  80. box-shadow: none;
  81. border: 1rpx solid #E5E5EA;
  82. border-top: none;
  83. overflow: hidden;
  84. position: relative;
  85. }
  86. .activity-card:last-child {
  87. border-radius: 0 0 16rpx 16rpx;
  88. }
  89. .activity-card.departure {
  90. border-left: 4rpx solid #4A90C2;
  91. }
  92. .activity-card.return {
  93. border-left: 4rpx solid #52c41a;
  94. }
  95. .empty-trip {
  96. background: #FFFFFF;
  97. border: 1rpx solid #E5E5EA;
  98. border-top: none;
  99. border-radius: 0 0 16rpx 16rpx;
  100. padding: 40rpx;
  101. text-align: center;
  102. }
  103. .empty-trip-text {
  104. color: #999;
  105. font-size: 28rpx;
  106. }
  107. .activity-img {
  108. width: 180rpx;
  109. height: 180rpx;
  110. flex-shrink: 0;
  111. }
  112. .activity-info {
  113. flex: 1;
  114. padding: 32rpx 24rpx;
  115. }
  116. .activity-title {
  117. font-size: 32rpx;
  118. font-weight: bold;
  119. margin-bottom: 16rpx;
  120. color: #333;
  121. }
  122. .activity-time {
  123. font-size: 28rpx;
  124. color: #4A90C2;
  125. margin-bottom: 12rpx;
  126. font-weight: bold;
  127. }
  128. .activity-place {
  129. font-size: 26rpx;
  130. color: #666;
  131. margin-bottom: 8rpx;
  132. }
  133. .activity-city {
  134. font-size: 24rpx;
  135. color: #999;
  136. background: #f0f0f0;
  137. padding: 8rpx 16rpx;
  138. border-radius: 20rpx;
  139. display: inline-block;
  140. margin-bottom: 8rpx;
  141. }
  142. .match-point {
  143. font-size: 22rpx;
  144. color: #4A90C2;
  145. background: rgba(74, 144, 194, 0.1);
  146. padding: 4rpx 8rpx;
  147. border-radius: 8rpx;
  148. display: inline-block;
  149. font-weight: 500;
  150. }
  151. .arrow-icon {
  152. position: absolute;
  153. right: 32rpx;
  154. top: 50%;
  155. transform: translateY(-50%);
  156. font-size: 32rpx;
  157. color: #4A90C2;
  158. font-weight: bold;
  159. }
  160. .empty-state {
  161. text-align: center;
  162. padding: 120rpx 32rpx;
  163. }
  164. .empty-icon {
  165. font-size: 120rpx;
  166. margin-bottom: 32rpx;
  167. }
  168. .empty-text {
  169. font-size: 32rpx;
  170. color: #666;
  171. margin-bottom: 16rpx;
  172. font-weight: bold;
  173. }
  174. .empty-desc {
  175. font-size: 26rpx;
  176. color: #999;
  177. }