body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#map-container {
    width: 100vw;
    height: 100vh;
}

.marker {
    width: 40px !important; /* 确保尺寸不被覆盖 */
    height: 40px !important;
    border-radius: 50%;
    position: absolute;
    transition: opacity 1s;
    box-shadow: 0 0 10px rgba(0,0,0,0.5); /* 添加阴影增强可见性 */
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease; /* 添加缩放效果 */
    animation-fill-mode: forwards;
    transition: all 1s !important; /* 强制覆盖所有属性 */
    will-change: opacity; /* 启用硬件加速 */
}

.marker-vanish {
    opacity: 0 !important;
    transform: scale(1.5);
}

