plan-detail.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. .plan-detail {
  2. min-height: 100vh;
  3. background-color: #f8f8f8;
  4. }
  5. .navbar {
  6. display: flex;
  7. align-items: center;
  8. height: 90rpx;
  9. padding: 0 30rpx;
  10. background-color: #ffffff;
  11. border-bottom: 1rpx solid #eaeaea;
  12. position: relative;
  13. }
  14. .back-btn {
  15. display: flex;
  16. align-items: center;
  17. position: absolute;
  18. left: 30rpx;
  19. }
  20. .back-icon {
  21. font-size: 40rpx;
  22. }
  23. .back-text {
  24. font-size: 28rpx;
  25. margin-left: 6rpx;
  26. }
  27. .navbar .title {
  28. flex: 1;
  29. text-align: center;
  30. font-size: 32rpx;
  31. font-weight: 500;
  32. }
  33. .container {
  34. padding: 30rpx;
  35. }
  36. .header {
  37. margin-bottom: 30rpx;
  38. }
  39. .header .title {
  40. font-size: 36rpx;
  41. font-weight: 600;
  42. margin-bottom: 10rpx;
  43. }
  44. .header .subtitle {
  45. font-size: 28rpx;
  46. color: #666;
  47. }
  48. .form-section {
  49. background-color: #ffffff;
  50. border-radius: 12rpx;
  51. padding: 20rpx;
  52. margin-bottom: 30rpx;
  53. }
  54. .form-item {
  55. padding: 20rpx 10rpx;
  56. border-bottom: 1rpx solid #f0f0f0;
  57. }
  58. .form-item:last-child {
  59. border-bottom: none;
  60. }
  61. .form-label {
  62. font-size: 30rpx;
  63. margin-bottom: 20rpx;
  64. font-weight: 500;
  65. }
  66. .form-hint {
  67. font-size: 24rpx;
  68. color: #999;
  69. margin-top: 10rpx;
  70. }
  71. .days-selector, .people-selector {
  72. display: flex;
  73. align-items: center;
  74. }
  75. .days-btn, .people-btn {
  76. width: 60rpx;
  77. height: 60rpx;
  78. border-radius: 50%;
  79. background-color: #f0f0f0;
  80. color: #333;
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. font-size: 32rpx;
  85. }
  86. .days-value, .people-value {
  87. margin: 0 30rpx;
  88. font-size: 32rpx;
  89. width: 100rpx;
  90. text-align: center;
  91. }
  92. .disabled {
  93. opacity: 0.5;
  94. pointer-events: none;
  95. }
  96. .budget-input {
  97. display: flex;
  98. align-items: center;
  99. border: 1rpx solid #eaeaea;
  100. border-radius: 8rpx;
  101. padding: 0 20rpx;
  102. height: 80rpx;
  103. }
  104. .currency {
  105. font-size: 32rpx;
  106. color: #666;
  107. margin-right: 10rpx;
  108. }
  109. .budget-input input {
  110. flex: 1;
  111. height: 80rpx;
  112. font-size: 32rpx;
  113. }
  114. .date-picker {
  115. display: flex;
  116. align-items: center;
  117. justify-content: space-between;
  118. border: 1rpx solid #eaeaea;
  119. border-radius: 8rpx;
  120. padding: 0 20rpx;
  121. height: 80rpx;
  122. }
  123. .picker-value {
  124. font-size: 32rpx;
  125. }
  126. .picker-icon {
  127. font-size: 24rpx;
  128. color: #999;
  129. }
  130. .spots-section {
  131. background-color: #ffffff;
  132. border-radius: 12rpx;
  133. padding: 20rpx;
  134. margin-bottom: 30rpx;
  135. }
  136. .section-title {
  137. font-size: 30rpx;
  138. font-weight: 500;
  139. margin-bottom: 20rpx;
  140. padding: 0 10rpx;
  141. }
  142. .spots-list {
  143. max-height: 500rpx;
  144. overflow-y: auto;
  145. }
  146. .spot-item {
  147. display: flex;
  148. align-items: center;
  149. padding: 20rpx 10rpx;
  150. border-bottom: 1rpx solid #f0f0f0;
  151. }
  152. .spot-item:last-child {
  153. border-bottom: none;
  154. }
  155. .spot-index {
  156. width: 40rpx;
  157. height: 40rpx;
  158. border-radius: 50%;
  159. background-color: #3e98ff;
  160. color: #ffffff;
  161. display: flex;
  162. align-items: center;
  163. justify-content: center;
  164. font-size: 24rpx;
  165. margin-right: 20rpx;
  166. }
  167. .spot-info {
  168. flex: 1;
  169. }
  170. .spot-name {
  171. font-size: 28rpx;
  172. margin-bottom: 6rpx;
  173. }
  174. .spot-address {
  175. font-size: 24rpx;
  176. color: #999;
  177. }
  178. .remove-btn {
  179. width: 50rpx;
  180. height: 50rpx;
  181. display: flex;
  182. align-items: center;
  183. justify-content: center;
  184. font-size: 36rpx;
  185. color: #999;
  186. }
  187. .empty-state {
  188. display: flex;
  189. flex-direction: column;
  190. align-items: center;
  191. justify-content: center;
  192. padding: 60rpx 0;
  193. }
  194. .empty-icon {
  195. font-size: 80rpx;
  196. margin-bottom: 20rpx;
  197. }
  198. .empty-text {
  199. font-size: 28rpx;
  200. color: #999;
  201. }
  202. .action-buttons {
  203. display: flex;
  204. gap: 20rpx;
  205. }
  206. .back-btn, .submit-btn {
  207. flex: 1;
  208. height: 90rpx;
  209. display: flex;
  210. align-items: center;
  211. justify-content: center;
  212. border-radius: 45rpx;
  213. font-size: 32rpx;
  214. }
  215. .back-btn {
  216. background-color: #f0f0f0;
  217. color: #333;
  218. }
  219. .submit-btn {
  220. background-color: #3e98ff;
  221. color: #ffffff;
  222. }
  223. .submit-btn.disabled {
  224. background-color: #cccccc;
  225. }