home.page.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. :host {
  2. --ion-background-color: #f4f5f8;
  3. }
  4. .header-section {
  5. width: 100%;
  6. height: 180px;
  7. overflow: hidden;
  8. ion-img {
  9. width: 100%;
  10. height: 100%;
  11. object-fit: cover;
  12. }
  13. }
  14. .features-section {
  15. display: flex;
  16. justify-content: space-between;
  17. padding: 16px;
  18. gap: 12px;
  19. .feature-button {
  20. flex: 1;
  21. height: 100px;
  22. margin: 0;
  23. --background: #ffffff;
  24. --background-activated: #f5f5f5;
  25. --border-radius: 20px;
  26. --box-shadow: none;
  27. .button-content {
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. width: 100%;
  32. gap: 8px;
  33. }
  34. .icon-wrapper {
  35. width: 48px;
  36. height: 48px;
  37. border-radius: 16px;
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. &.light-blue {
  42. background: #e3f2fd;
  43. }
  44. &.light-pink {
  45. background: #fce4ec;
  46. }
  47. &.light-purple {
  48. background: #f3e5f5;
  49. }
  50. ion-icon {
  51. font-size: 24px;
  52. color: #333;
  53. }
  54. }
  55. span {
  56. font-size: 14px;
  57. color: #333;
  58. font-weight: 500;
  59. }
  60. }
  61. }
  62. .stories-section {
  63. padding: 0 16px 16px;
  64. ion-card {
  65. margin: 0;
  66. border-radius: 20px;
  67. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  68. .card-header-content {
  69. display: flex;
  70. justify-content: space-between;
  71. align-items: center;
  72. padding: 16px;
  73. ion-card-title {
  74. font-size: 18px;
  75. font-weight: 600;
  76. margin: 0;
  77. }
  78. }
  79. }
  80. ion-list {
  81. ion-item {
  82. padding: 12px;
  83. border-bottom: 1px solid #ddd;
  84. h2 {
  85. margin: 0;
  86. font-size: 14px;
  87. font-weight: 500;
  88. color: #333;
  89. }
  90. p {
  91. margin: 4px 0 0;
  92. font-size: 12px;
  93. color: #666;
  94. }
  95. ion-row {
  96. margin-top: 8px;
  97. }
  98. }
  99. }
  100. .empty-state {
  101. text-align: center;
  102. padding: 32px 16px;
  103. ion-icon {
  104. font-size: 48px;
  105. color: #999;
  106. margin-bottom: 16px;
  107. }
  108. h3 {
  109. margin: 0 0 8px;
  110. font-size: 16px;
  111. color: #333;
  112. }
  113. p {
  114. margin: 0;
  115. font-size: 14px;
  116. color: #666;
  117. }
  118. }
  119. }
  120. // 响应式调整
  121. @media (max-width: 320px) {
  122. .features-section {
  123. .feature-button {
  124. height: 90px;
  125. .icon-wrapper {
  126. width: 40px;
  127. height: 40px;
  128. ion-icon {
  129. font-size: 20px;
  130. }
  131. }
  132. span {
  133. font-size: 12px;
  134. }
  135. }
  136. }
  137. }