album.css 289 B

1234567891011121314151617
  1. .album-header {
  2. margin-top: 20px;
  3. font-family: Arial, sans-serif;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: center;
  7. align-items: center;
  8. }
  9. /* 响应式设计 */
  10. @media (max-width: 768px) {
  11. .album-header img {
  12. width: 90%; /* 手机端宽度占90% */
  13. }
  14. }