-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (84 loc) · 2.41 KB
/
index.html
File metadata and controls
94 lines (84 loc) · 2.41 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
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<title>AGI Cloud Duct Calculator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, "Helvetica Neue", Arial, "PingFang SC",
"Hiragino Sans GB", "Microsoft YaHei", sans-serif;
line-height: 1.6;
margin: 40px;
color: #333;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
h2 {
font-size: 18px;
margin-top: 30px;
}
p {
margin: 10px 0;
}
ul {
margin-left: 20px;
}
a {
color: #0366d6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
margin-top: 40px;
font-size: 13px;
color: #666;
}
</style>
</head>
<body>
<h1>AGI Cloud Duct Calculator</h1>
<p>
AGI Cloud Duct Calculator 是一款面向暖通(HVAC)及相关工程技术人员的专业计算工具,
用于辅助进行风管结构、尺寸及面积等常见工程计算。
</p>
<p>
应用主要覆盖风管施工和加工过程中常见的几何与工程计算场景,
通过标准化输入参数,快速获得计算结果,
减少人工计算误差,提高工作效率。
</p>
<h2>主要功能</h2>
<ul>
<li>风管直管、弯头、S 弯等结构的工程计算</li>
<li>常见风管过渡、变径结构的尺寸与面积计算</li>
<li>风管展开、分节及相关辅助计算</li>
<li>常用工程单位换算与参数参考</li>
</ul>
<h2>适用人群</h2>
<p>
本应用适合从事暖通空调(HVAC)、风管加工、安装施工、
以及相关工程设计与技术支持工作的专业人员使用。
</p>
<h2>法律与协议</h2>
<ul>
<li><a href="privacy.html">隐私政策</a></li>
<li><a href="member.html">用户及会员协议</a></li>
<li><a href="auto_renew.html">自动续费服务规则</a></li>
</ul>
<h2>技术支持</h2>
<p>
如在使用过程中遇到问题,可通过以下方式联系:
</p>
<p>
Email:<a href="mailto:support@agicloud.com">admin@agicloud.com</a>
</p>
<div class="footer">
<p>© AGI Cloud. All rights reserved.</p>
</div>
</body>
</html>