/* 新能源信息详情页样式 */

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础变量 */
:root {
    --zh-primary-color: #258161;
    --zh-primary-light: #2a9d6e;
    --zh-primary-dark: #1f6b50;
    --zh-accent-color: #a8e6cf;
    --zh-text-primary: #333;
    --zh-text-secondary: #666;
    --zh-text-muted: #999;
    --zh-bg-primary: #ffffff;
    --zh-bg-secondary: #f8f9fa;
    --zh-bg-dark: #2c3e50;
    --zh-border-color: #e9ecef;
    --zh-shadow-light: 0 2px 8px rgba(0,0,0,0.1);
    --zh-shadow-medium: 0 4px 16px rgba(0,0,0,0.15);
    --zh-shadow-dark: 0 8px 32px rgba(0,0,0,0.2);
    --zh-radius-small: 6px;
    --zh-radius-medium: 12px;
    --zh-radius-large: 20px;
    --zh-transition: all 0.3s ease;
}

/* 重置和基础样式 */
.zh_main-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fbfa 0%, #ffffff 50%, #f1f8f5 100%);
}

.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 面包屑导航 */
.zh_breadcrumb-section {
    background: rgba(37, 129, 97, 0.05);
    padding: 15px 0;
    border-bottom: 1px solid rgba(37, 129, 97, 0.1);
}

.zh_breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--zh-text-secondary);
    flex-wrap: wrap;
}

.zh_breadcrumb a {
    color: var(--zh-primary-color);
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_breadcrumb a:hover {
    color: var(--zh-primary-dark);
}

.zh_separator {
    color: var(--zh-text-muted);
}

.zh_current {
    color: var(--zh-text-primary);
    font-weight: 500;
    word-break: break-word;
}

/* 信息详情区域 */
.zh_info-section {
    padding: 40px 0;
}

.zh_info-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}

/* 主要内容区域 */
.zh_info-main {
    background: var(--zh-bg-primary);
    border-radius: var(--zh-radius-medium);
    box-shadow: var(--zh-shadow-light);
    overflow: hidden;
    border: 1px solid var(--zh-border-color);
}

/* 信息头部 */
.zh_info-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--zh-border-color);
    background: linear-gradient(135deg, rgba(37, 129, 97, 0.02) 0%, transparent 100%);
}

.zh_info-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.zh_category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--zh-primary-color);
    color: white;
    border-radius: var(--zh-radius-small);
    font-size: 12px;
    font-weight: 500;
}

.zh_publish-time,
.zh_views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--zh-text-muted);
    font-size: 13px;
}

.zh_info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--zh-text-primary);
    line-height: 1.4;
    margin-bottom: 15px;
}

/* 分享工具栏 */
.zh_share-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--zh-border-color);
    margin-top: 15px;
}

.zh_share-label {
    font-size: 13px;
    color: var(--zh-text-secondary);
    font-weight: 500;
}

.zh_share-buttons {
    display: flex;
    gap: 8px;
}

.zh_share-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--zh-transition);
    font-size: 14px;
}

.zh_share-btn.zh_wechat {
    background: #1aad19;
    color: white;
}

.zh_share-btn.zh_weibo {
    background: #e6162d;
    color: white;
}

.zh_share-btn.zh_qq {
    background: #12b7f5;
    color: white;
}

.zh_share-btn.zh_link {
    background: var(--zh-bg-secondary);
    color: var(--zh-text-secondary);
    border: 1px solid var(--zh-border-color);
}

.zh_share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--zh-shadow-medium);
}

/* 信息主体布局 - 左图右信息 */
.zh_info-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    align-items: start;
}

/* 左侧图片区域 */
.zh_info-gallery {
    position: relative;
}

.zh_main-image {
    position: relative;
    border-radius: var(--zh-radius-medium);
    overflow: hidden;
    box-shadow: var(--zh-shadow-light);
}

.zh_main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--zh-transition);
}

.zh_main-img:hover {
    transform: scale(1.02);
}

.zh_image-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zh_img-tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
}

.zh_img-tag.zh_new {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
}

.zh_img-tag.zh_verified {
    background: rgba(37, 129, 97, 0.9);
}

/* 右侧信息区域 */
.zh_info-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.zh_details-grid {
    display: grid;
    gap: 18px;
}

