/* ========== Figma风格详情页样式 ========== */
/* 设计语言：大圆角、毛玻璃效果、现代简约 */

/* ========== 变量定义 ========== */
:root {
    --zh-primary: #6b7d55;
    --zh-primary-dark: #232e07;
    --zh-primary-light: #8a9d70;
    --zh-bg-light: #f8fff2;
    --zh-bg-cream: #f5f7f0;
    --zh-text: #484848;
    --zh-heading: #232e07;
    --zh-border: rgba(107, 125, 85, 0.2);
    --zh-shadow: rgba(35, 46, 7, 0.08);
    --zh-radius-xl: 60px;
    --zh-radius-lg: 40px;
    --zh-radius-md: 25px;
    --zh-radius-sm: 15px;
}

/* ========== 页面Hero区域 ========== */
.zh_show_hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: -120px;
    padding-top: 120px;
}

.zh_show_hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.zh_show_hero_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_show_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(35, 46, 7, 0.4) 0%,
            rgba(35, 46, 7, 0.7) 50%,
            rgba(35, 46, 7, 0.9) 100%);
}

.zh_show_hero_content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0 60px;
}

/* 面包屑 */
.zh_show_breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--zh-radius-lg);
    margin-bottom: 30px;
    font-size: 14px;
}

.zh_show_breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_show_breadcrumb a:hover {
    color: #fff;
}

.zh_show_breadcrumb span {
    color: var(--zh-bg-light);
}

.zh_breadcrumb_divider {
    color: rgba(255, 255, 255, 0.4);
}

/* 标题卡片 */
.zh_show_hero_card {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--zh-radius-xl);
    padding: 45px 55px;
    max-width: 800px;
    box-shadow:
        inset -8px -6px 20px rgba(18, 30, 14, 0.15),
        inset 6px 4px 15px rgba(255, 255, 255, 0.1);
}

.zh_show_hero_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.zh_show_hero_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(107, 125, 85, 0.3);
    border-radius: var(--zh-radius-md);
    font-size: 13px;
    color: var(--zh-bg-light);
}

.zh_show_hero_tag i {
    font-size: 12px;
}

