strong.wxss 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  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. .card {
  17. background: #ffffff;
  18. border-radius: 24rpx;
  19. padding: 32rpx;
  20. box-shadow: 0 16rpx 40rpx rgba(37, 52, 94, 0.08);
  21. margin-bottom: 32rpx;
  22. }
  23. /* 强势趋势池标题区域 */
  24. .pool-header-section {
  25. margin-bottom: 24rpx;
  26. }
  27. .pool-header {
  28. display: flex;
  29. align-items: center;
  30. margin-bottom: 12rpx;
  31. }
  32. .pool-icon {
  33. font-size: 32rpx;
  34. margin-right: 12rpx;
  35. }
  36. .pool-title {
  37. font-size: 32rpx;
  38. font-weight: 600;
  39. color: #222222;
  40. }
  41. .pool-desc {
  42. font-size: 26rpx;
  43. color: #666a7f;
  44. }
  45. /* 性能指标卡片 */
  46. .performance-card {
  47. display: flex;
  48. justify-content: space-around;
  49. align-items: center;
  50. background: #f7f8fc;
  51. padding: 32rpx 24rpx;
  52. }
  53. .performance-item {
  54. display: flex;
  55. flex-direction: column;
  56. align-items: center;
  57. }
  58. .performance-label {
  59. font-size: 24rpx;
  60. color: #666a7f;
  61. margin-bottom: 12rpx;
  62. }
  63. .performance-value {
  64. font-size: 32rpx;
  65. font-weight: 700;
  66. color: #222222;
  67. }
  68. .performance-value.success {
  69. color: #3abf81;
  70. }
  71. .performance-value.profit {
  72. color: #f16565;
  73. }
  74. /* 股票列表卡片 */
  75. .stock-list-card {
  76. padding: 32rpx;
  77. }
  78. .stock-item {
  79. display: flex;
  80. justify-content: space-between;
  81. align-items: center;
  82. padding: 24rpx 0;
  83. border-bottom: 1rpx solid #f1f2f6;
  84. }
  85. .stock-item:last-child {
  86. border-bottom: none;
  87. }
  88. .stock-info {
  89. flex: 1;
  90. }
  91. .stock-name-row {
  92. display: flex;
  93. align-items: center;
  94. margin-bottom: 12rpx;
  95. }
  96. .stock-name {
  97. font-size: 28rpx;
  98. font-weight: 600;
  99. color: #222222;
  100. margin-right: 16rpx;
  101. }
  102. .stock-code {
  103. font-size: 24rpx;
  104. color: #9ca2b5;
  105. }
  106. .stock-price-row {
  107. display: flex;
  108. align-items: center;
  109. }
  110. .stock-price-label {
  111. font-size: 24rpx;
  112. color: #9ca2b5;
  113. margin-right: 8rpx;
  114. }
  115. .stock-price {
  116. font-size: 26rpx;
  117. font-weight: 600;
  118. color: #222222;
  119. }
  120. .stock-right {
  121. display: flex;
  122. align-items: center;
  123. gap: 16rpx;
  124. }
  125. .stock-score-badge {
  126. background: #e7f7ef;
  127. border-radius: 20rpx;
  128. padding: 8rpx 16rpx;
  129. min-width: 80rpx;
  130. text-align: center;
  131. }
  132. .stock-score {
  133. font-size: 26rpx;
  134. font-weight: 700;
  135. color: #3abf81;
  136. }
  137. .stock-actions {
  138. display: flex;
  139. gap: 12rpx;
  140. }
  141. .action-btn {
  142. width: 56rpx;
  143. height: 56rpx;
  144. border-radius: 50%;
  145. display: flex;
  146. align-items: center;
  147. justify-content: center;
  148. box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.15);
  149. }
  150. .buy-btn {
  151. background: #3abf81;
  152. }
  153. .sell-btn {
  154. background: #f16565;
  155. }
  156. .action-icon {
  157. font-size: 32rpx;
  158. font-weight: 700;
  159. color: #ffffff;
  160. }
  161. /* 历史股票池回顾 */
  162. .history-card {
  163. padding: 32rpx;
  164. }
  165. .history-header {
  166. display: flex;
  167. align-items: center;
  168. margin-bottom: 24rpx;
  169. }
  170. .history-icon {
  171. font-size: 28rpx;
  172. margin-right: 12rpx;
  173. }
  174. .history-title {
  175. font-size: 30rpx;
  176. font-weight: 600;
  177. color: #222222;
  178. }
  179. .history-search-row {
  180. display: flex;
  181. align-items: center;
  182. }
  183. .date-range-row {
  184. display: flex;
  185. align-items: center;
  186. gap: 16rpx;
  187. margin-bottom: 24rpx;
  188. }
  189. .date-picker-half {
  190. flex: 1;
  191. }
  192. .date-separator {
  193. font-size: 26rpx;
  194. color: #666a7f;
  195. padding: 0 8rpx;
  196. }
  197. .date-input {
  198. background: #f7f8fc;
  199. border-radius: 12rpx;
  200. padding: 24rpx;
  201. font-size: 26rpx;
  202. color: #222222;
  203. display: flex;
  204. justify-content: space-between;
  205. align-items: center;
  206. }
  207. .date-text {
  208. flex: 1;
  209. }
  210. .date-icon {
  211. font-size: 28rpx;
  212. margin-left: 12rpx;
  213. }
  214. .history-search-button-full {
  215. width: 100%;
  216. background: linear-gradient(135deg, #5d55e8, #7568ff);
  217. border-radius: 16rpx;
  218. padding: 28rpx 0;
  219. text-align: center;
  220. margin-top: 12rpx;
  221. box-shadow: 0 8rpx 20rpx rgba(93, 85, 232, 0.3);
  222. }
  223. .search-button-text {
  224. font-size: 28rpx;
  225. font-weight: 600;
  226. color: #ffffff;
  227. }
  228. .history-tip {
  229. font-size: 24rpx;
  230. color: #9ca2b5;
  231. line-height: 1.6;
  232. }
  233. .history-search-button {
  234. width: 80rpx;
  235. height: 80rpx;
  236. background: #5d55e8;
  237. border-radius: 12rpx;
  238. display: flex;
  239. align-items: center;
  240. justify-content: center;
  241. margin-left: 16rpx;
  242. }
  243. .search-icon {
  244. font-size: 32rpx;
  245. color: #ffffff;
  246. }
  247. /* 弹窗样式 */
  248. .modal-overlay {
  249. position: fixed;
  250. top: 0;
  251. left: 0;
  252. right: 0;
  253. bottom: 0;
  254. background: rgba(0, 0, 0, 0.5);
  255. display: flex;
  256. align-items: center;
  257. justify-content: center;
  258. z-index: 1000;
  259. }
  260. .modal-content {
  261. width: 640rpx;
  262. background: #ffffff;
  263. border-radius: 24rpx;
  264. padding: 40rpx 32rpx 32rpx;
  265. box-sizing: border-box;
  266. }
  267. .modal-header {
  268. display: flex;
  269. justify-content: space-between;
  270. align-items: center;
  271. margin-bottom: 32rpx;
  272. }
  273. .modal-title {
  274. font-size: 32rpx;
  275. font-weight: 600;
  276. color: #222222;
  277. }
  278. .modal-close {
  279. font-size: 48rpx;
  280. color: #9ca2b5;
  281. line-height: 1;
  282. width: 48rpx;
  283. height: 48rpx;
  284. display: flex;
  285. align-items: center;
  286. justify-content: center;
  287. }
  288. .modal-footer {
  289. display: flex;
  290. flex-direction: column;
  291. align-items: center;
  292. }
  293. .bottom-safe-area {
  294. height: 80rpx;
  295. }
  296. /* 锁定内容样式 */
  297. .locked-content {
  298. display: flex;
  299. flex-direction: column;
  300. align-items: center;
  301. padding: 60rpx 0 40rpx;
  302. }
  303. .lock-icon-wrapper {
  304. margin-bottom: 32rpx;
  305. }
  306. .locked-content .lock-icon {
  307. font-size: 80rpx;
  308. }
  309. .lock-text {
  310. font-size: 28rpx;
  311. color: #222222;
  312. margin-bottom: 16rpx;
  313. text-align: center;
  314. }
  315. .lock-desc {
  316. font-size: 24rpx;
  317. color: #9ca2b5;
  318. margin-bottom: 48rpx;
  319. text-align: center;
  320. line-height: 1.6;
  321. }
  322. .locked-content .unlock-button {
  323. width: 100%;
  324. background: linear-gradient(135deg, #5d55e8, #7568ff);
  325. border-radius: 16rpx;
  326. padding: 28rpx 0;
  327. text-align: center;
  328. box-shadow: 0 12rpx 24rpx rgba(93, 85, 232, 0.4);
  329. }
  330. .locked-content .unlock-button-text {
  331. font-size: 30rpx;
  332. font-weight: 600;
  333. color: #ffffff;
  334. }
  335. /* 已解锁内容样式 */
  336. .unlocked-content {
  337. margin-top: 32rpx;
  338. }
  339. .unlocked-tip {
  340. font-size: 26rpx;
  341. color: #3abf81;
  342. margin-bottom: 24rpx;
  343. display: block;
  344. }
  345. /* 购买弹窗样式 */
  346. .subscription-options {
  347. margin-bottom: 32rpx;
  348. }
  349. .subscription-option {
  350. display: flex;
  351. justify-content: space-between;
  352. align-items: center;
  353. padding: 32rpx 24rpx;
  354. border: 2rpx solid #e5e7eb;
  355. border-radius: 16rpx;
  356. margin-bottom: 20rpx;
  357. transition: all 0.3s;
  358. }
  359. .subscription-option.active {
  360. border-color: #5d55e8;
  361. background: #f7f8fc;
  362. }
  363. .option-info {
  364. display: flex;
  365. flex-direction: column;
  366. }
  367. .option-title {
  368. font-size: 28rpx;
  369. font-weight: 600;
  370. color: #222222;
  371. margin-bottom: 8rpx;
  372. }
  373. .option-desc {
  374. font-size: 24rpx;
  375. color: #9ca2b5;
  376. }
  377. .option-price {
  378. font-size: 36rpx;
  379. font-weight: 700;
  380. color: #f16565;
  381. }
  382. /* 支付方式选择 */
  383. .payment-method-section {
  384. margin-bottom: 32rpx;
  385. padding-top: 24rpx;
  386. border-top: 1rpx solid #f1f2f6;
  387. }
  388. .payment-method-title {
  389. display: block;
  390. font-size: 26rpx;
  391. font-weight: 600;
  392. color: #222222;
  393. margin-bottom: 20rpx;
  394. }
  395. .payment-methods {
  396. display: flex;
  397. flex-direction: column;
  398. gap: 16rpx;
  399. }
  400. .payment-method-item {
  401. display: flex;
  402. align-items: center;
  403. padding: 24rpx 20rpx;
  404. border: 2rpx solid #e5e7eb;
  405. border-radius: 12rpx;
  406. transition: all 0.3s;
  407. position: relative;
  408. }
  409. .payment-method-item.active {
  410. border-color: #5d55e8;
  411. background: #f7f5ff;
  412. }
  413. .payment-icon {
  414. font-size: 36rpx;
  415. margin-right: 16rpx;
  416. }
  417. .payment-name {
  418. font-size: 28rpx;
  419. font-weight: 500;
  420. color: #222222;
  421. flex: 1;
  422. }
  423. .payment-check {
  424. width: 36rpx;
  425. height: 36rpx;
  426. background: #5d55e8;
  427. border-radius: 50%;
  428. color: #ffffff;
  429. font-size: 24rpx;
  430. display: flex;
  431. align-items: center;
  432. justify-content: center;
  433. }
  434. .pay-button {
  435. width: 100%;
  436. background: #f16565;
  437. border-radius: 16rpx;
  438. padding: 28rpx 0;
  439. text-align: center;
  440. margin-bottom: 24rpx;
  441. }
  442. .pay-button-text {
  443. font-size: 30rpx;
  444. font-weight: 600;
  445. color: #ffffff;
  446. }
  447. .agreement-text {
  448. font-size: 22rpx;
  449. color: #9ca2b5;
  450. }