/* 筛选区域样式 */
.filter-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-option {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f7fa;
    border-radius: 16px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.filter-option:hover {
    background: #e6f0ff;
    color: #1a73e8;
    border-color: #c2d8ff;
}

.filter-option.active {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

.filter-option.active .filter-link {
    color: #fff;
}

/* 搜索区域样式 */
.search-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    font-size: 14px;
    transition: all 0.2s ease;
    min-width: 200px;
}

.search-input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.search-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-button:hover {
    background: #1765cc;
}

.reset-button {
    padding: 10px 16px;
    background: transparent;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reset-button:hover {
    background: #f5f5f5;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .filter-options {
        gap: 6px;
    }

    .filter-option {
        padding: 5px 12px;
        font-size: 12px;
    }

    .search-input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .search-button, .reset-button {
        width: 100%;
        justify-content: center;
    }
}

/* 容器样式 */
.manager-list-container {
    margin-top: 30px;
}

/* 网格布局 */
.manager-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
}

/* 空状态提示 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.empty-state img {
    max-width: 200px;
    margin-bottom: 20px;
    opacity: 0.7;
}


.empty-state h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.empty-state p {
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* 卡片样式 */
.manager-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.manager-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 头像区域 */
.manager-avatar {
    position: relative;
    height: 180px;
    background: #f5f7fa;
    overflow: hidden;
}

.manager-avatar img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    /*border: 3px solid #4CAF50;*/
    margin: 0 auto 15px;
    display: block;
}

.manager-card:hover .manager-avatar img {
    transform: scale(1.05);
}

/* 能力等级徽章 */
.level-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.level-1 {
    background: #4caf50;
}

/* 初级 */
.level-2 {
    background: #2196f3;
}

/* 中级 */
.level-3 {
    background: #f44336;
}

/* 高级 */

/* 详细信息区域 */
.manager-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.manager-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

/* 元信息 */
.manager-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-icon {
    width: 14px;
    height: 14px;
    fill: #666;
}

/* 专业领域标签 */
.manager-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.expertise-tag {
    background: #e8f4fc;
    color: #2196f3;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* 简介 */
.manager-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* 查看详情按钮 */
.view-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #2196f3;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.view-profile:hover {
    background: #0d8bf2;
    transform: translateY(-2px);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    fill: #fff;
    margin-left: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .manager-grid {
        grid-template-columns: 1fr;
    }

    .manager-avatar {
        height: 160px;
    }
}
