.section-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.section-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.publication-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.publication-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.publication-item:last-child {
    border-bottom: none;
}

.publication-item:hover {
    background-color: #f9f9ff;
}

.publication-header {
    display: flex;
    align-items: center;
    /*margin-bottom: 8px;*/
    gap: 10px;
    flex-wrap: wrap;
}

.publication-title {
    font-weight: 600;
    /*margin-top: 0.5em;*/
    margin-bottom: 6px;
    color: #2c3e50;
    font-size: 18px;
    line-height: 1.4;
}

.publication-authors {
    color: #7f8c8d;
    margin-bottom: 6px;
    /*font-style: italic;*/
    font-size: 15px;
}

.publication-venue {
    margin-bottom: 12px;
    /*font-weight: 500;*/
    /*color: #4d0099;*/
    font-size: 15px;
    font-style: italic;
}

.publication-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.publication-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.publication-links a:hover {
    color: #b6262c;
}

.badge-ccf {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge-CCF-A {
    background-color: #e74c3c;
    color: white;
}

.badge-CCF-T1 {
    background-color: #e74c3c;
    color: white;
}

.badge-CCF-B {
    background-color: #3498db;
    color: white;
}

.badge-CCF-C {
    background-color: #2ecc71;
    color: white;
}

.badge-arXiv {
    background-color: #9b59b6;
    color: white;
}

.publication-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    background: #e8e8ff;
    color: #4d0099;
}

.project-card {
    width: 100%;
    background: #f9f9ff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-left: 4px solid rgb(1,54,144);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-left: 4px solid #b6262c;
}

.project-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 18px;
}

.project-description {
    color: #7f8c8d;
    margin-bottom: 12px;
}

.project-links a {
    display: inline-block;
    margin-right: 15px;
    color: rgb(1,54,144);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.project-links a:hover {
    color: #b6262c;
}

.section-icon {
    margin-right: 12px;
    color: #4d0099;
}

.publication-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
    background: #e8e8ff;
    color: #4d0099;
}

.project-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
    background: #e8e8ff;
    color: #4d0099;
}

/* 调整兴趣部分行间距 */
.interest-item {
    margin-bottom: 3px; /* 行间距大小 */
    padding: 2px 0;
}

/* 图标相关样式 */
.section-icon {
    margin-right: 10px;
    color: #b6262c;
}

.interest-item i, .institution-icon {
    margin-right: 8px;
    color: #666;
}

/* 论文筛选相关样式 */
.filter-btn {
    background-color: #f0f0f5;
    border: none;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}
/*.filter-btn.active {*/
/*    background-color: #b6262c;*/
/*    color: white;*/
/*}*/
.filter-btn:hover:not(.active) {
    background-color: #e0e0e8;
}

.filter-btn.a.active{
    background-color: #e74c3c;
    color: #fff;
}

.filter-btn.b.active{
    background-color: #3498db;
    color: #fff;
}

.filter-btn.c.active{
    background-color: #2ecc71;
    color: #fff;
}

.filter-btn.p.active{
    background-color: #9b59b6;
    color: #fff;
}

.filter-btn.n.active{
    background-color: #4d0099;
    color: #fff;
}

/* 论文显示控制 */
.publication-item  {
    display: none; /* 默认隐藏 */
}

.publication-item.show {
    display: block; /* 显示选中类别 */
}

.fa-file-pdf:hover {
    color: #b6262c;;
}

/* 奖项部分优化 - 保持原有布局 */
.honors-container {
    padding: 0 5px;
    margin-left: -1em;
}

.honor-item {
    display: flex;
    align-items: center;
    padding: 5px 2px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: transparent;
    position: relative;
}

/* 悬停效果 */
.honor-item:hover {
    background: rgba(253, 241, 202, 0.3); /* 淡黄色背景 */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.honor-item:hover .honor-icon {
    color: gold !important; /* 金色图标 */
    transform: scale(1.15);
}

.honor-icon {
    font-size: 22px;
    margin-right: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #aaa;
}

.honor-content {
    flex: 1;
}

.honor-title {
    /*font-weight: 600;*/
    font-size: 14px;
    margin-bottom: 4px;
    color: #333;
    transition: color 0.3s ease;
}

.honor-item:hover .honor-title {
    color: #b6262c; /* 悬停时标题变红色 */
}

.honor-description {
    color: #000000;
    font-size: 15px;
}

/* 添加微妙的底部边框 */
.honor-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.honor-item:hover:after {
    background: linear-gradient(to right, #FFD700, #b6262c);
    height: 2px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .honor-item {
        padding: 12px 15px;
    }

    .honor-icon {
        font-size: 20px;
        margin-right: 12px;
    }
}

/* 新增样式 */
.year-header {
    position: relative;
    margin: 3rem 0 1.5rem;
    display: flex;
    align-items: center;
}

.year-divider {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #aaa, transparent);
    margin: 0 1rem;
}

.year-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b6262c;
    background: white;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.publication-links a {
    display: inline-block;
    margin-right: 1.5rem;
    color: rgb(1, 54, 144);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.publication-links a:hover {
    color: #b6262c;
}

.publication-links a i {
    margin-right: 0.3rem;
}

/*.publication-item {*/
/*    margin-bottom: 2rem;*/
/*}*/

.year-header {
    position: relative;
    margin: 0rem 0 -0.1rem;
    display: flex;
    align-items: center;
}

.year-divider {
    flex-grow: 1;
    height: 1.5px;
    background: linear-gradient(to right, transparent, #aaa, transparent);
    margin: 0 1rem;
}

.year-title {
    font-size: 1.3rem;
    /*font-weight: 600;*/
    color: #b6262c;
    font-family: "Zapfino";
    /*background: white;*/
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    /*position: absolute;*/
}

.publication-links a {
    display: inline-block;
    margin-right: 1.5rem;
    color: rgb(1, 54, 144);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 14px;
}

.publication-links a:hover {
    color: #b6262c;
}

.publication-links a i {
    margin-right: 0.3rem;
}

/*.publication-item {*/
/*    margin-bottom: 1.2rem;*/
/*}*/

/*!* 紧凑模式样式 *!*/
/*.compact .publication-item {*/
/*    margin-bottom: 0.8rem;*/
/*}*/

.compact .year-header {
    display: none;
}

/* 移除每个年份组最后一篇论文的底边框 */
.publication-group:last-child .publication-item:last-child {
    border-bottom: none !important;
}

/* 紧凑模式下移除最后一项的底边框 */
.compact .publication-item:last-child {
    border-bottom: none !important;
}