-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
331 lines (327 loc) · 16.2 KB
/
Copy pathindex.html
File metadata and controls
331 lines (327 loc) · 16.2 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>开迈科技 - kamaytech | 专利撰写效率工具</title>
<style>
:root {
--primary: #7c3aed;
--primary-light: #8b5cf6;
--accent: #10b981;
--bg: #f8f9fa;
--text: #1f2937;
--text-secondary: #6b7280;
--border: #e5e7eb;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.8;
-webkit-font-smoothing: antialiased;
}
/* ===== 导航 ===== */
.navbar {
position: sticky; top: 0; z-index: 100;
background: rgba(255,255,255,0.92);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
padding: 0 48px;
}
.nav-inner {
max-width: 1500px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
height: 72px;
}
.nav-logo {
display: flex; align-items: center; gap: 12px;
text-decoration: none; color: var(--text);
}
.nav-logo-icon {
width: 44px; height: 44px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: 12px;
display: flex; align-items: center; justify-content: center;
color: white; font-size: 22px; font-weight: 700;
}
.nav-logo-text {
font-size: 22px; font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
text-decoration: none; color: var(--text-secondary);
font-size: 16px; font-weight: 500; transition: color 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
height: 2px; background: var(--primary); border-radius: 2px;
}
/* ===== Hero ===== */
.hero {
max-width: 1500px; margin: 0 auto;
padding: 100px 48px 80px;
text-align: center;
}
.hero-badge {
display: inline-block;
background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(139,92,246,0.1));
color: var(--primary);
padding: 8px 24px; border-radius: 24px;
font-size: 16px; font-weight: 500;
margin-bottom: 32px;
}
.hero h1 {
font-size: 60px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px;
background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.hero h1 .highlight {
background: linear-gradient(135deg, var(--primary), #a78bfa);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: 20px; color: var(--text-secondary);
max-width: 720px; margin: 0 auto 40px; line-height: 1.8;
}
.hero-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn {
padding: 14px 40px; border-radius: 10px;
font-size: 16px; font-weight: 600; cursor: pointer;
text-decoration: none; transition: all 0.2s; border: none; display: inline-block;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white; box-shadow: 0 4px 20px rgba(124,58,237,0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(124,58,237,0.4);
}
.btn-outline {
background: white; color: var(--primary); border: 2px solid var(--primary);
}
.btn-outline:hover {
background: rgba(124,58,237,0.05); transform: translateY(-2px);
}
/* ===== 产品卡片 ===== */
.section { max-width: 1500px; margin: 0 auto; padding: 0 48px 96px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 38px; font-weight: 700; margin-bottom: 16px; }
.section-header p { color: var(--text-secondary); font-size: 18px; }
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
gap: 28px;
}
.tool-card {
background: white; border-radius: 20px; padding: 40px 36px;
border: 1px solid var(--border); transition: all 0.3s ease;
text-decoration: none; color: inherit; display: block;
position: relative; overflow: hidden;
}
.tool-card:hover {
box-shadow: 0 16px 48px rgba(0,0,0,0.1);
transform: translateY(-4px);
border-color: transparent;
}
.tool-card-icon {
width: 64px; height: 64px; border-radius: 16px;
display: flex; align-items: center; justify-content: center;
font-size: 32px; margin-bottom: 24px;
}
.tool-card-icon.purple { background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(139,92,246,0.12)); color: var(--primary); }
.tool-card-icon.green { background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(52,211,153,0.12)); color: var(--accent); }
.tool-card-icon.blue { background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(96,165,250,0.12)); color: #3b82f6; }
.tool-card-icon.red { background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(248,113,113,0.12)); color: #ef4444; }
.tool-card-icon.orange { background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(251,146,60,0.12)); color: #f97316; }
.tool-card-icon.teal { background: linear-gradient(135deg, rgba(20,184,166,0.12), rgba(45,212,191,0.12)); color: #14b8a6; }
.tool-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.tool-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.tool-card .tag {
display: inline-block; margin-top: 20px; padding: 6px 16px;
background: rgba(124,58,237,0.08); color: var(--primary);
border-radius: 8px; font-size: 13px; font-weight: 500;
}
/* ===== 特性 ===== */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 28px;
}
.feature-item {
text-align: center; padding: 36px 28px;
background: white; border-radius: 16px; border: 1px solid var(--border);
transition: box-shadow 0.3s;
}
.feature-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.feature-icon { font-size: 42px; margin-bottom: 20px; }
.feature-item h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
/* ===== Footer ===== */
.footer {
background: #1f2937; color: #d1d5db;
padding: 56px 48px 40px; text-align: center;
}
.footer-inner { max-width: 1500px; margin: 0 auto; }
.footer-brand { font-size: 24px; font-weight: 700; color: white; margin-bottom: 10px; }
.footer-slogan { color: #9ca3af; font-size: 15px; margin-bottom: 28px; }
.footer-divider { border: none; border-top: 1px solid #374151; margin: 28px 0; }
.footer-copy { font-size: 14px; color: #6b7280; }
/* ===== 响应式 ===== */
@media (max-width: 768px) {
.hero { padding: 60px 20px; }
.hero h1 { font-size: 36px; }
.hero-subtitle { font-size: 16px; }
.section { padding: 0 20px 60px; }
.navbar { padding: 0 20px; }
.nav-links { gap: 16px; }
.nav-links a { font-size: 13px; }
.tools-grid { grid-template-columns: 1fr; }
.features-grid { grid-template-columns: repeat(2, 1fr); }
}
</style>
</head>
<body>
<nav class="navbar">
<div class="nav-inner">
<a href="index.html" class="nav-logo">
<div class="nav-logo-icon">K</div>
<span class="nav-logo-text">开迈科技</span>
</a>
<ul class="nav-links">
<li><a href="index.html" class="active">首页</a></li>
<li><a href="tools/kt1-同步撰写-patent-writer.html">专利撰写</a></li>
<li><a href="tools/kt2-自动标号-auto-number.html">自动标号</a></li>
<li><a href="tools/kt3-附图提取-figure-extract.html">附图提取</a></li>
<li><a href="tools/kt4-引用检查-claims-checker.html">引用检查</a></li>
<li><a href="tools/kt5-标记一致性-figure-checker.html">标记一致性</a></li>
<li><a href="tools/kt6-提示词库-prompt-library.html">提示词库</a></li>
<li><a href="tools/kt7-常用书签-bookmarks.html">常用书签</a></li>
<li><a href="tools/kt8-书签-kmtech.html">书签(简)</a></li>
</ul>
</div>
</nav>
<section class="hero">
<div class="hero-badge">🚀 专利代理人的效率利器</div>
<h1>开拓新路线,<span class="highlight">迈向新格局</span></h1>
<p class="hero-subtitle">
开迈科技专注于专利文案撰写工具的研发,提供智能术语替换、自动标号、多模式撰写等功能,
让每一位专利代理人从重复劳动中解放出来,专注于更有价值的创造性工作。
</p>
<div class="hero-cta">
<a href="tools/kt1-同步撰写-patent-writer.html" class="btn btn-primary">立即使用 同步撰写工具 →</a>
<a href="tools/kt2-自动标号-auto-number.html" class="btn btn-outline">试试 自动标号工具</a>
</div>
</section>
<section class="section">
<div class="section-header">
<h2>🛠️ 效率工具集</h2>
<p>专为专利撰写场景打造,简单实用,即开即用</p>
</div>
<div class="tools-grid">
<a href="tools/kt1-同步撰写-patent-writer.html" class="tool-card">
<div class="tool-card-icon purple">✍️</div>
<h3>同步撰写工具 KT1</h3>
<p>术语映射库 + 工作区,输入数字自动替换为术语。支持括号/数字两种模式切换,白天/黑夜/护眼三套主题,历史备份恢复,本地文件保存。</p>
<span class="tag">核心工具</span>
</a>
<a href="tools/kt2-自动标号-auto-number.html" class="tool-card">
<div class="tool-card-icon green">🔢</div>
<h3>自动加标号工具 KT2</h3>
<p>一键批量替换——输入原始文本与标号规则,同时生成说明书格式和权利要求书格式,省去手动标号的繁琐。</p>
<span class="tag">批量处理</span>
</a>
<a href="tools/kt3-附图提取-figure-extract.html" class="tool-card">
<div class="tool-card-icon blue">🖼️</div>
<h3>CAD PDF 附图标记提取 KT3</h3>
<p>上传 CAD 导出的 PDF 图纸,自动提取所有标号数字,去重排序一键输出为撰写格式,省去手工抄录附图标记的麻烦。</p>
<span class="tag">新上线</span>
</a>
<a href="tools/kt4-引用检查-claims-checker.html" class="tool-card">
<div class="tool-card-icon red">🔍</div>
<h3>权利要求引用检查器 KT4</h3>
<p>自动解析权利要求间的引用关系,检测自引用、引用不存在、循环引用、多引多等常见问题,生成引用关系树状图。</p>
<span class="tag">新上线</span>
</a>
<a href="tools/kt5-标记一致性-figure-checker.html" class="tool-card">
<div class="tool-card-icon orange">🔬</div>
<h3>附图标记一致性检查 KT5</h3>
<p>说明书、权利要求书、附图三方标记交叉比对,快速发现遗漏或多余标记,生成详细对照表,确保三者一致。</p>
<span class="tag">新上线</span>
</a>
<a href="tools/kt6-提示词库-prompt-library.html" class="tool-card">
<div class="tool-card-icon teal">📝</div>
<h3>AI 提示词库 KT6</h3>
<p>收集专利撰写、审查答复、技术挖掘、权利要求布局等常用 AI 提示词,分类浏览一键复制,持续更新。</p>
<span class="tag">新上线</span>
</a>
<a href="tools/kt7-常用书签-bookmarks.html" class="tool-card">
<div class="tool-card-icon purple">🔗</div>
<h3>常用网站书签 KT7</h3>
<p>专利代理日常工作常用网站汇总:官方查询、检索数据库、协会公告、法律法规,一键直达,持续更新。</p>
<span class="tag">新上线</span>
</a>
<a href="tools/kt8-书签-kmtech.html" class="tool-card">
<div class="tool-card-icon teal">🔖</div>
<h3>精选书签 KT8</h3>
<p>国知局官方站点 + 专利检索数据库快捷入口,支持卡片/表格/瀑布流三种视图切换。</p>
<span class="tag">新上线</span>
</a>
</div>
</section>
<section class="section">
<div class="section-header">
<h2>✨ 为什么选择开迈</h2>
<p>从专利代理人的真实工作流出发设计</p>
</div>
<div class="features-grid">
<div class="feature-item">
<div class="feature-icon">⚡</div>
<h4>极速响应</h4>
<p>纯前端计算,无需服务器延迟,输入即替换</p>
</div>
<div class="feature-item">
<div class="feature-icon">🔒</div>
<h4>数据安全</h4>
<p>所有数据存储在本地浏览器,绝不上传</p>
</div>
<div class="feature-item">
<div class="feature-icon">🎨</div>
<h4>舒适体验</h4>
<p>三天主题切换、字体自定义,护眼不疲劳</p>
</div>
<div class="feature-item">
<div class="feature-icon">💾</div>
<h4>备份无忧</h4>
<p>自动保存 + 手动备份 + 本地文件导出,三重保障</p>
</div>
<div class="feature-item">
<div class="feature-icon">📊</div>
<h4>术语统计</h4>
<p>实时统计每个术语出现次数,遗漏一目了然</p>
</div>
<div class="feature-item">
<div class="feature-icon">🆓</div>
<h4>完全免费</h4>
<p>无需注册,无需付费,打开浏览器即可使用</p>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-inner">
<div class="footer-brand">开迈科技 kamaytech</div>
<div class="footer-slogan">开拓新路线,迈向新格局 | Explore new routes and move towards a new pattern</div>
<hr class="footer-divider">
<div class="footer-copy">© 2025 开迈科技 kamaytech by cmaz501</div>
</div>
</footer>
</body>
</html>