/* ========== 列表页样式 - Figma设计配色 ========== */

/* ========== 页面顶部Banner ========== */
.zh_page_banner {
    position: relative;
    padding: 100px 0 80px;
    background: var(--zh-heading, #101010);
    overflow: hidden;
    margin-top: -120px;
    padding-top: 180px;
}

.zh_page_banner_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(233, 82, 84, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.zh_page_banner_content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.zh_page_title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Questrial', 'Noto Sans SC', sans-serif;
}

.zh_page_subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
    color: var(--zh-accent-2, #E3DBCF);
}

.zh_breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(233, 82, 84, 0.2);
    border-radius: 25px;
    font-size: 14px;
}

.zh_breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_breadcrumb a:hover {
    color: var(--zh-primary, #E95254);
}

.zh_breadcrumb span {
    color: var(--zh-accent-2, #E3DBCF);
}

.zh_breadcrumb i {
    font-size: 12px;
    opacity: 0.7;
}

/* ========== 主内容区 ========== */
.zh_list_main {
    padding: 60px 0 80px;
    background: var(--zh-grey-bg, #F8F8F8);
}

.zh_list_layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

/* ========== 搜索栏 ========== */
.zh_search_bar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.zh_search_input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid var(--zh-accent-2, #E3DBCF);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fff;
    color: var(--zh-text, #484848);
}

.zh_search_input:focus {
    outline: none;
    border-color: var(--zh-primary, #E95254);
}

.zh_search_input::placeholder {
    color: #999;
}

.zh_search_btn {
    padding: 15px 35px;
    background: var(--zh-primary, #E95254);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.zh_search_btn:hover {
    background: #d4474a;
}

/* ========== 筛选栏 ========== */
.zh_list_filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
}

.zh_filter_left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--zh-text, #484848);
    font-weight: 500;
}

.zh_filter_left i {
    color: var(--zh-primary, #E95254);
    font-size: 16px;
}

.zh_filter_left strong {
    color: var(--zh-primary, #E95254);
}

.zh_filter_select {
    padding: 10px 20px;
    border: 2px solid var(--zh-accent-2, #E3DBCF);
    border-radius: 8px;
    font-size: 14px;
    color: var(--zh-text, #484848);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.zh_filter_select:hover,
.zh_filter_select:focus {
    border-color: var(--zh-primary, #E95254);
}

/* ========== 列表网格 ========== */
.zh_list_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.zh_list_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
    transition: all 0.3s ease;
}

.zh_list_card:hover {
    border-color: var(--zh-primary, #E95254);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 82, 84, 0.1);
}

.zh_list_card_image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.zh_list_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zh_list_card:hover .zh_list_card_image img {
    transform: scale(1.05);
}

.zh_list_card_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: var(--zh-primary, #E95254);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.zh_list_card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 16, 16, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_list_card:hover .zh_list_card_overlay {
    opacity: 1;
}

.zh_list_card_btn {
    padding: 12px 28px;
    background: var(--zh-primary, #E95254);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.zh_list_card:hover .zh_list_card_btn {
    transform: translateY(0);
}

.zh_list_card_btn:hover {
    background: #d4474a;
    color: #fff;
}

.zh_list_card_body {
    padding: 25px;
}

.zh_list_card_title {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.zh_list_card_title a {
    color: var(--zh-heading, #101010);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_list_card_title a:hover {
    color: var(--zh-primary, #E95254);
}

.zh_list_card_desc {
    color: var(--zh-text, #484848);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_list_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--zh-accent-2, #E3DBCF);
}

.zh_list_card_meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.zh_list_card_tag,
.zh_list_card_views {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--zh-text, #484848);
}

.zh_list_card_tag i {
    color: var(--zh-primary, #E95254);
}

.zh_list_card_link {
    width: 35px;
    height: 35px;
    background: var(--zh-accent-1, #F8F4EA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zh-primary, #E95254);
    transition: all 0.3s ease;
    text-decoration: none;
}

.zh_list_card_link:hover {
    background: var(--zh-primary, #E95254);
    color: #fff;
}

/* ========== 分页 ========== */
.zh_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.zh_pagination .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zh_pagination .page-item {
    list-style: none;
}

.zh_pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: #fff;
    color: var(--zh-text, #484848);
    border: 1px solid var(--zh-accent-2, #E3DBCF);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.zh_pagination .page-link:hover {
    border-color: var(--zh-primary, #E95254);
    color: var(--zh-primary, #E95254);
}

.zh_pagination .page-item.active .page-link {
    background: var(--zh-primary, #E95254);
    color: #fff;
    border-color: var(--zh-primary, #E95254);
}

.zh_pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== 右侧边栏 ========== */
.zh_list_sidebar {
    position: sticky;
    top: 140px;
}

.zh_sidebar_card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
    margin-bottom: 25px;
    overflow: hidden;
}

.zh_sidebar_card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--zh-heading, #101010);
    color: #fff;
}

.zh_sidebar_card_title {
    font-size: 17px;
    font-weight: 600;
}

.zh_sidebar_card_header i {
    font-size: 18px;
    color: var(--zh-primary, #E95254);
}

.zh_sidebar_card_body {
    padding: 20px 25px;
}

/* 分类导航 */
.zh_sidebar_nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zh_sidebar_nav li {
    list-style: none;
}

.zh_sidebar_nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--zh-grey-bg, #F8F8F8);
    border-radius: 8px;
    color: var(--zh-text, #484848);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.zh_sidebar_nav a i {
    font-size: 16px;
    color: var(--zh-primary, #E95254);
}

.zh_sidebar_nav a:hover {
    background: var(--zh-accent-1, #F8F4EA);
    color: var(--zh-primary, #E95254);
}

.zh_sidebar_nav li.active a {
    background: var(--zh-primary, #E95254);
    color: #fff;
}

.zh_sidebar_nav li.active a i {
    color: #fff;
}

/* 列表样式 */
.zh_sidebar_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zh_sidebar_list li {
    list-style: none;
}

.zh_sidebar_list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--zh-text, #484848);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.zh_sidebar_list a i {
    font-size: 12px;
    color: var(--zh-primary, #E95254);
    transition: transform 0.3s ease;
}

.zh_sidebar_list a span {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_sidebar_list a:hover {
    color: var(--zh-primary, #E95254);
}

.zh_sidebar_list a:hover i {
    transform: translateX(3px);
}

/* CTA卡片 */
.zh_sidebar_cta {
    background: var(--zh-heading, #101010);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.zh_sidebar_cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--zh-primary, #E95254);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.zh_sidebar_cta_icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: rgba(233, 82, 84, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    z-index: 1;
}

.zh_sidebar_cta_icon i {
    font-size: 32px;
    color: var(--zh-primary, #E95254);
}

.zh_sidebar_cta_title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    z-index: 1;
}

.zh_sidebar_cta_desc {
    position: relative;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
    z-index: 1;
    color: var(--zh-accent-2, #E3DBCF);
}

.zh_sidebar_cta_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--zh-primary, #E95254);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    z-index: 1;
}

.zh_sidebar_cta_btn:hover {
    background: #d4474a;
    color: #fff;
}

/* ========== 空状态 ========== */
.zh_empty_state {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
}

.zh_empty_icon {
    font-size: 80px;
    color: var(--zh-accent-2, #E3DBCF);
    margin-bottom: 25px;
}

.zh_empty_title {
    font-size: 24px;
    font-weight: 600;
    color: var(--zh-heading, #101010);
    margin-bottom: 15px;
}

.zh_empty_desc {
    font-size: 16px;
    color: var(--zh-text, #484848);
    max-width: 400px;
    margin: 0 auto;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .zh_list_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_list_layout {
        grid-template-columns: 1fr 320px;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .zh_page_banner {
        padding-top: 120px;
        margin-top: -75px;
    }

    .zh_page_title {
        font-size: 38px;
    }

    .zh_list_layout {
        grid-template-columns: 1fr;
    }

    .zh_list_sidebar {
        position: static;
        margin-top: 40px;
    }

    .zh_list_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .zh_page_banner {
        padding: 80px 0 60px;
        padding-top: 120px;
    }

    .zh_page_title {
        font-size: 32px;
    }

    .zh_page_subtitle {
        font-size: 16px;
    }

    .zh_list_main {
        padding: 40px 0 60px;
    }

    .zh_list_filter {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .zh_filter_select {
        width: 100%;
    }

    .zh_search_bar {
        flex-direction: column;
    }

    .zh_list_grid {
        grid-template-columns: 1fr;
    }

    .zh_list_card_image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .zh_page_title {
        font-size: 28px;
    }

    .zh_list_card_body {
        padding: 20px;
    }

    .zh_sidebar_card_header,
    .zh_sidebar_card_body {
        padding: 18px 20px;
    }

    .zh_sidebar_cta {
        padding: 30px 20px;
    }
}
