/* 探索更多提示词模块样式 */
.explore-more-section {
    margin: 0;
    background-color: #ffffff;
    padding: 40px 0;
}

/* 模块标题样式 - 与operation-title保持一致 */
.explore-more-header {
    margin-bottom: 32px;
}

.explore-more-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

/* 搜索框区域 */
.explore-more-search {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.explore-more-search .search-wrapper {
    width: 100%;
    max-width: 900px;
}

/* 快速链接区域 */
.explore-more-quick-links {
    margin-bottom: 48px;
}

/* 热门推荐区域 */
.explore-more-recommendations {
    margin-bottom: 0;
}

/* 容器样式 */
.explore-more-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .explore-more-section {
        margin: 32px 0;
        padding: 32px 0;
    }

    .explore-more-header {
        margin-bottom: 24px;
    }

    .explore-more-title {
        font-size: 20px;
    }

    .explore-more-search {
        margin-bottom: 32px;
    }

    .explore-more-quick-links {
        margin-bottom: 40px;
    }

    .explore-more-section .container {
        padding: 0 16px;
    }
}