/* 服务商列表页面样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 主要内容区域 */
.zh_main-content {
    min-height: calc(100vh - 200px);
}

/* 页面头部 */
.zh_page-header {
    background: linear-gradient(135deg, #00BCD4 0%, #26C6DA 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.zh_page-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.zh_page-title h1 i {
    margin-right: 15px;
    color: #FFE082;
}

.zh_subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* 服务导航 */
.zh_service-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.zh_nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.zh_nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.zh_nav-item i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.zh_nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.zh_nav-highlight {
    background: #FF9800;
}

.zh_nav-highlight:hover {
    background: #F57C00;
}

/* 筛选区域 */
.zh_filter-section {
    background: white;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.zh_filter-bar {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.zh_filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_filter-group label {
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.zh_filter-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zh_filter-select:focus {
    outline: none;
    border-color: #00BCD4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.zh_search-btn {
    background: #00BCD4;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_search-btn:hover {
    background: #00ACC1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

/* 服务商列表区域 */
.zh_providers-section {
    padding: 40px 0;
}

.zh_section-header {
    text-align: center;
    margin-bottom: 50px;
}

.zh_section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.zh_section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* 服务商网格 */
.zh_providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* 服务商卡片 */
.zh_provider-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.zh_provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 服务商头部 */
.zh_provider-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.zh_provider-avatar {
    position: relative;
    margin-right: 20px;
}

.zh_provider-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid #00BCD4;
}

.zh_verified-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #00BCD4;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 3px solid white;
}

.zh_provider-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.zh_provider-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.zh_rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.zh_rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.zh_rating-text {
    margin-left: 5px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.zh_service-count {
    color: #666;
    font-size: 0.9rem;
}

/* 服务商描述 */
.zh_provider-description {
    margin-bottom: 20px;
}

.zh_provider-description p {
    color: #666;
    line-height: 1.6;
}

/* 服务标签 */
.zh_service-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.zh_tag {
    background: #E3F2FD;
    color: #1976D2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #BBDEFB;
}

/* 关联服务项目 */
.zh_provider-works {
    margin-bottom: 25px;
}

.zh_provider-works h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.zh_works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.zh_work-item {
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.zh_work-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.zh_work-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

.zh_work-info {
    padding: 10px;
}

.zh_work-info h5 {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.zh_work-link {
    color: #00BCD4;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}

.zh_work-link:hover {
    text-decoration: underline;
}

/* 服务商操作区域 */
.zh_provider-actions {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.zh_contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
}

.zh_contact-info i {
    color: #00BCD4;
}

.zh_action-buttons {
    display: flex;
    gap: 10px;
}

/* 按钮样式 */
.zh_btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.zh_btn-primary {
    background: #00BCD4;
    color: white;
}

.zh_btn-primary:hover {
    background: #00ACC1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.zh_btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
}

.zh_btn-secondary:hover {
    background: #e9ecef;
    border-color: #00BCD4;
    color: #00BCD4;
}

.zh_btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

.zh_btn-orange {
    background: #FF9800;
    color: white;
}

.zh_btn-orange:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

/* 分页 */
.zh_pagination-wrapper {
    text-align: center;
    padding: 20px 0;
}

.zh_pagination-wrapper .pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
}

.zh_pagination-wrapper .pagination a {
    display: inline-block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
    min-width: 45px;
    text-align: center;
}

.zh_pagination-wrapper .pagination a:hover {
    background: #00BCD4;
    color: white;
    border-color: #00BCD4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.zh_pagination-wrapper .pagination a.cur {
    background: #00BCD4;
    color: white;
    border-color: #00BCD4;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.3);
}

.zh_pagination-wrapper .pagination a.cur:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.4);
}

/* 相关服务推荐 */
.zh_related-services {
    background: white;
    padding: 60px 0;
    margin-top: 40px;
}

.zh_related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.zh_related-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zh_related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.zh_related-image {
    position: relative;
    overflow: hidden;
}

.zh_related-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.zh_related-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 188, 212, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.zh_related-item:hover .zh_related-overlay {
    opacity: 1;
}

.zh_related-item:hover .zh_related-image img {
    transform: scale(1.1);
}

.zh_related-link {
    background: white;
    color: #00BCD4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.zh_related-link:hover {
    background: #00BCD4;
    color: white;
    transform: scale(1.1);
}

.zh_related-content {
    padding: 20px;
}

.zh_related-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.zh_related-content p {
    color: #666;
    font-size: 0.9rem;
}

/* 入驻邀请 */
.zh_join-invitation {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: white;
    padding: 60px 0;
    margin-top: 40px;
}

.zh_invitation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.zh_invitation-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.zh_invitation-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.zh_benefits {
    list-style: none;
}

.zh_benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.zh_benefits i {
    color: #00BCD4;
    font-size: 1.1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zh_container {
        padding: 0 15px;
    }
    
    .zh_page-title h1 {
        font-size: 2rem;
    }
    
    .zh_service-nav {
        gap: 15px;
    }
    
    .zh_nav-item {
        padding: 15px;
    }
    
    .zh_filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .zh_filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .zh_providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zh_provider-card {
        padding: 25px;
    }
    
    .zh_provider-header {
        flex-direction: column;
        text-align: center;
    }
    
    .zh_provider-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .zh_action-buttons {
        flex-direction: column;
    }
    
    .zh_invitation-content {
        flex-direction: column;
        text-align: center;
    }
    
    .zh_related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .zh_page-title h1 {
        font-size: 1.8rem;
    }
    
    .zh_subtitle {
        font-size: 1rem;
    }
    
    .zh_service-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zh_section-header h2 {
        font-size: 1.8rem;
    }
    
    .zh_provider-card {
        padding: 20px;
    }
    
    .zh_works-grid {
        grid-template-columns: 1fr;
    }
}
