-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (101 loc) · 2.81 KB
/
index.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!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 {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f2f5;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px 0;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header h1 {
margin: 0;
font-size: 2.5em;
}
main {
padding: 20px;
max-width: 900px;
margin: 40px auto;
background: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
h2 {
font-size: 1.8em;
color: #333;
border-bottom: 2px solid #4CAF50;
padding-bottom: 10px;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
line-height: 1.6;
margin: 20px 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background: #fff;
margin: 10px 0;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.3s ease, background 0.3s;
}
li:hover {
background: #f9f9f9;
transform: scale(1.02);
}
a {
text-decoration: none;
color: #4CAF50;
font-weight: bold;
font-size: 1.2em;
transition: color 0.3s;
}
a:hover {
color: #388E3C;
}
footer {
text-align: center;
padding: 20px;
background: #4CAF50;
color: white;
position: fixed;
width: 100%;
bottom: 0;
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<header>
<h1>工具引导页</h1>
</header>
<main>
<h2>欢迎使用我们的工具</h2>
<p>以下是一些有用的工具列表,点击链接即可使用:</p>
<ul>
<li><a href="tools/speed_distance_time_calculator.html">速度里程时间计算器</a></li>
<!-- 将来您可以在这里添加更多链接 -->
<li><a href="another_tool.html">另一个工具</a></li>
</ul>
</main>
<footer>
© 2024 工具引导页. 保留所有权利.
</footer>
</body>
</html>