pool.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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-list-placeholder {
  95. padding: 60rpx 0;
  96. text-align: center;
  97. background: #f7f8fc;
  98. border-radius: 16rpx;
  99. }
  100. .placeholder-text {
  101. font-size: 26rpx;
  102. color: #9ca2b5;
  103. }
  104. .bottom-safe-area {
  105. height: 80rpx;
  106. }