/* 全局样式 */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

/* 页面标题样式 */
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* 返回主页按钮样式 */
.back-home-button {
    display: block;
    margin: 20px auto 40px; /* 添加外边距 */
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.back-home-button:hover {
    background-color: #0056b3;
}

/* 表格样式 */
table {
    width: 100%;
    max-width: 600px; /* 限制表格最大宽度 */
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; /* 添加过渡效果 */
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* 下载链接样式 */
.download-link {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    table {
        width: 100%;
        margin: 0 auto;
        transform: scale(0.9); /* 缩放为90% */
        transform-origin: top center; /* 缩放的中心点 */
        margin-top: 20px; /* 调整顶部间距 */
    }
}