/* ========================================
   装卸师傅详情页样式 - Blacc深色主题
   遵循Figma设计稿不规则布局风格
   ======================================== */

/* === CSS变量 === */
:root {
    --zh-bg-dark: #0a0a0a;
    --zh-bg-card: #111111;
    --zh-bg-card-hover: #1a1a1a;
    --zh-border: #222222;
    --zh-border-light: #333333;
    --zh-text-white: #ffffff;
    --zh-text-gray: #888888;
    --zh-text-muted: #666666;
    --zh-primary: #e52e2e;
    --zh-primary-light: #ff4444;
    --zh-primary-dark: #c92626;
    --zh-radius-sm: 12px;
    --zh-radius-md: 20px;
    --zh-radius-lg: 28px;
    --zh-radius-xl: 40px;
    --zh-radius-pill: 60px;
    --zh-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --zh-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --zh-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   装卸师傅详情Hero区域
   ======================================== */
.zh_mshow_hero {
    background: var(--zh-bg-dark);
    padding: 140px 5% 80px;
    position: relative;
    overflow: hidden;
}

/* 背景装饰 */
.zh_mshow_hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.zh_mshow_deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.zh_mshow_deco_1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 46, 46, 0.35) 0%, transparent 70%);
    top: -200px;
    left: 10%;
}

.zh_mshow_deco_2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 46, 46, 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: 15%;
}

/* Hero网格 */
.zh_mshow_hero_grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* 左侧信息区 */
.zh_mshow_hero_left {
    max-width: 700px;
}

/* 面包屑 */
.zh_mshow_breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-pill);
    font-size: 13px;
    margin-bottom: 32px;
}

.zh_mshow_breadcrumb a {
    color: var(--zh-text-gray);
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mshow_breadcrumb a:hover {
    color: var(--zh-primary);
}

.zh_mshow_breadcrumb span {
    color: var(--zh-text-muted);
}

.zh_mshow_breadcrumb_current {
    color: var(--zh-text-white) !important;
    font-weight: 500;
}

/* 装卸师傅Profile */
.zh_mshow_profile {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
}

.zh_mshow_avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--zh-border);
    flex-shrink: 0;
    position: relative;
    background: var(--zh-bg-card);
}

.zh_mshow_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_mshow_verified {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 32px;
    height: 32px;
    background: var(--zh-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--zh-bg-dark);
}

.zh_mshow_verified i {
    font-size: 12px;
    color: var(--zh-text-white);
}

.zh_mshow_info {
    flex: 1;
}

.zh_mshow_name {
    font-size: 36px;
    font-weight: 800;
    color: var(--zh-text-white);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.zh_mshow_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.zh_mshow_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-pill);
    font-size: 13px;
    color: var(--zh-text-gray);
}

.zh_mshow_tag i {
    font-size: 11px;
}

.zh_mshow_tag_verified {
    background: rgba(229, 46, 46, 0.15);
    border-color: rgba(229, 46, 46, 0.3);
    color: var(--zh-primary);
}

.zh_mshow_desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--zh-text-gray);
    margin: 0;
}

/* 快捷操作 */
.zh_mshow_actions {
    display: flex;
    gap: 16px;
}

.zh_mshow_action_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-pill);
    color: var(--zh-text-gray);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mshow_action_btn:hover {
    color: var(--zh-text-white);
    border-color: var(--zh-border-light);
    background: var(--zh-bg-card-hover);
}

.zh_mshow_action_primary {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: var(--zh-text-white);
}

.zh_mshow_action_primary:hover {
    background: var(--zh-primary-light);
    border-color: var(--zh-primary-light);
    color: var(--zh-text-white);
}

/* 右侧统计卡片 */
.zh_mshow_hero_right {
    min-width: 280px;
}

.zh_mshow_stats_card {
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 32px;
    text-align: center;
}

.zh_mshow_stats_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--zh-border);
}

.zh_mshow_stat_item {
    text-align: center;
}