.zh_detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.zh_detail-item:last-child {
    border-bottom: none;
}

.zh_detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    color: var(--zh-text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.zh_detail-label i {
    color: var(--zh-primary-color);
    width: 16px;
    font-size: 14px;
}

.zh_detail-value {
    color: var(--zh-text-primary);
    font-size: 14px;
    font-weight: 500;
    flex: 1;
}

.zh_phone-value {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.zh_phone-link {
    color: var(--zh-primary-color);
    text-decoration: none;
    font-weight: 600;
}

.zh_phone-link:hover {
    text-decoration: underline;
}

.zh_phone-masked {
    color: var(--zh-text-primary);
}

.zh_login-to-view {
    color: var(--zh-primary-color);
    text-decoration: none;
    font-size: 12px;
    padding: 2px 8px;
    background: rgba(37, 129, 97, 0.1);
    border-radius: 4px;
    transition: var(--zh-transition);
}

.zh_login-to-view:hover {
    background: rgba(37, 129, 97, 0.2);
}

.zh_rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_star-filled {
    color: #ffc107;
}

.zh_star-half {
    color: #ffc107;
}

.zh_rating-text {
    font-size: 13px;
    color: var(--zh-text-secondary);
}

/* 快速操作区域 */
.zh_quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px;
    background: rgba(37, 129, 97, 0.02);
    border-radius: var(--zh-radius-small);
    border: 1px solid rgba(37, 129, 97, 0.1);
}

.zh_action-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    border: none;
    border-radius: var(--zh-radius-small);
    cursor: pointer;
    transition: var(--zh-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.zh_action-btn.zh_call-btn {
    background: var(--zh-primary-color);
    color: white;
}

.zh_action-btn.zh_call-btn:hover {
    background: var(--zh-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--zh-shadow-medium);
}

.zh_action-btn.zh_message-btn,
.zh_action-btn.zh_collect-btn {
    background: var(--zh-bg-secondary);
    color: var(--zh-text-secondary);
    border: 1px solid var(--zh-border-color);
}

.zh_action-btn.zh_message-btn:hover,
.zh_action-btn.zh_collect-btn:hover {
    background: rgba(37, 129, 97, 0.1);
    color: var(--zh-primary-color);
    border-color: var(--zh-primary-color);
}

/* 详细描述区域 */
.zh_info-description {
    padding: 30px;
    border-top: 1px solid var(--zh-border-color);
}

.zh_section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--zh-text-primary);
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_section-title i {
    color: var(--zh-primary-color);
    font-size: 1.1rem;
}

.zh_description-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--zh-text-primary);
}

.zh_description-content h1,
.zh_description-content h2,
.zh_description-content h3,
.zh_description-content h4,
.zh_description-content h5,
.zh_description-content h6 {
    margin: 25px 0 15px 0;
    color: var(--zh-text-primary);
    font-weight: 600;
}

.zh_description-content p {
    margin-bottom: 16px;
    text-align: justify;
}

.zh_description-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--zh-radius-small);
    margin: 16px 0;
}

.zh_description-content blockquote {
    background: rgba(37, 129, 97, 0.05);
    border-left: 4px solid var(--zh-primary-color);
    padding: 15px 20px;
    margin: 16px 0;
    font-style: italic;
    color: var(--zh-text-secondary);
}

.zh_description-content ul,
.zh_description-content ol {
    margin: 16px 0;
    padding-left: 30px;
}

.zh_description-content li {
    margin-bottom: 8px;
}

/* 服务商介绍区域 */
.zh_provider-intro {
    padding: 30px;
    border-top: 1px solid var(--zh-border-color);
    background: rgba(37, 129, 97, 0.01);
}

.zh_intro-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--zh-text-secondary);
}

.zh_intro-content p {
    margin: 0 0 15px 0;
}

.zh_view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--zh-primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--zh-transition);
}

.zh_view-more-link:hover {
    gap: 12px;
}

/* 标签区域 */
.zh_info-tags {
    padding: 30px;
    border-top: 1px solid var(--zh-border-color);
}

/* 文章标签 */
.zh_article-tags {
    padding: 20px 30px;
    border-top: 1px solid var(--zh-border-color);
}

.zh_tags-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.zh_tags-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: var(--zh-text-secondary);
    font-size: 14px;
}

