/* 服务商详情页样式 - 参考 show_dz.css 设计风格 */

body {
    background: #0f0f0f;
}

.zh_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 面包屑导航 */
.zh_breadcrumb {
    background: #0f0f0f;
    padding: 120px 0 20px;
}

.zh_breadcrumb_inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

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

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

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

.zh_breadcrumb_current {
    color: #fff;
}

/* Banner 区域 */
.zh_designer_detail_container {
    background: #0f0f0f;
    min-height: 100vh;
}

/* 主内容区 */
.zh_designer_detail_content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 120px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
}

.zh_designer_detail_main {
    min-width: 0;
}

/* 服务商信息卡片 */
.zh_designer_profile {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
}

.zh_designer_profile_header {
    background: linear-gradient(135deg, rgba(242, 14, 9, 0.08), rgba(148, 148, 148, 0.05));
    padding: 50px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zh_designer_profile_info {
    display: flex;
    gap: 40px;
    align-items: center;
}

.zh_designer_avatar_container {
    flex-shrink: 0;
}

.zh_designer_avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(242, 14, 9, 0.3);
    box-shadow: 0 10px 35px rgba(242, 14, 9, 0.3);
}

.zh_designer_basic_info {
    flex: 1;
}

.zh_designer_name {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1.2px;
    line-height: 1.2;
}

.zh_designer_title {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 25px;
}

.zh_designer_stats {
    display: flex;
    gap: 35px;
}

.zh_designer_stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
}

.zh_designer_stat i {
    font-size: 20px;
    color: #f20e09;
}

.zh_verified_badge {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f20e09;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(242, 14, 9, 0.4);
}

.zh_verified_badge i {
    font-size: 18px;
}

/* 服务商信息主体 */
.zh_designer_profile_body {
    padding: 45px 50px;
}

.zh_designer_section_title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -0.8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.zh_designer_section_title i {
    color: #f20e09;
    font-size: 24px;
}

.zh_designer_bio {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

/* 联系方式 */
.zh_designer_contact {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 35px;
}

.zh_contact_title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.zh_contact_item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s;
}

.zh_contact_item:last-child {
    margin-bottom: 0;
}

.zh_contact_item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.zh_contact_item i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 14, 9, 0.15);
    border-radius: 50%;
    color: #f20e09;
    font-size: 18px;
    flex-shrink: 0;
}

.zh_contact_item span {
    flex: 1;
}

/* 操作按钮 */
.zh_action_buttons {
    display: flex;
    gap: 15px;
}

.zh_action_btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.zh_action_btn i {
    font-size: 20px;
}

.zh_action_btn.zh_primary {
    background: #f20e09;
    color: #fff;
    box-shadow: 0 8px 25px rgba(242, 14, 9, 0.35);
}

.zh_action_btn.zh_primary:hover {
    background: #c40b07;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(242, 14, 9, 0.5);
}

.zh_action_btn.zh_secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.zh_action_btn.zh_secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f20e09;
    color: #f20e09;
    transform: translateY(-3px);
}

/* 作品展示区域 */
.zh_portfolio_section {
    margin-top: 30px;
}

.zh_portfolio_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

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

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

.zh_portfolio_img_container {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.5);
}

.zh_portfolio_category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 18px;
    background: #f20e09;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 1;
}

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

.zh_portfolio_card:hover .zh_portfolio_img {
    transform: scale(1.1);
}

.zh_portfolio_info {
    padding: 25px;
}

.zh_portfolio_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.zh_portfolio_title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.zh_portfolio_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.zh_portfolio_date,
.zh_portfolio_views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.zh_portfolio_meta i {
    color: #f20e09;
    font-size: 14px;
}

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

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

.zh_widget_title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.zh_widget_title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #f20e09;
}

.zh_widget_body {
    margin: 0;
}

/* 其他服务 */
.zh_other_services {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 相似设计师 */
.zh_similar_designers {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zh_similar_designer_item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zh_similar_designer_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.zh_similar_designer_avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(242, 14, 9, 0.2);
}

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

.zh_similar_designer_name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.zh_similar_designer_name a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.zh_rating {
    display: flex;
    gap: 4px;
    color: #f20e09;
    font-size: 14px;
}

.zh_rating i {
    font-size: 14px;
}

/* 热门案例 */
.zh_latest_cases {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zh_case_item {
    display: flex;
    gap: 15px;
    transition: transform 0.3s;
}

.zh_case_item:hover {
    transform: translateX(5px);
}

.zh_case_img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

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

.zh_case_title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
}

.zh_case_title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

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

/* 工作流程 */
.zh_workflow_section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 70px 30px;
    background: rgba(148, 148, 148, 0.05);
    backdrop-filter: blur(37px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.zh_workflow_title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -1.2px;
}

.zh_workflow_subtitle {
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 55px;
}

.zh_workflow_steps {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.zh_workflow_step {
    flex: 1;
    text-align: center;
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    padding: 40px 25px;
    border-radius: 20px;
    transition: all 0.3s;
}

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

.zh_step_number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #f20e09;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 30px rgba(242, 14, 9, 0.4);
}

.zh_step_title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.zh_step_description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

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

    .zh_designer_name {
        font-size: 38px;
    }

    .zh_portfolio_grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .zh_designer_detail_content {
        grid-template-columns: 1fr;
    }

    .zh_designer_detail_sidebar {
        position: static;
    }

    .zh_workflow_steps {
        flex-wrap: wrap;
    }

    .zh_workflow_step {
        flex-basis: calc(50% - 12.5px);
    }
}

@media (max-width: 768px) {
    .zh_breadcrumb {
        padding: 100px 0 20px;
    }

    .zh_designer_detail_content {
        padding: 40px 20px 80px;
    }

    .zh_designer_profile_header {
        padding: 35px 25px;
    }

    .zh_designer_profile_info {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .zh_designer_avatar {
        width: 150px;
        height: 150px;
    }

    .zh_designer_stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .zh_verified_badge {
        position: static;
        margin-top: 20px;
        display: inline-flex;
    }

    .zh_designer_profile_body {
        padding: 35px 25px;
    }

    .zh_designer_name {
        font-size: 32px;
    }

    .zh_designer_title {
        font-size: 17px;
    }

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

    .zh_action_buttons {
        flex-direction: column;
    }

    .zh_workflow_section {
        padding: 50px 20px;
        margin-bottom: 60px;
    }

    .zh_workflow_steps {
        flex-direction: column;
    }

    .zh_workflow_step {
        flex-basis: 100%;
    }

    .zh_workflow_title {
        font-size: 32px;
    }

    .zh_sidebar_widget {
        padding: 28px 22px;
    }
}
