* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    background: #fff;
}

.map-container {
    width: 100%;
    height: 650px;
}

.map-popup {
    width: 260px;
    font-size: 14px;
    line-height: 24px;
    color: #333;
}

.map-popup-title {
    margin-bottom: 6px;
    color: #222;
    font-size: 16px;
    font-weight: 700;
}

.map-popup-address {
    color: #666;
}

/* 地图模块始终隐藏右下角署名控件 */
.leaflet-control-attribution {
    display: none !important;
}

.map-copyright {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 2px 6px;
    color: #555;
    background: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 16px;
    pointer-events: none;
    user-select: none;
}

@media screen and (max-width: 768px) {
    .map-container {
        height: 500px;
    }

    .map-popup {
        width: 210px;
        font-size: 13px;
    }
}
