This commit is contained in:
qsc
2026-06-19 18:12:30 +08:00
parent 62917a0dbc
commit 104772ba2e
21 changed files with 2967 additions and 28 deletions
+109
View File
@@ -0,0 +1,109 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>近期奇遇</title>
<style>
body {
font-family: "Microsoft YaHei", Arial, sans-serif;
background: #f1f2f6;
margin: 0;
padding: 20px;
color: #2c2c33;
}
.container {
max-width: 1040px;
margin: 0 auto;
}
h1 {
font-size: 32px;
margin: 0 0 8px 0;
color: #222;
font-weight: 800;
text-align: center;
}
.meta {
margin-bottom: 24px;
color: #7a7f99;
font-size: 16px;
text-align: center;
}
table {
width: 100%;
border-collapse: collapse;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
text-align: left;
}
thead {
background: #d93939;
color: white;
font-size: 18px;
}
th, td {
padding: 14px 12px;
border-bottom: 1px solid #eee;
font-size: 16px;
white-space: nowrap;
}
tbody tr:nth-child(even) {
background: #fafafa;
}
.event-col {
font-weight: 700;
color: #333;
}
.role-col {
color: #333;
}
.time-col {
color: #60657a;
font-variant-numeric: tabular-nums;
}
</style>
</head>
<body>
<div class="container">
<h1>{{ server }} 近期奇遇</h1>
<div class="meta">更新时间:{{ update_time }}</div>
<table>
<thead>
<tr>
<th>区服</th>
<th>角色</th>
<th>奇遇名称</th>
<th>触发时间</th>
</tr>
</thead>
<tbody>
{% for m in items %}
<tr>
<td>{{ m.server }}</td>
<td class="role-col">{{ m.name }}</td>
<td class="event-col">{{ m.event }}</td>
<td class="time-col">{{ m.time }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</body>
</html>