* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(216, 241, 230, 0.2) 0%, rgba(255, 255, 255, 0) 90%),
        radial-gradient(circle at 90% 80%, rgba(52, 152, 219, 0.1) 0%, rgba(255, 255, 255, 0) 90%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* 移动设备优化 */
html, body {
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    overscroll-behavior-y: contain;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}

header {
    background-color: #fff;
    padding: 60px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
    margin-top: 60px;
}

.profile {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
}

.profile-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f0f0f0;
    flex-shrink: 0;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.profile-image:hover {
    border-color: #3498db;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* 为头像添加光晕效果 */
.profile-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.profile-image:hover::before {
    opacity: 1;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.profile-info h2 {
    font-size: 1.5rem;
    font-weight: normal;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.profile-info p {
    font-size: 1rem;
    margin-bottom: 15px;
    max-width: 100%;
    line-height: 1.8;
}

.profile-info p a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted #3498db;
    transition: all 0.2s ease;
}

.profile-info p a:hover {
    color: #2980b9;
    border-bottom: 1px solid #2980b9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #3498db;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2980b9;
}

main {
    background-color: #fff;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.sections {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    overflow: hidden;
}

.section {
    margin: 0;
    padding: 40px 0;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    overflow: hidden;
}

.section:nth-child(odd) {
    background-color: #f9f9f9;
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section:nth-child(2) {
    transition-delay: 0.2s;
}

.section:nth-child(3) {
    transition-delay: 0.4s;
}

.section:last-child {
    border-bottom: none;
}

.section-inner {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
    position: relative;
    max-width: 100%;
    transition: transform 0.5s ease, color 0.5s ease;
}

.section h3:hover {
    transform: translateX(10px);
    color: #3498db;
}

.section h3:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #3498db;
    transition: width 0.5s ease, background-color 0.5s ease;
}

.section h3:hover:after {
    width: 120px;
    background-color: #e74c3c;
}

.publication, .news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.5);
    transition: all 0.3s ease;
}

.publication:hover, .news-item:hover {
    transform: translateX(5px);
    background-color: rgba(52, 152, 219, 0.03);
    border-radius: 0;
    padding-left: 10px;
}

.publication h4, .news-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #34495e;
    font-weight: 600;
    max-width: 110%;
}

.publication p, .news-item p {
    font-size: 0.95rem;
    color: #5f6368;
    line-height: 1.6;
}

.publication .authors {
    font-style: italic;
    margin-bottom: 8px;
    color: #7f8c8d;
}

.publication .journal {
    font-weight: 600;
    color: #3498db;
    margin-bottom: 10px;
}

.news-item .date {
    font-weight: 600;
    color: #3498db;
    margin-bottom: 10px;
    display: inline-block;
    padding: 3px 8px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 4px;
    font-size: 0.85rem;
}

.cv-item {
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.cv-item h4 {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 12px;
    font-weight: 600;
}

.cv-item p {
    font-size: 0.95rem;
    color: #5f6368;
    margin-bottom: 8px;
    line-height: 1.5;
}

.cv-item .year {
    font-weight: 600;
    color: #3498db;
    margin-bottom: 4px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.download-btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.4);
}

