/* expert-profile.css - 专家简介页面样式 */

/* 重置样式 */
.expert-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

.expert-body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

/* 容器样式 */
.expert-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 标题样式 */
.expert-header {
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
}

.expert-header h1 {
    font-size: 2.5rem;
    color: #1a5fb4;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.expert-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a5fb4, #2c3e50);
    border-radius: 2px;
}

/* 专家展示区域 */
.expert-profile {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

/* 专家照片区域 */
.expert-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expert-image:hover img {
    transform: scale(1.03);
}

/* 专家信息区域 */
.expert-info {
    flex: 0 0 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-name {
    font-size: 2.2rem;
    color: #1a5fb4;
    margin-bottom: 10px;
}

.expert-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 500;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.expert-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
    line-height: 1.8;
}

/* 成就列表 */
.expert-achievements {
    margin-top: 20px;
}

.expert-achievements h3 {
    font-size: 1.3rem;
    color: #1a5fb4;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.expert-achievements h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #1a5fb4;
    border-radius: 2px;
}

.expert-achievement-list {
    list-style-type: none;
}

.expert-achievement-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: flex-start;
    transition: background-color 0.3s ease;
}

.expert-achievement-list li:hover {
    background-color: #f9f9f9;
}

.expert-achievement-list li:last-child {
    border-bottom: none;
}

.expert-achievement-list i {
    color: #1a5fb4;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.2rem;
}

.expert-achievement-text {
    flex: 1;
}

/* 团队介绍区域 */
.expert-team-intro {
    background: #d8d8d8;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.expert-team-intro h2 {
    color: #1a5fb4;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.expert-team-intro p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #444;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .expert-profile {
        flex-direction: column;
    }
    
    .expert-image {
        height: 400px;
    }
    
    .expert-info {
        padding: 30px;
    }
    
    .expert-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .expert-image {
        height: 350px;
    }
    
    .expert-info {
        padding: 25px;
    }
    
    .expert-name {
        font-size: 1.8rem;
    }
    
    .expert-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .expert-image {
        height: 300px;
    }
    
    .expert-info {
        padding: 20px;
    }
    
    .expert-name {
        font-size: 1.6rem;
    }
    
    .expert-title {
        font-size: 1.1rem;
    }
}

/* 页脚样式 */
.expert-footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

/* 动画效果 */
@keyframes expertFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expert-profile {
    animation: expertFadeInUp 0.8s ease forwards;
}

.expert-team-intro {
    animation: expertFadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}