| 1234567891011121314151617181920212223 |
- .album-header {
- margin-top: 20px;
- font-family: Arial, sans-serif;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .album-header img {
- width: 480px;
- aspect-ratio: 2;
- border-radius: 8px;
- }
- /* 响应式设计 */
- @media (max-width: 768px) {
- .album-header img {
- width: 90%; /* 手机端宽度占90% */
- }
- }
|