strong.wxss 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  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-right {
  107. display: flex;
  108. align-items: center;
  109. gap: 16rpx;
  110. }
  111. .stock-actions {
  112. display: flex;
  113. gap: 12rpx;
  114. }
  115. .action-btn {
  116. width: 56rpx;
  117. height: 56rpx;
  118. border-radius: 50%;
  119. display: flex;
  120. align-items: center;
  121. justify-content: center;
  122. box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.15);
  123. }
  124. .buy-btn {
  125. background: linear-gradient(135deg, #5d55e8, #7568ff);
  126. }
  127. .action-icon {
  128. font-size: 32rpx;
  129. font-weight: 700;
  130. color: #ffffff;
  131. }
  132. /* 历史股票池回顾 */
  133. .history-card {
  134. padding: 32rpx;
  135. }
  136. .history-header {
  137. display: flex;
  138. align-items: center;
  139. margin-bottom: 24rpx;
  140. }
  141. .history-icon {
  142. font-size: 28rpx;
  143. margin-right: 12rpx;
  144. }
  145. .history-title {
  146. font-size: 30rpx;
  147. font-weight: 600;
  148. color: #222222;
  149. }
  150. .history-search-row {
  151. display: flex;
  152. align-items: center;
  153. }
  154. .date-range-row {
  155. display: flex;
  156. align-items: center;
  157. gap: 16rpx;
  158. margin-bottom: 24rpx;
  159. }
  160. .date-picker-half {
  161. flex: 1;
  162. }
  163. .date-separator {
  164. font-size: 26rpx;
  165. color: #666a7f;
  166. padding: 0 8rpx;
  167. }
  168. .date-input {
  169. background: #f7f8fc;
  170. border-radius: 12rpx;
  171. padding: 24rpx;
  172. font-size: 26rpx;
  173. color: #222222;
  174. display: flex;
  175. justify-content: space-between;
  176. align-items: center;
  177. }
  178. .date-text {
  179. flex: 1;
  180. }
  181. .date-icon {
  182. font-size: 28rpx;
  183. margin-left: 12rpx;
  184. }
  185. .history-search-button-full {
  186. width: 100%;
  187. background: linear-gradient(135deg, #5d55e8, #7568ff);
  188. border-radius: 16rpx;
  189. padding: 28rpx 0;
  190. text-align: center;
  191. margin-top: 12rpx;
  192. margin-bottom: 24rpx;
  193. box-shadow: 0 8rpx 20rpx rgba(93, 85, 232, 0.3);
  194. }
  195. .search-button-text {
  196. font-size: 28rpx;
  197. font-weight: 600;
  198. color: #ffffff;
  199. }
  200. .history-tip {
  201. font-size: 24rpx;
  202. color: #9ca2b5;
  203. line-height: 1.6;
  204. }
  205. .history-search-button {
  206. width: 80rpx;
  207. height: 80rpx;
  208. background: #5d55e8;
  209. border-radius: 12rpx;
  210. display: flex;
  211. align-items: center;
  212. justify-content: center;
  213. margin-left: 16rpx;
  214. }
  215. .search-icon {
  216. font-size: 32rpx;
  217. color: #ffffff;
  218. }
  219. /* 弹窗样式 */
  220. .modal-overlay {
  221. position: fixed;
  222. top: 0;
  223. left: 0;
  224. right: 0;
  225. bottom: 0;
  226. background: rgba(0, 0, 0, 0.5);
  227. display: flex;
  228. align-items: center;
  229. justify-content: center;
  230. z-index: 1000;
  231. }
  232. .modal-content {
  233. width: 640rpx;
  234. background: #ffffff;
  235. border-radius: 24rpx;
  236. padding: 48rpx 40rpx 40rpx;
  237. box-sizing: border-box;
  238. position: relative;
  239. }
  240. .modal-close-btn {
  241. position: absolute;
  242. top: 24rpx;
  243. right: 24rpx;
  244. width: 48rpx;
  245. height: 48rpx;
  246. display: flex;
  247. align-items: center;
  248. justify-content: center;
  249. z-index: 10;
  250. }
  251. .close-icon {
  252. font-size: 36rpx;
  253. color: #9ca2b5;
  254. font-weight: 300;
  255. line-height: 1;
  256. }
  257. .reward-header {
  258. display: flex;
  259. flex-direction: column;
  260. align-items: center;
  261. margin-bottom: 40rpx;
  262. }
  263. .reward-icon {
  264. font-size: 64rpx;
  265. margin-bottom: 16rpx;
  266. }
  267. .reward-title {
  268. font-size: 32rpx;
  269. font-weight: 600;
  270. color: #222222;
  271. }
  272. .reward-info {
  273. margin-bottom: 40rpx;
  274. }
  275. .reward-desc {
  276. display: block;
  277. font-size: 26rpx;
  278. color: #666a7f;
  279. text-align: center;
  280. margin-bottom: 24rpx;
  281. line-height: 1.6;
  282. }
  283. .reward-amount-simple {
  284. display: flex;
  285. justify-content: center;
  286. align-items: center;
  287. gap: 8rpx;
  288. }
  289. .amount-label {
  290. font-size: 28rpx;
  291. color: #666a7f;
  292. }
  293. .amount-value {
  294. font-size: 36rpx;
  295. font-weight: 700;
  296. color: #f16565;
  297. }
  298. .modal-footer {
  299. display: flex;
  300. flex-direction: column;
  301. align-items: center;
  302. }
  303. .pay-button {
  304. width: 100%;
  305. background: linear-gradient(135deg, #5d55e8, #7568ff);
  306. border-radius: 16rpx;
  307. padding: 28rpx 0;
  308. text-align: center;
  309. margin-bottom: 24rpx;
  310. box-shadow: 0 8rpx 20rpx rgba(93, 85, 232, 0.3);
  311. }
  312. .pay-button-text {
  313. font-size: 30rpx;
  314. font-weight: 600;
  315. color: #ffffff;
  316. }
  317. .agreement-text {
  318. font-size: 22rpx;
  319. color: #9ca2b5;
  320. }
  321. .bottom-safe-area {
  322. height: 80rpx;
  323. }
  324. /* 锁定内容样式 */
  325. .locked-content {
  326. display: flex;
  327. flex-direction: column;
  328. align-items: center;
  329. padding: 60rpx 0 40rpx;
  330. }
  331. .lock-icon-wrapper {
  332. margin-bottom: 32rpx;
  333. }
  334. .locked-content .lock-icon {
  335. font-size: 80rpx;
  336. }
  337. .lock-text {
  338. font-size: 28rpx;
  339. color: #222222;
  340. margin-bottom: 16rpx;
  341. text-align: center;
  342. }
  343. .lock-desc {
  344. font-size: 24rpx;
  345. color: #9ca2b5;
  346. margin-bottom: 48rpx;
  347. text-align: center;
  348. line-height: 1.6;
  349. }
  350. .locked-content .unlock-button {
  351. width: 100%;
  352. background: linear-gradient(135deg, #5d55e8, #7568ff);
  353. border-radius: 16rpx;
  354. padding: 28rpx 0;
  355. text-align: center;
  356. box-shadow: 0 12rpx 24rpx rgba(93, 85, 232, 0.4);
  357. }
  358. .locked-content .unlock-button-text {
  359. font-size: 30rpx;
  360. font-weight: 600;
  361. color: #ffffff;
  362. }
  363. /* 已解锁内容样式 */
  364. .unlocked-content {
  365. margin-top: 32rpx;
  366. }
  367. .unlocked-tip {
  368. font-size: 26rpx;
  369. color: #3abf81;
  370. margin-bottom: 24rpx;
  371. display: block;
  372. }
  373. .bottom-safe-area {
  374. height: 80rpx;
  375. }