pool.wxss 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  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. /* 支付方式选择 */
  297. .payment-method-section {
  298. margin-bottom: 32rpx;
  299. padding-top: 24rpx;
  300. border-top: 1rpx solid #f1f2f6;
  301. }
  302. .payment-method-title {
  303. display: block;
  304. font-size: 26rpx;
  305. font-weight: 600;
  306. color: #222222;
  307. margin-bottom: 20rpx;
  308. }
  309. .payment-methods {
  310. display: flex;
  311. flex-direction: column;
  312. gap: 16rpx;
  313. }
  314. .payment-method-item {
  315. display: flex;
  316. align-items: center;
  317. padding: 24rpx 20rpx;
  318. border: 2rpx solid #e5e7eb;
  319. border-radius: 12rpx;
  320. transition: all 0.3s;
  321. position: relative;
  322. }
  323. .payment-method-item.active {
  324. border-color: #5d55e8;
  325. background: #f7f5ff;
  326. }
  327. .payment-icon {
  328. font-size: 36rpx;
  329. margin-right: 16rpx;
  330. }
  331. .payment-name {
  332. font-size: 28rpx;
  333. font-weight: 500;
  334. color: #222222;
  335. flex: 1;
  336. }
  337. .payment-info {
  338. display: flex;
  339. flex-direction: column;
  340. flex: 1;
  341. }
  342. .points-balance {
  343. font-size: 22rpx;
  344. color: #9ca2b5;
  345. margin-top: 4rpx;
  346. }
  347. .points-cost {
  348. display: flex;
  349. align-items: baseline;
  350. margin-right: 16rpx;
  351. }
  352. .points-amount {
  353. font-size: 32rpx;
  354. font-weight: 700;
  355. color: #ff9500;
  356. }
  357. .points-unit {
  358. font-size: 22rpx;
  359. color: #ff9500;
  360. margin-left: 4rpx;
  361. }
  362. .payment-check {
  363. width: 36rpx;
  364. height: 36rpx;
  365. background: #5d55e8;
  366. border-radius: 50%;
  367. color: #ffffff;
  368. font-size: 24rpx;
  369. display: flex;
  370. align-items: center;
  371. justify-content: center;
  372. }
  373. .pay-button.points-pay {
  374. background: linear-gradient(135deg, #ff9500, #ffb347);
  375. }
  376. .bottom-safe-area {
  377. height: 80rpx;
  378. }
  379. /* 手机号授权弹窗 */
  380. .phone-auth-mask {
  381. position: fixed;
  382. top: 0;
  383. left: 0;
  384. right: 0;
  385. bottom: 0;
  386. background: rgba(0, 0, 0, 0.6);
  387. display: flex;
  388. align-items: center;
  389. justify-content: center;
  390. z-index: 9999;
  391. }
  392. .phone-auth-prompt {
  393. width: 560rpx;
  394. background: #ffffff;
  395. border-radius: 24rpx;
  396. padding: 50rpx 40rpx;
  397. text-align: center;
  398. box-shadow: 0 20rpx 60rpx rgba(0, 0, 0, 0.3);
  399. }
  400. .auth-icon {
  401. font-size: 72rpx;
  402. margin-bottom: 20rpx;
  403. }
  404. .auth-title {
  405. display: block;
  406. font-size: 32rpx;
  407. font-weight: 600;
  408. color: #222222;
  409. margin-bottom: 12rpx;
  410. }
  411. .auth-desc {
  412. display: block;
  413. font-size: 24rpx;
  414. color: #999999;
  415. line-height: 1.5;
  416. margin-bottom: 32rpx;
  417. }
  418. .auth-button {
  419. width: 100%;
  420. height: 80rpx;
  421. background: linear-gradient(135deg, #FF9800, #FFA726);
  422. color: #ffffff;
  423. border-radius: 40rpx;
  424. font-size: 30rpx;
  425. font-weight: 600;
  426. box-shadow: 0 8rpx 24rpx rgba(255, 152, 0, 0.4);
  427. display: flex;
  428. align-items: center;
  429. justify-content: center;
  430. border: none;
  431. padding: 0;
  432. line-height: 80rpx;
  433. }
  434. .auth-button::after {
  435. border: none;
  436. }