.zh_show_hero_title {
    font-family: 'Raleway', 'Noto Sans SC', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.zh_show_hero_merchant {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.zh_show_hero_merchant i {
    color: var(--zh-primary-light);
}

.zh_show_hero_merchant a {
    color: var(--zh-bg-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.zh_show_hero_merchant a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ========== 主内容区 ========== */
.zh_show_main {
    background: var(--zh-bg-cream);
    padding: 60px 0 80px;
}

.zh_show_layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.zh_show_content {
    min-width: 0;
}

/* ========== 服务商卡片 ========== */
.zh_provider_card {
    background: #fff;
    border-radius: var(--zh-radius-lg);
    border: 1px solid var(--zh-border);
    overflow: hidden;
    margin-bottom: 35px;
}

.zh_provider_card_header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--zh-primary-dark);
}

.zh_provider_avatar {
    width: 60px;
    height: 60px;
    background: rgba(107, 125, 85, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zh_provider_avatar i {
    font-size: 26px;
    color: var(--zh-bg-light);
}

.zh_provider_info {
    flex: 1;
}

.zh_provider_name {
    font-family: 'Raleway', 'Noto Sans SC', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.zh_provider_type {
    font-size: 13px;
    color: var(--zh-primary-light);
}

.zh_provider_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--zh-primary);
    color: #fff;
    border-radius: var(--zh-radius-md);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zh_provider_link:hover {
    background: var(--zh-primary-light);
    color: #fff;
}

.zh_provider_card_body {
    padding: 28px 32px;
}

.zh_provider_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.zh_provider_item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.zh_provider_item_full {
    grid-column: span 2;
}

.zh_provider_label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
}

.zh_provider_label i {
    color: var(--zh-primary);
    font-size: 14px;
}

.zh_provider_value {
    font-size: 15px;
    color: var(--zh-heading);
    font-weight: 500;
}

.zh_provider_phone {
    color: var(--zh-primary);
    font-weight: 600;
}

/* ========== 详情区块 ========== */
.zh_detail_section {
    background: #fff;
    border-radius: var(--zh-radius-lg);
    border: 1px solid var(--zh-border);
    margin-bottom: 35px;
    overflow: hidden;
}

.zh_detail_section_header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 32px;
    background: var(--zh-bg-light);
    border-bottom: 1px solid var(--zh-border);
}

.zh_detail_section_icon {
    width: 50px;
    height: 50px;
    background: var(--zh-primary);
    border-radius: var(--zh-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_detail_section_icon i {
    font-size: 22px;
    color: #fff;
}

.zh_detail_section_title {
    font-family: 'Raleway', 'Noto Sans SC', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--zh-heading);
}

.zh_detail_section_body {
    padding: 32px;
}

/* 参数网格 */
.zh_params_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.zh_param_item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 22px;
    background: var(--zh-bg-light);
    border-radius: var(--zh-radius-sm);
}

.zh_param_label {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.zh_param_value {
    font-size: 15px;
    color: var(--zh-heading);
    font-weight: 500;
}

.zh_param_value a {
    color: var(--zh-primary);
    text-decoration: none;
}

.zh_param_value a:hover {
    text-decoration: underline;
}

/* 内容区域 */
.zh_content_area {
    font-size: 16px;
    line-height: 1.8;
    color: var(--zh-text);
}

.zh_content_area p {
    margin-bottom: 18px;
}

.zh_content_area h2,
.zh_content_area h3,
.zh_content_area h4 {
    color: var(--zh-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.zh_content_area img {
    max-width: 100%;
    height: auto;
    border-radius: var(--zh-radius-md);
    margin: 20px 0;
}

.zh_content_area ul,
.zh_content_area ol {
    padding-left: 25px;
    margin-bottom: 18px;
}

.zh_content_area li {
    margin-bottom: 8px;
}

/* 图片展示 */
.zh_gallery {
    /* 预留图片展示样式 */
}

.zh_gallery_main {
    border-radius: var(--zh-radius-md);
    overflow: hidden;
}

.zh_gallery_main img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== 侧边栏 ========== */
.zh_show_sidebar {
    position: sticky;
    top: 150px;
}

.zh_sidebar_widget {
    background: #fff;
    border-radius: var(--zh-radius-lg);
    border: 1px solid var(--zh-border);
    margin-bottom: 25px;
    overflow: hidden;
}

.zh_sidebar_widget_header {
    padding: 22px 28px;
    background: var(--zh-primary-dark);
}

.zh_sidebar_widget_title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    font-family: 'Raleway', 'Noto Sans SC', sans-serif;
}

.zh_sidebar_widget_title i {
    color: var(--zh-primary-light);
    font-size: 18px;
}

.zh_sidebar_widget_body {
    padding: 25px 28px;
}

/* 分类链接 */
.zh_category_links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zh_category_link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--zh-bg-light);
    border-radius: var(--zh-radius-sm);
    color: var(--zh-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.zh_category_link i:first-child {
    color: var(--zh-primary);
}

.zh_category_link span {
    flex: 1;
}

.zh_category_link i:last-child {
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_category_link:hover {
    background: var(--zh-primary);
    color: #fff;
}

.zh_category_link:hover i {
    color: #fff;
    opacity: 1;
}

.zh_category_link.active {
    background: var(--zh-primary);
    color: #fff;
}

.zh_category_link.active i {
    color: #fff;
}

/* 热门列表 */
.zh_hot_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zh_hot_item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zh_hot_rank {
    width: 28px;
    height: 28px;
    background: var(--zh-bg-light);
    color: var(--zh-text);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.zh_hot_rank_top {
    background: var(--zh-primary);
    color: #fff;
}

.zh_hot_link {
    flex: 1;
    font-size: 14px;
    color: var(--zh-text);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_hot_link:hover {
    color: var(--zh-primary);
}

/* 相关列表 */
.zh_related_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.zh_related_item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    padding: 12px;
    margin: -12px;
    border-radius: var(--zh-radius-sm);
    transition: all 0.3s ease;
}

.zh_related_item:hover {
    background: var(--zh-bg-light);
}

.zh_related_image {
    width: 80px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.zh_related_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f7f0;
}

.zh_related_info {
    flex: 1;
    min-width: 0;
}

.zh_related_title {
    font-size: 14px;
    font-weight: 500;
    color: var(--zh-heading);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_related_views {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 推荐卡片 */
.zh_sidebar_featured {
    position: relative;
    border-radius: var(--zh-radius-xl);
    overflow: hidden;
    margin-bottom: 25px;
}

.zh_sidebar_featured_image {
    position: relative;
    height: 200px;
}

.zh_sidebar_featured_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f7f0;
}

.zh_sidebar_featured_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(35, 46, 7, 0.9) 100%);
}

.zh_sidebar_featured_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
}

.zh_sidebar_featured_badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--zh-primary);
    color: #fff;
    border-radius: var(--zh-radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.zh_sidebar_featured_title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.zh_sidebar_featured_meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.zh_sidebar_featured_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--zh-radius-md);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.zh_sidebar_featured_btn:hover {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: #fff;
}

/* ========== 底部相关推荐 ========== */
.zh_related_section {
    background: #fff;
    padding: 70px 0;
}

.zh_related_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.zh_related_section_title {
    font-family: 'Raleway', 'Noto Sans SC', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--zh-heading);
}

.zh_related_more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--zh-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.zh_related_more:hover {
    color: var(--zh-primary-dark);
}

.zh_related_more i {
    transition: transform 0.3s ease;
}

.zh_related_more:hover i {
    transform: translateX(4px);
}

.zh_related_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.zh_related_card {
    background: #fff;
    border-radius: var(--zh-radius-md);
    overflow: hidden;
    border: 1px solid var(--zh-border);
    transition: all 0.4s ease;
}

.zh_related_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--zh-shadow);
    border-color: var(--zh-primary);
}

