﻿h1 {
    font-size: 19px; /* 默认大小 */
}

@media (max-width: 600px) {
    h1 {
        font-size: 18px; /* 小屏幕上的大小 */
    }
}
