pool.wxss 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. .page-container {
  2. height: 100vh;
  3. display: flex;
  4. flex-direction: column;
  5. background: #f5f6fb;
  6. }
  7. .scroll-view {
  8. flex: 1;
  9. height: 0;
  10. }
  11. .content-wrapper {
  12. padding: 32rpx;
  13. background: #f5f6fb;
  14. min-height: 100%;
  15. }
  16. .page-title-card {
  17. background: #ffffff;
  18. padding: 30rpx 0;
  19. text-align: center;
  20. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.08);
  21. border-radius: 0;
  22. }
  23. .page-title-text {
  24. font-size: 36rpx;
  25. font-weight: 800;
  26. color: #3F51F7;
  27. letter-spacing: 2rpx;
  28. }
  29. .card {
  30. background: #ffffff;
  31. border-radius: 24rpx;
  32. padding: 32rpx;
  33. box-shadow: 0 16rpx 40rpx rgba(37, 52, 94, 0.08);
  34. margin-bottom: 32rpx;
  35. }
  36. /* 性能指标卡片 */
  37. .performance-card {
  38. display: flex;
  39. justify-content: space-around;
  40. align-items: center;
  41. background: #f7f8fc;
  42. padding: 32rpx 24rpx;
  43. }
  44. .performance-item {
  45. display: flex;
  46. flex-direction: column;
  47. align-items: center;
  48. }
  49. .performance-label {
  50. font-size: 24rpx;
  51. color: #666a7f;
  52. margin-bottom: 12rpx;
  53. }
  54. .performance-value {
  55. font-size: 32rpx;
  56. font-weight: 700;
  57. color: #222222;
  58. }
  59. .performance-value.success {
  60. color: #3abf81;
  61. }
  62. .performance-value.profit {
  63. color: #f16565;
  64. }
  65. /* 超短精选池卡片 */
  66. .pool-card {
  67. padding: 40rpx 32rpx;
  68. }
  69. .pool-header {
  70. display: flex;
  71. align-items: center;
  72. margin-bottom: 16rpx;
  73. }
  74. .pool-icon {
  75. font-size: 32rpx;
  76. margin-right: 12rpx;
  77. }
  78. .pool-title {
  79. font-size: 32rpx;
  80. font-weight: 600;
  81. color: #222222;
  82. }
  83. .pool-desc {
  84. font-size: 26rpx;
  85. color: #666a7f;
  86. margin-bottom: 32rpx;
  87. }
  88. /* 锁定内容 */
  89. .locked-content {
  90. display: flex;
  91. flex-direction: column;
  92. align-items: center;
  93. padding: 60rpx 0 40rpx;
  94. }
  95. .lock-icon-wrapper {
  96. margin-bottom: 32rpx;
  97. }
  98. .lock-icon {
  99. font-size: 80rpx;
  100. }
  101. .lock-text {
  102. font-size: 28rpx;
  103. color: #222222;
  104. margin-bottom: 16rpx;
  105. text-align: center;
  106. }
  107. .lock-desc {
  108. font-size: 24rpx;
  109. color: #9ca2b5;
  110. margin-bottom: 48rpx;
  111. text-align: center;
  112. line-height: 1.6;
  113. }
  114. .unlock-button {
  115. width: 100%;
  116. background: linear-gradient(135deg, #5d55e8, #7568ff);
  117. border-radius: 16rpx;
  118. padding: 28rpx 0;
  119. text-align: center;
  120. box-shadow: 0 12rpx 24rpx rgba(93, 85, 232, 0.4);
  121. }
  122. .unlock-button-text {
  123. font-size: 30rpx;
  124. font-weight: 600;
  125. color: #ffffff;
  126. }
  127. /* 已解锁内容 */
  128. .unlocked-content {
  129. margin-top: 32rpx;
  130. }
  131. .unlocked-tip {
  132. font-size: 26rpx;
  133. color: #3abf81;
  134. margin-bottom: 24rpx;
  135. display: block;
  136. }
  137. .stock-list-placeholder {
  138. padding: 60rpx 0;
  139. text-align: center;
  140. background: #f7f8fc;
  141. border-radius: 16rpx;
  142. }
  143. .placeholder-text {
  144. font-size: 26rpx;
  145. color: #9ca2b5;
  146. }
  147. /* 历史股票池回顾 */
  148. .history-card {
  149. padding: 32rpx;
  150. }
  151. .history-header {
  152. display: flex;
  153. align-items: center;
  154. margin-bottom: 24rpx;
  155. }
  156. .history-icon {
  157. font-size: 28rpx;
  158. margin-right: 12rpx;
  159. }
  160. .history-title {
  161. font-size: 30rpx;
  162. font-weight: 600;
  163. color: #222222;
  164. }
  165. .history-search-row {
  166. display: flex;
  167. align-items: center;
  168. margin-bottom: 16rpx;
  169. }
  170. .history-date-input {
  171. flex: 1;
  172. background: #f7f8fc;
  173. border-radius: 12rpx;
  174. padding: 24rpx 24rpx;
  175. font-size: 26rpx;
  176. color: #222222;
  177. }
  178. .history-search-button {
  179. width: 80rpx;
  180. height: 80rpx;
  181. background: #5d55e8;
  182. border-radius: 12rpx;
  183. display: flex;
  184. align-items: center;
  185. justify-content: center;
  186. margin-left: 16rpx;
  187. }
  188. .search-icon {
  189. font-size: 32rpx;
  190. color: #ffffff;
  191. }
  192. .history-tip {
  193. font-size: 24rpx;
  194. color: #9ca2b5;
  195. line-height: 1.6;
  196. }
  197. /* 购买弹窗 */
  198. .modal-overlay {
  199. position: fixed;
  200. top: 0;
  201. left: 0;
  202. right: 0;
  203. bottom: 0;
  204. background: rgba(0, 0, 0, 0.5);
  205. display: flex;
  206. align-items: center;
  207. justify-content: center;
  208. z-index: 1000;
  209. }
  210. .modal-content {
  211. width: 640rpx;
  212. background: #ffffff;
  213. border-radius: 24rpx;
  214. padding: 40rpx 32rpx 32rpx;
  215. box-sizing: border-box;
  216. }
  217. .modal-header {
  218. display: flex;
  219. justify-content: space-between;
  220. align-items: center;
  221. margin-bottom: 32rpx;
  222. }
  223. .modal-title {
  224. font-size: 32rpx;
  225. font-weight: 600;
  226. color: #222222;
  227. }
  228. .modal-close {
  229. font-size: 48rpx;
  230. color: #9ca2b5;
  231. line-height: 1;
  232. width: 48rpx;
  233. height: 48rpx;
  234. display: flex;
  235. align-items: center;
  236. justify-content: center;
  237. }
  238. .subscription-options {
  239. margin-bottom: 32rpx;
  240. }
  241. .subscription-option {
  242. display: flex;
  243. justify-content: space-between;
  244. align-items: center;
  245. padding: 32rpx 24rpx;
  246. border: 2rpx solid #e5e7eb;
  247. border-radius: 16rpx;
  248. margin-bottom: 20rpx;
  249. transition: all 0.3s;
  250. }
  251. .subscription-option.active {
  252. border-color: #5d55e8;
  253. background: #f7f8fc;
  254. }
  255. .option-info {
  256. display: flex;
  257. flex-direction: column;
  258. }
  259. .option-title {
  260. font-size: 28rpx;
  261. font-weight: 600;
  262. color: #222222;
  263. margin-bottom: 8rpx;
  264. }
  265. .option-desc {
  266. font-size: 24rpx;
  267. color: #9ca2b5;
  268. }
  269. .option-price {
  270. font-size: 36rpx;
  271. font-weight: 700;
  272. color: #f16565;
  273. }
  274. .modal-footer {
  275. display: flex;
  276. flex-direction: column;
  277. align-items: center;
  278. }
  279. .pay-button {
  280. width: 100%;
  281. background: #f16565;
  282. border-radius: 16rpx;
  283. padding: 28rpx 0;
  284. text-align: center;
  285. margin-bottom: 24rpx;
  286. }
  287. .pay-button-text {
  288. font-size: 30rpx;
  289. font-weight: 600;
  290. color: #ffffff;
  291. }
  292. .agreement-text {
  293. font-size: 22rpx;
  294. color: #9ca2b5;
  295. }
  296. .bottom-safe-area {
  297. height: 80rpx;
  298. }