.download-btn i {
    font-size: 1.1rem;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .section {
        padding: 30px 15px;
    }
    
    .section-inner {
        padding: 0 10px;
    }
    
    header {
        padding: 40px 15px;
        margin-top: 90px;
    }
    
    .profile {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .publication {
        flex-direction: column;
        padding: 20px 15px;
    }
    
    .publication-preview {
        width: 100%;
        min-width: auto;
    }
    
    /* 防止溢出 */
    .container, .section, .section-inner, .interests-container, .interest-item, .publication {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    html {
        overflow-x: hidden;
    }
}

@media (min-width: 769px) and (max-width: 1400px) {
    .section {
        padding: 40px 20px;
    }
    
    /* 防止溢出 */
    .container, .section, .section-inner, .interests-container, .interest-item, .publication {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    html {
        overflow-x: hidden;
    }
}

@media (min-width: 1401px) {
    .section {
        padding: 50px 30px;
    }
    
    /* 防止溢出 */
    .container, .section, .section-inner, .interests-container, .interest-item, .publication {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    html {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .profile-info h2 {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (min-width: 1200px) {
    .publication, .news-item {
        display: flex;
        flex-direction: column;
        padding-right: 10%;
    }
    
    .publication p, .news-item p {
        max-width: 90%;
    }
    
    .section h3 {
        padding-right: 20%;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
    
    main {
        padding: 70px 0;
    }
    
    .sections {
        gap: 50px;
    }
    
    .section {
        padding: 40px 60px;
    }
}

@media (min-width: 1400px) {
    body {
        font-size: 1.05rem;
    }
    
    .profile-info p {
        font-size: 1.1rem;
    }
    
    .publication p, .news-item p, .cv-item p {
        font-size: 1rem;
    }
    
    .publication h4, .news-item h4 {
        font-size: 1.5rem;
    }
    
    .section h3 {
        font-size: 2.2rem;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* News部分的特殊样式 */
.section-inner h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.news-item {
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-item:hover {
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left-width: 8px;
}

.news-item h4 {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
    max-width: 100%;
}

.news-item .date {
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 12px;
    background-color: #3498db;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.2);
}

/* 每个news-item使用不同的左边框颜色 */
.news-item:nth-child(1) {
    border-left-color: #e74c3c;
}

.news-item:nth-child(1) .date {
    background-color: #e74c3c;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.2);
}

.news-item:nth-child(2) {
    border-left-color: #3498db;
}

.news-item:nth-child(2) .date {
    background-color: #3498db;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.2);
}

.news-item:nth-child(3) {
    border-left-color: #2ecc71;
}

.news-item:nth-child(3) .date {
    background-color: #2ecc71;
    box-shadow: 0 2px 5px rgba(46, 204, 113, 0.2);
}

.news-item:nth-child(4) {
    border-left-color: #f39c12;
}

.news-item:nth-child(4) .date {
    background-color: #f39c12;
    box-shadow: 0 2px 5px rgba(243, 156, 18, 0.2);
}

.news-item:nth-child(5) {
    border-left-color: #9b59b6;
}

.news-item:nth-child(5) .date {
    background-color: #9b59b6;
    box-shadow: 0 2px 5px rgba(155, 89, 182, 0.2);
}

.news-item:nth-child(6) {
    border-left-color: #e74c3c;
}

.news-item:nth-child(6) .date {
    background-color: #e74c3c;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.2);
}

.news-item:nth-child(7) {
    border-left-color: #2ecc71;
}

.news-item:nth-child(7) .date {
    background-color: #2ecc71;
    box-shadow: 0 2px 5px rgba(46, 204, 113, 0.2);
}

.news-item:nth-child(8) {
    border-left-color: #f39c12;
}

.news-item:nth-child(8) .date {
    background-color: #f39c12;
    box-shadow: 0 2px 5px rgba(243, 156, 18, 0.2);
}

/* 调整section部分，使News部分脱颖而出 */
.section:first-child {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .news-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .news-item h4 {
        font-size: 1.1rem;
    }
    
    .news-item .date {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

/* 新闻标题的emoji效果 */
.news-emoji {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.5s ease;
}

/* 调整长标题的显示效果 */
.news-item h4 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
    max-width: 100%;
    position: relative;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* 添加更精致的卡片效果 */
.news-item {
    padding: 22px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.news-item:hover {
    transform: translateX(8px);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left-width: 8px;
}

/* 添加精细的背景效果 */
.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(240, 240, 240, 0.2));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover::before {
    opacity: 1;
}

/* 调整日期徽章样式 */
.news-item .date {
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 14px;
    background-color: #3498db;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.3);
    letter-spacing: 0.5px;
}

/* 为News部分的标题添加更现代的样式 */
.section:first-child .section-inner h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section:first-child .section-inner h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .news-item {
        padding: 18px;
        margin-bottom: 20px;
    }
    
    .news-item h4 {
        font-size: 1.1rem;
    }
    
    .section:first-child .section-inner h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

/* Publications部分的样式 */
.publications-carousel {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    background: linear-gradient(120deg, rgba(52, 152, 219, 0.08), rgba(46, 204, 113, 0.05));
    padding: 20px 15px;
}

.publications-carousel::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 14px;
    border: 1px dashed rgba(52, 152, 219, 0.2);
    pointer-events: none;
}

.publications-track {
    display: block;
    transition: transform 0.6s ease;
    will-change: transform;
}

.publications-track.ready {
    display: flex;
}

.publications-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 5px 10px 25px;
}

.publications-slide .publication:last-child {
    margin-bottom: 0;
}

.publications-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.publications-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.35);
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.publications-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.publications-nav:not(:disabled):hover {
    transform: translateY(-3px);
}

.publications-pagination {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.publications-pagination .current-page {
    font-size: 1.4rem;
    color: #3498db;
}

.publications-carousel.dragging .publications-track {
    transition: none;
}

.publications-controls.hidden {
    display: none;
}

@media (max-width: 768px) {
    .publications-carousel {
        padding: 15px 10px;
        border-radius: 12px;
    }
    
    .publications-carousel::after {
        inset: 8px;
        border-radius: 10px;
    }
    
    .publications-slide {
        padding: 0 5px 15px;
    }
    
    .publications-nav {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .publications-pagination {
        font-size: 1rem;
    }
    
    .publications-pagination .current-page {
        font-size: 1.2rem;
    }
}

.publication {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    position: relative;
    border-left: none;
    width: 100%;
}

.publication:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.publication-content {
    flex: 1;
    width: 100%;
}

.publication-preview {
    width: 300px;
    min-width: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.publication-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.paper-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.publication-preview:hover .preview-overlay {
    opacity: 1;
    transform: translateY(0);
}

.preview-btn, .pdf-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.preview-btn:hover, .pdf-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.publication h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    line-height: 1.5;
}

.publication .authors {
    color: #555;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.author-highlight {
    font-weight: 700;
    color: #3498db;
}

.publication .journal {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.publication-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

/* 为Publications部分的标题添加样式 */
.section:nth-child(2) .section-inner h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section:nth-child(2) .section-inner h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #9b59b6, #3498db);
    border-radius: 2px;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .publication {
        flex-direction: column;
    }
    
    .publication-preview {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .preview-overlay {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .publication {
        padding: 20px 15px;
    }
    
    .publication h4 {
        font-size: 1.2rem;
    }
    
    .publication-tags {
        margin-top: 10px;
    }
    
    .section:nth-child(2) .section-inner h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

/* CV highlight layout */


.panel-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3498db, #7f5af0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.25);
}

.panel-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: #7d8a97;
    margin-bottom: 4px;
}

.cv-panel h4 {
    margin: 0;
    font-size: 1.4rem;
    color: #1f2d3d;
}

.panel-description {
    color: #5c6776;
    line-height: 1.7;
    margin-bottom: 22px;
}

#cv .section-inner {
    padding: 0;
}

.honors-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.honor-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(247, 249, 252, 0.95);
    box-shadow: inset 0 0 0 1px rgba(52, 152, 219, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honor-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), rgba(155, 89, 182, 0.12));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.honor-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(52, 152, 219, 0.15);
}

.honor-item:hover::before {
    opacity: 1;
}

.honor-icon,
.honor-content {
    position: relative;
    z-index: 1;
}

.honor-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.honor-item:hover .honor-icon {
    transform: scale(1.1) rotate(-6deg);
}

.honor-content h5 {
    font-size: 1.1rem;
    color: #1f2d3d;
    margin-bottom: 6px;
    font-weight: 600;
}

.honor-content p {
    font-size: 0.92rem;
    color: #4d5a6b;
    margin-bottom: 4px;
}

.honor-year {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(52, 152, 219, 0.15);
    color: #1f6fb2;
    font-size: 0.85rem;
    font-weight: 600;
}

.reviewer-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reviewer-card {
    border-radius: 18px;
    padding: 22px;
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.18);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviewer-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    opacity: 0.35;
    pointer-events: none;
}

.reviewer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(53, 152, 219, 0.2);
}

.reviewer-year {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1f6fb2;
    font-weight: 700;
}

.reviewer-venue {
    font-size: 1.1rem;
    color: #1f2d3d;
    margin: 10px 0 6px;
    font-weight: 600;
}

.reviewer-role {
    color: #4a5767;
    margin-bottom: 6px;
    line-height: 1.6;
}

.reviewer-note {
    font-size: 0.85rem;
    color: #6d7a8a;
}

@media (max-width: 992px) {
    .cv-highlight {
        padding: 45px 32px;
    }
}

@media (max-width: 768px) {
    .cv-highlight {
        padding: 35px 24px;
    }
    
    .panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .cv-highlight {
        padding: 28px 18px;
    }
    
    .cv-panel {
        padding: 24px;
    }
    
    .panel-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        font-size: 1.2rem;
    }
}

/* Skills 部分样式 */
.skills-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.skill-category h5 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.skill-name {
    font-size: 0.95rem;
    color: #34495e;
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background-color: #ecf0f1;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-level {
    height: 100%;
    background: linear-gradient(to right, #3498db, #2980b9);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.skill-level::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0) 100%);
    animation: skillGlow 2s infinite;
}

@keyframes skillGlow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(52, 152, 219, 0), rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0));
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.skill-tag:hover {
    background-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.2);
}

.skill-tag:hover::before {
    transform: translateX(100%);
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    max-width: 100%;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-content {
    padding: 10px 20px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
}

.nav-logo a:hover {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

/* 移动菜单图标 */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: #3498db;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 20px;
}

.nav-link i {
    font-size: 0.9rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.3) rotate(15deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.05);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: calc(100% - 20px);
}

.nav-link.active {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
}

.nav-link.active::after {
    width: calc(100% - 20px);
}

/* 回到顶部按钮样式 */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
        transform: scale(1);
    }
}

.scroll-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scroll-to-top a:hover {
    background-color: #2980b9;
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.scroll-to-top a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%) skewX(-15deg);
}

.scroll-to-top a:hover::before {
    animation: btnSweep 0.8s ease-in-out;
}

@keyframes btnSweep {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(100%) skewX(-15deg);
    }
}

.scroll-to-top a i {
    transition: transform 0.3s ease;
}

.scroll-to-top a:hover i {
    transform: translateY(-5px);
}

/* 响应式导航栏 */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    
    .nav-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    header {
        margin-top: 90px;
    }
    
    html {
        scroll-padding-top: 100px;
    }
}

