/*  map Popup  */
/* 自定义 popup 样式 */
.leaflet-popup-content-wrapper {
    background-color: #2c3e50; /* 背景色 */
    color: #fff;               /* 文字颜色 */
    font-weight: bold;
    border-radius: 8px;        /* 圆角 */
    /*padding: 8px 12px;*/
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* 小箭头颜色 */
.leaflet-popup-tip {
    background: #2c3e50;
}
/* 字体 */
.leaflet-popup-content {
    font-size: 12px;
    text-align: center; /* 居中 */
    line-height: 1.4;
    margin: 6px 6px;
}

