body, html {
    width: 100%;
    height: 100%;
    margin:0;
    font-family:"微软雅黑";
}
#container{
    width:100%;
    height:100%;
    overflow: hidden;
}
.maker-text-label {
    color: rgba(0, 0, 0, 0.7); /* 黑色字体，70%不透明度 */
    background-color: transparent; /* 透明背景 */
    border: none; /* 无边框 */
    padding: 0; /* 可选：根据需要调整内边距 */
    margin: 0; /* 可选：根据需要调整外边距 */
    font-family: inherit; /* 继承父元素字体 */
    font-size: inherit; /* 继承父元素字体大小 */
}

.spot-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s;
    border-left: 4px solid #1a2a6c;
}

.spot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #b21f1f;
}

.spot-card h3 {
    font-size: 1.3rem;
    color: #1a2a6c;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.spot-card h3 i {
    margin-right: 10px;
    color: #b21f1f;
}

.spot-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.spot-card .coordinates {
    font-family: monospace;
    font-size: 0.9rem;
    color: #888;
    background: #f8f9fa;
    padding: 5px 8px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 5px;
}