/* 移除浏览器默认的边距和内边距 */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'LXGW WenKai', sans-serif; /* 全局设置字体 */
}

/* 让地图容器铺满整个屏幕 */
#map {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0; /* 设置一个背景色，防止地图加载时白屏 */
}

/* 优化弹窗样式 */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.leaflet-popup-content {
    font-family: 'LXGW WenKai', sans-serif; /* 弹窗内也使用此字体 */
    line-height: 1.6;
    font-size: 14px; /* 调整字体大小，使其在弹窗中更易读 */
}
.leaflet-popup-content h3 {
    margin: 0 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 18px; /* 调整标题字体大小 */
}