/* 自定义类名，用于隐藏滚动条但保留滚动功能 */
.custom-scroll {
    /* 允许垂直滚动，隐藏滚动条 */
    overflow-y: scroll;
    /* 始终显示滚动条轨道，但隐藏滚动条滑块 */
    overflow-x: hidden;
    /* 防止水平滚动条 */
    scrollbar-width: none;
    /* Firefox 隐藏滚动条 */
    -ms-overflow-style: none;
    /* IE 和 Edge 隐藏滚动条 */
}

/* WebKit 浏览器（Chrome, Safari, Edge 等）隐藏滚动条滑块 */
.custom-scroll::-webkit-scrollbar {
    display: none;
    /* 隐藏滚动条 */
}



.location-marker {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    transform: translate(-50%, -50%);
}

@media (max-width:780px) {
    .location-marker {
        position: absolute;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 12px;
        transform: translate(-50%, -50%);
    }
}




.slide-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* 确保父容器有相对定位 */
/* .relative_ {
    position: relative;
    width: 100%;
    height: 100%;
} */

/* 修正指示点样式 */
.dot-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot-indicator.active {
    background-color: #009933;
}

/* 修正年份文本样式 */
.year-text {
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.year-text.text-green-500 {
    color: #009933;
}

.year-text.text-gray-400 {
    color: #999;
}