intention.wxss 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. .intention-form.data-v-6e833e70 {
  2. padding-bottom: 40rpx;
  3. }
  4. .form-section.data-v-6e833e70 {
  5. margin-bottom: 50rpx;
  6. }
  7. .form-section .section-title.data-v-6e833e70 {
  8. font-size: 32rpx;
  9. font-weight: 600;
  10. color: #333333;
  11. margin-bottom: 24rpx;
  12. display: flex;
  13. align-items: center;
  14. }
  15. .form-section .section-title .sub.data-v-6e833e70 {
  16. font-size: 26rpx;
  17. color: #B3B3B3;
  18. font-weight: normal;
  19. margin-left: 12rpx;
  20. }
  21. .form-section .tag-list.data-v-6e833e70 {
  22. display: flex;
  23. flex-wrap: wrap;
  24. gap: 20rpx;
  25. }
  26. .form-section .tag-list .tag-item.data-v-6e833e70 {
  27. flex: 0 0 calc(33.33% - 14rpx);
  28. height: 76rpx;
  29. line-height: 76rpx;
  30. text-align: center;
  31. background-color: #F8FAFC;
  32. border-radius: 16rpx;
  33. color: #666666;
  34. font-size: 28rpx;
  35. box-sizing: border-box;
  36. border: 2rpx solid transparent;
  37. transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  38. }
  39. .form-section .tag-list .tag-item.active.data-v-6e833e70 {
  40. background-color: #F0F6FF;
  41. color: #1F6CFF;
  42. border-color: rgba(31, 108, 255, 0.4);
  43. font-weight: 500;
  44. }
  45. .form-section .tag-list .tag-item.data-v-6e833e70:active {
  46. transform: scale(0.98);
  47. }
  48. .form-section .input-box.data-v-6e833e70 {
  49. display: flex;
  50. justify-content: space-between;
  51. align-items: center;
  52. background-color: #F8FAFC;
  53. border-radius: 16rpx;
  54. padding: 0 32rpx;
  55. height: 96rpx;
  56. transition: all 0.3s ease;
  57. border: 2rpx solid transparent;
  58. }
  59. .form-section .input-box.data-v-6e833e70:active {
  60. background-color: #EBF1FA;
  61. }
  62. .form-section .input-box .date-text.data-v-6e833e70 {
  63. font-size: 30rpx;
  64. color: #1A1A1A;
  65. font-weight: 500;
  66. }
  67. .form-section .input-box .date-text.is-empty.data-v-6e833e70 {
  68. color: #A0AABF;
  69. font-weight: 400;
  70. }
  71. .form-section .input-box .arrow.data-v-6e833e70 {
  72. width: 14rpx;
  73. height: 14rpx;
  74. border-right: 3.5rpx solid #B0BACC;
  75. border-top: 3.5rpx solid #B0BACC;
  76. transform: rotate(45deg);
  77. margin-left: 20rpx;
  78. border-radius: 2rpx;
  79. }
  80. .list-section .item-header.data-v-6e833e70 {
  81. display: flex;
  82. justify-content: space-between;
  83. align-items: center;
  84. margin-bottom: 24rpx;
  85. }
  86. .list-section .item-header .section-title.data-v-6e833e70 {
  87. margin-bottom: 0;
  88. }
  89. .list-section .item-header .icon-plus.data-v-6e833e70 {
  90. width: 52rpx;
  91. height: 52rpx;
  92. border-radius: 50%;
  93. background-color: #F0F6FF;
  94. position: relative;
  95. border: none;
  96. transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  97. }
  98. .list-section .item-header .icon-plus.data-v-6e833e70::before, .list-section .item-header .icon-plus.data-v-6e833e70::after {
  99. content: "";
  100. position: absolute;
  101. top: 50%;
  102. left: 50%;
  103. transform: translate(-50%, -50%);
  104. background-color: #1F6CFF;
  105. border-radius: 2rpx;
  106. transition: background-color 0.2s;
  107. }
  108. .list-section .item-header .icon-plus.data-v-6e833e70::before {
  109. width: 24rpx;
  110. height: 4rpx;
  111. }
  112. .list-section .item-header .icon-plus.data-v-6e833e70::after {
  113. width: 4rpx;
  114. height: 24rpx;
  115. }
  116. .list-section .item-header .icon-plus.data-v-6e833e70:active {
  117. background-color: #1F6CFF;
  118. transform: scale(0.92);
  119. }
  120. .list-section .item-header .icon-plus.data-v-6e833e70:active::before, .list-section .item-header .icon-plus.data-v-6e833e70:active::after {
  121. background-color: #FFFFFF;
  122. }
  123. .list-section .item-list.data-v-6e833e70 {
  124. display: flex;
  125. flex-direction: column;
  126. }
  127. .list-section .item-list .empty-state.data-v-6e833e70 {
  128. display: flex;
  129. flex-direction: column;
  130. align-items: center;
  131. justify-content: center;
  132. padding: 50rpx 0;
  133. background-color: #F8FAFF;
  134. border-radius: 20rpx;
  135. margin: 16rpx 0;
  136. border: 2rpx dashed #D6E4FF;
  137. }
  138. .list-section .item-list .empty-state .empty-icon.data-v-6e833e70 {
  139. width: 72rpx;
  140. height: 72rpx;
  141. margin-bottom: 24rpx;
  142. }
  143. .list-section .item-list .empty-state .empty-text.data-v-6e833e70 {
  144. font-size: 26rpx;
  145. color: #9AADD1;
  146. }
  147. .list-section .item-list .item.data-v-6e833e70 {
  148. display: flex;
  149. justify-content: space-between;
  150. align-items: center;
  151. padding: 36rpx 28rpx;
  152. margin: 16rpx 0;
  153. background: linear-gradient(145deg, #F8FAFF 0%, #EFF4FF 100%);
  154. border: 2rpx solid #EAF0FF;
  155. border-radius: 20rpx;
  156. box-shadow: 0 4rpx 12rpx rgba(31, 108, 255, 0.04);
  157. position: relative;
  158. transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  159. }
  160. .list-section .item-list .item .icon-close.data-v-6e833e70 {
  161. position: absolute;
  162. top: -12rpx;
  163. right: -12rpx;
  164. width: 32rpx;
  165. height: 32rpx;
  166. border-radius: 50%;
  167. background-color: #E6F0FF;
  168. display: flex;
  169. justify-content: center;
  170. align-items: center;
  171. z-index: 10;
  172. transition: all 0.2s;
  173. box-shadow: 0 2rpx 6rpx rgba(31, 108, 255, 0.1);
  174. }
  175. .list-section .item-list .item .icon-close.data-v-6e833e70::before, .list-section .item-list .item .icon-close.data-v-6e833e70::after {
  176. content: "";
  177. position: absolute;
  178. width: 14rpx;
  179. height: 3rpx;
  180. background-color: #6B93E0;
  181. border-radius: 2rpx;
  182. transition: all 0.2s;
  183. }
  184. .list-section .item-list .item .icon-close.data-v-6e833e70::before {
  185. transform: rotate(45deg);
  186. }
  187. .list-section .item-list .item .icon-close.data-v-6e833e70::after {
  188. transform: rotate(-45deg);
  189. }
  190. .list-section .item-list .item .icon-close.data-v-6e833e70:active {
  191. background-color: #FFDEE0;
  192. transform: scale(0.9);
  193. }
  194. .list-section .item-list .item .icon-close.data-v-6e833e70:active::before, .list-section .item-list .item .icon-close.data-v-6e833e70:active::after {
  195. background-color: #FF4D4F;
  196. }
  197. .list-section .item-list .item.data-v-6e833e70:active {
  198. background: #EAF2FF;
  199. transform: scale(0.98);
  200. box-shadow: 0 2rpx 6rpx rgba(31, 108, 255, 0.06);
  201. }
  202. .list-section .item-list .item .item-content.data-v-6e833e70 {
  203. flex: 1;
  204. padding-right: 30rpx;
  205. }
  206. .list-section .item-list .item .item-content .title-row.data-v-6e833e70 {
  207. display: flex;
  208. justify-content: flex-start;
  209. align-items: center;
  210. }
  211. .list-section .item-list .item .item-content .title-row .item-title.data-v-6e833e70 {
  212. font-size: 32rpx;
  213. font-weight: 600;
  214. color: #1A1A1A;
  215. }
  216. .custom-modal.data-v-6e833e70 {
  217. position: fixed;
  218. top: 0;
  219. left: 0;
  220. right: 0;
  221. bottom: 0;
  222. z-index: 999;
  223. visibility: hidden;
  224. opacity: 0;
  225. transition: all 0.3s;
  226. display: flex;
  227. justify-content: center;
  228. align-items: center;
  229. }
  230. .custom-modal.is-show.data-v-6e833e70 {
  231. visibility: visible;
  232. opacity: 1;
  233. }
  234. .custom-modal.is-show .modal-content.data-v-6e833e70 {
  235. transform: scale(1);
  236. opacity: 1;
  237. }
  238. .custom-modal .modal-mask.data-v-6e833e70 {
  239. position: absolute;
  240. width: 100%;
  241. height: 100%;
  242. background-color: rgba(0, 0, 0, 0.4);
  243. }
  244. .custom-modal .modal-content.data-v-6e833e70 {
  245. position: relative;
  246. width: 600rpx;
  247. background-color: #FFFFFF;
  248. border-radius: 24rpx;
  249. transform: scale(0.9);
  250. opacity: 0;
  251. transition: all 0.3s;
  252. overflow: hidden;
  253. }
  254. .custom-modal .modal-content .modal-title.data-v-6e833e70 {
  255. font-size: 36rpx;
  256. font-weight: 600;
  257. color: #1A1A1A;
  258. text-align: center;
  259. padding: 40rpx 0 20rpx;
  260. }
  261. .custom-modal .modal-content .modal-body.data-v-6e833e70 {
  262. font-size: 32rpx;
  263. color: #666666;
  264. text-align: center;
  265. padding: 0 40rpx 50rpx;
  266. line-height: 1.5;
  267. }
  268. .custom-modal .modal-content .modal-footer.data-v-6e833e70 {
  269. display: flex;
  270. justify-content: space-between;
  271. align-items: center;
  272. padding: 0 40rpx 40rpx;
  273. }
  274. .custom-modal .modal-content .modal-footer view.data-v-6e833e70 {
  275. flex: 1;
  276. height: 80rpx;
  277. display: flex;
  278. justify-content: center;
  279. align-items: center;
  280. font-size: 30rpx;
  281. font-weight: 500;
  282. border-radius: 40rpx;
  283. transition: all 0.25s;
  284. }
  285. .custom-modal .modal-content .modal-footer view.data-v-6e833e70:active {
  286. transform: scale(0.96);
  287. }
  288. .custom-modal .modal-content .modal-footer .btn-cancel.data-v-6e833e70 {
  289. background-color: #F0F4FC;
  290. color: #555555;
  291. margin-right: 24rpx;
  292. }
  293. .custom-modal .modal-content .modal-footer .btn-confirm.data-v-6e833e70 {
  294. background: linear-gradient(135deg, #1F6CFF 0%, #0052D9 100%);
  295. color: #FFFFFF;
  296. box-shadow: 0 8rpx 16rpx rgba(31, 108, 255, 0.2);
  297. }