/* 家政服务详情页样式 - 现代便民风 */

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* 容器 */
.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 面包屑导航 */
.zh_breadcrumb {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
    margin-bottom: 20px;
}

.zh_breadcrumb nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.zh_breadcrumb a {
    color: #00BCD4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_breadcrumb a:hover {
    color: #0097A7;
}

.zh_separator {
    margin: 0 10px;
    color: #ccc;
}

.zh_current {
    color: #666;
    font-weight: 500;
}

/* 主内容区域 */
.zh_main_content {
    padding: 20px 0;
}

.zh_content_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    margin-bottom: 40px;
}

/* 左侧主内容 */
.zh_left_content {
    min-width: 0;
}

/* 服务详情卡片 */
.zh_service_card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 188, 212, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zh_service_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.15);
}

/* 标题区域样式 */
.zh_service_title_section {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #f0f2f5;
}

.zh_service_header {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 30px;
    align-items: flex-start;
}

.zh_service_image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.zh_service_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.zh_service_image:hover img {
    transform: scale(1.05);
}

.zh_service_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}



.zh_service_title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.zh_service_meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.zh_meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.zh_meta_item i {
    color: #00BCD4;
}

/* 服务商信息在右侧 */
.zh_provider_info_header {
    min-width: 300px;
}

.zh_provider_card_mini {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.zh_provider_card_mini:hover {
    border-color: #00BCD4;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.1);
}

.zh_provider_header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.zh_provider_header_top h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #2c3e50;
}

.zh_provider_header_top h4 i {
    color: #00BCD4;
}

.zh_verified_badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #00BCD4, #66BB6A);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.zh_provider_main_info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.zh_provider_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00BCD4;
    flex-shrink: 0;
}

.zh_provider_avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zh_provider_details {
    flex: 1;
    min-width: 0;
}

.zh_provider_details h5 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.zh_provider_contact {
    color: #666;
    margin-bottom: 8px;
    font-size: 14px;
}

.zh_provider_phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #00BCD4;
    font-weight: 500;
    font-size: 14px;
}

.zh_phone_login {
    color: #00BCD4;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    border-bottom: 1px dashed #00BCD4;
}

.zh_phone_login:hover {
    color: #0097A7;
    border-bottom-color: #0097A7;
    text-decoration: none;
}

.zh_provider_actions {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.zh_btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 90px;
}

.zh_btn_primary {
    background: linear-gradient(135deg, #00BCD4, #26C6DA);
    color: white;
}

.zh_btn_primary:hover {
    background: linear-gradient(135deg, #0097A7, #00ACC1);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 188, 212, 0.3);
}

.zh_btn_contact {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
}

.zh_btn_contact:hover {
    background: linear-gradient(135deg, #E55A2B, #FF7F47);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.zh_provider_description {
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.zh_provider_description h6 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.zh_provider_description h6 i {
    color: #00BCD4;
}

.zh_provider_description p {
    color: #666;
    line-height: 1.5;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 服务内容 */
.zh_service_content {
    padding: 0 30px 30px;
}

.zh_service_content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00BCD4;
}

.zh_service_content h3 i {
    color: #00BCD4;
}

.zh_content_body {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.zh_content_body p {
    margin-bottom: 15px;
}
.zh_content_body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.zh_content_body ul, .zh_content_body ol {
    margin: 15px 0;
    padding-left: 25px;
}

.zh_content_body li {
    margin-bottom: 8px;
}

/* 右侧边栏 */
.zh_sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* 侧边栏相关服务推荐 */
.zh_related_services_sidebar, .zh_guarantee_card, .zh_categories_card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 188, 212, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zh_related_services_sidebar:hover, .zh_guarantee_card:hover, .zh_categories_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.15);
}

.zh_related_services_sidebar h4, .zh_guarantee_card h4, .zh_categories_card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #2c3e50;
    padding: 20px 25px 15px;
    border-bottom: 1px solid #f0f2f5;
    margin-bottom: 20px;
}

.zh_related_services_sidebar h4 i, .zh_guarantee_card h4 i, .zh_categories_card h4 i {
    color: #00BCD4;
}

.zh_services_list {
    padding: 0 20px 20px;
}

.zh_service_item_sidebar {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.zh_service_item_sidebar:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.zh_service_item_sidebar:last-child {
    margin-bottom: 0;
}

.zh_service_thumb_small {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.zh_service_thumb_small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.zh_service_item_sidebar:hover .zh_service_thumb_small img {
    transform: scale(1.05);
}

.zh_service_item_info_small {
    flex: 1;
    min-width: 0;
}

.zh_service_item_info_small h6 {
    margin-bottom: 8px;
}

.zh_service_item_info_small h6 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.zh_service_item_info_small h6 a:hover {
    color: #00BCD4;
}

.zh_service_item_meta_small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.zh_price {
    color: #FF6B35;
    font-weight: 700;
    font-size: 14px;
}

.zh_location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
    font-size: 12px;
}

.zh_location i {
    color: #00BCD4;
}

/* 服务保障 */
.zh_guarantee_list {
    list-style: none;
    padding: 0 25px 25px;
}

.zh_guarantee_list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #555;
    font-size: 15px;
}

.zh_guarantee_list li i {
    color: #00BCD4;
    font-size: 16px;
}

/* 热门服务分类 */
.zh_category_links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 25px 25px;
}

.zh_category_link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.zh_category_link:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #00BCD4;
    transform: translateX(5px);
}

.zh_category_link i {
    width: 20px;
    text-align: center;
    color: #00BCD4;
}



/* 动画 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zh_container {
        padding: 0 15px;
    }
    
    .zh_content_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zh_service_title_section {
        padding: 20px;
    }
    
    .zh_service_header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .zh_service_image {
        width: 100%;
        height: 250px;
    }
    
    .zh_service_title {
        font-size: 24px;
    }
    
    .zh_service_content {
        padding: 0 20px 20px;
    }
    
    .zh_provider_info_header {
        min-width: auto;
    }
    
    .zh_provider_main_info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .zh_provider_actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .zh_service_title_section {
        padding: 15px;
    }
    
    .zh_service_header {
        padding: 15px;
    }
    
    .zh_service_title {
        font-size: 20px;
    }
    
    .zh_meta_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .zh_btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 80px;
    }
    
    .zh_provider_actions {
        flex-direction: column;
        width: 100%;
    }
    
    .zh_related_services_sidebar h4,
    .zh_guarantee_card h4,
    .zh_categories_card h4 {
        font-size: 16px;
        padding: 15px 20px 10px;
    }
    
    .zh_services_list {
        padding: 0 15px 15px;
    }
    
    .zh_service_item_sidebar {
        padding: 10px;
    }
    
    .zh_service_thumb_small {
        width: 70px;
        height: 50px;
    }
    



}







