
/* 专家列表扁平化样式 */
.flat-experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.flat-expert-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.flat-expert-card:hover {
    /* border-color: #2E7D32; */
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.flat-expert-avatar {
    margin-bottom: 15px;
    margin-right: 10px;
}

.flat-expert-img {
    width: 200px;
    height: 220px;
    border-radius: 0;
    border: 3px solid #f5f5f5;
    object-fit: cover;
}

.flat-expert-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}
.flat-expert-achievement {
    text-align: left;
    font-size: 11px;
    color: #777;
    line-height: 1.4;
    flex-grow: 1;
}

.flat-expert-achievement div {
    margin-bottom: 3px;
}

/* 专家卡片颜色变体 */
.flat-expert-card:nth-child(4n+1) {
    border-top: 3px solid #2E7D32;
}
.flat-expert-card:nth-child(4n+1):hover {
    border-color: #2E7D32;
}
.flat-expert-card:nth-child(4n+2) {
    border-top: 3px solid #1976D2;
}
.flat-expert-card:nth-child(4n+2):hover {
    border-color: #1976D2;
}
.flat-expert-card:nth-child(4n+3) {
    border-top: 3px solid #7B1FA2;
}
.flat-expert-card:nth-child(4n+3):hover {
    border-color: #7B1FA2;
}
.flat-expert-card:nth-child(4n+4) {
    border-top: 3px solid #C2185B;
}
.flat-expert-card:nth-child(4n+4):hover {
    border-color: #C2185B;
}
/* 非响应式专家列表布局 - 固定宽度 */
.flat-experts-grid {
    grid-template-columns: repeat(2, 1f);
    margin: 0 auto;
}

/* 固定宽度容器确保非响应式 */
.flat-main-content {
    overflow-x: auto;
}

/* 扁平化布局确保固定宽度 */
.flat-expert-card {
    width: 100%;
}

/* 分页样式 */
.flat-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 5px;
}

.flat-page-link {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    text-decoration: none;
    color: #333;
    background: #f5f5f5;
    border: 1px solid #ddd;
    font-size: 14px;
    min-width: 36px;
    text-align: center;
    transition: all 0.2s ease;
}

.flat-page-link:hover {
    background: #e0e0e0;
    border-color: #999;
    text-decoration: none;
    color: #333;
}

.flat-page-link.active {
    background: #2E7D32;
    color: white;
    border-color: #2E7D32;
    font-weight: bold;
}

.flat-page-link.disabled {
    color: #999;
    background: #f9f9f9;
    border-color: #eee;
    cursor: not-allowed;
    opacity: 0.6;
}

/* 专家卡片链接样式 */
.flat-expert-card-link {
    transition: transform 0.2s ease;
}

.flat-expert-card-link:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.flat-expert-card-link .flat-expert-card {
    cursor: pointer;
}

/* 移动端分页优化 */
@media (max-width: 768px) {
    .flat-pagination {
        gap: 3px;
        margin: 15px 0;
    }
    
    .flat-page-link {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 32px;
    }
}