File size: 20,037 Bytes
be08f98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>新能源电池技术发现</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        techblue: {
                            100: '#e6f0ff',
                            200: '#b3d4ff',
                            300: '#80b8ff',
                            400: '#4d9cff',
                            500: '#1a80ff',
                            600: '#0066cc',
                            700: '#004c99',
                            800: '#003366',
                            900: '#001933',
                        }
                    }
                }
            }
        }
    </script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
        }
        
        .tech-icon-bg {
            background: linear-gradient(135deg, #1a80ff 0%, #004c99 100%);
            box-shadow: 0 4px 20px rgba(26, 128, 255, 0.3);
        }
        
        .tech-card {
            transition: all 0.3s ease;
            border: 1px solid rgba(179, 212, 255, 0.5);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }
        
        .tech-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(26, 128, 255, 0.15);
        }
        
        .progress-bar {
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .progress-value {
            height: 100%;
            border-radius: 4px;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(26, 128, 255, 0.3);
            animation: float 15s infinite ease-in-out;
            z-index: -1;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0); }
            25% { transform: translate(10px, 15px); }
            50% { transform: translate(20px, 5px); }
            75% { transform: translate(10px, 15px); }
            100% { transform: translate(0, 0); }
        }
    </style>
</head>
<body class="min-h-screen flex items-center justify-center p-4 py-10">
    <div class="particles absolute top-0 left-0 w-full h-full overflow-hidden"></div>
    
    <div class="container max-w-7xl mx-auto">
        <!-- 标题区 -->
        <div class="text-center mb-10">
            <h1 class="text-4xl md:text-5xl font-bold text-techblue-800 mb-2 tracking-wide">新能源电池技术发现</h1>
            <div class="w-32 h-1 bg-techblue-500 mx-auto rounded-full"></div>
            <p class="text-techblue-600 mt-4 text-lg">前沿技术识别 | 关键技术进展 | 研发团队追踪 | 技术发展预见</p>
        </div>
        
        <!-- 主体内容区 - 左右结构 -->
        <div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
            <!-- 左侧区域 - 上半部分 -->
            <div class="tech-card rounded-xl p-6 flex flex-col">
                <div class="flex items-center mb-5">
                    <div class="tech-icon-bg w-16 h-16 rounded-xl flex items-center justify-center mr-4">
                        <i class="fas fa-search text-white text-2xl"></i>
                    </div>
                    <h2 class="text-2xl font-bold text-techblue-800">前沿技术识别</h2>
                </div>
                <p class="text-gray-700 mb-4">基于大规模论文、专利、资讯聚合分析,识别高频新兴概念和快速增长技术主题。</p>
                <h3 class="text-lg font-semibold text-techblue-700 mb-3">技术示例:</h3>
                <ul class="space-y-3">
                    <li class="flex items-start">
                        <span class="inline-block w-6 h-6 rounded-full bg-techblue-100 text-techblue-700 flex items-center justify-center mr-2 mt-0.5 flex-shrink-0 text-sm">1</span>
                        <div>
                            <span class="font-medium">全固态电池(All-solid-state battery)</span>
                            <span class="text-techblue-600 text-sm ml-2">近三年全球专利增长率</span>
                            <div class="flex items-center mt-1">
                                <div class="progress-bar bg-gray-200 w-full mr-2">
                                    <div class="progress-value bg-techblue-500 w-[85%]"></div>
                                </div>
                                <span class="text-techblue-700 font-bold">+130%</span>
                            </div>
                        </div>
                    </li>
                    <li class="flex items-start">
                        <span class="inline-block w-6 h-6 rounded-full bg-techblue-100 text-techblue-700 flex items-center justify-center mr-2 mt-0.5 flex-shrink-0 text-sm">2</span>
                        <span class="font-medium">高镍三元正极材料(NCM 811、NCM 955)</span>
                    </li>
                    <li class="flex items-start">
                        <span class="inline-block w-6 h-6 rounded-full bg-techblue-100 text-techblue-700 flex items-center justify-center mr-2 mt-0.5 flex-shrink-0 text-sm">3</span>
                        <span class="font-medium">硅碳复合负极 + 预锂化技术</span>
                    </li>
                    <li class="flex items-start">
                        <span class="inline-block w-6 h-6 rounded-full bg-techblue-100 text-techblue-700 flex items-center justify-center mr-2 mt-0.5 flex-shrink-0 text-sm">4</span>
                        <span class="font-medium">无钴电池(Cobalt-free)</span>
                    </li>
                    <li class="flex items-start">
                        <span class="inline-block w-6 h-6 rounded-full bg-techblue-100 text-techblue-700 flex items-center justify-center mr-2 mt-0.5 flex-shrink-0 text-sm">5</span>
                        <span class="font-medium">单晶高电压氧化物材料(高安全性)</span>
                    </li>
                </ul>
                <div class="mt-4 p-3 bg-techblue-50 rounded-lg flex">
                    <i class="fas fa-chart-line text-techblue-600 text-xl mr-3 mt-1"></i>
                    <p class="text-sm text-gray-700">专利数据分析显示,全固态电池已成为全球研发热点,预计未来5年将实现商业化突破</p>
                </div>
            </div>
            
            <!-- 右侧区域 - 上半部分 -->
            <div class="tech-card rounded-xl p-6 flex flex-col">
                <div class="flex items-center mb-5">
                    <div class="tech-icon-bg w-16 h-16 rounded-xl flex items-center justify-center mr-4">
                        <i class="fas fa-chart-line text-white text-2xl"></i>
                    </div>
                    <h2 class="text-2xl font-bold text-techblue-800">关键技术进展跟踪</h2>
                </div>
                <p class="text-gray-700 mb-4">构建"领域+关键词"监控规则,系统每日采集并提取高价值更新,生成时间线与技术进展报告。</p>
                <h3 class="text-lg font-semibold text-techblue-700 mb-3">最新进展实例:</h3>
                <div class="space-y-4">
                    <div class="border-l-4 border-techblue-500 pl-4 py-1">
                        <div class="flex items-center">
                            <span class="bg-techblue-500 text-white text-xs px-2 py-1 rounded mr-2">2024 Q1</span>
                            <span class="font-medium">比亚迪公布"半固态"工程样机</span>
                        </div>
                        <div class="flex items-center mt-1">
                            <span class="bg-techblue-100 text-techblue-700 px-2 py-0.5 rounded text-sm mr-2">能量密度</span>
                            <span class="text-techblue-600 font-bold">450Wh/kg</span>
                        </div>
                    </div>
                    <div class="border-l-4 border-techblue-300 pl-4 py-1">
                        <div class="flex items-center">
                            <span class="bg-techblue-300 text-white text-xs px-2 py-1 rounded mr-2">2024 Q1</span>
                            <span class="font-medium">清华大学与宁德时代合作开发</span>
                        </div>
                        <div class="flex items-center mt-1">
                            <span class="bg-techblue-100 text-techblue-700 px-2 py-0.5 rounded text-sm mr-2">电解质系统</span>
                            <span class="text-techblue-600 font-bold">200次循环稳定</span>
                        </div>
                    </div>
                    <div class="border-l-4 border-techblue-700 pl-4 py-1">
                        <div class="flex items-center">
                            <span class="bg-techblue-700 text-white text-xs px-2 py-1 rounded mr-2">2024 Q1</span>
                            <span class="font-medium">欧洲电池联盟发布路线图</span>
                        </div>
                        <p class="text-sm mt-1">固态电池商业化路线图白皮书,明确2025年前技术目标</p>
                    </div>
                </div>
                <div class="mt-auto pt-4">
                    <div class="flex items-center text-sm text-techblue-600">
                        <i class="fas fa-sync-alt mr-2"></i>
                        <span>实时监控全球500+期刊、会议、专利数据库和产业报告</span>
                    </div>
                </div>
            </div>
            
            <!-- 左侧区域 - 下半部分 -->
            <div class="tech-card rounded-xl p-6 flex flex-col">
                <div class="flex items-center mb-5">
                    <div class="tech-icon-bg w-16 h-16 rounded-xl flex items-center justify-center mr-4">
                        <i class="fas fa-users text-white text-2xl"></i>
                    </div>
                    <h2 class="text-2xl font-bold text-techblue-800">技术攻关团队识别</h2>
                </div>
                <p class="text-gray-700 mb-4">识别领域高产科研团队与企业研发平台,追踪其专利产出与协作网络。</p>
                <h3 class="text-lg font-semibold text-techblue-700 mb-3">代表团队:</h3>
                <div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
                    <div class="border border-techblue-200 rounded-lg p-3 bg-techblue-50">
                        <h4 class="font-medium text-techblue-800 flex items-center">
                            <i class="fas fa-university text-techblue-600 mr-2"></i> 
                            清华大学先进材料研究中心
                        </h4>
                        <p class="text-sm text-gray-700 mt-1">固态+陶瓷电解质方向</p>
                        <div class="flex mt-2">
                            <span class="bg-techblue-100 text-techblue-700 text-xs px-2 py-0.5 rounded mr-2">专利: 120+</span>
                            <span class="bg-techblue-100 text-techblue-700 text-xs px-2 py-0.5 rounded">论文: 65+</span>
                        </div>
                    </div>
                    <div class="border border-techblue-200 rounded-lg p-3 bg-techblue-50">
                        <h4 class="font-medium text-techblue-800 flex items-center">
                            <i class="fas fa-industry text-techblue-600 mr-2"></i> 
                            宁德时代-中科院物理所联合实验室
                        </h4>
                        <p class="text-sm text-gray-700 mt-1">高能量密度电池方向</p>
                        <div class="flex mt-2">
                            <span class="bg-techblue-100 text-techblue-700 text-xs px-2 py-0.5 rounded mr-2">专利: 85+</span>
                            <span class="bg-tech-blue-100 text-techblue-700 text-xs px-2 py-0.5 rounded">合作: 12家</span>
                        </div>
                    </div>
                </div>
                <div class="border-t border-techblue-200 pt-3 mt-auto">
                    <h4 class="font-medium text-techblue-800 flex items-center">
                        <i class="fas fa-globe-asia text-techblue-600 mr-2"></i> 
                        国际研发团队
                    </h4>
                    <p class="text-sm text-gray-700 mt-1">东京大学×松下能源联合体</p>
                    <p class="text-xs text-techblue-600 mt-2">数据来源: 论文+专利+项目通报联动分析</p>
                </div>
            </div>
            
            <!-- 右侧区域 - 下半部分 -->
            <div class="tech-card rounded-xl p-6 flex flex-col">
                <div class="flex items-center mb-5">
                    <div class="tech-icon-bg w-16 h-16 rounded-xl flex items-center justify-center mr-4">
                        <i class="fas fa-lightbulb text-white text-2xl"></i>
                    </div>
                    <h2 class="text-2xl font-bold text-techblue-800">技术发展预见</h2>
                </div>
                <p class="text-gray-700 mb-4">通过关键词趋势分析、专利漂移路径、专家预测融合建模,形成未来发展路线预判。</p>
                <h3 class="text-lg font-semibold text-techblue-700 mb-3">趋势预测结论:</h3>
                <ul class="space-y-4">
                    <li class="flex items-start">
                        <div class="mr-3 mt-1">
                            <div class="w-4 h-4 rounded-full bg-techblue-500"></div>
                            <div class="h-full w-0.5 bg-techblue-300 mx-auto mt-1"></div>
                        </div>
                        <div>
                            <span class="font-medium">固态电池将在2030年成为中高端乘用车标配</span>
                            <div class="flex items-center mt-2">
                                <span class="text-xs text-gray-500 mr-2">2025</span>
                                <div class="progress-bar bg-gray-200 w-full">
                                    <div class="progress-value bg-techblue-500 w-[35%]"></div>
                                </div>
                                <span class="text-xs text-gray-500 ml-2">2030</span>
                            </div>
                        </div>
                    </li>
                    <li class="flex items-start">
                        <div class="mr-3 mt-1">
                            <div class="w-4 h-4 rounded-full bg-techblue-400"></div>
                            <div class="h-full w-0.5 bg-techblue-300 mx-auto mt-1"></div>
                        </div>
                        <div>
                            <span class="font-medium">钠离子电池可能于2026年前在储能市场实现大规模商业化</span>
                            <div class="flex items-center mt-2">
                                <span class="text-xs text-gray-500 mr-2">2023</span>
                                <div class="progress-bar bg-gray-200 w-full">
                                    <div class="progress-value bg-techblue-400 w-[65%]"></div>
                                </div>
                                <span class="text-xs text-gray-500 ml-2">2026</span>
                            </div>
                        </div>
                    </li>
                    <li class="flex items-start">
                        <div class="mr-3 mt-1">
                            <div class="w-4 h-4 rounded-full bg-techblue-600"></div>
                        </div>
                        <div>
                            <span class="font-medium">金属锂负极的商用应用节点或提前至2027年</span>
                            <div class="flex items-center mt-2">
                                <span class="text-xs text-gray-500 mr-2">2023</span>
                                <div class="progress-bar bg-gray-200 w-full">
                                    <div class="progress-value bg-techblue-600 w-[55%]"></div>
                                </div>
                                <span class="text-xs text-gray-500 ml-2">2027</span>
                            </div>
                        </div>
                    </li>
                </ul>
                <div class="mt-4 p-3 bg-techblue-900 text-white rounded-lg">
                    <i class="fas fa-brain float-right text-2xl opacity-20"></i>
                    <h4 class="font-bold mb-1">预测模型</h4>
                    <p class="text-xs opacity-80">专利漂移分析 + 技术成熟度曲线 + 专家德尔菲法</p>
                </div>
            </div>
        </div>
        
        <!-- 底部总结标语 -->
        <div class="mt-12 text-center">
            <div class="inline-block bg-techblue-800 text-white px-8 py-4 rounded-full max-w-2xl">
                <p class="text-xl font-medium">“通过结构化情报系统,实现新能源电池前沿技术的可识别、可跟踪、可预测”</p>
            </div>
            <p class="text-techblue-600 mt-4 text-sm">产业技术情报智能分析平台 | 支持科研规划与技术投资决策</p>
        </div>
    </div>
    
    <script>
        // 创建背景粒子效果
        const createParticles = () => {
            const container = document.querySelector('.particles');
            const particlesCount = 30;
            
            for (let i = 0; i < particlesCount; i++) {
                const particle = document.createElement('div');
                particle.classList.add('particle');
                
                // 随机设置粒子大小
                const size = Math.random() * 100 + 10;
                particle.style.width = `${size}px`;
                particle.style.height = `${size}px`;
                
                // 随机位置
                const posX = Math.random() * 100;
                const posY = Math.random() * 100;
                particle.style.left = `${posX}%`;
                particle.style.top = `${posY}%`;
                
                // 随机动画延迟和持续时间
                const animationDelay = Math.random() * 15;
                particle.style.animationDelay = `${animationDelay}s`;
                const animationDuration = Math.random() * 20 + 10;
                particle.style.animationDuration = `${animationDuration}s`;
                
                // 随机透明度
                const opacity = Math.random() * 0.2 + 0.05;
                particle.style.opacity = opacity;
                
                container.appendChild(particle);
            }
        }
        
        // 页面加载完成后创建粒子
        document.addEventListener('DOMContentLoaded', createParticles);
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://deepsite.hf.co/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://deepsite.hf.co" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://deepsite.hf.co?remix=maomaobj/t3" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>