strong.wxss 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  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. .history-date-input {
  184. flex: 1;
  185. background: #f7f8fc;
  186. border-radius: 12rpx;
  187. padding: 24rpx 24rpx;
  188. font-size: 26rpx;
  189. color: #222222;
  190. }
  191. .history-search-button {
  192. width: 80rpx;
  193. height: 80rpx;
  194. background: #5d55e8;
  195. border-radius: 12rpx;
  196. display: flex;
  197. align-items: center;
  198. justify-content: center;
  199. margin-left: 16rpx;
  200. }
  201. .search-icon {
  202. font-size: 32rpx;
  203. color: #ffffff;
  204. }
  205. /* 弹窗样式 */
  206. .modal-overlay {
  207. position: fixed;
  208. top: 0;
  209. left: 0;
  210. right: 0;
  211. bottom: 0;
  212. background: rgba(0, 0, 0, 0.5);
  213. display: flex;
  214. align-items: center;
  215. justify-content: center;
  216. z-index: 1000;
  217. }
  218. .modal-content {
  219. width: 640rpx;
  220. background: #ffffff;
  221. border-radius: 24rpx;
  222. padding: 40rpx 32rpx 32rpx;
  223. box-sizing: border-box;
  224. }
  225. .modal-header {
  226. display: flex;
  227. justify-content: space-between;
  228. align-items: center;
  229. margin-bottom: 32rpx;
  230. }
  231. .modal-title {
  232. font-size: 32rpx;
  233. font-weight: 600;
  234. color: #222222;
  235. }
  236. .modal-close {
  237. font-size: 48rpx;
  238. color: #9ca2b5;
  239. line-height: 1;
  240. width: 48rpx;
  241. height: 48rpx;
  242. display: flex;
  243. align-items: center;
  244. justify-content: center;
  245. }
  246. .modal-footer {
  247. display: flex;
  248. flex-direction: column;
  249. align-items: center;
  250. }
  251. .bottom-safe-area {
  252. height: 80rpx;
  253. }
  254. /* 锁定内容样式 */
  255. .locked-content {
  256. display: flex;
  257. flex-direction: column;
  258. align-items: center;
  259. padding: 60rpx 0 40rpx;
  260. }
  261. .lock-icon-wrapper {
  262. margin-bottom: 32rpx;
  263. }
  264. .locked-content .lock-icon {
  265. font-size: 80rpx;
  266. }
  267. .lock-text {
  268. font-size: 28rpx;
  269. color: #222222;
  270. margin-bottom: 16rpx;
  271. text-align: center;
  272. }
  273. .lock-desc {
  274. font-size: 24rpx;
  275. color: #9ca2b5;
  276. margin-bottom: 48rpx;
  277. text-align: center;
  278. line-height: 1.6;
  279. }
  280. .locked-content .unlock-button {
  281. width: 100%;
  282. background: linear-gradient(135deg, #5d55e8, #7568ff);
  283. border-radius: 16rpx;
  284. padding: 28rpx 0;
  285. text-align: center;
  286. box-shadow: 0 12rpx 24rpx rgba(93, 85, 232, 0.4);
  287. }
  288. .locked-content .unlock-button-text {
  289. font-size: 30rpx;
  290. font-weight: 600;
  291. color: #ffffff;
  292. }
  293. /* 已解锁内容样式 */
  294. .unlocked-content {
  295. margin-top: 32rpx;
  296. }
  297. .unlocked-tip {
  298. font-size: 26rpx;
  299. color: #3abf81;
  300. margin-bottom: 24rpx;
  301. display: block;
  302. }
  303. /* 购买弹窗样式 */
  304. .subscription-options {
  305. margin-bottom: 32rpx;
  306. }
  307. .subscription-option {
  308. display: flex;
  309. justify-content: space-between;
  310. align-items: center;
  311. padding: 32rpx 24rpx;
  312. border: 2rpx solid #e5e7eb;
  313. border-radius: 16rpx;
  314. margin-bottom: 20rpx;
  315. transition: all 0.3s;
  316. }
  317. .subscription-option.active {
  318. border-color: #5d55e8;
  319. background: #f7f8fc;
  320. }
  321. .option-info {
  322. display: flex;
  323. flex-direction: column;
  324. }
  325. .option-title {
  326. font-size: 28rpx;
  327. font-weight: 600;
  328. color: #222222;
  329. margin-bottom: 8rpx;
  330. }
  331. .option-desc {
  332. font-size: 24rpx;
  333. color: #9ca2b5;
  334. }
  335. .option-price {
  336. font-size: 36rpx;
  337. font-weight: 700;
  338. color: #f16565;
  339. }
  340. /* 支付方式选择 */
  341. .payment-method-section {
  342. margin-bottom: 32rpx;
  343. padding-top: 24rpx;
  344. border-top: 1rpx solid #f1f2f6;
  345. }
  346. .payment-method-title {
  347. display: block;
  348. font-size: 26rpx;
  349. font-weight: 600;
  350. color: #222222;
  351. margin-bottom: 20rpx;
  352. }
  353. .payment-methods {
  354. display: flex;
  355. flex-direction: column;
  356. gap: 16rpx;
  357. }
  358. .payment-method-item {
  359. display: flex;
  360. align-items: center;
  361. padding: 24rpx 20rpx;
  362. border: 2rpx solid #e5e7eb;
  363. border-radius: 12rpx;
  364. transition: all 0.3s;
  365. position: relative;
  366. }
  367. .payment-method-item.active {
  368. border-color: #5d55e8;
  369. background: #f7f5ff;
  370. }
  371. .payment-icon {
  372. font-size: 36rpx;
  373. margin-right: 16rpx;
  374. }
  375. .payment-name {
  376. font-size: 28rpx;
  377. font-weight: 500;
  378. color: #222222;
  379. flex: 1;
  380. }
  381. .payment-check {
  382. width: 36rpx;
  383. height: 36rpx;
  384. background: #5d55e8;
  385. border-radius: 50%;
  386. color: #ffffff;
  387. font-size: 24rpx;
  388. display: flex;
  389. align-items: center;
  390. justify-content: center;
  391. }
  392. .pay-button {
  393. width: 100%;
  394. background: #f16565;
  395. border-radius: 16rpx;
  396. padding: 28rpx 0;
  397. text-align: center;
  398. margin-bottom: 24rpx;
  399. }
  400. .pay-button-text {
  401. font-size: 30rpx;
  402. font-weight: 600;
  403. color: #ffffff;
  404. }
  405. .agreement-text {
  406. font-size: 22rpx;
  407. color: #9ca2b5;
  408. }