/* 论文卡片容器 */
.paper-section {
    display: flex;
    flex-direction: column;
    gap: 20px; /* 卡片间距 */
    padding: 20px 0;
}

/* 单个卡片样式 */
.paper-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 16px;
    transition: all 0.3s ease; /* 平滑过渡动画 */
    text-decoration: none; /* 去除链接下划线 */
    color: #333; /* 文字默认颜色 */
}

/* 点击/悬停时上浮效果 */
.paper-card:hover, 
.paper-card:active {
    transform: translateY(-5px); /* 上浮5px */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15); /* 增强阴影 */
}

/* 论文封面图 */
.paper-photo img {
    width: 120px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 20px;
    border: 1px solid #eee;
}

/* 论文信息区域 */
.paper-info {
    flex: 1; /* 占满剩余宽度 */
}

/* 英文标题 */
.paper-info h3 {
    font-size: 1.25em;
    margin: 0 0 10px 0;
    color: #2c3e50;
    line-height: 1.3;
}

/* 中文标题 */
.paper-info p:first-of-type {
    color: #666;
    margin: 0 0 12px 0;
    font-size: 1em;
}

/* 摘要 */
.paper-abstract {
    font-size: 0.9em;
    color: #555;
    line-height: 1.6;
    margin: 0 0 15px 0;
    max-width: 800px;
}

/* 元信息（会议、日期、链接类型） */
.paper-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85em;
    color: #888;
    font-weight: bold;
}

/* 链接类型（PDF/Code） */
.paper-link {
    color: #3498db;
    font-weight: 500;
    cursor: pointer;
    font-weight: bold;
}

/* 新增分页样式（与网站主题适配） */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 30px 0 10px;
    padding-top: 20px;
    border-top: 1px solid #eee; /* 分隔线与主题统一 */
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.page-btn:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.page-btn.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9f9f9;
}

.page-btn i {
    font-size: 0.9em;
}