.zh_tags-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.zh_tag {
    padding: 4px 12px;
    background: var(--zh-bg-secondary);
    color: var(--zh-text-secondary);
    border-radius: var(--zh-radius-small);
    font-size: 12px;
    text-decoration: none;
    transition: var(--zh-transition);
    border: 1px solid var(--zh-border-color);
}

.zh_tag:hover {
    background: var(--zh-primary-color);
    color: white;
    border-color: var(--zh-primary-color);
}

/* 文章底部操作 */
.zh_article-actions {
    padding: 20px 30px;
    border-top: 1px solid var(--zh-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.zh_actions-left,
.zh_actions-right {
    display: flex;
    gap: 15px;
}

.zh_action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--zh-bg-secondary);
    border: 1px solid var(--zh-border-color);
    border-radius: var(--zh-radius-small);
    color: var(--zh-text-secondary);
    cursor: pointer;
    transition: var(--zh-transition);
    font-size: 14px;
}

.zh_action-btn:hover {
    background: rgba(37, 129, 97, 0.1);
    color: var(--zh-primary-color);
    border-color: var(--zh-primary-color);
}

.zh_action-btn.zh_liked,
.zh_action-btn.zh_collected {
    background: var(--zh-primary-color);
    color: white;
    border-color: var(--zh-primary-color);
}

.zh_count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: var(--zh-radius-small);
    font-size: 12px;
    min-width: 25px;
    text-align: center;
}

/* 侧边栏 */
.zh_info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 联系卡片 */
.zh_contact-widget {
    background: var(--zh-bg-primary);
    border-radius: var(--zh-radius-medium);
    box-shadow: var(--zh-shadow-light);
    overflow: hidden;
    border: 1px solid var(--zh-border-color);
    position: sticky;
    top: 20px;
}

.zh_widget-header {
    padding: 20px;
    border-bottom: 1px solid var(--zh-border-color);
    background: linear-gradient(135deg, rgba(37, 129, 97, 0.05) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zh_widget-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--zh-text-primary);
}

.zh_online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--zh-primary-color);
    font-weight: 500;
}

.zh_status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.zh_contact-info {
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.zh_provider-avatar {
    position: relative;
}

.zh_avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--zh-bg-secondary);
}

.zh_verified-mark {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: var(--zh-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    border: 2px solid white;
}

.zh_provider-info {
    flex: 1;
}

.zh_provider-name {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--zh-text-primary);
}

.zh_provider-title {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: var(--zh-text-secondary);
}

.zh_provider-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_stars {
    display: flex;
    gap: 2px;
}

.zh_stars i {
    color: #ffc107;
    font-size: 12px;
}

.zh_rating-score {
    font-size: 12px;
    color: var(--zh-text-secondary);
    font-weight: 500;
}

.zh_contact-actions {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zh_contact-btn {
    padding: 12px 16px;
    border: none;
    border-radius: var(--zh-radius-small);
    cursor: pointer;
    transition: var(--zh-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.zh_contact-btn.zh_primary {
    background: var(--zh-primary-color);
    color: white;
}

.zh_contact-btn.zh_primary:hover {
    background: var(--zh-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--zh-shadow-medium);
}

.zh_contact-btn.zh_secondary {
    background: var(--zh-bg-secondary);
    color: var(--zh-text-secondary);
    border: 1px solid var(--zh-border-color);
}

.zh_contact-btn.zh_secondary:hover {
    background: rgba(37, 129, 97, 0.1);
    color: var(--zh-primary-color);
    border-color: var(--zh-primary-color);
}

.zh_login-notice {
    margin: 15px 20px 20px;
    padding: 12px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--zh-radius-small);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #856404;
}

.zh_login-btn {
    color: var(--zh-primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-left: auto;
}

/* 相关服务卡片 */
.zh_related-widget {
    background: var(--zh-bg-primary);
    border-radius: var(--zh-radius-medium);
    box-shadow: var(--zh-shadow-light);
    overflow: hidden;
    border: 1px solid var(--zh-border-color);
}

.zh_related-list {
    padding: 0 20px 20px;
}

.zh_related-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--zh-text-primary);
    transition: var(--zh-transition);
}

.zh_related-item:last-child {
    border-bottom: none;
}

.zh_related-item:hover {
    background: rgba(37, 129, 97, 0.02);
    margin: 0 -12px;
    padding: 12px;
    border-radius: var(--zh-radius-small);
}

.zh_related-thumb {
    width: 50px;
    height: 50px;
    border-radius: var(--zh-radius-small);
    object-fit: cover;
    flex-shrink: 0;
}

.zh_related-info h5 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--zh-text-primary);
}

