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