/* 地图页标题文字大小修复 */
header h1 {
    font-size: 25px !important; /* 原来是28px，缩小字体 */
    line-height: 1.2;
    margin-right: 15px; /* 确保标题和按钮之间有足够空间 */
    color: #00a8ff !important; /* 强制使用蓝色 */
}

/* 确保标题在较小屏幕上更紧凑 */
@media screen and (max-width: 1200px) {
    header h1 {
        font-size: 22px !important;
    }
}

@media screen and (max-width: 992px) {
    header h1 {
        font-size: 21px !important;
    }
} 