/* 列表页样式 - 暖棕色配色方案 */
:root {
    --bg-main: #FAFAFA;
    --bg-alt: #FFFFFF;
    --bg-warm: #FAF8F5;
    --text-primary: #1a1a2e;
    --text-secondary: #4b5563;
    --text-muted: #7a7a8c;
    --primary: #B4846C;
    --primary-light: #D4A574;
    --primary-dark: #96705A;
    --accent: #E8D5C4;
    --border-color: rgba(180, 132, 108, 0.15);
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-soft: 0 4px 20px rgba(180, 132, 108, 0.08);
    --shadow-hover: 0 12px 40px rgba(180, 132, 108, 0.15);
    --gradient-primary: linear-gradient(135deg, #B4846C 0%, #D4A574 100%);
    --gradient-warm: linear-gradient(135deg, rgba(180, 132, 108, 0.08) 0%, rgba(212, 165, 116, 0.05) 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.zh_container {
    width: min(1320px, 92%);
    margin: 0 auto;
    padding: 0 40px;
}

/* 面包屑导航 */
.zh_breadcrumb_section {
    background: var(--bg-warm);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.zh_breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.zh_breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.zh_breadcrumb a:hover {
    color: var(--primary-dark);
}

.zh_breadcrumb_separator {
    color: var(--text-muted);
}

.zh_breadcrumb_current {
    color: var(--text-secondary);
    font-weight: 500;
}

/* 页面标题区域 */
.zh_page_header {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.zh_page_header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(180, 132, 108, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 40%);
}

.zh_page_header_content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.zh_page_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(180, 132, 108, 0.2);
    color: var(--primary-light);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(180, 132, 108, 0.3);
}

.zh_page_title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.zh_page_subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* 列表区域 */
.zh_list_section {
    padding: 80px 0;
    background: var(--bg-main);
}

.zh_list_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.zh_list_header_left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.zh_list_tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
}

.zh_list_title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.zh_view_all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.zh_view_all:hover {
    color: var(--primary-dark);
}

.zh_view_all i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.zh_view_all:hover i {
    transform: translateX(4px);
}

/* 列表网格 */
.zh_list_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.zh_list_item {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.zh_list_item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.zh_list_link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.zh_item_media {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-warm);
}

.zh_item_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zh_list_item:hover .zh_item_media img {
    transform: scale(1.08);
}

.zh_item_overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_list_item:hover .zh_item_overlay {
    opacity: 1;
}

.zh_overlay_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.zh_list_item:hover .zh_overlay_btn {
    transform: translateY(0);
}

.zh_item_badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
}

.zh_item_content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.zh_item_title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.zh_list_item:hover .zh_item_title {
    color: var(--primary);
}

.zh_item_desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_item_footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.zh_item_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.zh_item_link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.zh_list_item:hover .zh_item_link i {
    transform: translateX(4px);
}

/* 空状态 */
.zh_empty_state {
    text-align: center;
    padding: 100px 20px;
}

.zh_empty_icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.zh_empty_title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.zh_empty_text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.zh_empty_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zh_empty_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(180, 132, 108, 0.3);
}

/* 分页样式 */
.zh_pagination_section {
    background: var(--bg-alt);
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
}

.zh_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.zh_pagination a,
.zh_pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--bg-alt);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.zh_pagination a:hover {
    background: var(--bg-warm);
    color: var(--primary);
    border-color: var(--primary);
}

.zh_pagination .current {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: var(--primary);
}

.zh_pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* 底部特性区域 */
.zh_features_section {
    background: #242438;
    padding: 50px 0;
}

.zh_features_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.zh_feature_item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.zh_feature_icon {
    width: 56px;
    height: 56px;
    background: rgba(180, 132, 108, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 22px;
}

.zh_feature_text h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
}

.zh_feature_text p {
    margin: 0;
    font-size: 13px;
    color: #9CA3AF;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .zh_list_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .zh_container {
        padding: 0 20px;
    }

    .zh_page_header {
        padding: 60px 0;
    }

    .zh_page_title {
        font-size: 32px;
    }

    .zh_list_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .zh_features_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .zh_page_title {
        font-size: 28px;
    }

    .zh_list_section {
        padding: 60px 0;
    }

    .zh_list_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .zh_list_grid {
        grid-template-columns: 1fr;
    }

    .zh_features_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .zh_page_title {
        font-size: 24px;
    }

    .zh_page_subtitle {
        font-size: 14px;
    }

    .zh_item_content {
        padding: 20px;
    }

    .zh_item_title {
        font-size: 15px;
    }

    .zh_pagination a,
    .zh_pagination span {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
    }
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zh_list_item:nth-child(1) { animation-delay: 0s; }
.zh_list_item:nth-child(2) { animation-delay: 0.1s; }
.zh_list_item:nth-child(3) { animation-delay: 0.2s; }
.zh_list_item:nth-child(4) { animation-delay: 0.3s; }
.zh_list_item:nth-child(5) { animation-delay: 0.4s; }
.zh_list_item:nth-child(6) { animation-delay: 0.5s; }
.zh_list_item:nth-child(7) { animation-delay: 0.6s; }
.zh_list_item:nth-child(8) { animation-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