.zh_mshow_stat_num {
    font-size: 36px;
    font-weight: 800;
    color: var(--zh-text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.zh_mshow_stat_label {
    font-size: 13px;
    color: var(--zh-text-gray);
}

.zh_mshow_stats_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(229, 46, 46, 0.1);
    border-radius: var(--zh-radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-primary);
}

.zh_mshow_stats_badge i {
    font-size: 14px;
}

/* ========================================
   主内容区
   ======================================== */
.zh_mshow_main {
    background: var(--zh-bg-dark);
    padding: 60px 5% 80px;
}

.zh_mshow_main_grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* 左侧内容区 */
.zh_mshow_content {
    min-width: 0;
}

.zh_mshow_block {
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
}

.zh_mshow_block_head {
    padding: 24px 28px;
    border-bottom: 1px solid var(--zh-border);
}

.zh_mshow_block_title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--zh-text-white);
}

.zh_mshow_block_title i {
    color: var(--zh-primary);
}

.zh_mshow_block_count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    background: var(--zh-primary);
    border-radius: var(--zh-radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--zh-text-white);
}

/* 服务信息网格 */
.zh_mshow_info_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 28px;
}

/* 服务信息卡片 */
.zh_mshow_info_card {
    background: var(--zh-bg-card-hover);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-md);
    overflow: hidden;
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mshow_info_card:hover {
    transform: translateY(-6px);
    border-color: var(--zh-primary);
    box-shadow: 0 20px 40px rgba(229, 46, 46, 0.12);
}

/* 特色卡片 */
.zh_mshow_info_featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.zh_mshow_info_featured .zh_mshow_info_thumb {
    height: 100%;
    min-height: 220px;
}

.zh_mshow_info_featured .zh_mshow_info_body {
    padding: 28px;
}

.zh_mshow_info_featured .zh_mshow_info_title {
    font-size: 20px;
    margin-bottom: 12px;
}

/* 卡片缩略图 */
.zh_mshow_info_thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.zh_mshow_info_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zh_mshow_info_card:hover .zh_mshow_info_thumb img {
    transform: scale(1.08);
}

.zh_mshow_info_hot {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--zh-primary);
    border-radius: var(--zh-radius-pill);
    font-size: 11px;
    font-weight: 600;
    color: var(--zh-text-white);
}

.zh_mshow_info_hot i {
    font-size: 10px;
}

.zh_mshow_info_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: var(--zh-transition);
}

.zh_mshow_info_card:hover .zh_mshow_info_overlay {
    opacity: 1;
}

.zh_mshow_info_view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--zh-text-white);
    border-radius: var(--zh-radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-bg-dark);
    transform: translateY(10px);
    transition: var(--zh-transition);
}

.zh_mshow_info_card:hover .zh_mshow_info_view {
    transform: translateY(0);
}

.zh_mshow_info_view i {
    font-size: 11px;
}

/* 卡片内容 */
.zh_mshow_info_body {
    padding: 20px;
}

.zh_mshow_info_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.zh_mshow_info_cat {
    display: inline-flex;
    padding: 4px 12px;
    background: rgba(229, 46, 46, 0.1);
    border-radius: var(--zh-radius-pill);
    font-size: 11px;
    font-weight: 600;
    color: var(--zh-primary);
}

.zh_mshow_info_date {
    font-size: 12px;
    color: var(--zh-text-muted);
}

.zh_mshow_info_title {
    font-size: 16px;
    font-weight: 700;
    color: var(--zh-text-white);
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--zh-transition);
}

.zh_mshow_info_card:hover .zh_mshow_info_title {
    color: var(--zh-primary);
}

.zh_mshow_info_desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--zh-text-muted);
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_mshow_info_stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.zh_mshow_info_stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--zh-text-muted);
}

.zh_mshow_info_stats i {
    font-size: 11px;
}

/* 分页 */
.zh_mshow_pagination {
    padding: 24px 28px;
    border-top: 1px solid var(--zh-border);
    display: flex;
    justify-content: center;
}

.zh_mshow_pagination .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zh_mshow_pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    background: var(--zh-bg-card-hover);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-sm);
    color: var(--zh-text-gray);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mshow_pagination .page-link:hover {
    background: var(--zh-border);
    color: var(--zh-text-white);
}

.zh_mshow_pagination .page-item.active .page-link {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: var(--zh-text-white);
}

.zh_mshow_pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.02);
    color: var(--zh-text-muted);
    cursor: not-allowed;
}

/* 空状态 */
.zh_mshow_empty {
    text-align: center;
    padding: 80px 40px;
}

.zh_mshow_empty_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(229, 46, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_mshow_empty_icon i {
    font-size: 32px;
    color: var(--zh-primary);
}

.zh_mshow_empty h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--zh-text-white);
    margin: 0 0 10px 0;
}

