/* 高德地图容器样式 */
#amap-container {
    width: 100%;
    height: 400px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    #amap-container {
        height: 300px;
    }
}

/* 信息窗体样式 */
.amap-info-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.amap-info-content h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.amap-info-content p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

/* 加载提示 */
.amap-location-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

