strong.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. .pool-header-section {
  24. margin-bottom: 24rpx;
  25. }
  26. .pool-header {
  27. display: flex;
  28. align-items: center;
  29. margin-bottom: 12rpx;
  30. }
  31. .pool-icon {
  32. font-size: 32rpx;
  33. margin-right: 12rpx;
  34. }
  35. .pool-title {
  36. font-size: 32rpx;
  37. font-weight: 600;
  38. color: #222222;
  39. }
  40. .pool-desc {
  41. font-size: 26rpx;
  42. color: #666a7f;
  43. }
  44. .pool-card {
  45. padding: 32rpx;
  46. }
  47. .locked-content {
  48. display: flex;
  49. flex-direction: column;
  50. align-items: center;
  51. padding: 60rpx 0 40rpx;
  52. }
  53. .lock-icon-wrapper {
  54. margin-bottom: 32rpx;
  55. }
  56. .lock-icon {
  57. font-size: 80rpx;
  58. }
  59. .lock-text {
  60. font-size: 28rpx;
  61. color: #222222;
  62. margin-bottom: 16rpx;
  63. text-align: center;
  64. }
  65. .lock-desc {
  66. font-size: 24rpx;
  67. color: #9ca2b5;
  68. margin-bottom: 48rpx;
  69. text-align: center;
  70. line-height: 1.6;
  71. }
  72. .unlock-button {
  73. width: 100%;
  74. background: linear-gradient(135deg, #5d55e8, #7568ff);
  75. border-radius: 16rpx;
  76. padding: 28rpx 0;
  77. text-align: center;
  78. box-shadow: 0 12rpx 24rpx rgba(93, 85, 232, 0.4);
  79. }
  80. .unlock-button-text {
  81. font-size: 30rpx;
  82. font-weight: 600;
  83. color: #ffffff;
  84. }
  85. .unlocked-content {
  86. margin-top: 32rpx;
  87. }
  88. .unlocked-tip {
  89. font-size: 26rpx;
  90. color: #3abf81;
  91. margin-bottom: 24rpx;
  92. display: block;
  93. }
  94. .stock-item {
  95. display: flex;
  96. justify-content: space-between;
  97. align-items: center;
  98. padding: 24rpx 0;
  99. border-bottom: 1rpx solid #f1f2f6;
  100. }
  101. .stock-item:last-child {
  102. border-bottom: none;
  103. }
  104. .stock-info {
  105. flex: 1;
  106. }
  107. .stock-name-row {
  108. display: flex;
  109. align-items: center;
  110. }
  111. .stock-name {
  112. font-size: 28rpx;
  113. font-weight: 600;
  114. color: #222222;
  115. margin-right: 16rpx;
  116. }
  117. .stock-code {
  118. font-size: 24rpx;
  119. color: #9ca2b5;
  120. }
  121. .stock-right {
  122. display: flex;
  123. align-items: center;
  124. }
  125. .action-btn {
  126. width: 56rpx;
  127. height: 56rpx;
  128. border-radius: 50%;
  129. display: flex;
  130. align-items: center;
  131. justify-content: center;
  132. box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.15);
  133. }
  134. .buy-btn {
  135. background: linear-gradient(135deg, #5d55e8, #7568ff);
  136. }
  137. .action-icon {
  138. font-size: 32rpx;
  139. font-weight: 700;
  140. color: #ffffff;
  141. }
  142. .bottom-safe-area {
  143. height: 80rpx;
  144. }