/* 兴趣爱好部分样式 */
.interests-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 25px;
    width: 100%;
    padding: 0;
}

.interest-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.interest-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.interest-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

.interest-item:hover .interest-image img {
    transform: scale(1.05);
}

.interest-content {
    padding: 40px 60px 50px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.interest-content h4 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.interest-content h4 i {
    color: #3498db;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.interest-item:hover .interest-content h4 i {
    transform: scale(1.2) rotate(10deg);
}

.interest-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.interest-item:hover .interest-content h4::after {
    width: 120px;
}

.interest-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 1200px;
}

/* 兴趣爱好照片画廊 */
.interest-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
    max-width: 100%;
}

.gallery-item {
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item::before {
    content: '👁️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 2rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* 画廊模态框样式 */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    transition: transform 0.4s ease;
}

.gallery-modal.active .gallery-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #f1f1f1;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2001;
}

.gallery-close:hover {
    color: #3498db;
}

#gallery-modal-image {
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    object-fit: contain;
}

.gallery-caption {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    max-width: 80%;
}

@media (max-width: 768px) {
    #gallery-modal-image {
        max-width: 95%;
        max-height: 70vh;
    }
    .gallery-caption {
        font-size: 0.9rem;
    }
}

/* 为兴趣爱好项目添加不同的强调色 */
.interest-item:nth-child(1) .interest-content h4::after,
.interest-item:nth-child(1) .interest-content h4 i {
    background-color: #e74c3c;
    color: #e74c3c;
}

