* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(145deg, #f6f9fc 0%, #edf2f7 100%);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    color: #1a2c3e;
    line-height: 1.5;
    padding: 2rem 1rem;
}
/* 主容器 */
.container {
    max-width: 865px;
    margin: 0 auto;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0,0,0,0.02);
    overflow: hidden;
    padding: 1.8rem 2rem 2.5rem;
    transition: all 0.2s ease;
}

/* 头部 */
h1 {
    font-size: 1.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e66, #1a4f8b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
    border-left: 5px solid #2d7a9e;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
h1 i {
    background: none;
    color: #2c7da0;
    font-size: 1.9rem;
    background-clip: unset;
    -webkit-background-clip: unset;
}
.update-badge {
    background: #eef2ff;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e4a76;
    padding: 0.25rem 0.9rem;
    border-radius: 40px;
    letter-spacing: normal;
    margin-left: 0.5rem;
}
.fa-calendar-alt {
    margin-right: 5px;
}

/* 优化提示卡片 */
.tip-card {
    background: #ffffffdd;
    backdrop-filter: blur(4px);
    border-radius: 1.25rem;
    border: 1px solid rgba(72, 187, 255, 0.25);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.02);
    margin-bottom: 2rem;
    transition: all 0.2s;
}
.tip-inner {
    padding: 1.4rem 1.8rem;
    background: #ffffffcc;
    border-radius: 1.25rem;
}
.tip-text {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.tip-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.5;
}
.link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0.4rem;
    align-items: center;
}
.rec-link {
    background: #f0f7fe;
    padding: 5px 12px;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1f6392;
    border: 1px solid #cde3f0;
}
.rec-link i {
    font-size: 0.85rem;
}
.rec-link:hover {
    background: #e3f0fa;
    border-color: #8fc5e8;
    transform: translateY(-1px);
    color: #0a4b73;
}

/* 表格美化（保留功能，全新样式） */
.scholar-table-wrapper {
    overflow-x: auto;
    border-radius: 1.25rem;
    margin-top: 0.5rem;
}
.scholar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255,255,255,0.9);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.scholar-table thead tr {
    background: #eef2fa;
    border-bottom: 1px solid #dce5ef;
}
.scholar-table th {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f4662;
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid #d4e0ea;
}
.scholar-table td {
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid #e9edf2;
    font-size: 0.9rem;
    vertical-align: middle;
    transition: background 0.15s;
}
.scholar-table tbody tr:hover td {
    background-color: #f5faff;
}
/* 序号列 */
.table-index {
    width: 55px;
    font-weight: 500;
    color: #5b7e9c;
}
/* 网址列 */
.url-cell a {
    text-decoration: none;
    font-weight: 500;
    color: #1f6392;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    word-break: break-all;
    transition: color 0.2s;
}
.url-cell a i {
    font-size: 0.85rem;
    opacity: 0.7;
}
.url-cell a:hover {
    color: #0f4c73;
    text-decoration: underline;
}
/* 状态标签 */
.status-badge {
    background: #e0f2e9;
    color: #1f6e43;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    letter-spacing: 0.3px;
}
.status-badge i {
    font-size: 0.7rem;
}
.third-link {
    background: #fff3e0;
    color: #b45f06;
}
/* 版权区 */
.footer-copyright {
    text-align: center;
    margin-top: 2.8rem;
    font-size: 0.8rem;
    font-family: monospace;
    color: #6a7e98;
    border-top: 1px solid #dce5ef;
    padding-top: 1.8rem;
}
.footer-copyright a {
    color: #2c7da0;
    text-decoration: none;
    font-weight: 500;
}
/* 响应式 */
@media (max-width: 720px) {
    .container {
        padding: 1rem 1.2rem;
    }
    h1 {
        font-size: 1.45rem;
        padding-left: 0.8rem;
    }
    .scholar-table th, .scholar-table td {
        padding: 0.7rem 0.8rem;
    }
    .tip-inner {
        padding: 1rem;
    }
    .link-group {
        gap: 0.8rem;
    }
}
/* 辅助圆点 */
.check-icon {
    color: #27ae60;
    font-weight: bold;
}
.small-note {
    font-size: 0.8rem;
    color: #6c86a3;
}