.zh_related-info p {
    margin: 0;
    font-size: 12px;
    color: var(--zh-primary-color);
    font-weight: 600;
}

/* 操作菜单 */
.zh_action-widget {
    background: var(--zh-bg-primary);
    border-radius: var(--zh-radius-medium);
    box-shadow: var(--zh-shadow-light);
    overflow: hidden;
    border: 1px solid var(--zh-border-color);
}

.zh_action-buttons {
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

.zh_action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--zh-transition);
    padding: 12px;
    border-radius: var(--zh-radius-small);
    color: var(--zh-text-secondary);
}

.zh_action-item:hover {
    background: rgba(37, 129, 97, 0.1);
    color: var(--zh-primary-color);
}

.zh_action-item i {
    font-size: 18px;
}

.zh_action-item span {
    font-size: 12px;
    font-weight: 500;
}

/* 服务商信息卡片 */
.zh_provider-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.zh_provider-name h4 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--zh-text-primary);
}

.zh_verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--zh-primary-color);
    font-size: 12px;
    font-weight: 500;
}

.zh_contact-info {
    margin-bottom: 20px;
}

.zh_contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.zh_contact-item i {
    color: var(--zh-primary-color);
    width: 16px;
}

.zh_label {
    color: var(--zh-text-secondary);
    min-width: 70px;
}

.zh_value {
    color: var(--zh-text-primary);
    font-weight: 500;
}

.zh_provider-desc h5 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: var(--zh-text-secondary);
}

.zh_provider-desc p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--zh-text-secondary);
}

.zh_view-provider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--zh-primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--zh-radius-small);
    transition: var(--zh-transition);
    font-weight: 500;
}

.zh_view-provider-btn:hover {
    background: var(--zh-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--zh-shadow-medium);
}

/* 联系服务商卡片 */
.zh_contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.zh_contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: none;
    border-radius: var(--zh-radius-small);
    cursor: pointer;
    transition: var(--zh-transition);
    font-weight: 500;
    text-decoration: none;
}

.zh_contact-btn.zh_phone-btn {
    background: var(--zh-primary-color);
    color: white;
}

.zh_contact-btn.zh_message-btn {
    background: #1890ff;
    color: white;
}

.zh_contact-btn.zh_qr-btn {
    background: #1aad19;
    color: white;
}

.zh_contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--zh-shadow-medium);
}

.zh_login-tip {
    background: rgba(255, 193, 7, 0.1);
    padding: 12px;
    border-radius: var(--zh-radius-small);
    border: 1px solid rgba(255, 193, 7, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #856404;
}

.zh_login-link {
    color: var(--zh-primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-left: auto;
}

/* 快速导航 */
.zh_nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zh_nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: var(--zh-text-secondary);
    text-decoration: none;
    border-radius: var(--zh-radius-small);
    transition: var(--zh-transition);
}

.zh_nav-link:hover {
    background: rgba(37, 129, 97, 0.1);
    color: var(--zh-primary-color);
}

.zh_nav-link i {
    width: 16px;
    color: var(--zh-primary-color);
}

/* 相关推荐区域 */
.zh_related-section {
    padding: 60px 0;
    background: var(--zh-bg-secondary);
}

.zh_section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--zh-text-primary);
    margin: 0 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.zh_section-title i {
    color: var(--zh-primary-color);
}

.zh_related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* 相关推荐卡片 */
.zh_related-card {
    background: var(--zh-bg-primary);
    border-radius: var(--zh-radius-medium);
    box-shadow: var(--zh-shadow-light);
    overflow: hidden;
    transition: var(--zh-transition);
    border: 1px solid var(--zh-border-color);
}

.zh_related-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--zh-shadow-dark);
    border-color: rgba(37, 129, 97, 0.2);
}

.zh_card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.zh_card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zh-transition);
}

.zh_related-card:hover .zh_card-thumb {
    transform: scale(1.05);
}

.zh_card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 129, 97, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--zh-transition);
}