.interest-item:nth-child(2) .interest-content h4::after,
.interest-item:nth-child(2) .interest-content h4 i {
    background-color: #9b59b6;
    color: #9b59b6;
}

.interest-item:nth-child(3) .interest-content h4::after,
.interest-item:nth-child(3) .interest-content h4 i {
    background-color: #2ecc71;
    color: #2ecc71;
}

/* 添加画廊项目的顺序显示动画 */
.interest-item:hover .gallery-item:nth-child(1) {
    transition-delay: 0.1s;
}

.interest-item:hover .gallery-item:nth-child(2) {
    transition-delay: 0.2s;
}

.interest-item:hover .gallery-item:nth-child(3) {
    transition-delay: 0.3s;
}

/* 响应式调整 */
@media (max-width: 1400px) {
    .interest-content {
        padding: 35px 50px 45px;
    }
    
    .interest-content h4 {
        font-size: 1.8rem;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 1200px) {
    .interest-item {
        max-width: 100%;
    }
    
    .interest-content {
        padding: 30px 40px;
    }
    
    .interest-content h4 {
        font-size: 1.7rem;
    }
    
    .interest-content p {
        font-size: 1.05rem;
    }
    
    .gallery-item {
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .interest-image {
        height: 320px;
    }
    
    .interest-content {
        padding: 30px 35px 35px;
    }
    
    .interest-content h4 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .gallery-item {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .interests-container {
        gap: 30px;
    }
    
    .interest-image {
        height: 250px;
    }
    
    .interest-content {
        padding: 25px 25px 30px;
    }
    
    .interest-content h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .interest-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section:nth-child(4) .section-inner h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .interest-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }
    
    .gallery-item {
        height: 130px;
    }
}

@media (max-width: 576px) {
    .interest-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item {
        height: 140px;
    }
    
    .interest-content h4 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .interest-image {
        height: 200px;
    }
    
    .interest-content {
        padding: 20px 20px 25px;
    }
    
    .interest-content h4 {
        font-size: 1.3rem;
    }
    
    .interest-content p {
        font-size: 0.95rem;
    }
    
    .gallery-item {
        height: 120px;
    }
    
    .section:nth-child(4) .section-inner h3 {
        font-size: 1.8rem;
    }

    .fancy-highlight {
        background-color: lightblue;
        padding: 2px 5px; /* 给高亮区域一点内边距 */
        border-radius: 3px; /* 圆角效果 */
        box-shadow: 2px 2px 5px rgba(0,0,0,0.2); /* 添加一点阴影 */
        font-family: 'Arial', sans-serif; /* 改变字体 */
      }
}

/* 新闻滚动效果 */
.news-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.news-slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
    width: 100%;
}

.news-slider .news-item {
    flex: 0 0 100%;
    margin: 0;
    padding: 30px;
    box-sizing: border-box;
    background-color: #fff;
    border-left: none;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
}

.news-slider .news-item:hover {
    transform: none;
    box-shadow: none;
    background-color: #f9f9f9;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 20px;
    width: 100%;
}

.slider-prev, .slider-next {
    background-color: #3498db;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.slider-prev:hover, .slider-next:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.slider-prev:active, .slider-next:active {
    transform: translateY(0);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #3498db;
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: #bbb;
}

@media (max-width: 768px) {
    .news-slider .news-item {
        padding: 20px;
    }
    
    .slider-prev, .slider-next {
        width: 35px;
        height: 35px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

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

@keyframes skillBarLoad {
    from { width: 0; }
    to { width: 100%; }
}

/* CV部分标题样式 */
.section:nth-child(3) .section-inner h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section:nth-child(3) .section-inner h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #e74c3c, #f39c12);
    border-radius: 2px;
}

/* 兴趣爱好部分的标题样式 */
.section:nth-child(4) .section-inner h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section:nth-child(4) .section-inner h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3498db, #9b59b6);
    border-radius: 2px;
}

/* 添加卡片升起效果 */
.publication, .cv-item, .honor-item, .interest-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    top: 0;
}

