/* ========== 策划师列表页样式 - Figma设计配色 ========== */

/* ========== 页面顶部Banner ========== */
.zh_page_banner {
    position: relative;
    padding: 100px 0 80px;
    background: var(--zh-heading, #101010);
    overflow: hidden;
    margin-top: -120px;
    padding-top: 180px;
}

.zh_page_banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--zh-primary, #E95254);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.zh_page_banner_content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.zh_page_title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Questrial', 'Noto Sans SC', sans-serif;
}

.zh_page_subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--zh-accent-2, #E3DBCF);
}

.zh_breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(233, 82, 84, 0.2);
    border-radius: 25px;
    font-size: 14px;
}

.zh_breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_breadcrumb a:hover {
    color: var(--zh-primary, #E95254);
}

.zh_breadcrumb span {
    color: var(--zh-accent-2, #E3DBCF);
}

.zh_breadcrumb i {
    font-size: 12px;
    opacity: 0.7;
}

/* ========== 策划师列表主区域 ========== */
.zh_provider_main {
    padding: 60px 0 80px;
    background: var(--zh-grey-bg, #F8F8F8);
}

/* 搜索栏 */
.zh_search_section {
    margin-bottom: 40px;
}

.zh_search_bar {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.zh_search_input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid var(--zh-accent-2, #E3DBCF);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fff;
    color: var(--zh-text, #484848);
}

.zh_search_input:focus {
    outline: none;
    border-color: var(--zh-primary, #E95254);
}

.zh_search_input::placeholder {
    color: #999;
}

.zh_search_btn {
    padding: 15px 35px;
    background: var(--zh-primary, #E95254);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.zh_search_btn:hover {
    background: #d4474a;
}

/* 策划师列表 */
.zh_provider_list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

/* 策划师列表项 */
.zh_provider_item {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
    transition: all 0.3s;
    position: relative;
}

.zh_provider_item:hover {
    border-color: var(--zh-primary, #E95254);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 82, 84, 0.1);
}

/* 认证徽章 */
.zh_provider_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.zh_provider_badge i {
    color: #fff;
    font-size: 18px;
}

/* 策划师信息区域 */
.zh_provider_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

/* 策划师头部 */
.zh_provider_header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zh_provider_icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--zh-heading, #101010);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zh_provider_icon i {
    font-size: 28px;
    color: var(--zh-primary, #E95254);
}

.zh_provider_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_provider_title_area {
    flex: 1;
}

.zh_provider_name {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.zh_provider_name a {
    color: var(--zh-heading, #101010);
    text-decoration: none;
    transition: color 0.3s;
}

.zh_provider_name a:hover {
    color: var(--zh-primary, #E95254);
}

.zh_provider_status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_status_tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(233, 82, 84, 0.1);
    color: var(--zh-primary, #E95254);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.zh_info_count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: var(--zh-accent-1, #F8F4EA);
    color: var(--zh-text, #484848);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

/* 策划师简介 */
.zh_provider_desc {
    padding-left: 90px;
}

.zh_provider_desc p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--zh-text, #484848);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 联系信息 */
.zh_provider_contact {
    display: flex;
    gap: 30px;
    padding-left: 90px;
}

.zh_contact_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.zh_contact_item i {
    color: var(--zh-primary, #E95254);
    font-size: 16px;
}

.zh_contact_label {
    color: var(--zh-text, #484848);
    font-weight: 500;
}

.zh_contact_value {
    color: var(--zh-heading, #101010);
    font-weight: 600;
}

/* 查看详情按钮 */
.zh_provider_action {
    flex-shrink: 0;
}

.zh_provider_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--zh-primary, #E95254);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    white-space: nowrap;
}

.zh_provider_btn:hover {
    background: #d4474a;
    color: #fff;
}

.zh_provider_btn i {
    font-size: 14px;
    transition: transform 0.3s;
}

.zh_provider_btn:hover i {
    transform: translateX(3px);
}

/* 分页样式 */
.zh_pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.zh_pagination .pagination {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zh_pagination .pagination li {
    display: inline-block;
}

.zh_pagination .page-item {
    list-style: none;
}

.zh_pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    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: 600;
    transition: all 0.3s;
    font-size: 15px;
}

.zh_pagination .page-link:hover {
    background: var(--zh-primary, #E95254);
    color: #fff;
    border-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 {
    background: var(--zh-grey-bg, #F8F8F8);
    color: #999;
    border-color: var(--zh-accent-2, #E3DBCF);
    cursor: not-allowed;
}

/* 空状态 */
.zh_empty_state {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--zh-accent-2, #E3DBCF);
}

.zh_empty_icon {
    font-size: 80px;
    color: var(--zh-accent-2, #E3DBCF);
    margin-bottom: 25px;
}

.zh_empty_title {
    font-size: 24px;
    font-weight: 600;
    color: var(--zh-heading, #101010);
    margin-bottom: 15px;
}

.zh_empty_desc {
    font-size: 16px;
    color: var(--zh-text, #484848);
    max-width: 400px;
    margin: 0 auto;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .zh_provider_item {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .zh_provider_action {
        text-align: center;
    }

    .zh_provider_btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .zh_page_banner {
        padding-top: 120px;
        margin-top: -75px;
    }

    .zh_page_title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .zh_page_banner {
        padding: 80px 0 60px;
        padding-top: 120px;
    }

    .zh_page_title {
        font-size: 32px;
    }

    .zh_provider_main {
        padding: 40px 0 60px;
    }

    .zh_provider_item {
        padding: 25px;
    }

    .zh_provider_badge {
        width: 32px;
        height: 32px;
        top: 15px;
        right: 15px;
    }

    .zh_provider_badge i {
        font-size: 16px;
    }

    .zh_provider_icon {
        width: 60px;
        height: 60px;
    }

    .zh_provider_icon i {
        font-size: 24px;
    }

    .zh_provider_name {
        font-size: 18px;
    }

    .zh_provider_desc {
        padding-left: 0;
    }

    .zh_provider_contact {
        flex-direction: column;
        gap: 15px;
        padding-left: 0;
    }

    .zh_search_bar {
        flex-direction: column;
    }

    .zh_pagination .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .zh_page_title {
        font-size: 28px;
    }

    .zh_provider_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .zh_provider_name {
        font-size: 16px;
    }

    .zh_provider_desc p {
        font-size: 14px;
    }
}