/* 首页样式 - 活动策划信息发布平台 */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero 区域 */
.zh_hero {
    background: linear-gradient(135deg, #D32F2F 0%, #F9A825 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zh_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1511578314322-379afb476865?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.zh_hero_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.zh_hero_title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.zh_hero_subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.zh_hero_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.zh_btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.zh_btn_primary {
    background: rgba(255,255,255,0.2);
    color: white;
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.zh_btn_primary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.zh_btn_secondary {
    background: white;
    color: #D32F2F;
}

.zh_btn_secondary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* 服务栏目区域 */
.zh_services {
    padding: 80px 0;
    background: #f8f9fa;
}

.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.zh_section_title {
    text-align: center;
    margin-bottom: 60px;
}

.zh_section_title h2 {
    font-size: 2.5rem;
    color: #212121;
    margin-bottom: 15px;
    font-weight: 700;
}

.zh_section_title p {
    font-size: 1.1rem;
    color: #616161;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.zh_services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.zh_service_card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.zh_service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(211,47,47,0.15);
    border-color: #D32F2F;
}

.zh_service_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D32F2F, #F9A825);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.zh_service_title {
    font-size: 1.5rem;
    color: #212121;
    margin-bottom: 15px;
    font-weight: 600;
}

.zh_service_desc {
    color: #616161;
    line-height: 1.6;
    margin-bottom: 25px;
}

.zh_service_link {
    display: inline-block;
    color: #D32F2F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.zh_service_link:hover {
    color: #F9A825;
}

/* 内容展示区域 */
.zh_content_section {
    padding: 80px 0;
}

/* 不规则布局容器 */
.zh_irregular_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.zh_left_column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zh_right_column {
    height: 100%;
}

/* 分类区块样式 */
.zh_category_block {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.zh_category_block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.zh_category_block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #D32F2F, #F44336);
}

.zh_category_block.photography::before {
    background: linear-gradient(135deg, #F9A825, #FF9800);
}

.zh_category_block.equipment::before {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

/* 区块头部 */
.zh_block_header {
    padding: 25px 30px 20px;
    background: linear-gradient(135deg, rgba(211,47,47,0.03), rgba(255,255,255,0.8));
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.zh_block_icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #D32F2F, #F44336);
    box-shadow: 0 6px 20px rgba(211,47,47,0.3);
}

.zh_category_block.photography .zh_block_icon {
    background: linear-gradient(135deg, #F9A825, #FF9800);
    box-shadow: 0 6px 20px rgba(249,168,37,0.3);
}

.zh_category_block.equipment .zh_block_icon {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.zh_block_title {
    flex: 1;
}

.zh_block_title h3 {
    font-size: 1.3rem;
    color: #212121;
    margin-bottom: 5px;
    font-weight: 700;
}

.zh_block_title p {
    color: #757575;
    font-size: 0.9rem;
}

.zh_block_more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(211,47,47,0.1);
    color: #D32F2F;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.zh_block_more:hover {
    background: #D32F2F;
    color: white;
    transform: scale(1.1);
}

/* 列表样式 */
.zh_block_list {
    padding: 20px 30px 30px;
}

.zh_list_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.zh_list_item:last-child {
    border-bottom: none;
}

.zh_list_item:hover {
    background: rgba(211,47,47,0.02);
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.zh_item_thumb {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.zh_item_info {
    flex: 1;
}

.zh_item_info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.zh_item_info h4 a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s;
}

.zh_item_info h4 a:hover {
    color: #D32F2F;
}

.zh_item_date {
    font-size: 0.8rem;
    color: #999;
    background: rgba(211,47,47,0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

/* 网格样式（右侧大区块） */
.zh_category_block.large {
    height: 100%;
    min-height: 500px;
}

.zh_block_grid {
    padding: 20px 30px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    height: calc(100% - 100px);
}

.zh_grid_item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    transition: all 0.3s ease;
    height: 140px;
}

.zh_grid_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.zh_grid_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zh_grid_item:hover .zh_grid_image {
    transform: scale(1.05);
}

.zh_grid_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 15px 12px 12px;
}

.zh_grid_overlay h4 {
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.zh_grid_overlay h4 a {
    color: white;
    text-decoration: none;
}

.zh_grid_type {
    font-size: 0.7rem;
    background: rgba(76,175,80,0.8);
    padding: 2px 6px;
    border-radius: 8px;
}

/* 新分类区块样式 - 保留用于兼容 */
.zh_category_section {
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.zh_category_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #D32F2F, #F9A825);
}

.zh_category_header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, rgba(211,47,47,0.02), rgba(249,168,37,0.02));
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.zh_category_icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #D32F2F, #F44336);
    box-shadow: 0 8px 25px rgba(211,47,47,0.3);
    position: relative;
    overflow: hidden;
}

.zh_category_icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(-45deg);
    animation: shine 3s infinite;
}

.zh_category_icon.photography {
    background: linear-gradient(135deg, #F9A825, #FF9800);
    box-shadow: 0 8px 25px rgba(249,168,37,0.3);
}

.zh_category_icon.equipment {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    box-shadow: 0 8px 25px rgba(76,175,80,0.3);
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
}

.zh_category_title_group {
    flex: 1;
}

.zh_category_main_title {
    font-size: 1.8rem;
    color: #212121;
    margin-bottom: 8px;
    font-weight: 700;
}

.zh_category_subtitle {
    color: #757575;
    font-size: 1rem;
    line-height: 1.5;
}

.zh_category_more_btn {
    background: linear-gradient(135deg, #D32F2F, #F9A825);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(211,47,47,0.3);
}

.zh_category_more_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(211,47,47,0.4);
    color: white;
}

.zh_category_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px;
}

.zh_tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
    flex-wrap: wrap;
}

.zh_tab {
    padding: 15px 30px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #616161;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.zh_tab.active {
    background: linear-gradient(135deg, #D32F2F, #F9A825);
    color: white;
    border-color: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211,47,47,0.3);
}

.zh_tab:hover {
    background: linear-gradient(135deg, #D32F2F, #F9A825);
    color: white;
    border-color: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211,47,47,0.3);
}

.zh_content_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.zh_content_card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.zh_content_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zh_card_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.zh_content_card:hover .zh_card_image {
    transform: scale(1.05);
}

.zh_card_content {
    padding: 25px;
}

.zh_card_category {
    margin-bottom: 15px;
}

.zh_category_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.zh_category_tag.planning {
    background: linear-gradient(135deg, #D32F2F, #F44336);
}

.zh_category_tag.photography {
    background: linear-gradient(135deg, #F9A825, #FF9800);
}

.zh_category_tag.equipment {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.zh_card_title {
    font-size: 1.2rem;
    color: #212121;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.zh_card_title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.zh_card_title a:hover {
    color: #D32F2F;
}

.zh_card_meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #757575;
}

.zh_provider_info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_provider_avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.zh_provider_name {
    color: #D32F2F;
    text-decoration: none;
    font-weight: 500;
}

.zh_provider_name:hover {
    color: #F9A825;
}

/* 简化服务商展示区域 */
.zh_providers_simple {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    position: relative;
}

.zh_providers_simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D32F2F' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.zh_providers_simple .zh_container {
    position: relative;
    z-index: 2;
}

/* 简化服务商网格布局 */
.zh_providers_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

/* 简化服务商卡片 */
.zh_provider_simple_card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.zh_provider_simple_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(211,47,47,0.15);
}

/* 图片容器 */
.zh_provider_image_container {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_provider_image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.zh_provider_simple_card:hover .zh_provider_image {
    transform: scale(1.08);
}

.zh_provider_overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.zh_provider_rating {
    background: rgba(255,255,255,0.95);
    color: #D32F2F;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.zh_provider_rating i {
    color: #F9A825;
}

/* 内容区 */
.zh_provider_content {
    padding: 25px;
}

.zh_provider_name {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.zh_provider_name a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s;
}

.zh_provider_name a:hover {
    color: #D32F2F;
}

/* 信息行 */
.zh_provider_info_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #757575;
}

.zh_provider_location,
.zh_provider_experience {
    display: flex;
    align-items: center;
    gap: 6px;
}

.zh_provider_location i,
.zh_provider_experience i {
    color: #D32F2F;
    font-size: 0.8rem;
}

/* 服务标签 */
.zh_provider_services {
    margin-bottom: 20px;
}

.zh_service_tag {
    display: inline-block;
    background: rgba(211,47,47,0.1);
    color: #D32F2F;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* 操作按钮 */
.zh_provider_actions_simple {
    width: 100%;
}

.zh_view_profile_btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #D32F2F, #F9A825);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.zh_view_profile_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211,47,47,0.3);
    color: white;
}

/* 查看更多容器 */
.zh_view_more_container {
    text-align: center;
    margin-top: 50px;
}

.zh_view_more_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D32F2F, #F9A825);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(211,47,47,0.3);
}

.zh_view_more_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(211,47,47,0.4);
    color: white;
}

