/* 多品网络信息详情页样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, 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: 12px 0;
    margin-bottom: 20px;
}

.zh_breadcrumb-nav {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.zh_breadcrumb-nav a {
    color: #4CAF50;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.zh_breadcrumb-nav a:hover {
    color: #2E7D32;
}

.zh_separator {
    margin: 0 8px;
    color: #999;
}

.zh_current {
    color: #666;
    font-weight: 500;
}

/* 主要内容区域 */
.zh_main-content {
    margin-bottom: 40px;
}

.zh_content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

/* 左侧内容 */
.zh_left-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 卡片通用样式 */
.zh_info-card,
.zh_detail-card,
.zh_provider-card,
.zh_sidebar-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zh_info-card:hover,
.zh_detail-card:hover,
.zh_provider-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* 卡片头部 */
.zh_card-header {
    padding: 20px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
}

.zh_card-header h2,
.zh_card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_card-body {
    padding: 25px;
}

/* 信息展示区 */
.zh_info-header {
    display: flex;
    gap: 25px;
    padding: 25px;
}

.zh_image-section {
    flex-shrink: 0;
    width: 320px;
}

.zh_main-image {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
}

.zh_main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.zh_main-image:hover img {
    transform: scale(1.05);
}

.zh_info-section {
    flex: 1;
    min-width: 0;
}

.zh_title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.zh_meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.zh_tag,
.zh_views,
.zh_time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
}

.zh_tag {
    background: #E8F5E8;
    color: #4CAF50;
    font-weight: 500;
}

.zh_quick-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zh_info-item {
    display: flex;
    align-items: center;
}

.zh_label {
    font-weight: 600;
    color: #555;
    min-width: 100px;
    font-size: 15px;
}

.zh_value {
    color: #333;
    font-size: 15px;
}

.zh_price {
    color: #4CAF50;
    font-weight: 700;
    font-size: 18px;
}

/* 详情内容 */
.zh_detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.zh_detail-content p {
    margin-bottom: 15px;
}

.zh_detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* 服务商信息 */
.zh_provider-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.zh_provider-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    border: 3px solid #4CAF50;
}

.zh_provider-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zh_provider-details {
    flex: 1;
}

.zh_provider-name {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.zh_provider-name a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_provider-name a:hover {
    color: #2E7D32;
}

.zh_provider-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.zh_provider-meta {
    font-size: 14px;
    color: #666;
}

.zh_contact-person {
    display: flex;
    align-items: center;
    gap: 5px;
}

.zh_contact-section {
    flex-shrink: 0;
    text-align: right;
}

.zh_contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.zh_phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #4CAF50;
}

.zh_contact-btn,
.zh_full-contact-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_contact-btn:hover,
.zh_full-contact-btn:hover {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.zh_full-contact-btn {
    width: 100%;
    justify-content: center;
}

/* 右侧边栏 */
.zh_right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zh_sidebar-card .zh_card-header {
    padding: 15px 20px 10px;
    font-size: 16px;
}

.zh_sidebar-card .zh_card-body {
    padding: 20px;
}

/* 快速联系卡片 */
.zh_contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.zh_contact-item i {
    color: #4CAF50;
    width: 16px;
}

/* 相关推荐 */
.zh_recommend-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zh_recommend-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.zh_recommend-item:hover {
    background-color: #f8f9fa;
}

.zh_recommend-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}

.zh_recommend-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zh_recommend-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zh_recommend-info h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.zh_recommend-info h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_recommend-info h4 a:hover {
    color: #4CAF50;
}

.zh_recommend-price {
    font-size: 12px;
    color: #4CAF50;
    font-weight: 600;
    margin-top: 5px;
}

/* 服务保障 */
.zh_guarantee-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zh_guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.zh_guarantee-item i {
    color: #4CAF50;
    font-size: 16px;
}

/* 底部相关服务 */
.zh_related-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-top: 40px;
}

.zh_section-header {
    text-align: center;
    margin-bottom: 50px;
}

.zh_section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.zh_section-header p {
    font-size: 16px;
    color: #666;
}

.zh_services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.zh_service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zh_service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.zh_service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
}

.zh_service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.zh_service-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.zh_service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.zh_service-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.zh_service-link:hover {
    color: #2E7D32;
    gap: 10px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .zh_content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zh_right-sidebar {
        order: -1;
    }
    
    .zh_info-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .zh_image-section {
        width: 100%;
    }
    
    .zh_main-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .zh_container {
        padding: 0 15px;
    }
    
    .zh_title {
        font-size: 24px;
    }
    
    .zh_meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .zh_provider-info {
        flex-direction: column;
        text-align: center;
    }
    
    .zh_contact-section {
        text-align: center;
    }
    
    .zh_contact-info {
        align-items: center;
    }
    
    .zh_services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zh_section-header h2 {
        font-size: 28px;
    }
    
    .zh_service-item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .zh_breadcrumb-nav {
        font-size: 12px;
    }
    
    .zh_title {
        font-size: 20px;
    }
    
    .zh_card-body,
    .zh_info-header {
        padding: 20px 15px;
    }
    
    .zh_main-image {
        height: 200px;
    }
    
    .zh_quick-info {
        gap: 8px;
    }
    
    .zh_info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .zh_label {
        min-width: auto;
        font-size: 14px;
    }
    
    .zh_value {
        font-size: 14px;
    }
}