.publication:hover, .cv-item:hover, .honor-item:hover {
    top: -10px;
}

/* 添加精美的卡片阴影效果 */
.publication, .cv-item, .honor-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.publication:hover, .cv-item:hover, .honor-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 为卡片添加微妙的光效 */
.publication::after, .cv-item::after, .honor-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.publication:hover::after, .cv-item:hover::after, .honor-item:hover::after {
    opacity: 1;
    animation: lightSweep 1.5s ease-in-out;
}

@keyframes lightSweep {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(100%) skewX(-15deg);
    }
}

/* 粒子背景 */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

/* 响应式样式增强 */
@media (max-width: 992px) {
    .profile {
        gap: 25px;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .publication {
        flex-direction: column;
    }
    
    .publication-preview {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .interest-content {
        padding: 25px 30px 30px;
    }
    
    .interest-content h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    /* 移动菜单样式 */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-content {
        flex-wrap: wrap;
    }
    
    .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 30px;
        z-index: 1000;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        gap: 15px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        padding: 12px 15px;
        width: 100%;
        border-radius: 8px;
    }
    
    /* 添加页面遮罩 */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .section {
        padding: 30px 15px;
    }
    
    .section-inner {
        padding: 0 10px;
    }
    
    header {
        padding: 40px 15px;
        margin-top: 70px;
    }
    
    .profile {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 0;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .publication {
        flex-direction: column;
        padding: 20px 15px;
    }
    
    .publication-preview {
        width: 100%;
        min-width: auto;
    }
    
    /* 防止溢出 */
    .container, .section, .section-inner, .interests-container, .interest-item, .publication {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .news-item h4, .publication h4 {
        font-size: 1.1rem;
    }
    
    .news-item .date {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .section h3 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
    
    .honor-item {
        padding: 15px;
    }
    
    .interest-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .profile-info h2 {
        font-size: 1.1rem;
    }
    
    .profile-info p {
        font-size: 0.95rem;
    }
    
    .honors-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links a {
        font-size: 1.3rem;
    }
    
    .interest-image {
        height: 200px;
    }
    
    .interest-content {
        padding: 20px 15px;
    }
    
    .gallery-item {
        height: 100px;
    }
    
    .slider-prev, .slider-next {
        width: 30px;
        height: 30px;
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
    }
    
    .section h3 {
        font-size: 1.5rem;
    }
    
    .nav-logo a {
        font-size: 1.2rem;
    }
}

@media (max-width: 375px) {
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-info h1 {
        font-size: 1.6rem;
    }
    
    .profile-info h2 {
        font-size: 1rem;
    }
    
    .publication p, .news-item p, .interest-content p {
        font-size: 0.9rem;
    }
    
    .interest-gallery {
        gap: 8px;
    }
    
    .gallery-item {
        height: 80px;
    }
    
    .interest-content h4 {
        font-size: 1.2rem;
    }
    
    .scroll-to-top a {
        width: 40px;
        height: 40px;
    }
}

/* 触摸设备的优化 */
@media (hover: none) {
    .nav-link:hover, 
    .publication:hover, 
    .news-item:hover, 
    .cv-item:hover, 
    .honor-item:hover, 
    .interest-item:hover {
        transform: none;
    }
    
    .preview-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    
    .profile-image:hover {
        transform: none;
        border-color: #f0f0f0;
    }
    
    .skill-tag:hover {
        transform: none;
        background-color: rgba(52, 152, 219, 0.1);
    }
}

/* 适配折叠屏设备 */
@media (max-width: 320px), (max-height: 600px) {
    .navbar .nav-content {
        padding: 8px 12px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .section {
        padding: 20px 12px;
    }
    
    .news-item, .publication, .cv-item, .interest-item {
        padding: 15px 12px;
        margin-bottom: 15px;
    }
    
    .profile-info h1 {
        font-size: 1.4rem;
    }
    
    .profile-info h2 {
        font-size: 0.9rem;
    }
} 
