/* 引入自定义字体 */
@font-face {
    font-family: 'wuminke';
    src: url('https://q1z.pages.dev/wuminke.woff') format('woff');
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'wuminke', sans-serif;
}
/* 背景 */
body {
    background: url('https://t.alcy.cc/moez') no-repeat center center fixed;
    background-size: cover;
    padding: 10px;
}
/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.92);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/* 标题 */
.title {
    text-align: center;
    color: #F08080;
    margin-bottom: 15px;
    font-size: 22px;
}
/* 表格 */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}
.table th, .table td {
    border: 1px solid #ddd;
    padding: 8px 5px;
    text-align: center;
    word-break: break-all;
}
.table th {
    background: #F08080;
    color: white;
}
.table tr:nth-child(even) {
    background: #f9f9f9;
}
/* 链接 */
a {
    color: #F08080;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
/* 表单 */
.form-box {
    margin: 15px 0;
}
input, textarea, button {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
button {
    background: #F08080;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    opacity: 0.9;
}
/* 登录框 */
.login-box {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
}
/* 登录信息 */
.login-info {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    white-space: pre-wrap;
}
/* 页脚 */
.footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 13px;
    color: #666;
}
/* 自适应 */
@media (max-width: 768px) {
    .table th, .table td {
        padding: 5px 2px;
        font-size: 12px;
    }
    .title {
        font-size: 18px;
    }
}