#fullpage-scroll {
    position: relative;
}

/* 粘性容器: 使用浏览器原生 sticky 定位 */
#fullpage-sticky {
    /* position: sticky 由 HTML 的 class 提供，不在这里覆盖 */
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

#scroll-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.scroll-slide {
    position: absolute;
    inset: 0;
    height: 100%;
    /* 每张卡片撑满一屏 */
}

/* 移动端: 固定高度，点击切换 */
@media (max-width: 767px) {
    #fullpage-scroll {
        /* 移动端使用固定高度 520px */
        height: 520px;
    }

    #fullpage-sticky {
        /* 移动端不使用 sticky，固定定位 */
        position: relative;
        height: 520px;
    }

    #scroll-container {
        position: relative;
        height: 100%;
    }

    .scroll-slide {
        position: absolute;
        inset: 0;
        height: 100%;
        width: 100%;
    }
}

.indicator {
    border-color: #3660FD;
    color: #3660FD;
    background-color: transparent;
}

.indicator.active {
    background-color: #3660FD;
    color: white;
    transform: scale(1.1);
}