/* 首页专区展示区域 */
.zone-section {
    margin: 32px 0;
    background-color: #ffffff;
}

/* 专区项目 */
.zone-item {
    /*background-color: pink;*/
    max-width: 1200px;
    margin: 0 auto 8px;
    padding: 0 20px;
}

.zone-item:not(.limited-free-zone) {
    max-width: 1200px;
}

.zone-item:last-child {
    margin-bottom: 0;
}

/* 专区标题部分 */
.zone-header {
    padding: 8px 0;
}

.zone-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.zone-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.zone-content {
    border-top: 1px solid #e5e5e5;
}

/* 提示词滑动容器 */
.prompt-slider-container {
    position: relative;
    border-radius: 12px;
}

.prompt-slider {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.prompt-slider::-webkit-scrollbar {
    display: none;
}

/* 滑动控制按钮 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
}

/* 专区悬停时显示滑动按钮 */
.zone-item:hover .slider-btn {
    opacity: 1;
    visibility: visible;
}

.slider-btn:hover {
    background: #007bff;
    border-color: #007bff;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.slider-btn-prev {
    left: -24px;
}

.slider-btn-next {
    right: -24px;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}