<style>/* 全局样式 */
.m-brief .txt {
    text-indent: 0;}
.scholar-profile {
    font-family: 'Segoe UI', system-ui, sans-serif;
    max-width: 1200px;
    margin: 2rem auto;
   }

/* 个人信息卡片 */
.scholar-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;}



       .profile-header {
                                            display: flex;
                                            gap: 2rem;
                                            padding: 2rem;
                                            align-content: space-around;
                                            justify-content: space-around;
                                        }



.scholar-portrait {
    width: 220px;
    height: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    object-fit: cover;
    border: 3px solid white;}

.title-wrapper {
    flex: 1;}

.scholar-name {
    color: #1a1a1a;
    font-size: 2.25rem;
    margin: 0 0 1rem;
    font-weight: 600;}

.scholar-title-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;}

.title-tag {
    background: rgba(39,100,174,0.1);
    color: #2764ae;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95em;
    border: 1px solid rgba(39,100,174,0.2);}

.title-tag.highlight {
    background: #2764ae;
    color: white;
    border-color: transparent;}

/* 联系信息 */
.card-body {
    padding: 0 2rem;}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f2f5;}

.info-row:last-child {
    border-bottom: none;}

.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;}

.icon-email { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%232764ae" d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z"/></svg>');}

.icon-location { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%232764ae" d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');}

.contact-link {
    color: #2764ae;
    text-decoration: none;
    transition: all 0.2s;}

.contact-link:hover {
    text-decoration: underline;
    opacity: 0.9;}

/* 研究方向 */
.research-section {
    margin-top: 1.5rem;
    padding-top: 2rem;}

.section-label {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0 0 1.5rem;
    font-weight: 500;}

.research-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;}

.research-tag {
    background: #f8fafc;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.2s;}

.research-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);}

/* 成果展示 */
.sp-section {
    margin: 1.5rem 0;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);}

.sp-section-title {
    font-size: 1.5rem;
    color: #1e293b;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;}

.sp-paper {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: transform 0.2s;}

.sp-paper:hover {
    transform: translateX(10px);}

.sp-paper-title {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;}

.sp-journal {
    color: #2764ae;
    font-style: italic;}

.paper-date {
    color: #64748b;
    margin-top: 0.8rem;
    font-size: 0.9em;}

.sp-project {
    padding: 1.5rem;
    border-left: 4px solid #2764ae;
    background: #f8fafc;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;}

/* 响应式设计 */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;}
    
    .scholar-portrait {
        width: 180px;
        height: 240px;}
    
    .scholar-name {
        font-size: 1.75rem;}
    
    .scholar-title-group {
        justify-content: center;}
    
    .research-tags {
        flex-direction: column;}
    
    .research-tag {
        width: 100%;
        text-align: center;}
    
    .sp-section {
        padding: 1.5rem;
        margin: 2rem 0;}
}

@media (max-width: 480px) {
    .info-row {
        flex-direction: column;
        align-items: flex-start;}
    
    .icon {
        margin-bottom: 0.5rem;}
}</style>