/* 公共文档目录 专业美化样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4eaf5 100%);
    padding: 40px 20px;
    line-height: 1.6;
}

h1 {
    text-align: center;
    font-size: 28px;
    color: #003366;
    margin-bottom: 30px;
    font-weight: 600;
}

table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.08);
    border-collapse: collapse;
    overflow: hidden;
}

thead tr {
    background: #004080;
    color: #fff;
    font-size: 16px;
}

th, td {
    padding: 18px 24px;
    text-align: left;
}

tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

tbody tr:hover {
    background: #f7f9fc;
}

a {
    color: #005bb5;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: #0078d7;
    text-decoration: underline;
}

/* 底部版权 */
.footer {
    text-align: center;
    margin-top: 40px;
    color: #888;
    font-size: 14px;
}