health-community.page.scss 900 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* src/app/pages/health-community/health-community.page.scss */
  2. ion-content {
  3. --background: #f5f6fa;
  4. padding-top: 20px; /* 确保内容区有合适的顶部间距 */
  5. }
  6. ion-list {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. ion-item {
  11. --padding-start: 16px;
  12. --padding-end: 16px;
  13. --border-radius: 8px;
  14. --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  15. margin-bottom: 10px;
  16. background: white;
  17. padding-top: 10px;
  18. padding-bottom: 10px;
  19. display: flex;
  20. align-items: center;
  21. }
  22. ion-thumbnail img {
  23. width: 60px;
  24. height: 60px;
  25. object-fit: cover;
  26. border-radius: 8px;
  27. }
  28. ion-label h2 {
  29. font-size: 18px;
  30. font-weight: bold;
  31. margin-bottom: 4px;
  32. }
  33. ion-label p {
  34. font-size: 14px;
  35. color: #6c757d;
  36. margin: 2px 0;
  37. }
  38. ion-fab-button {
  39. --background: #4a90e2;
  40. --color: white;
  41. --border-radius: 50%;
  42. }