* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

#map-container {
    width: 100%;
    height: 100%;
}

/* InfoWindow 自定义弹窗样式 */
.shop-info {
    width: 260px;
    max-height: 360px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.shop-info img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.shop-info h3 {
    font-size: 16px;
    color: #333;
    margin: 10px 0 6px;
    line-height: 1.3;
}

.shop-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
