/* 服务商详情页 - 新布局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* 面包屑导航 */
.zh_mobile_breadcrumb {
    display: none;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 10px 0;
}

.zh_desktop_breadcrumb {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.zh_breadcrumb_nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.zh_breadcrumb_link {
    color: #00BCD4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_breadcrumb_link:hover {
    color: #0097A7;
}

.zh_breadcrumb_current {
    color: #666;
    font-weight: 500;
}

.zh_breadcrumb_nav i {
    color: #ccc;
    font-size: 12px;
}

/* 主体布局 */
.zh_fws_layout {
    display: flex;
    min-height: calc(100vh - 80px);
    gap: 30px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 左侧固定信息栏 */
.zh_fws_sidebar {
    width: 380px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* 服务商资料卡片 */
.zh_fws_profile_card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.15);
    margin-bottom: 20px;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.zh_profile_header {
    text-align: center;
    margin-bottom: 25px;
}

.zh_profile_avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.zh_avatar_img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    border: 4px solid #00BCD4;
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.3);
}

.zh_status_badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #00BCD4;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.zh_profile_name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zh_fws_profile_rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.zh_fws_stars {
    color: #FFD700;
    font-size: 16px;
}

.zh_fws_rating_score {
    font-weight: 600;
    color: #555;
}

/* 联系信息 */
.zh_fws_contact_section {
    margin-bottom: 25px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.zh_fws_contact_item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.zh_fws_contact_item:hover {
    background: #e8f4fd;
    transform: translateX(5px);
}

.zh_fws_contact_icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    font-size: 14px;
}

.zh_fws_contact_details {
    flex: 1;
}

