/* 设计师列表页面样式 - 青绿色系横向卡片设计 */

/* 基础变量 - 限定在设计师列表页面 */
.zh_designer_page {
    --zh-primary: #00b894;
    --zh-primary-dark: #00a085;
    --zh-primary-light: #1dd1a1;
    --zh-secondary: #00cec9;
    --zh-accent: #55efc4;
    --zh-gradient-1: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    --zh-gradient-2: linear-gradient(135deg, #55efc4 0%, #00b894 50%, #00cec9 100%);
    --zh-gradient-3: linear-gradient(135deg, #a8f5e8 0%, #d1f2eb 100%);
    --zh-dark: #2d3748;
    --zh-gray: #4a5568;
    --zh-light-gray: #a0aec0;
    --zh-bg: #ffffff;
    --zh-bg-light: #f7fafc;
    --zh-border: #e2e8f0;
    --zh-glass-bg: rgba(255, 255, 255, 0.25);
    --zh-glass-border: rgba(255, 255, 255, 0.18);
    --zh-shadow: 0 8px 32px rgba(0, 184, 148, 0.15);
    --zh-shadow-hover: 0 12px 40px rgba(0, 184, 148, 0.25);
    --zh-border-radius: 20px;
    --zh-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 容器样式 */
.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 面包屑导航 */
.zh_breadcrumb {
    background: var(--zh-bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--zh-border);
}

.zh_breadcrumb_nav {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--zh-gray);
}

.zh_breadcrumb_link {
    color: var(--zh-primary);
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_breadcrumb_link:hover {
    color: var(--zh-primary-dark);
}

.zh_breadcrumb_separator {
    margin: 0 10px;
    color: var(--zh-light-gray);
}

.zh_breadcrumb_current {
    color: var(--zh-dark);
    font-weight: 500;
}

/* 页面标题区域 */
.zh_page_header {
    background: var(--zh-gradient-1);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zh_page_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    z-index: 0;
}

.zh_header_content {
    position: relative;
    z-index: 1;
}

.zh_page_title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--zh-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zh_page_title i {
    background: var(--zh-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zh_page_subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.zh_stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.zh_stat_item {
    text-align: center;
    background: var(--zh-glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--zh-glass-border);
    border-radius: var(--zh-border-radius);
    padding: 20px 30px;
    transition: var(--zh-transition);
}

.zh_stat_item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--zh-shadow);
}

.zh_stat_number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--zh-gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zh_stat_label {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* 筛选区域 */
.zh_filter_section {
    padding: 50px 0;
    background: var(--zh-bg);
    border-bottom: 1px solid var(--zh-border);
}

.zh_filter_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.zh_filter_tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.zh_filter_tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--zh-glass-bg);
    backdrop-filter: blur(10px);
    color: var(--zh-gray);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--zh-transition);
    font-size: 14px;
    border: 1px solid var(--zh-glass-border);
    position: relative;
    overflow: hidden;
}

.zh_filter_tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--zh-gradient-1);
    transition: var(--zh-transition);
    z-index: -1;
}

.zh_filter_tab:hover::before {
    left: 0;
}

.zh_filter_tab:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--zh-shadow);
}

.zh_designer_search_box {
    display: flex;
    align-items: center;
    background: var(--zh-glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--zh-glass-border);
    border-radius: 50px;
    overflow: hidden;
    min-width: 350px;
    box-shadow: var(--zh-shadow);
}

.zh_designer_search_input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.zh_designer_search_btn {
    padding: 18px 25px;
    background: var(--zh-gradient-1);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--zh-transition);
}

.zh_designer_search_btn:hover {
    background: var(--zh-gradient-2);
    transform: scale(1.05);
}

/* 设计师列表区域 */
.zh_designers_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fefc 0%, #ebf8f2 100%);
    position: relative;
}

.zh_designers_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(0,184,148,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(0,206,201,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(85,239,196,0.1)"/></svg>') repeat;
    opacity: 0.5;
}

.zh_designers_grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.zh_designer_card {
    background: white;
    backdrop-filter: blur(20px);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-border-radius);
    box-shadow: var(--zh-shadow);
    transition: var(--zh-transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 30px;
}

.zh_designer_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    background: var(--zh-gradient-1);
    border-radius: var(--zh-border-radius) 0 0 var(--zh-border-radius);
}

