/* ========== 策划师详情页样式 - Figma设计配色 ========== */

/* ========== 面包屑导航 ========== */
.zh_breadcrumb_section {
    background: var(--zh-grey-bg, #F8F8F8);
    padding: 20px 0;
    margin-top: -120px;
    padding-top: 140px;
}

.zh_breadcrumb_container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zh_breadcrumb_container i.fa-home {
    color: var(--zh-primary, #E95254);
    font-size: 18px;
}

.zh_breadcrumb_text {
    font-size: 14px;
    color: var(--zh-text, #484848);
}

.zh_breadcrumb_text a {
    color: var(--zh-text, #484848);
    text-decoration: none;
    transition: color 0.3s;
}

.zh_breadcrumb_text a:hover {
    color: var(--zh-primary, #E95254);
}

.zh_breadcrumb_text span {
    color: var(--zh-heading, #101010);
    font-weight: 500;
}

/* ========== 主内容区 ========== */
.zh_merchant_main {
    padding: 40px 0 80px;
    background: var(--zh-grey-bg, #F8F8F8);
}

/* ========== 策划师预览区 ========== */
.zh_provider_preview {
    margin-bottom: 60px;
}

.zh_provider_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
}

.zh_provider_header {
    background: var(--zh-heading, #101010);
    padding: 40px 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.zh_provider_header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--zh-primary, #E95254);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.zh_provider_header_content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.zh_provider_logo {
    width: 100px;
    height: 100px;
    background: rgba(233, 82, 84, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zh_provider_logo i {
    font-size: 48px;
    color: var(--zh-primary, #E95254);
}

.zh_provider_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_provider_title_wrap {
    flex: 1;
}

.zh_provider_title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
    font-family: 'Questrial', 'Noto Sans SC', sans-serif;
}

.zh_provider_meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zh_provider_meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--zh-accent-2, #E3DBCF);
}

.zh_provider_meta_item i {
    font-size: 16px;
    color: var(--zh-primary, #E95254);
}

.zh_provider_badge_verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--zh-primary, #E95254);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* 策划师信息内容区 */
.zh_provider_content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.zh_provider_info_section {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: var(--zh-accent-1, #F8F4EA);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.zh_provider_info_section:hover {
    border-color: var(--zh-primary, #E95254);
}

/* 区块图标 */
.zh_section_icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--zh-primary, #E95254);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_section_icon i {
    font-size: 26px;
    color: #fff;
}

/* 区块内容 */
.zh_section_content {
    flex: 1;
}

.zh_provider_info_title {
    font-size: 22px;
    font-weight: 600;
    color: var(--zh-heading, #101010);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.zh_provider_info_title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--zh-primary, #E95254);
    border-radius: 2px;
}

.zh_provider_summary {
    font-size: 16px;
    line-height: 1.9;
    color: var(--zh-text, #484848);
}

/* 联系方式网格布局 */
.zh_contact_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.zh_contact_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
    transition: all 0.3s;
}

.zh_contact_item:hover {
    border-color: var(--zh-primary, #E95254);
}

.zh_contact_icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--zh-accent-1, #F8F4EA);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_contact_icon i {
    font-size: 22px;
    color: var(--zh-primary, #E95254);
}

.zh_contact_details {
    flex: 1;
}

.zh_contact_label {
    font-size: 13px;
    color: var(--zh-text, #484848);
    margin-bottom: 5px;
    font-weight: 500;
}

.zh_contact_value {
    font-size: 18px;
    color: var(--zh-heading, #101010);
    font-weight: 600;
}

/* ========== 服务列表区域 ========== */
.zh_provider_services,
.zh_related_providers {
    margin-bottom: 60px;
}

.zh_provider_section_header {
    margin-bottom: 40px;
}

.zh_provider_section_title {
    font-size: 32px;
    font-weight: 700;
    color: var(--zh-heading, #101010);
    position: relative;
    padding-bottom: 15px;
    font-family: 'Questrial', 'Noto Sans SC', sans-serif;
}

.zh_provider_section_title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--zh-primary, #E95254);
    border-radius: 2px;
}

.zh_provider_section_content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
}

/* 服务网格 */
.zh_service_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zh_service_item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
}

.zh_service_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 82, 84, 0.1);
    border-color: var(--zh-primary, #E95254);
}

.zh_service_item_inner {
    position: relative;
}

.zh_service_image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--zh-grey-bg, #F8F8F8);
}

.zh_service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.zh_service_item:hover .zh_service_image img {
    transform: scale(1.05);
}

.zh_service_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 16, 16, 0.3) 100%);
}

.zh_service_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: var(--zh-primary, #E95254);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.zh_service_info {
    padding: 25px;
}

.zh_service_title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.zh_service_title a {
    color: var(--zh-heading, #101010);
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_service_title a:hover {
    color: var(--zh-primary, #E95254);
}

.zh_service_meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--zh-text, #484848);
}

.zh_service_meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.zh_service_meta i {
    color: var(--zh-primary, #E95254);
}

.zh_service_actions {
    display: flex;
    gap: 10px;
}

.zh_service_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--zh-primary, #E95254);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.zh_service_btn:hover {
    background: #d4474a;
    color: #fff;
}

/* 空列表状态 */
.zh_empty_list {
    text-align: center;
    padding: 80px 20px;
}

.zh_empty_icon {
    font-size: 80px;
    color: var(--zh-accent-2, #E3DBCF);
    margin-bottom: 20px;
}

.zh_empty_text {
    font-size: 16px;
    color: var(--zh-text, #484848);
}

/* ========== 相关推荐 ========== */
.zh_related_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.zh_related_item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
}

.zh_related_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 82, 84, 0.1);
    border-color: var(--zh-primary, #E95254);
}

.zh_related_icon {
    height: 120px;
    background: var(--zh-heading, #101010);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_related_icon i {
    font-size: 48px;
    color: var(--zh-primary, #E95254);
}

.zh_related_info {
    padding: 20px;
}

.zh_related_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.zh_related_title a {
    color: var(--zh-heading, #101010);
    text-decoration: none;
    transition: color 0.3s;
}

.zh_related_title a:hover {
    color: var(--zh-primary, #E95254);
}

.zh_related_meta {
    font-size: 13px;
    color: var(--zh-text, #484848);
    display: flex;
    align-items: center;
    gap: 5px;
}

.zh_related_meta i {
    color: var(--zh-primary, #E95254);
}

/* 分页样式 */
.zh_pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.zh_pagination .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zh_pagination .page-item {
    list-style: none;
}

.zh_pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: #fff;
    color: var(--zh-text, #484848);
    border: 1px solid var(--zh-accent-2, #E3DBCF);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.zh_pagination .page-link:hover {
    border-color: var(--zh-primary, #E95254);
    color: var(--zh-primary, #E95254);
}

.zh_pagination .page-item.active .page-link {
    background: var(--zh-primary, #E95254);
    color: #fff;
    border-color: var(--zh-primary, #E95254);
}

.zh_pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .zh_service_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_related_list {
        grid-template-columns: repeat(3, 1fr);
    }

    .zh_contact_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .zh_breadcrumb_section {
        margin-top: -75px;
        padding-top: 100px;
    }

    .zh_provider_header {
        padding: 30px;
    }

    .zh_provider_header_content {
        flex-direction: column;
        text-align: center;
    }

    .zh_provider_title {
        font-size: 28px;
    }

    .zh_provider_meta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .zh_provider_content {
        padding: 30px 25px;
        gap: 30px;
    }

    .zh_provider_info_section {
        flex-direction: column;
        padding: 25px;
    }

    .zh_section_icon {
        width: 50px;
        height: 50px;
    }

    .zh_section_icon i {
        font-size: 22px;
    }

    .zh_provider_info_title {
        font-size: 18px;
    }

    .zh_contact_grid {
        grid-template-columns: 1fr;
    }

    .zh_provider_section_title {
        font-size: 24px;
    }

    .zh_provider_section_content {
        padding: 25px 20px;
    }

    .zh_service_grid,
    .zh_related_list {
        grid-template-columns: 1fr;
    }

    .zh_provider_logo {
        width: 80px;
        height: 80px;
    }

    .zh_provider_logo i {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .zh_merchant_main {
        padding: 25px 0 60px;
    }

    .zh_provider_card {
        border-radius: 12px;
    }

    .zh_provider_header {
        padding: 25px 20px;
    }

    .zh_provider_title {
        font-size: 24px;
    }

    .zh_contact_item {
        padding: 15px;
    }

    .zh_contact_icon {
        width: 40px;
        height: 40px;
    }

    .zh_contact_icon i {
        font-size: 18px;
    }

    .zh_contact_value {
        font-size: 16px;
    }
}