.zh_fws_contact_label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.zh_fws_contact_value,
.zh_fws_phone_number {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.zh_fws_phone_number {
    color: #FF6B35;
    transition: color 0.3s ease;
}

.zh_fws_phone_number:hover {
    color: #E55A31;
}

.zh_fws_login_prompt {
    color: #00BCD4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.zh_fws_login_prompt:hover {
    color: #0097A7;
}

/* 操作按钮 */
.zh_fws_action_buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.zh_fws_btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.zh_fws_btn_call {
    background: linear-gradient(135deg, #FF6B35, #E55A31);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.zh_fws_btn_call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.zh_fws_btn_favorite,
.zh_fws_btn_share {
    background: #fff;
    color: #00BCD4;
    border: 2px solid #00BCD4;
}

.zh_fws_btn_favorite:hover,
.zh_fws_btn_share:hover {
    background: #00BCD4;
    color: #fff;
    transform: translateY(-2px);
}

.zh_fws_btn_more {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.zh_fws_btn_more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.3);
}

.zh_fws_btn_mini {
    background: #00BCD4;
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zh_fws_btn_mini:hover {
    background: #0097A7;
    transform: translateY(-1px);
}

/* 快速信息 */
.zh_fws_quick_info {
    display: flex;
    justify-content: space-between;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.zh_fws_info_item {
    flex: 1;
}

.zh_fws_info_number {
    font-size: 20px;
    font-weight: 700;
    color: #00BCD4;
    margin-bottom: 5px;
}

.zh_fws_info_label {
    font-size: 12px;
    color: #666;
}

/* 侧边栏导航菜单 */
.zh_fws_nav_menu {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.zh_fws_nav_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.zh_fws_nav_item:last-child {
    border-bottom: none;
}

.zh_fws_nav_item:hover {
    background: #f8f9fa;
    color: #00BCD4;
    padding-left: 25px;
}

.zh_fws_nav_item.active {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: #fff;
    padding-left: 25px;
}

/* 右侧内容区域 */
.zh_fws_content {
    flex: 1;
    min-width: 0;
}

/* 内容章节 */
.zh_content_section {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.zh_section_header {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    padding: 20px 25px;
    color: #fff;
}

.zh_section_title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_title_icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_case_count {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: auto;
}

/* 服务商简介 */
.zh_intro_content {
    padding: 25px;
}

.zh_intro_text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

.zh_fws_intro_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zh_fws_tag {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.zh_fws_tag_small {
    background: #e8f4fd;
    color: #00BCD4;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
}

/* 服务案例瀑布流 */
.zh_cases_masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 25px;
}

.zh_case_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.zh_case_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.15);
}

.zh_case_image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.zh_case_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.zh_case_card:hover .zh_case_image img {
    transform: scale(1.05);
}

.zh_case_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 188, 212, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_case_card:hover .zh_case_overlay {
    opacity: 1;
}

.zh_case_view {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.zh_case_view:hover {
    background: #fff;
    color: #00BCD4;
}

.zh_case_content {
    padding: 15px;
}

.zh_case_title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.zh_case_meta {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 12px;
}

/* 推荐服务轮播 */
.zh_services_carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 25px;
}

.zh_service_card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.zh_service_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.12);
}

.zh_service_thumb {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.zh_service_thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.zh_service_card:hover .zh_service_thumb img {
    transform: scale(1.05);
}

.zh_service_badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #FF6B35;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.zh_service_info {
    padding: 15px;
}

.zh_service_title a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.zh_service_title a:hover {
    color: #00BCD4;
}

.zh_service_price {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zh_price_label {
    font-size: 12px;
    color: #999;
}

.zh_price_value {
    font-size: 14px;
    font-weight: 600;
    color: #FF6B35;
}

/* 服务商列表 */
.zh_providers_list {
    padding: 25px;
}

.zh_provider_card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.zh_provider_card:hover {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 188, 212, 0.1);
    transform: translateX(5px);
}

.zh_provider_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.zh_provider_avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zh_provider_details {
    flex: 1;
}

.zh_provider_name a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin-bottom: 5px;
    display: block;
}

.zh_provider_name a:hover {
    color: #00BCD4;
}

.zh_fws_provider_rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.zh_fws_provider_rating .zh_fws_stars {
    color: #FFD700;
    font-size: 12px;
}

.zh_fws_rating_text {
    font-size: 12px;
    color: #666;
}

.zh_fws_provider_tags {
    display: flex;
    gap: 5px;
}

.zh_fws_provider_action {
    flex-shrink: 0;
}

.zh_fws_more_action {
    text-align: center;
    padding: 0 25px 25px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .zh_fws_layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .zh_fws_sidebar {
        width: 100%;
        position: static;
    }
    
    .zh_mobile_breadcrumb {
        display: block;
    }
    
    .zh_desktop_breadcrumb {
        display: none;
    }
    
    .zh_fws_action_buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .zh_fws_action_buttons .zh_fws_btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .zh_fws_layout {
        padding: 10px;
        gap: 15px;
    }
    
    .zh_fws_profile_card {
        padding: 20px;
    }
    
    .zh_profile_name {
        font-size: 20px;
    }
    
    .zh_fws_quick_info {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .zh_cases_masonry,
    .zh_services_carousel {
        grid-template-columns: 1fr;
    }
    
    .zh_provider_card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .zh_provider_avatar {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .zh_fws_layout {
        padding: 5px;
    }
    
    .zh_content_section {
        border-radius: 10px;
    }
    
    .zh_section_header {
        padding: 15px 20px;
    }
    
    .zh_section_title {
        font-size: 16px;
    }
    
    .zh_intro_content,
    .zh_cases_masonry,
    .zh_services_carousel,
    .zh_providers_list {
        padding: 20px;
    }
}

/* 动画效果 */
@keyframes zh_slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zh_slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.zh_fws_sidebar {
    animation: zh_slideInLeft 0.6s ease;
}

.zh_content_section {
    animation: zh_slideInRight 0.6s ease;
}

/* 滚动条样式 */
.zh_fws_content::-webkit-scrollbar {
    width: 6px;
}

.zh_fws_content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.zh_fws_content::-webkit-scrollbar-thumb {
    background: #00BCD4;
    border-radius: 3px;
}

.zh_fws_content::-webkit-scrollbar-thumb:hover {
    background: #0097A7;
}

