上传文件至 /

This commit is contained in:
2026-06-23 11:17:04 +08:00
parent 9f77c8d677
commit cb5748e7eb
4 changed files with 207 additions and 0 deletions

152
movies.html Normal file
View File

@@ -0,0 +1,152 @@
<!-- exam_fingerprint: B-20260623-3317 -->
<!-- server_time: 2026-06-23 10:47:06 -->
<!-- exam_paper: B -->
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>电影列表</title>
<style>
body { font-family: "Microsoft YaHei", sans-serif; margin: 20px; background: #f5f5f5; }
h1 { color: #c0392b; }
.meta { color: #999; font-size: 12px; margin-bottom: 15px; }
.meta code { background: #e9ecef; padding: 2px 6px; border-radius: 3px; }
table { width: 100%; border-collapse: collapse; background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
th, td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; }
th { background: #c0392b; color: white; }
tr:hover { background: #fef5f4; }
</style>
</head>
<body>
<h1>电影列表</h1>
<p class="meta">数据编号:<code>B-20260623-3317</code></p>
<table>
<thead>
<tr>
<th>编号</th>
<th>电影名</th>
<th>导演</th>
<th>上映年份</th>
<th>评分</th>
<th>时长(分钟)</th>
<th>类型</th>
<th>主演数</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>三傻大闹宝莱坞</td>
<td>Frank Darabont</td>
<td>2012</td>
<td>8.6</td>
<td>176</td>
<td>爱情</td>
<td>4</td>
</tr>
<tr>
<td>2</td>
<td>泰坦尼克号</td>
<td>陈凯歌</td>
<td>2015</td>
<td>9.0</td>
<td>164</td>
<td>冒险</td>
<td>4</td>
</tr>
<tr>
<td>3</td>
<td>阿甘正传</td>
<td>Robert Zemeckis</td>
<td>2009</td>
<td>8.2</td>
<td>148</td>
<td>科幻</td>
<td>2</td>
</tr>
<tr>
<td>4</td>
<td>千与千寻</td>
<td>James Cameron</td>
<td>2010</td>
<td>6.6</td>
<td>107</td>
<td>动画</td>
<td>3</td>
</tr>
<tr>
<td>5</td>
<td>放牛班的春天</td>
<td>宫崎骏</td>
<td>1995</td>
<td>7.4</td>
<td>119</td>
<td>科幻</td>
<td>4</td>
</tr>
<tr>
<td>6</td>
<td>忠犬八公的故事</td>
<td>Christopher Nolan</td>
<td>2004</td>
<td>7.9</td>
<td>119</td>
<td>动画</td>
<td>2</td>
</tr>
<tr>
<td>7</td>
<td>肖申克的救赎</td>
<td>Lasse Hallström</td>
<td>2016</td>
<td>8.6</td>
<td>138</td>
<td>爱情</td>
<td>2</td>
</tr>
<tr>
<td>8</td>
<td>盗梦空间</td>
<td>Rajkumar Hirani</td>
<td>2020</td>
<td>6.8</td>
<td>120</td>
<td>冒险</td>
<td>3</td>
</tr>
<tr>
<td>9</td>
<td>霸王别姬</td>
<td>Christophe Barratier</td>
<td>2004</td>
<td>7.4</td>
<td>140</td>
<td>冒险</td>
<td>5</td>
</tr>
<tr>
<td>10</td>
<td>星际穿越</td>
<td>Christopher Nolan</td>
<td>1990</td>
<td>8.5</td>
<td>116</td>
<td>悬疑</td>
<td>4</td>
</tr>
</tbody>
</table>
</body>
</html>