.map-container {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: relative;
    z-index: 1;
}

#map {
    height: 100%;
    width: 100%;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

/* 缩小版地图容器样式 */
.mini-map-container {
    position: absolute;
    width: 30%;
    height: 30%;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none;
    background: #0a0a2a;
}
</file1>