.zh_mshow_empty p {
    font-size: 15px;
    color: var(--zh-text-gray);
    margin: 0;
}

/* ========================================
   右侧边栏
   ======================================== */
.zh_mshow_sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Widget通用 */
.zh_mshow_widget {
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
}

.zh_mshow_widget_head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--zh-border);
    font-size: 16px;
    font-weight: 700;
    color: var(--zh-text-white);
}

.zh_mshow_widget_head i {
    color: var(--zh-primary);
}

.zh_mshow_widget_body {
    padding: 24px;
}

/* 联系方式 */
.zh_mshow_contact_item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--zh-border);
}

.zh_mshow_contact_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.zh_mshow_contact_item:first-child {
    padding-top: 0;
}

.zh_mshow_contact_icon {
    width: 44px;
    height: 44px;
    background: rgba(229, 46, 46, 0.1);
    border-radius: var(--zh-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zh_mshow_contact_icon i {
    font-size: 16px;
    color: var(--zh-primary);
}

.zh_mshow_contact_info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.zh_mshow_contact_label {
    font-size: 12px;
    color: var(--zh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zh_mshow_contact_value {
    font-size: 14px;
    font-weight: 500;
    color: var(--zh-text-white);
    text-decoration: none;
    word-break: break-all;
}

a.zh_mshow_contact_value:hover {
    color: var(--zh-primary);
}

.zh_mshow_contact_phone .zh_mshow_contact_value {
    color: var(--zh-primary);
    font-weight: 600;
}

.zh_mshow_contact_empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    color: var(--zh-text-muted);
    font-size: 14px;
}

/* 推荐装卸师傅 */
.zh_mshow_related_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zh_mshow_related_item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--zh-bg-card-hover);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-md);
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mshow_related_item:hover {
    border-color: var(--zh-primary);
    transform: translateX(6px);
}

.zh_mshow_related_avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--zh-border);
    flex-shrink: 0;
    transition: var(--zh-transition);
}

.zh_mshow_related_item:hover .zh_mshow_related_avatar {
    border-color: var(--zh-primary);
}

.zh_mshow_related_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_mshow_related_info {
    flex: 1;
    min-width: 0;
}

.zh_mshow_related_info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-text-white);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--zh-transition);
}

.zh_mshow_related_item:hover .zh_mshow_related_info h5 {
    color: var(--zh-primary);
}

.zh_mshow_related_info span {
    font-size: 12px;
    color: var(--zh-text-muted);
}

.zh_mshow_related_arrow {
    font-size: 12px;
    color: var(--zh-text-muted);
    transition: var(--zh-transition);
}

.zh_mshow_related_item:hover .zh_mshow_related_arrow {
    color: var(--zh-primary);
    transform: translateX(4px);
}

/* 入驻CTA */
.zh_mshow_cta {
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    border-radius: var(--zh-radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zh_mshow_cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.zh_mshow_cta_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.zh_mshow_cta_icon i {
    font-size: 24px;
    color: var(--zh-text-white);
}

.zh_mshow_cta h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--zh-text-white);
    margin: 0 0 8px 0;
    position: relative;
}

.zh_mshow_cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
    position: relative;
}

.zh_mshow_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--zh-text-white);
    color: var(--zh-primary);
    border-radius: var(--zh-radius-pill);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--zh-transition);
    position: relative;
}

.zh_mshow_cta_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--zh-primary-dark);
}

.zh_mshow_cta_btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.zh_mshow_cta_btn:hover i {
    transform: translateX(4px);
}

/* ========================================
   底部导航
   ======================================== */
.zh_mshow_footer_nav {
    background: var(--zh-bg-card);
    padding: 24px 5%;
    border-top: 1px solid var(--zh-border);
    display: flex;
    justify-content: center;
    gap: 16px;
}

.zh_mshow_nav_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--zh-bg-card-hover);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-pill);
    color: var(--zh-text-gray);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mshow_nav_btn:hover {
    color: var(--zh-text-white);
    border-color: var(--zh-border-light);
}

.zh_mshow_nav_btn_primary {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: var(--zh-text-white);
}

.zh_mshow_nav_btn_primary:hover {
    background: var(--zh-primary-light);
    border-color: var(--zh-primary-light);
    color: var(--zh-text-white);
}

