.explore {
    padding: 80px 0;
    background-color: #FFF8EE;
}

.explore .explore-grid {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    justify-content:center;
}

.explore .explore-grid::-webkit-scrollbar {
    display: none;
}

.explore .explore-item {
    cursor: pointer;
    transition: transform 0.3s;
    flex: 0 0 auto;
    width: 100px;
    margin: 5px;
    scroll-snap-align: start;
    text-align: center;
}

.explore .explore-item:hover {
    transform: translateY(-5px);
}

.explore .explore-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explore .explore-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.explore .explore-item span {
    display: block;
    text-align: center;
}

.explore .explore-item:hover span {
    color: #141543;
}

.explore .explore-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
}

/* 滑动容器样式 */
.explore-scroll-container {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
    padding: 0 15px;
}


.explore-scroll-controls {
    position: relative;
    margin-bottom: 15px;
}

.explore-scroll-btn {
    position: absolute;
    top: -60px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    z-index: 10;
    display: block;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.2s;
    background-color: #ffffff;
    box-shadow: 0px 0px 3px 0px #000000;
}

.explore-scroll-btn:hover {
    opacity: 0.8;
}

.explore-scroll-left {
    left: -10px;
    opacity: 0;
}

.explore-scroll-right {
    right: -10px;
}

@media (max-width:1400px) {
    .explore {
        padding: 60px 0;
    }
}

@media (max-width:1200px) {
    .explore {
        padding: 50px 0;
    }
}

/* 小型屏幕 */
@media (max-width:992px) {
    .explore .explore-item {
        width: 90px;
    }

    .explore .explore-icon {
        width: 80px;
        height: 80px;
    }

    .explore {
        padding: 30px 0;
    }

    .explore .explore-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .explore .explore-item {
        width: 80px;
    }

    .explore .explore-icon {
        width: 70px;
        height: 70px;
    }

    .explore .explore-title {
        margin-bottom: 20x;
    }

    .explore {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .explore .explore-item {
        width: 70px;
    }

    .explore .explore-icon {
        width: 60px;
        height: 60px;
    }

    .explore .explore-item span {
        font-size: 12px;
    }

    .explore .explore-title {
        margin-bottom: 10px;
    }

    .explore {
        padding: 10px 0;
    }
}