@import url('https://cdn.jsdelivr.net/npm/latin-modern-roman@1.0.0/dist/latin-modern-roman.min.css');

/* 全局样式 */
:root {
    --primary-color: #002676; /* 统一深蓝色 */
    --secondary-color: #333333;
    --accent-color: #f8f9fa;
    --text-color: #444444;
    --light-gray: #e9ecef;
    --border-color: #e0e0e0;
    --base-font-size: 15px; /* 进一步减小基础字号 */
    --heading-font-family: "Latin Modern Roman", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --body-font-family: "Latin Modern Roman", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --container-max-width: 80%;
}

html {
    font-size: 13.5px; /* 进一步统一按比例缩小使用 rem 的字号 (默认是 16px) */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font-family);
    font-size: var(--base-font-size);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    text-align: justify;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0b0b0b; /* 深蓝色 */
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    background-color: #c6c4cc;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo a {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 24px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover {
    color: #1c0f4d ;
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1c0f4d;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* 隐藏导航中的 Experience 链接 */
.nav-links a[href="experience.html"] {
    display: none !important;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* 个人信息与关于部分样式 */
.profile-about {
    padding: 70px 0;
    background-color: #fff;
}

.profile-about-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: flex-start;
}

/* 左侧个人信息样式 */
.profile-info {
    flex: 0 0 250px;
    text-align: center;
    position: sticky;
    top: 100px; /* 距离顶部距离，考虑导航栏高度 */
    height: fit-content;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-info h1 {
    font-size: 2.0rem; /* 减小标题 */
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-family: var(--heading-font-family);
}

.profile-info p {
    font-size: 1.05rem; /* 减小正文 */
    margin-bottom: 12px;
    color: #131313;
}

.profile-role {
    font-size: 1.0rem; /* 减小角色 */
    font-weight: 500;
    margin-bottom: 15px;
}

.profile-affiliation {
    margin-bottom: 20px;
}

.profile-affiliation p {
    font-size: 0.95rem; /* 减小机构 */
    margin-bottom: 2px;
    color: #6b6969;
}

.profile-info .contact-details {
    margin: 20px 0;
    text-align: left;
}

.profile-info .contact-item {
    display: flex;
    font-size: 0.95rem; /* 减小联系方式 */
    align-items: center;
    margin-bottom: 8px;
    color: #0a0a0a;
}

.profile-info .contact-item i {
    width: 20px;
    margin-right: 8px;
    color: #212529; /* 改为黑色 */
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.social-icons a {
    margin: 0 8px;
    font-size: 1.6rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* 右侧关于内容样式 */
.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-content .section-title h2 {
    font-size: 2.4rem;
    padding-bottom: 10px;
    font-family: var(--heading-font-family);
}

.about-content .section-title h2::after {
    left: 0;
    transform: none;
}

/* 关于部分样式 */
.about {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 2.6rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-family: var(--heading-font-family);
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #575754;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.about-text p,
.about-text ul,
.about-text li {
    margin-bottom: 8px;
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: justify;
}

.about-text a {
    color: #1c0f4d;
    text-decoration: underline;
    font-weight: 600;
}
.about-text a:hover {
    text-decoration: none;
}

.interests-education-container {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    gap: 0px;
}

.interests-intro, .interests, .education {
    width: 100%;
    text-align: left;
}

.interests-intro h3 {
    margin-bottom: 15px;
    font-size: 2rem;
    color: var(--secondary-color);
    font-family: var(--heading-font-family);
}

.interests-description {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.interests-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
    margin: 0;
}

.interests h3 {
    margin-bottom: 10px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-family: var(--heading-font-family);
}

.interests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.interests-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 3.4px; /* 减小间距 */
    margin-bottom: 10px;
}

.interest-item {
    display: flex;
    align-items: center;
    font-weight: bold; /* 加粗文本 */
    font-size: 1.35rem;
    color: var(--secondary-color);
    padding: 3px 0;
}

.interest-item::before {
    content: '•'; /* 添加圆点 */
    margin-right: 8px;
    font-size: 1.2em;
    color: var(--secondary-color);
}

/* 教育经历样式 */
.education {
    margin-top: 0;
}

.education h3 {
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-family: var(--heading-font-family);
}

@media screen and (max-width: 768px) {
    .interests-education-container {
        flex-direction: column;
    }
    
    .interests-intro, .interests, .education {
        margin-top: 20px;
    }
    
    .interests-intro {
        margin-top: 0;
    }
}

.education-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.education-item {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.education-degree {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.education-degree::before {
    content: none;
}

.education-date {
    font-size: 1.5rem;
    color: #666;
    margin-left: 10px;
    font-weight: normal;
}

.education-school {
    font-size: 1.5rem;
    color: #030303;
}
.edu-icon {
    width: 85px;
    height: 85px;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.edu-icon-link {
    display: inline-flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .edu-icon {
        width: 60px;
        height: 60px;
    }
}
/* 新闻滚动框样式 */
.news-container {
    height: 300px;
    overflow-y: hidden;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    margin-top: 10px;
    transition: height 0.3s ease;
}

.news-container.expanded {
    height: auto;
    max-height: none;
}

.news-toggle-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    padding: 5px;
    text-decoration: underline;
}

.news-toggle-btn:hover {
    color: #0b0b0b;
}

.news-container ul {
    list-style-type: disc;
    padding-left: 20px;
}

.news-container li {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #444;
}

.news-container::-webkit-scrollbar {
    width: 6px;
}

.news-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.news-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.news-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* 论文行样式 */
.pub-row {
    display: flex;
    margin-bottom: 2px;
    gap: 16px;
}

.pub-row .abbr {
    flex: 0 0 210px;
    text-align: center;
}

.pub-row .abbr img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 8px;
}

.pub-row .abbr .badge {
    display: inline-block;
    padding: 2px 8px;
    background-color: #1c0f4d;
    color: #fff;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pub-row .pub-content {
    flex: 1;
}

.pub-row .title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #002676; /* 深蓝色 */
}

.pub-row .title a {
    color: #002676;
    text-decoration: none;
}

.pub-row .title a:hover {
    text-decoration: underline;
}

.pub-row .author {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.pub-row .periodical {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.pub-row .links {
    display: inline-flex;
    gap: 8px;
    margin-left: 10px;
    font-style: normal; /* 覆盖父级的 italic */
}

.pub-row .btn {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #666;
    transition: all 0.2s;
}

.pub-row .btn:hover {
    background-color: #f0f0f0;
    border-color: #999;
    color: #333;
    text-decoration: none;
}

/* 教育部分 Flex 布局 */
.edu-flex-row {
    display: flex;
    margin-bottom: 25px;
    gap: 20px;
}

.edu-flex-left {
    flex: 0 0 120px;
    text-align: center;
}

.edu-flex-left img {
    width: 100px;
    height: auto;
    margin-top: 10px;
}

.edu-flex-right {
    flex: 1;
}

.edu-flex-right .school-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #002676;
    margin-bottom: 5px;
}

.edu-flex-right .degree {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.edu-flex-right .details {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 5px;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .pub-row, .edu-flex-row {
        flex-direction: column;
        gap: 15px;
    }
    .pub-row .abbr {
        flex: 0 0 auto;
        width: 180px;
    }
    .edu-flex-left {
        flex: 0 0 auto;
        text-align: left;
    }
}

.education-tag,
.skill-tag {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin: 2px 4px;
    transition: all 0.3s ease;
}

.education-tag:hover,
.skill-tag:hover {
    background-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 研究部分样式 */
.research {
    padding: 40px 0;
    background-color: #fff;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.research-item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 规划与设计经历样式 */
.planning {
    padding: 40px 0;
    background-color: #fff;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.planning-item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.planning-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.planning-content {
    padding: 20px;
}

.planning-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-family: var(--heading-font-family);
}

.planning-content p {
    margin-bottom: 15px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.research-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.research-content {
    padding: 20px;
}

.research-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-family: var(--heading-font-family);
}

.research-content p {
    margin-bottom: 15px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #0039cb;
    text-decoration: none;
    color: #fff;
}

/* 项目页面样式 */
.projects-section {
    padding: 60px 0;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.project-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project-content {
    padding: 30px;
}

.project-content h2 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 2rem;
    font-family: var(--heading-font-family);
}

.project-content p {
    margin-bottom: 5px;
    color: #666;
    line-height: 1.7;
    font-size: 1.5rem;
}

.project-content h3 {
    margin: 20px 0 10px;
    color: #0d0d0d;
    font-size: 2rem;
    font-family: var(--heading-font-family);
}

.project-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.project-content ul li {
    margin-bottom: 5px;
    color: #666;
    font-size: 1.5rem;
}

/* 经验页面样式 */
.experience-section {
    padding: 60px 0;
}

.experience-category {
    margin-bottom: 60px;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.experience-item {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 25px;
}

.experience-year {
    flex: 0 0 150px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.experience-details {
    flex: 1;
}

.experience-details h3 {
    margin-bottom: 4px;
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-family: var(--heading-font-family);
}

.experience-institution {
    font-weight: 500;
    color: #555;
    margin-bottom: 12px;
}

.experience-details p {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.7;
    font-size: 1.3rem;
}

.experience-highlights {
    margin-top: 15px;
    padding-left: 20px;
}

.experience-highlights li {
    margin-bottom: 8px;
    color: #666;
}

/* 奖项与竞赛部分样式 */
.awards {
    padding: 40px 0;
    background-color: #fff;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.award-item {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.award-date {
    flex: 0 0 180px;
    background-color: #1c0f4d;
    color: #e7ee1b;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
}

.award-content {
    flex: 1;
    padding: 12px;
}

.award-content h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.award-content p {
    font-size: 1.3rem;
    color: var(--secondary-color);
    line-height: 1.4;
}

@media (max-width: 768px) {
  .awards-list {
    gap: 10px;
  }
  .award-date {
    padding: 10px;
    font-size: 1rem;
  }
  .award-content {
    padding: 10px;
  }
  .award-content h3 {
    font-size: 1.3rem;
  }
  .award-content p {
    font-size: 1rem;
    line-height: 1.35;
  }
}

/* 技能部分样式 */
.skills {
    padding: 70px 0;
    background-color: #fff;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.skill-item {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-category {
    flex: 0 0 180px;
    background-color: #1c0f4d;
    color: #e7ee1b;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.3rem;
    text-align: center;
}

.skill-content {
    flex: 1;
    padding: 20px;
}

.skill-content p {
    font-size: 1.35rem;
    color: var(--secondary-color);
    line-height: 1.5;
    font-style: bold;
    font-weight: 800;
}

/* 出版物部分样式 */
.publications {
    padding: 40px 0;
}

.publication-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.publication-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.publication-year {
    flex: 0 0 80px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #323131;
}

.publication-details {
    flex: 1;
}

.publication-details h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 2rem;
    font-family: var(--heading-font-family);
}

.publication-details p {
    margin-bottom: 10px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.publication-authors {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.publication-journal {
    font-weight: 500;
    font-size: 2rem;
}

.publication-links {
    margin-top: 15px;
}

.publication-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1rem;
}

/* 收紧出版板块间距 */
.publications-container .pub-category-title{margin:8px 0 10px;font-size:2.2rem;font-weight:700;}
@media (max-width:768px){.publications-container .pub-category-title{font-size:1.9rem;}}
.publications-container .publications-grid{gap:12px;}
.publications-container .publication-year-section{margin-bottom:24px;}
.publications .publication-list{gap:8px;}
.publications .publication-item{margin-bottom:8px;padding-bottom:8px;}
.publications .section-title{margin-bottom:20px;}
/* 联系部分样式 */
.pub-row {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.pub-abbr {
    flex: 0 0 180px;
    padding-right: 20px;
}

.pub-abbr img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pub-abbr .badge {
    display: inline-block;
    margin-top: 8px;
    padding: 2px 8px;
    background: #002676;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 3px;
    font-weight: 600;
}

.pub-info {
    flex: 1;
}

.pub-title {
    font-weight: bold;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.pub-title a {
    color: #002676;
    text-decoration: none;
}

.pub-title a:hover {
    text-decoration: underline;
}

.pub-authors {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #333;
}

.pub-authors strong {
    color: #000;
}

.pub-periodical {
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
}

.pub-links .btn-pub {
    display: inline-block;
    padding: 2px 10px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.pub-links .btn-pub:hover {
    background: #f0f0f0;
    color: #333;
}

/* News Section Style */
.news-container {
    height: 150px;
    overflow-y: auto;
    padding: 15px 20px;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    margin-top: 15px;
}

.news-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-container li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
}

.news-container li strong {
    color: #002676;
    margin-right: 8px;
}

.news-container::-webkit-scrollbar {
    width: 6px;
}

.news-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slider-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.indicator.active {
    background: white;
    width: 20px;
    border-radius: 4px;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.2rem;
}

/* 响应式设计 - Blog部分 */
@media screen and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-slider {
        height: 200px;
    }
}

.blog-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #fff;
    font-size: 1.2rem;
}

.contact-text {
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1.05rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #4b4b4c;
}

/* 页脚样式 */
footer {
    background-color: var(--dark-gray);
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.5rem;
    font-family: var(--heading-font-family);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
}

/* 响应式设计调整 */
@media (max-width: 992px) {
    .profile-about-content {
        flex-direction: column;
    }
    
    .profile-info {
        position: static;
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 30px;
    }
}

/* 响应式样式 */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .about-text, .contact-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .publication-item {
        flex-direction: column;
    }
    
    .publication-year {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
}

/* 页面整体缩放容器 - 已移除缩放以增大字体 */
.page-root { zoom: 1.0; }
@supports not (zoom: 1) {
  .page-root { transform: scale(1.0); transform-origin: top center; }
}

/* 隐藏关于区块的标题（防残留间距） */
.profile-about .section-title { display: none; margin: 0; padding: 0; }
