/* 服务商列表页面样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 面包屑导航 */
.zh_breadcrumb {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
}

.zh_breadcrumb_content {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.zh_breadcrumb_content a {
    color: #258161;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_breadcrumb_content a:hover {
    color: #1e6b4f;
}

.zh_separator {
    margin: 0 10px;
    color: #ccc;
}

.zh_current {
    color: #333;
    font-weight: 500;
}

/* 页面标题区域 */
.zh_page_header {
    background: linear-gradient(135deg, #258161 0%, #1e6b4f 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.zh_page_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1497436072909-f5e4be448ea0?w=1920&h=600&fit=crop&crop=center') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.zh_header_content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.zh_page_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.zh_page_title i {
    margin-right: 15px;
    color: #4fb3d9;
}

.zh_page_subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



/* 列表区域 */
.zh_providers_list {
    padding: 40px 0;
}

.zh_list_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.zh_result_count {
    color: #666;
    font-size: 16px;
}

.zh_result_count strong {
    color: #258161;
    font-weight: 600;
}

.zh_sort_options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_sort_label {
    color: #666;
    font-size: 14px;
}

.zh_sort_links {
    display: flex;
    gap: 15px;
}

.zh_sort_link {
    color: #666;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.zh_sort_link:hover {
    color: #258161;
    border-color: #258161;
}

.zh_sort_link.zh_active {
    background: #258161;
    color: white;
    border-color: #258161;
}

/* 服务商列表内容 */
.zh_providers_list_content {
    margin-bottom: 50px;
}

/* 服务商列表项 */
.zh_provider_item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.zh_provider_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.zh_provider_left {
    flex-shrink: 0;
}

.zh_provider_logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.zh_provider_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_provider_badges {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.zh_badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    border: 2px solid white;
}

.zh_badge.zh_verified {
    background: #28a745;
}

.zh_badge.zh_popular {
    background: #ffc107;
}

.zh_provider_main {
    flex: 1;
    min-width: 0;
}

.zh_provider_header_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.zh_provider_name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.zh_provider_rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.zh_stars {
    color: #ffc107;
    font-size: 14px;
}

.zh_rating_text {
    color: #666;
    font-size: 13px;
}

.zh_provider_services {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.zh_service_tag {
    background: linear-gradient(135deg, #258161, #1e6b4f);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 关联服务 */
.zh_provider_works {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.zh_works_label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    flex-shrink: 0;
}

.zh_works_list {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}

.zh_work_link {
    color: #258161;
    text-decoration: none;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.zh_work_link:hover {
    background: #f0f8f5;
    color: #1e6b4f;
}

.zh_no_works {
    color: #999;
    font-size: 14px;
    font-style: italic;
}

.zh_provider_stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
}

.zh_stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
}

.zh_stat i {
    color: #258161;
}

.zh_provider_actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-self: flex-start;
    flex-shrink: 0;
    min-width: 120px;
}

.zh_btn_primary,
.zh_btn_contact {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    border: none;
    outline: none;
    white-space: nowrap;
}

.zh_btn_primary {
    background: #258161;
    color: white;
}

.zh_btn_primary:hover {
    background: #1e6b4f;
    transform: translateY(-1px);
}

.zh_btn_contact {
    background: transparent;
    color: #258161;
    border: 1px solid #258161;
}

.zh_btn_contact:hover {
    background: #258161;
    color: white;
}

.zh_btn_primary i,
.zh_btn_contact i {
    margin-right: 4px;
}

/* 分页 */
.zh_pagination_wrapper {
    text-align: center;
    padding: 30px 0;
}

/* 平台介绍 */
.zh_platform_intro {
    background: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.zh_intro_card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 40px;
    text-align: center;
}

.zh_intro_title {
    color: #258161;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.zh_intro_title i {
    margin-right: 12px;
    color: #4fb3d9;
}

.zh_intro_content {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #666;
}

.zh_intro_content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.zh_intro_subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 10px;
}

.zh_intro_features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.zh_feature_item {
    text-align: center;
    min-width: 120px;
}

.zh_feature_item i {
    font-size: 2.5rem;
    color: #258161;
    margin-bottom: 10px;
    display: block;
}

.zh_feature_item span {
    font-weight: 500;
    color: #333;
}

.zh_intro_action {
    text-align: center;
}

.zh_join_btn {
    display: inline-block;
    background: linear-gradient(135deg, #258161, #1e6b4f);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 129, 97, 0.3);
}

.zh_join_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 129, 97, 0.4);
    background: linear-gradient(135deg, #1e6b4f, #258161);
}

.zh_join_btn i {
    margin-right: 8px;
}

/* 推荐区域 */
.zh_recommendations {
    background: white;
    padding: 60px 0;
}

.zh_section_card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 40px;
}

.zh_section_header {
    text-align: center;
    margin-bottom: 40px;
}

.zh_section_title {
    color: #258161;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.zh_section_title i {
    margin-right: 12px;
    color: #4fb3d9;
}

.zh_section_subtitle {
    color: #666;
    font-size: 16px;
}

.zh_recommendations_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.zh_recommendation_item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.zh_recommendation_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.zh_rec_image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.zh_rec_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zh_recommendation_item:hover .zh_rec_image img {
    transform: scale(1.05);
}

.zh_rec_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 129, 97, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_recommendation_item:hover .zh_rec_overlay {
    opacity: 1;
}

.zh_rec_link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.zh_rec_link:hover {
    background: white;
    color: #258161;
}

.zh_rec_link i {
    margin-right: 6px;
}

.zh_rec_content {
    padding: 20px;
}

.zh_rec_title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_rec_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.zh_rec_price {
    color: #258161;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zh_container {
        padding: 0 15px;
    }

    .zh_page_title {
        font-size: 2rem;
    }

    .zh_list_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .zh_sort_links {
        gap: 10px;
    }

    .zh_provider_item {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .zh_provider_left {
        align-self: center;
    }

    .zh_provider_actions {
        flex-direction: row;
        align-self: stretch;
        min-width: auto;
    }

    .zh_provider_actions .zh_btn_primary,
    .zh_provider_actions .zh_btn_contact {
        flex: 1;
    }

    .zh_intro_features {
        gap: 25px;
    }

    .zh_recommendations_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zh_page_header {
        padding: 40px 0;
    }

    .zh_page_title {
        font-size: 1.6rem;
    }

    .zh_provider_item {
        padding: 15px;
    }

    .zh_provider_logo {
        width: 80px;
        height: 80px;
    }

    .zh_provider_header_info {
        flex-direction: column;
        gap: 10px;
    }

    .zh_provider_services {
        margin-bottom: 15px;
    }

    .zh_provider_stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .zh_sort_links {
        flex-wrap: wrap;
        gap: 8px;
    }

    .zh_intro_card {
        padding: 25px;
    }

    .zh_section_card {
        padding: 25px;
    }

    .zh_intro_features {
        flex-direction: column;
        gap: 20px;
    }
}
