@charset "utf-8";
/* CSS Document */
/* 全局样式 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
	display: block;
    overflow-x: auto;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
}

table th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}

/* 分页链接样式 */
p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin: 20px 0;
}

p a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
    padding: 5px 10px;
    border: 1px solid #007bff;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
}

p a:hover {
    background-color: #007bff;
    color: #fff;
}

/* 链接样式 */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}

/* 提示信息 */
.notice {
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
    color: #333;
}

/* 页面布局辅助 */
.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 1em;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

input[type="text"], input[type="submit"],textarea {
    width: 100%;
    max-width: 100%; /* 避免超出屏幕 */
    padding: 8px;
	margin-bottom: 10px;
    box-sizing: border-box;
}

/* 响应式设计，适用于小屏幕 */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
	
	table {
        display: flex;
        flex-direction: column;
    }
	
	table tr {
        display: block;
        margin-bottom: 10px;
    }

    table th, table td {
		display: block;
        text-align: left;
        font-size: 12px;
        padding: 5px;
    }

    input[type="submit"], button {
        width: 100%;
        margin-top: 10px;
    }

    footer {
        font-size: 12px;
    }
}