.zh_related-card:hover .zh_card-overlay {
    opacity: 1;
}

.zh_read-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--zh-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--zh-transition);
    font-size: 18px;
}

.zh_read-btn:hover {
    transform: scale(1.1);
}

.zh_related-card .zh_card-content {
    padding: 20px;
}

.zh_related-card .zh_card-title {
    margin: 0 0 10px 0;
    font-size: 1rem;
    line-height: 1.4;
}

.zh_related-card .zh_card-title a {
    color: var(--zh-text-primary);
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_related-card .zh_card-title a:hover {
    color: var(--zh-primary-color);
}

.zh_card-excerpt {
    color: var(--zh-text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.zh_card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--zh-text-muted);
}

.zh_meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 查看更多 */
.zh_view-more-section {
    text-align: center;
}

.zh_view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--zh-primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--zh-radius-medium);
    transition: var(--zh-transition);
    font-weight: 500;
}

.zh_view-more-btn:hover {
    background: var(--zh-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--zh-shadow-medium);
    gap: 15px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .zh_info-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zh_info-sidebar {
        order: -1;
    }
    
    .zh_contact-widget {
        position: static;
    }
    
    .zh_info-body {
        grid-template-columns: 300px 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .zh_container {
        padding: 0 15px;
    }
    
    .zh_breadcrumb {
        font-size: 13px;
    }
    
    .zh_info-header {
        padding: 20px;
    }
    
    .zh_info-title {
        font-size: 1.5rem;
    }
    
    .zh_info-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .zh_share-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .zh_info-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .zh_main-img {
        height: 250px;
    }
    
    .zh_details-grid {
        gap: 15px;
    }
    
    .zh_detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0;
    }
    
    .zh_detail-label {
        min-width: auto;
    }
    
    .zh_quick-actions {
        flex-direction: column;
        padding: 15px;
    }
    
    .zh_action-btn {
        min-width: auto;
        width: 100%;
    }
    
    .zh_info-description,
    .zh_provider-intro,
    .zh_info-tags {
        padding: 20px;
    }
    
    .zh_contact-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .zh_contact-actions {
        padding: 0 15px 15px;
    }
    
    .zh_related-list {
        padding: 0 15px 15px;
    }
    
    .zh_action-buttons {
        padding: 15px;
    }
    
    .zh_related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zh_info-header {
        padding: 15px;
    }
    
    .zh_info-title {
        font-size: 1.3rem;
    }
    
    .zh_info-body {
        padding: 15px;
    }
    
    .zh_main-img {
        height: 200px;
    }
    
    .zh_description-content {
        font-size: 14px;
    }
    
    .zh_quick-actions {
        padding: 12px;
        gap: 8px;
    }
    
    .zh_action-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .zh_contact-info {
        padding: 15px;
    }
    
    .zh_avatar-img {
        width: 50px;
        height: 50px;
    }
    
    .zh_verified-mark {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
    
    .zh_provider-name {
        font-size: 0.9rem;
    }
    
    .zh_widget-header {
        padding: 15px;
    }
    
    .zh_related-item {
        padding: 10px 0;
    }
    
    .zh_related-thumb {
        width: 40px;
        height: 40px;
    }
    
    .zh_section-title {
        font-size: 1.1rem;
    }
    
    .zh_breadcrumb {
        font-size: 12px;
        gap: 8px;
    }
    
    .zh_current {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* 动画效果 */
@keyframes zh_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zh_info-main,
.zh_contact-widget,
.zh_related-widget,
.zh_action-widget,
.zh_related-card {
    animation: zh_fadeInUp 0.6s ease-out;
}

/* 图片加载效果 */
.zh_card-thumb,
.zh_main-img,
.zh_avatar-img,
.zh_related-thumb {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_card-thumb.zh_loaded,
.zh_main-img.zh_loaded,
.zh_avatar-img.zh_loaded,
.zh_related-thumb.zh_loaded {
    opacity: 1;
}

/* 打印样式 */
@media print {
    .zh_info-sidebar,
    .zh_share-toolbar,
    .zh_quick-actions,
    .zh_action-buttons {
        display: none;
    }
    
    .zh_info-layout {
        grid-template-columns: 1fr;
    }
    
    .zh_info-main {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .zh_info-body {
        grid-template-columns: 1fr;
    }
}
