strong.wxss 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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. .pool-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. margin-bottom: 24rpx;
  222. box-shadow: 0 8rpx 20rpx rgba(93, 85, 232, 0.3);
  223. }
  224. .search-button-text {
  225. font-size: 28rpx;
  226. font-weight: 600;
  227. color: #ffffff;
  228. }
  229. .history-tip {
  230. font-size: 24rpx;
  231. color: #9ca2b5;
  232. line-height: 1.6;
  233. }
  234. .history-search-button {
  235. width: 80rpx;
  236. height: 80rpx;
  237. background: #5d55e8;
  238. border-radius: 12rpx;
  239. display: flex;
  240. align-items: center;
  241. justify-content: center;
  242. margin-left: 16rpx;
  243. }
  244. .search-icon {
  245. font-size: 32rpx;
  246. color: #ffffff;
  247. }
  248. /* 弹窗样式 */
  249. .modal-overlay {
  250. position: fixed;
  251. top: 0;
  252. left: 0;
  253. right: 0;
  254. bottom: 0;
  255. background: rgba(0, 0, 0, 0.5);
  256. display: flex;
  257. align-items: center;
  258. justify-content: center;
  259. z-index: 1000;
  260. }
  261. .modal-content {
  262. width: 640rpx;
  263. background: #ffffff;
  264. border-radius: 24rpx;
  265. padding: 48rpx 40rpx 40rpx;
  266. box-sizing: border-box;
  267. position: relative;
  268. }
  269. .modal-close-btn {
  270. position: absolute;
  271. top: 24rpx;
  272. right: 24rpx;
  273. width: 48rpx;
  274. height: 48rpx;
  275. display: flex;
  276. align-items: center;
  277. justify-content: center;
  278. z-index: 10;
  279. }
  280. .close-icon {
  281. font-size: 36rpx;
  282. color: #9ca2b5;
  283. font-weight: 300;
  284. line-height: 1;
  285. }
  286. .reward-header {
  287. display: flex;
  288. flex-direction: column;
  289. align-items: center;
  290. margin-bottom: 40rpx;
  291. }
  292. .reward-icon {
  293. font-size: 64rpx;
  294. margin-bottom: 16rpx;
  295. }
  296. .reward-title {
  297. font-size: 32rpx;
  298. font-weight: 600;
  299. color: #222222;
  300. }
  301. .reward-info {
  302. margin-bottom: 40rpx;
  303. }
  304. .reward-desc {
  305. display: block;
  306. font-size: 26rpx;
  307. color: #666a7f;
  308. text-align: center;
  309. margin-bottom: 24rpx;
  310. line-height: 1.6;
  311. }
  312. .reward-amount-simple {
  313. display: flex;
  314. justify-content: center;
  315. align-items: center;
  316. gap: 8rpx;
  317. }
  318. .amount-label {
  319. font-size: 28rpx;
  320. color: #666a7f;
  321. }
  322. .amount-value {
  323. font-size: 36rpx;
  324. font-weight: 700;
  325. color: #f16565;
  326. }
  327. .modal-footer {
  328. display: flex;
  329. flex-direction: column;
  330. align-items: center;
  331. }
  332. .pay-button {
  333. width: 100%;
  334. background: linear-gradient(135deg, #5d55e8, #7568ff);
  335. border-radius: 16rpx;
  336. padding: 28rpx 0;
  337. text-align: center;
  338. margin-bottom: 24rpx;
  339. box-shadow: 0 8rpx 20rpx rgba(93, 85, 232, 0.3);
  340. }
  341. .pay-button-text {
  342. font-size: 30rpx;
  343. font-weight: 600;
  344. color: #ffffff;
  345. }
  346. .agreement-text {
  347. font-size: 22rpx;
  348. color: #9ca2b5;
  349. }
  350. .bottom-safe-area {
  351. height: 80rpx;
  352. }
  353. /* 锁定内容样式 */
  354. .locked-content {
  355. display: flex;
  356. flex-direction: column;
  357. align-items: center;
  358. padding: 60rpx 0 40rpx;
  359. }
  360. .lock-icon-wrapper {
  361. margin-bottom: 32rpx;
  362. }
  363. .locked-content .lock-icon {
  364. font-size: 80rpx;
  365. }
  366. .lock-text {
  367. font-size: 28rpx;
  368. color: #222222;
  369. margin-bottom: 16rpx;
  370. text-align: center;
  371. }
  372. .lock-desc {
  373. font-size: 24rpx;
  374. color: #9ca2b5;
  375. margin-bottom: 48rpx;
  376. text-align: center;
  377. line-height: 1.6;
  378. }
  379. .locked-content .unlock-button {
  380. width: 100%;
  381. background: linear-gradient(135deg, #5d55e8, #7568ff);
  382. border-radius: 16rpx;
  383. padding: 28rpx 0;
  384. text-align: center;
  385. box-shadow: 0 12rpx 24rpx rgba(93, 85, 232, 0.4);
  386. }
  387. .locked-content .unlock-button-text {
  388. font-size: 30rpx;
  389. font-weight: 600;
  390. color: #ffffff;
  391. }
  392. /* 已解锁内容样式 */
  393. .unlocked-content {
  394. margin-top: 32rpx;
  395. }
  396. .unlocked-tip {
  397. font-size: 26rpx;
  398. color: #3abf81;
  399. margin-bottom: 24rpx;
  400. display: block;
  401. }
  402. .bottom-safe-area {
  403. height: 80rpx;
  404. }