/* 基础样式 */
@font-face {
    font-family: 'PingFang SC Medium';
    src: url('../font/PingFangSC-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'PingFang SC Medium','San Francisco', Helvetica, Arial, sans-serif;
    overflow: hidden;
}

#map-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #f5f5f5;
}

/* 地图容器 */
#map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 768px) {
    #map {
        height: calc(100vh - 60px);
    }
}

/* 加载动画 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: #666;
    animation: fadeIn 0.5s ease;
}
