/* 设置全局字体大小 */
body {
    font-size: 16px;
}

/* 响应式布局 */
@media (max-width: 768px) {
    /* 设置查询按钮的宽度为 100% */
    #search-form button {
        width: 100%;
        margin-top: 10px;
    }
}

/* 表格样式 */
table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

th, td {
    text-align: left;
    padding: 8px;
}

th {
    background-color: #cccccc;
    font-weight: bold;
}

/* 设置表格边框 */
table, th, td {
    border: 1px solid black;
}