.zh_view_more_btn i {
    transition: transform 0.3s ease;
}

.zh_view_more_btn:hover i {
    transform: translateX(5px);
}

/* 标题装饰 */
.zh_title_icon {
    color: #F9A825;
    margin-right: 10px;
    font-size: 1.2em;
}

.zh_title_badge {
    background: linear-gradient(135deg, #D32F2F, #F9A825);
    color: white;
    font-size: 0.6em;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 15px;
    font-weight: 500;
}

/* 更多按钮区域 */
.zh_more_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.zh_more_buttons .zh_btn {
    min-width: 200px;
}

/* CTA 区域 */
.zh_cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #D32F2F 0%, #F9A825 100%);
    color: white;
    text-align: center;
}

.zh_cta_title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.zh_cta_desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zh_hero_title {
        font-size: 2.5rem;
    }
    
    .zh_hero_subtitle {
        font-size: 1.1rem;
    }
    
    .zh_hero_buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .zh_section_title h2 {
        font-size: 2rem;
    }
    
    .zh_services_grid,
    .zh_content_grid,
    .zh_category_content {
        grid-template-columns: 1fr;
    }
    
    /* 不规则布局响应式 */
    .zh_irregular_layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .zh_left_column {
        gap: 25px;
    }
    
    .zh_category_block {
        border-radius: 15px;
    }
    
    .zh_block_header {
        padding: 20px 25px 15px;
        gap: 12px;
    }
    
    .zh_block_icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .zh_block_title h3 {
        font-size: 1.2rem;
    }
    
    .zh_block_title p {
        font-size: 0.85rem;
    }
    
    .zh_block_list {
        padding: 15px 25px 25px;
    }
    
    .zh_block_grid {
        padding: 15px 25px 25px;
        gap: 12px;
    }
    
    .zh_grid_item {
        height: 120px;
    }
    
    /* 简化服务商响应式 */
    .zh_providers_grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .zh_provider_image_container {
        height: 100px;
    }
    
    .zh_provider_content {
        padding: 20px;
    }
    
    .zh_provider_name {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    /* 新分类区块响应式 - 保留兼容 */
    .zh_category_section {
        margin-bottom: 50px;
        border-radius: 15px;
    }
    
    .zh_category_header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 30px 20px 20px;
    }
    
    .zh_category_icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .zh_category_main_title {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .zh_category_subtitle {
        font-size: 0.9rem;
    }
    
    .zh_category_content {
        padding: 30px 20px;
        gap: 20px;
    }
    
    .zh_tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .zh_tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .zh_more_buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .zh_more_buttons .zh_btn {
        width: 100%;
        max-width: 300px;
    }
    
    .zh_cta_title {
        font-size: 2rem;
    }
    

}



