-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.17 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>扫描结果</title>
<style>
body {
margin: 0;
padding: 20px; /* 上下左右留点边距 */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: #ffffff; /* 纯白背景 */
color: #000000; /* 纯黑文字 */
display: flex;
justify-content: center; /* 水平居中 */
align-items: flex-start; /* 从顶部开始 */
min-height: 100vh;
}
.content {
font-size: 18px; /* 字体大小,可根据需要调整 */
line-height: 1.6;
word-break: break-all; /* 防止长数字溢出屏幕 */
text-align: left; /* 左对齐,如果想居中改成 center */
width: 100%;
max-width: 600px;
}
</style>
</head>
<body>
<div class="content">
<!-- 在这里修改你要显示的数字 -->
XXGCX 13356733800 QD1379808 SDWM 0159
</div>
</body>
</html>