.zh_related_card_image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.zh_related_card_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f7f0;
    transition: transform 0.5s ease;
}

.zh_related_card:hover .zh_related_card_image img {
    transform: scale(1.08);
}

.zh_related_card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(35, 46, 7, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_related_card:hover .zh_related_card_overlay {
    opacity: 1;
}

.zh_related_card_view {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zh-primary);
    font-size: 18px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.zh_related_card:hover .zh_related_card_view {
    transform: scale(1);
}

.zh_related_card_view:hover {
    background: var(--zh-primary);
    color: #fff;
}

.zh_related_card_body {
    padding: 22px;
}

.zh_related_card_title {
    margin-bottom: 10px;
}

.zh_related_card_title a {
    font-size: 16px;
    font-weight: 600;
    color: var(--zh-heading);
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.zh_related_card_title a:hover {
    color: var(--zh-primary);
}

.zh_related_card_meta {
    font-size: 13px;
    color: #999;
}

.zh_related_card_meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ========== 底部CTA ========== */
.zh_show_cta {
    background: var(--zh-bg-cream);
    padding: 80px 0;
}

.zh_show_cta_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px;
    background: var(--zh-primary-dark);
    border-radius: var(--zh-radius-xl);
    position: relative;
    overflow: hidden;
}

.zh_show_cta_card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--zh-primary);
    opacity: 0.1;
    border-radius: 50%;
}

.zh_show_cta_left {
    position: relative;
    z-index: 1;
}

.zh_show_cta_title {
    font-family: 'Raleway', 'Noto Sans SC', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.zh_show_cta_desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.zh_show_cta_right {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 15px;
}

.zh_show_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--zh-primary);
    color: #fff;
    border-radius: var(--zh-radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.zh_show_cta_btn:hover {
    background: var(--zh-primary-light);
    color: #fff;
    transform: translateY(-2px);
}

.zh_show_cta_btn_outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.zh_show_cta_btn_outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .zh_show_layout {
        grid-template-columns: 1fr 320px;
        gap: 30px;
    }

    .zh_related_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .zh_show_hero {
        min-height: 400px;
        margin-top: -75px;
        padding-top: 75px;
    }

    .zh_show_hero_card {
        padding: 35px 40px;
        border-radius: var(--zh-radius-lg);
    }

    .zh_show_hero_title {
        font-size: 34px;
    }

    .zh_show_layout {
        grid-template-columns: 1fr;
    }

    .zh_show_sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .zh_sidebar_featured {
        grid-column: span 2;
    }

    .zh_related_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_show_cta_card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 45px 40px;
    }

    .zh_show_cta_right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .zh_show_hero {
        min-height: 350px;
    }

    .zh_show_hero_card {
        padding: 30px 30px;
        border-radius: var(--zh-radius-md);
    }

    .zh_show_hero_title {
        font-size: 28px;
    }

    .zh_show_hero_tags {
        gap: 8px;
    }

    .zh_show_hero_tag {
        padding: 6px 14px;
        font-size: 12px;
    }

    .zh_show_breadcrumb {
        padding: 10px 18px;
        font-size: 13px;
    }

    .zh_show_main {
        padding: 40px 0 60px;
    }

    .zh_provider_card_header {
        flex-wrap: wrap;
        gap: 15px;
    }

    .zh_provider_link {
        width: 100%;
        justify-content: center;
    }

    .zh_provider_grid {
        grid-template-columns: 1fr;
    }

    .zh_provider_item_full {
        grid-column: span 1;
    }

    .zh_params_grid {
        grid-template-columns: 1fr;
    }

    .zh_detail_section_header {
        padding: 20px 25px;
    }

    .zh_detail_section_body {
        padding: 25px;
    }

    .zh_show_sidebar {
        grid-template-columns: 1fr;
    }

    .zh_sidebar_featured {
        grid-column: span 1;
    }

    .zh_related_section {
        padding: 50px 0;
    }

    .zh_related_header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .zh_related_section_title {
        font-size: 26px;
    }

    .zh_related_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .zh_show_cta {
        padding: 60px 0;
    }

    .zh_show_cta_card {
        padding: 35px 25px;
        border-radius: var(--zh-radius-lg);
    }

    .zh_show_cta_title {
        font-size: 24px;
    }

    .zh_show_cta_btn {
        padding: 14px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .zh_show_hero_card {
        padding: 25px 22px;
    }

    .zh_show_hero_title {
        font-size: 24px;
    }

    .zh_provider_card_header {
        padding: 22px 22px;
    }

    .zh_provider_card_body {
        padding: 22px;
    }

    .zh_detail_section_icon {
        width: 42px;
        height: 42px;
    }

    .zh_detail_section_icon i {
        font-size: 18px;
    }

    .zh_detail_section_title {
        font-size: 18px;
    }

    .zh_sidebar_widget_header,
    .zh_sidebar_widget_body {
        padding: 18px 22px;
    }

    .zh_related_card_body {
        padding: 18px;
    }
}