/* 极速云科技搜索结果页面样式 */
/* 主色：青绿色系，现代创意风格 + 扁平化设计 */

:root {
    --zh-primary-color: #00b894;
    --zh-secondary-color: #00a085;
    --zh-accent-color: #55efc4;
    --zh-dark-color: #2d3436;
    --zh-light-color: #ddd;
    --zh-background-color: #f8f9fa;
    --zh-white: #ffffff;
    --zh-shadow: 0 8px 30px rgba(0, 184, 148, 0.12);
    --zh-shadow-hover: 0 15px 45px rgba(0, 184, 148, 0.2);
    --zh-border-radius: 16px;
    --zh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 通用容器 */
.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 页面标题区域 */
.zh_page-title {
    background: linear-gradient(135deg, var(--zh-primary-color) 0%, var(--zh-secondary-color) 100%);
    color: var(--zh-white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.zh_page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&h=400&fit=crop&crop=center') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.zh_breadcrumb-wrap {
    text-align: center;
    position: relative;
    z-index: 2;
}

.zh_page-title-text {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zh_count-highlight {
    color: var(--zh-accent-color);
    font-size: 42px;
    text-shadow: 0 0 20px rgba(85, 239, 196, 0.5);
}

.zh_title-line {
    width: 80px;
    height: 4px;
    background: var(--zh-accent-color);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(85, 239, 196, 0.5);
}

/* 搜索结果区域 */
.zh_search-section {
    background: var(--zh-background-color);
    min-height: 70vh;
    padding: 60px 0;
}

.zh_search-content {
    background: var(--zh-white);
    border-radius: var(--zh-border-radius);
    box-shadow: var(--zh-shadow);
    overflow: hidden;
}

.zh_results-list {
    padding: 40px;
}

/* 搜索结果项目 */
.zh_result-item {
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
    transition: var(--zh-transition);
    position: relative;
}

.zh_result-item:last-child {
    border-bottom: none;
}

.zh_result-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--zh-primary-color), var(--zh-accent-color));
    opacity: 0;
    transition: var(--zh-transition);
}

.zh_result-item:hover::before {
    opacity: 1;
}

.zh_result-item:hover {
    background: rgba(0, 184, 148, 0.02);
    transform: translateX(8px);
}

.zh_result-content {
    padding-left: 20px;
}

/* 标题样式 */
.zh_result-title {
    margin: 0 0 15px 0;
}

.zh_result-title a {
    font-size: 24px;
    font-weight: 700;
    color: var(--zh-dark-color);
    text-decoration: none;
    transition: var(--zh-transition);
    line-height: 1.4;
}

.zh_result-title a:hover {
    color: var(--zh-primary-color);
    text-shadow: 0 2px 8px rgba(0, 184, 148, 0.2);
}

/* 摘要样式 */
.zh_result-summary {
    margin-bottom: 20px;
}

.zh_result-summary p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* 操作按钮 */
.zh_result-actions {
    display: flex;
    align-items: center;
}

.zh_view-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--zh-primary-color), var(--zh-secondary-color));
    color: var(--zh-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--zh-transition);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.zh_view-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
    color: var(--zh-white);
}

.zh_view-detail-btn i {
    transition: var(--zh-transition);
}

.zh_view-detail-btn:hover i {
    transform: translateX(3px);
}

/* 无结果页面 */
.zh_no-results {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
}

.zh_no-results-content {
    padding: 40px;
}

.zh_no-results-content i {
    font-size: 80px;
    color: var(--zh-light-color);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.zh_no-results-content h3 {
    font-size: 28px;
    color: var(--zh-dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.zh_no-results-content p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* 分页样式 */
.zh_pagination-wrapper {
    background: #f8f9fa;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e9ecef;
}

.zh_pagination-wrapper .pagination {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zh_pagination-wrapper .pagination li {
    margin: 0;
}

.zh_pagination-wrapper .pagination a,
.zh_pagination-wrapper .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--zh-transition);
}

.zh_pagination-wrapper .pagination a {
    background: var(--zh-white);
    color: var(--zh-primary-color);
    border: 2px solid #e9ecef;
}

.zh_pagination-wrapper .pagination a:hover {
    background: var(--zh-primary-color);
    color: var(--zh-white);
    border-color: var(--zh-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.3);
}

.zh_pagination-wrapper .pagination .current span {
    background: linear-gradient(135deg, var(--zh-primary-color), var(--zh-secondary-color));
    color: var(--zh-white);
    border: 2px solid var(--zh-primary-color);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

/* 动画效果 */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zh_container {
        padding: 0 15px;
    }

    .zh_page-title {
        padding: 60px 0 40px;
    }

    .zh_page-title-text {
        font-size: 28px;
    }

    .zh_count-highlight {
        font-size: 32px;
    }

    .zh_search-section {
        padding: 40px 0;
    }

    .zh_results-list {
        padding: 20px;
    }

    .zh_result-item {
        padding: 20px 0;
    }

    .zh_result-content {
        padding-left: 0;
    }

    .zh_result-title a {
        font-size: 20px;
    }

    .zh_pagination-wrapper {
        padding: 20px;
    }

    .zh_pagination-wrapper .pagination a,
    .zh_pagination-wrapper .pagination span {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .zh_page-title-text {
        font-size: 24px;
    }

    .zh_count-highlight {
        font-size: 28px;
    }

    .zh_result-item:hover {
        transform: none;
    }

    .zh_view-detail-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 打印样式 */
@media print {
    .zh_page-title {
        background: white;
        color: black;
    }

    .zh_search-section {
        background: white;
    }

    .zh_result-item {
        break-inside: avoid;
        border-bottom: 1px solid #ddd;
    }

    .zh_pagination-wrapper {
        display: none;
    }
}