@media (max-width: 600px) {
    .zh_providers_simple {
        padding: 50px 0;
    }
    
    .zh_title_badge {
        display: block;
        margin: 10px 0 0 0;
    }
}

@media (max-width: 480px) {
    .zh_hero {
        padding: 60px 0;
    }
    
    .zh_hero_title {
        font-size: 2rem;
    }
    
    .zh_services,
    .zh_content_section,
    .zh_providers_simple,
    .zh_cta {
        padding: 60px 0;
    }
    
    .zh_service_card {
        padding: 25px 20px;
    }
    
    /* 更小屏幕的不规则布局样式 */
    .zh_irregular_layout {
        gap: 20px;
    }
    
    .zh_left_column {
        gap: 20px;
    }
    
    .zh_block_header {
        padding: 18px 20px 12px;
        gap: 10px;
    }
    
    .zh_block_icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .zh_block_title h3 {
        font-size: 1.1rem;
    }
    
    .zh_block_title p {
        font-size: 0.8rem;
    }
    
    .zh_block_more {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .zh_block_list {
        padding: 12px 20px 20px;
    }
    
    .zh_list_item {
        padding: 12px 0;
        gap: 12px;
    }
    
    .zh_item_thumb {
        width: 50px;
        height: 38px;
    }
    
    .zh_item_info h4 {
        font-size: 0.85rem;
    }
    
    .zh_block_grid {
        padding: 12px 20px 20px;
        gap: 10px;
    }
    
    .zh_grid_item {
        height: 100px;
    }
    
    .zh_grid_overlay {
        padding: 10px 8px 8px;
    }
    
    .zh_grid_overlay h4 {
        font-size: 0.75rem;
    }
    
    .zh_grid_type {
        font-size: 0.65rem;
    }
    
    /* 简化服务商更小屏幕样式 */
    .zh_providers_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zh_provider_image_container {
        height: 90px;
    }
    
    .zh_provider_content {
        padding: 18px;
    }
    
    .zh_provider_name {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .zh_provider_info_row {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .zh_service_tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .zh_view_profile_btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* 更小屏幕的新分类区块样式 - 保留兼容 */
    .zh_category_header {
        padding: 25px 15px 15px;
    }
    
    .zh_category_icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .zh_category_main_title {
        font-size: 1.3rem;
    }
    
    .zh_category_subtitle {
        font-size: 0.85rem;
    }
    
    .zh_category_more_btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .zh_category_content {
        padding: 25px 15px;
        gap: 15px;
    }
}
