.image-page-bg-product {
    width: 99.4vw;
    height: 100vh;
    background: url('https://www.hansenmc.com/static/upload/image/20240514/1715672953121100.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #082D53;
    font-weight: 600;
}

.image-page-bg-product:nth-of-type(2) {
    background: url('https://www.hansenmc.com/static/upload/image/20240514/1715672988616458.png');
    background-size: 100% 100%;
}

.image-page-bg-product:nth-of-type(3) {
    background: url('https://www.hansenmc.com/static/upload/image/20240514/1715673033438119.png');
    background-size: 100% 100%;
}

.image-page-bg-product:nth-of-type(4) {
    background: url('https://www.hansenmc.com/static/upload/image/20240514/1715673072914129.png');
    background-size: 100% 100%;
}

.image-page-bg-product:nth-of-type(5) {
    background: url('https://www.hansenmc.com/static/upload/image/20240514/1715673100539281.png');
    background-size: 100% 100%;
}

.image-page-bg-product:nth-of-type(6) {
    background: url('https://www.hansenmc.com/static/upload/image/20240514/1715673292304952.jpg');
    background-size: 100% 100%;
}

.image-page-bg-product:nth-of-type(7) {
    background: url('https://www.hansenmc.com/static/upload/image/20240514/1715673170215734.jpg');
    background-size: 100% 100%;
}

.xitong-box {
    border: 10px solid #082D53;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 285px;
    height: 330px;
}

.xitong-box-text {
    font-size: 34px;
}

.xitong-box-btn {
    font-size: 18px;
    margin-top: 30px;
}

.xitong-box-btn {
    display: inline-flex;
    border: 3px solid #082D53;
    padding: 10px 20px;
}

/* 隐藏滚动条但保持可滚动功能 */
body {
    overflow-y: hidden;
}

.fullpage-container {
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100vh;
    scroll-behavior: smooth;
    /* 平滑滚动 */
}

/* 隐藏标准滚动条 */
.fullpage-container::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.fullpage-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* 自定义滚动提示器 */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(8, 45, 83, 0.1);
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: #082D53;
    width: 0%;
    transition: width 0.3s ease;
}

/* 滚动提示箭头 */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #082D53;
    font-size: 24px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 100;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}