/* ========================================
   响应式设计
   ======================================== */

/* 大屏幕 */
@media (max-width: 1400px) {
    .zh_mshow_main_grid {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
}

/* 中等屏幕 */
@media (max-width: 1200px) {
    .zh_mshow_hero {
        padding: 120px 5% 60px;
    }

    .zh_mshow_hero_grid {
        gap: 40px;
    }

    .zh_mshow_name {
        font-size: 30px;
    }

    .zh_mshow_info_grid {
        grid-template-columns: 1fr;
    }

    .zh_mshow_info_featured {
        grid-column: span 1;
        display: block;
    }

    .zh_mshow_info_featured .zh_mshow_info_thumb {
        height: 200px;
    }
}

/* 平板 */
@media (max-width: 992px) {
    .zh_mshow_hero {
        padding: 100px 5% 50px;
    }

    .zh_mshow_hero_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zh_mshow_hero_left {
        max-width: 100%;
    }

    .zh_mshow_hero_right {
        display: flex;
        justify-content: center;
    }

    .zh_mshow_stats_card {
        max-width: 350px;
        width: 100%;
    }

    .zh_mshow_main_grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .zh_mshow_sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .zh_mshow_cta {
        grid-column: span 2;
    }
}

/* 小平板/大手机 */
@media (max-width: 768px) {
    .zh_mshow_hero {
        padding: 90px 5% 40px;
    }

    .zh_mshow_profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .zh_mshow_tags {
        justify-content: center;
    }

    .zh_mshow_desc {
        text-align: center;
    }

    .zh_mshow_actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .zh_mshow_name {
        font-size: 26px;
    }

    .zh_mshow_stat_num {
        font-size: 28px;
    }

    .zh_mshow_sidebar {
        grid-template-columns: 1fr;
    }

    .zh_mshow_cta {
        grid-column: span 1;
    }

    .zh_mshow_info_grid {
        padding: 20px;
        gap: 20px;
    }

    .zh_mshow_footer_nav {
        flex-direction: column;
        padding: 20px 5%;
    }

    .zh_mshow_nav_btn {
        width: 100%;
        justify-content: center;
    }
}

/* 手机 */
@media (max-width: 480px) {
    .zh_mshow_hero {
        padding: 80px 4% 36px;
    }

    .zh_mshow_breadcrumb {
        padding: 8px 16px;
        font-size: 12px;
        gap: 8px;
    }

    .zh_mshow_avatar {
        width: 100px;
        height: 100px;
    }

    .zh_mshow_verified {
        width: 28px;
        height: 28px;
    }

    .zh_mshow_verified i {
        font-size: 10px;
    }

    .zh_mshow_name {
        font-size: 22px;
    }

    .zh_mshow_tag {
        font-size: 12px;
        padding: 5px 12px;
    }

    .zh_mshow_desc {
        font-size: 14px;
    }

    .zh_mshow_action_btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .zh_mshow_stats_card {
        padding: 24px;
    }

    .zh_mshow_stat_num {
        font-size: 24px;
    }

    .zh_mshow_main {
        padding: 40px 4% 60px;
    }

    .zh_mshow_block_head {
        padding: 20px;
    }

    .zh_mshow_block_title {
        font-size: 16px;
    }

    .zh_mshow_info_grid {
        padding: 16px;
        gap: 16px;
    }

    .zh_mshow_info_body {
        padding: 16px;
    }

    .zh_mshow_info_title {
        font-size: 15px;
    }

    .zh_mshow_widget_head {
        padding: 16px 20px;
        font-size: 15px;
    }

    .zh_mshow_widget_body {
        padding: 20px;
    }

    .zh_mshow_contact_icon {
        width: 40px;
        height: 40px;
    }

    .zh_mshow_contact_icon i {
        font-size: 14px;
    }

    .zh_mshow_related_item {
        padding: 12px;
    }

    .zh_mshow_related_avatar {
        width: 42px;
        height: 42px;
    }

    .zh_mshow_cta {
        padding: 28px 20px;
    }

    .zh_mshow_cta_icon {
        width: 52px;
        height: 52px;
    }

    .zh_mshow_cta_icon i {
        font-size: 20px;
    }

    .zh_mshow_cta h4 {
        font-size: 18px;
    }

    .zh_mshow_pagination .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }
}