.zh_designer_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--zh-shadow-hover);
    border-color: var(--zh-primary);
}

/* 设计师头像区域 */
.zh_designer_avatar_section {
    flex-shrink: 0;
    position: relative;
}

.zh_designer_avatar {
    position: relative;
    width: 120px;
    height: 120px;
}

.zh_designer_avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--zh-accent);
    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.2);
    transition: var(--zh-transition);
}

.zh_designer_card:hover .zh_designer_avatar img {
    transform: scale(1.05);
    border-color: var(--zh-primary);
}

.zh_online_status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* 设计师信息区域 */
.zh_designer_info_section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zh_designer_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.zh_designer_basic_info {
    flex: 1;
}

.zh_designer_name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--zh-dark);
    margin-bottom: 8px;
    background: var(--zh-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zh_designer_title {
    font-size: 1.1rem;
    color: var(--zh-gray);
    margin-bottom: 15px;
}

.zh_rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.zh_rating_score {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--zh-primary);
}

.zh_rating_count {
    color: var(--zh-gray);
    font-size: 0.9rem;
    margin-left: 5px;
}

.zh_follow_btn {
    background: var(--zh-glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--zh-border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--zh-transition);
    color: var(--zh-primary);
}

.zh_follow_btn:hover,
.zh_follow_btn.zh_followed {
    background: var(--zh-primary);
    color: white;
    border-color: var(--zh-primary);
    transform: scale(1.1);
}

.zh_heart_filled {
    animation: heartBeat 0.6s ease-in-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* 设计师标签和技能 */
.zh_designer_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zh_tag {
    background: var(--zh-gradient-3);
    color: var(--zh-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--zh-accent);
}

/* 设计师统计信息 */
.zh_designer_stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.zh_stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--zh-bg-light);
    border-radius: 12px;
    transition: var(--zh-transition);
    border: 1px solid var(--zh-border);
}

.zh_stat:hover {
    background: var(--zh-accent);
    transform: translateY(-2px);
}

.zh_stat i {
    color: var(--zh-primary);
    font-size: 1.2rem;
}

.zh_stat span {
    font-size: 14px;
    color: var(--zh-gray);
    font-weight: 500;
}

/* 作品预览区域 */
.zh_works_preview {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zh_works_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--zh-dark);
    min-width: 80px;
}

.zh_works_grid {
    display: flex;
    gap: 12px;
    flex: 1;
}

.zh_work_item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.zh_work_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zh-transition);
}

.zh_work_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--zh-gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--zh-transition);
    backdrop-filter: blur(5px);
}

.zh_work_item:hover .zh_work_overlay {
    opacity: 0.9;
}

.zh_work_item:hover img {
    transform: scale(1.1);
}

.zh_work_link {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_work_link:hover {
    transform: scale(1.2);
}

/* 联系按钮区域 */
.zh_contact_section {
    display: flex;
    gap: 15px;
    align-items: center;
}

.zh_contact_btn {
    background: var(--zh-gradient-1);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--zh-transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
    white-space: nowrap;
}

.zh_contact_btn:hover {
    background: var(--zh-gradient-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.zh_view_btn {
    background: var(--zh-glass-bg);
    backdrop-filter: blur(10px);
    color: var(--zh-primary);
    padding: 12px 20px;
    border: 1px solid var(--zh-border);
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--zh-transition);
    white-space: nowrap;
}

.zh_view_btn:hover {
    background: var(--zh-primary);
    color: white;
    transform: translateY(-2px);
}

/* 分页样式 */
.zh_pagination_wrapper {
    text-align: center;
    margin-top: 50px;
}

/* 推荐作品区域 */
.zh_recommended_section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.zh_recommended_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--zh-gradient-3);
    opacity: 0.05;
}

