/* 设计师详情页样式 - 现代创意风格 */

/* 全局样式重置和基础设置 */
.zh_designer-detail {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* 容器样式 */
.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 设计师头部区域 */
.zh_designer-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.zh_designer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558655146-9f40138edfeb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2064&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.zh_designer-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    gap: 40px;
}

.zh_designer-avatar {
    position: relative;
    flex-shrink: 0;
}

.zh_avatar-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: contain;
    border: 4px solid #00d4aa;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.zh_avatar-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #00d4aa;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.4);
}

.zh_designer-info {
    flex: 1;
}

.zh_designer-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zh_designer-contact,
.zh_designer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 1.1rem;
    color: #666;
}

.zh_designer-contact i,
.zh_designer-phone i {
    color: #00d4aa;
    width: 20px;
}

.zh_login-link {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zh_login-link:hover {
    color: #00b894;
    text-decoration: underline;
}

.zh_designer-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* 按钮样式 */
.zh_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zh_btn-primary {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.zh_btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.4);
}

.zh_btn-outline {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.zh_btn-outline:hover {
    background: #00d4aa;
    color: white;
    transform: translateY(-2px);
}

.zh_btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.zh_btn.zh_favorited {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

/* 区块头部样式 */
.zh_section-header {
    text-align: center;
    margin-bottom: 50px;
}

.zh_section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #2d3748;
}

.zh_section-header h2 i {
    color: #00d4aa;
    font-size: 1.8rem;
}

.zh_section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* 设计师简介区域 */
.zh_designer-intro {
    padding: 80px 0;
    background: white;
}

.zh_intro-content {
    max-width: 800px;
    margin: 0 auto;
    background: #f8faff;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #00d4aa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.zh_intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    color: #4a5568;
}

/* 作品案例区域 */
.zh_portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-attachment: fixed;
}

.zh_portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.zh_portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zh_portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.zh_portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.zh_portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.zh_portfolio-card:hover .zh_portfolio-image img {
    transform: scale(1.1);
}

.zh_portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 212, 170, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_portfolio-card:hover .zh_portfolio-overlay {
    opacity: 1;
}

.zh_portfolio-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.zh_portfolio-content {
    padding: 25px;
}

.zh_portfolio-content h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
}

/* 推荐作品区域 */
.zh_recommend-section {
    padding: 80px 0;
    background: white;
}

.zh_recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.zh_recommend-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.zh_recommend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.zh_recommend-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.zh_recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zh_recommend-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00d4aa;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.zh_recommend-content {
    padding: 20px;
}

.zh_recommend-content h4 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.zh_recommend-link {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.zh_recommend-link:hover {
    color: #00b894;
    gap: 10px;
}

/* 其他设计师区域 */
.zh_other-designers {
    padding: 80px 0;
    background: #f7fafc;
}

.zh_designers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.zh_designer-small-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    gap: 20px;
}

.zh_designer-small-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.zh_designer-small-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #00d4aa;
}

.zh_designer-small-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.zh_designer-small-link {
    color: #00d4aa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.zh_designer-small-link:hover {
    color: #00b894;
    gap: 8px;
}

/* CTA区域 */
.zh_cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
}

.zh_cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80') center/cover; */
    opacity: 0.1;
}

.zh_cta-content {
    position: relative;
    z-index: 2;
}

.zh_cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.zh_cta-content p {
    font-size: 1.2rem;
    margin: 0 0 40px 0;
    opacity: 0.9;
}

.zh_cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zh_container {
        padding: 0 15px;
    }
    
    .zh_designer-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .zh_designer-name {
        font-size: 2rem;
    }
    
    .zh_designer-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .zh_portfolio-grid,
    .zh_recommend-grid,
    .zh_designers-grid {
        grid-template-columns: 1fr;
    }
    
    .zh_section-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .zh_cta-content h2 {
        font-size: 2rem;
    }
    
    .zh_cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .zh_designer-small-card {
        padding: 20px;
        gap: 15px;
    }
    
    .zh_intro-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .zh_designer-hero {
        padding: 40px 0;
    }
    
    .zh_designer-card {
        padding: 20px 15px;
    }
    
    .zh_avatar-img {
        width: 120px;
        height: 120px;
    }
    
    .zh_designer-name {
        font-size: 1.6rem;
    }
    
    .zh_section-header h2 {
        font-size: 1.5rem;
    }
    
    .zh_cta-content h2 {
        font-size: 1.8rem;
    }
    
    .zh_portfolio-section,
    .zh_designer-intro,
    .zh_recommend-section,
    .zh_other-designers {
        padding: 50px 0;
    }
    
    .zh_cta-section {
        padding: 60px 0;
    }
}
