/* 列表页样式 - 参考 Figma 设计风格 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Banner 区域 */
.zh_page_banner {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    background: #0f0f0f;
}

.zh_banner_title {
    font-size: 80px;
    font-weight: 600;
    line-height: 1.335;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 20px;
}

.zh_banner_desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.36px;
    margin-bottom: 30px;
}

.zh_breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
}

.zh_breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.zh_breadcrumb a:hover {
    color: #f20e09;
}

.zh_breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.zh_breadcrumb span {
    color: #fff;
}

/* 列表容器 */
.zh_list_wrapper {
    padding: 80px 0 120px;
    background: #0f0f0f;
}

.zh_list_layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

/* 筛选栏 */
.zh_filter_bar {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 20px;
    padding: 25px 35px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zh_filter_tabs {
    display: flex;
    gap: 25px;
}

.zh_filter_tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.zh_filter_tab i {
    font-size: 16px;
}

.zh_filter_tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.zh_filter_tab.active {
    background: #f20e09;
    color: #fff;
}

.zh_view_mode {
    display: flex;
    gap: 10px;
}

.zh_view_btn {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.6);
}

.zh_view_btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.zh_view_btn.active {
    background: #f20e09;
    border-color: #f20e09;
    color: #fff;
}

/* 作品网格 */
.zh_works_container {
    display: none;
}

.zh_works_container.active {
    display: block;
}

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

.zh_works_grid.list-view {
    grid-template-columns: 1fr;
}

.zh_works_grid.list-view .zh_work_item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
}

.zh_works_grid.list-view .zh_work_thumb {
    height: 280px;
}

.zh_work_item {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.zh_work_item:hover {
    transform: translateY(-8px);
    background: rgba(148, 148, 148, 0.12);
}

.zh_work_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.zh_work_thumb {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.zh_work_item:hover .zh_work_thumb img {
    transform: scale(1.1);
}

.zh_work_overlay {
    position: absolute;
    inset: 0;
    background: rgba(242, 14, 9, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.zh_work_item:hover .zh_work_overlay {
    opacity: 1;
}

.zh_view_detail {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.36px;
}

.zh_work_details {
    padding: 25px;
}

.zh_work_name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_work_stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.zh_work_stats i {
    color: #f20e09;
    margin-right: 5px;
}

/* 侧边栏 */
.zh_list_sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.zh_sidebar_card {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.zh_sidebar_title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.4px;
}

.zh_sidebar_title i {
    color: #f20e09;
    font-size: 18px;
}

/* 设计师列表 */
.zh_designer_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zh_designer_item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.zh_designer_item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.zh_designer_thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(242, 14, 9, 0.3);
}

.zh_designer_details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.zh_designer_details p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.zh_designer_details i {
    color: #f20e09;
    margin-right: 4px;
}

/* 热门作品 */
.zh_hot_works {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zh_hot_item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.zh_hot_item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.zh_hot_item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.zh_hot_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zh_hot_info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_hot_info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.zh_hot_info i {
    color: #f20e09;
    margin-right: 4px;
}

/* 分页 */
.zh_pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.zh_pagination a,
.zh_pagination span {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 148, 148, 0.09);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.zh_pagination a:hover {
    background: #f20e09;
    color: #fff;
    transform: translateY(-2px);
}

.zh_pagination .current {
    background: #f20e09;
    color: #fff;
}

/* 响应式 */
@media (max-width: 1200px) {
    .zh_list_layout {
        grid-template-columns: 1fr 320px;
        gap: 40px;
    }

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

    .zh_banner_title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .zh_page_banner {
        padding: 120px 0 60px;
    }

    .zh_banner_title {
        font-size: 42px;
    }

    .zh_banner_desc {
        font-size: 16px;
    }

    .zh_list_layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zh_filter_bar {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .zh_filter_tabs {
        flex-direction: column;
        gap: 10px;
    }

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

    .zh_works_grid.list-view {
        grid-template-columns: 1fr;
    }

    .zh_works_grid.list-view .zh_work_item {
        grid-template-columns: 1fr;
    }

    .zh_list_sidebar {
        position: static;
    }
}