.zh_section_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.zh_section_title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--zh-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zh_section_title i {
    background: var(--zh-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zh_section_subtitle {
    color: var(--zh-gray);
    font-size: 1.2rem;
}

.zh_recommended_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.zh_recommended_item {
    background: var(--zh-glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--zh-glass-border);
    border-radius: var(--zh-border-radius);
    overflow: hidden;
    box-shadow: var(--zh-shadow);
    transition: var(--zh-transition);
}

.zh_recommended_item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--zh-shadow-hover);
}

.zh_recommended_image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.zh_recommended_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zh-transition);
}

.zh_recommended_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--zh-gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--zh-transition);
    backdrop-filter: blur(2px);
}

.zh_recommended_item:hover .zh_recommended_overlay {
    opacity: 0.9;
}

.zh_recommended_item:hover .zh_recommended_image img {
    transform: scale(1.1);
}

.zh_recommended_link {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_recommended_link:hover {
    transform: scale(1.2);
}

.zh_recommended_content {
    padding: 25px;
}

.zh_recommended_title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--zh-dark);
    margin-bottom: 15px;
}

.zh_recommended_meta {
    display: flex;
    justify-content: space-between;
    color: var(--zh-gray);
    font-size: 14px;
}

.zh_views,
.zh_likes {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background: var(--zh-glass-bg);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.zh_views i,
.zh_likes i {
    color: var(--zh-primary);
}

/* 入驻号召区域 */
.zh_cta_section {
    padding: 100px 0;
    background: var(--zh-gradient-1);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zh_cta_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,800 1000,1000"/><polygon fill="rgba(255,255,255,0.05)" points="0,0 300,0 0,300"/></svg>');
}

.zh_cta_content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.zh_cta_title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.zh_cta_subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.zh_cta_features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.zh_feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    background: var(--zh-glass-bg);
    backdrop-filter: blur(15px);
    padding: 30px 25px;
    border-radius: var(--zh-border-radius);
    border: 1px solid var(--zh-glass-border);
    transition: var(--zh-transition);
}

.zh_feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--zh-shadow);
}

.zh_feature i {
    font-size: 2.5rem;
    background: var(--zh-gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zh_cta_actions {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.zh_cta_btn_primary {
    background: white;
    color: var(--zh-primary);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--zh-transition);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.zh_cta_btn_primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.zh_cta_btn_secondary {
    background: var(--zh-glass-bg);
    backdrop-filter: blur(15px);
    color: white;
    padding: 18px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--zh-transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.zh_cta_btn_secondary:hover {
    background: white;
    color: var(--zh-primary);
    transform: translateY(-3px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .zh_designer_card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .zh_designer_header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .zh_designer_stats {
        justify-content: center;
        gap: 20px;
    }
    
    .zh_works_preview {
        flex-direction: column;
        gap: 15px;
    }
    
    .zh_contact_section {
        justify-content: center;
    }
    
    .zh_stats {
        gap: 50px;
    }
    
    .zh_cta_features {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .zh_container {
        padding: 0 15px;
    }
    
    .zh_page_title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 15px;
    }
    
    .zh_filter_wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }
    
    .zh_designer_search_box {
        min-width: auto;
    }
    
    .zh_designer_card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .zh_designer_avatar {
        width: 100px;
        height: 100px;
    }
    
    .zh_designer_name {
        font-size: 1.5rem;
    }
    
    .zh_designer_stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .zh_works_grid {
        justify-content: center;
    }
    
    .zh_contact_section {
        flex-direction: column;
        gap: 10px;
    }
    
    .zh_stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .zh_stat_item {
        padding: 15px 25px;
    }
    
    .zh_cta_features {
        flex-direction: column;
        gap: 25px;
    }
    
    .zh_cta_actions {
        flex-direction: column;
        align-items: center;
    }
    
    .zh_section_title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .zh_page_title {
        font-size: 2rem;
    }
    
    .zh_filter_tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .zh_recommended_grid {
        grid-template-columns: 1fr;
    }
    
    .zh_cta_title {
        font-size: 2.2rem;
    }
    
    .zh_designers_grid {
        gap: 20px;
    }
    
    .zh_designer_card {
        padding: 15px;
    }
    
    .zh_work_item {
        width: 60px;
        height: 60px;
    }
}
