742 lines
27 KiB
HTML
742 lines
27 KiB
HTML
|
||
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
<title>换电概念分析报告</title>
|
||
|
||
<!-- Google Fonts -->
|
||
<link href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700,800&display=swap" rel="stylesheet" />
|
||
|
||
<!-- Font Awesome Icons -->
|
||
<script src="https://kit.fontawesome.com/1d2b6c4f81.js" crossorigin="anonymous"></script>
|
||
|
||
<!-- Tailwind CSS -->
|
||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
|
||
|
||
<!-- DaisyUI -->
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@5/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
|
||
<!-- Custom CSS -->
|
||
<style>
|
||
body {
|
||
font-family: 'Inter', sans-serif;
|
||
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
|
||
color: #e2e8f0;
|
||
min-height: 100vh;
|
||
}
|
||
|
||
.card {
|
||
background: rgba(30, 41, 59, 0.7);
|
||
backdrop-filter: blur(10px);
|
||
border: 1px solid rgba(148, 163, 184, 0.1);
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
|
||
}
|
||
|
||
.timeline-dot {
|
||
width: 16px;
|
||
height: 16px;
|
||
border-radius: 50%;
|
||
background-color: #3b82f6;
|
||
position: absolute;
|
||
left: -8px;
|
||
top: 6px;
|
||
}
|
||
|
||
.timeline-line {
|
||
position: absolute;
|
||
left: 0;
|
||
top: 22px;
|
||
bottom: -10px;
|
||
width: 2px;
|
||
background-color: #334155;
|
||
}
|
||
|
||
.timeline-item:last-child .timeline-line {
|
||
display: none;
|
||
}
|
||
|
||
.gradient-text {
|
||
background: linear-gradient(90deg, #60a5fa, #818cf8);
|
||
-webkit-background-clip: text;
|
||
background-clip: text;
|
||
color: transparent;
|
||
}
|
||
|
||
.table-container {
|
||
overflow-x: auto;
|
||
}
|
||
|
||
.table {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
}
|
||
|
||
.table th, .table td {
|
||
padding: 12px 15px;
|
||
text-align: left;
|
||
border-bottom: 1px solid rgba(148, 163, 184, 0.1);
|
||
}
|
||
|
||
.table th {
|
||
background-color: rgba(51, 65, 85, 0.5);
|
||
font-weight: 600;
|
||
text-transform: uppercase;
|
||
font-size: 0.75rem;
|
||
color: #94a3b8;
|
||
}
|
||
|
||
.table tr:hover {
|
||
background-color: rgba(51, 65, 85, 0.3);
|
||
}
|
||
|
||
.tag {
|
||
display: inline-block;
|
||
padding: 4px 8px;
|
||
border-radius: 4px;
|
||
font-size: 0.75rem;
|
||
font-weight: 500;
|
||
margin-right: 4px;
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.tag-blue {
|
||
background-color: rgba(59, 130, 246, 0.2);
|
||
color: #93c5fd;
|
||
}
|
||
|
||
.tag-green {
|
||
background-color: rgba(34, 197, 94, 0.2);
|
||
color: #86efac;
|
||
}
|
||
|
||
.tag-purple {
|
||
background-color: rgba(139, 92, 246, 0.2);
|
||
color: #c4b5fd;
|
||
}
|
||
|
||
.tag-orange {
|
||
background-color: rgba(249, 115, 22, 0.2);
|
||
color: #fdba74;
|
||
}
|
||
|
||
.progress-bar {
|
||
height: 6px;
|
||
border-radius: 3px;
|
||
background-color: rgba(148, 163, 184, 0.2);
|
||
overflow: hidden;
|
||
}
|
||
|
||
.progress-value {
|
||
height: 100%;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.mermaid {
|
||
text-align: center;
|
||
padding: 20px;
|
||
background: rgba(30, 41, 59, 0.5);
|
||
border-radius: 8px;
|
||
margin: 20px 0;
|
||
}
|
||
|
||
.particles-container {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
z-index: -1;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.table-container {
|
||
overflow-x: scroll;
|
||
}
|
||
|
||
.card {
|
||
margin-bottom: 1rem;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div id="particles-js" class="particles-container"></div>
|
||
|
||
<div class="container mx-auto px-4 py-8 max-w-6xl">
|
||
<!-- 标题部分 -->
|
||
<div class="text-center mb-12">
|
||
<h1 class="text-4xl md:text-5xl font-bold mb-4 gradient-text">换电概念分析报告</h1>
|
||
<p class="text-lg text-slate-400 max-w-3xl mx-auto">
|
||
深度解析新能源车换电模式的发展趋势、产业链布局及投资机会
|
||
</p>
|
||
</div>
|
||
|
||
<!-- 概念事件时间轴 -->
|
||
<div class="card rounded-xl p-6 mb-8">
|
||
<h2 class="text-2xl font-bold mb-6 text-blue-400">概念事件时间轴</h2>
|
||
|
||
<div class="relative pl-8">
|
||
<div class="timeline-item relative pb-8">
|
||
<div class="timeline-dot"></div>
|
||
<div class="timeline-line"></div>
|
||
<div class="ml-4">
|
||
<h3 class="text-lg font-semibold text-blue-300">2020-2021:换电概念起步期</h3>
|
||
<p class="text-slate-400 mt-2">换电站首次纳入"新基建",《电动汽车换电安全要求》国标出台,蔚来BaaS模式落地。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="timeline-item relative pb-8">
|
||
<div class="timeline-dot"></div>
|
||
<div class="timeline-line"></div>
|
||
<div class="ml-4">
|
||
<h3 class="text-lg font-semibold text-blue-300">2022-2023:技术突破期</h3>
|
||
<p class="text-slate-400 mt-2">宁德时代发布"巧克力换电"技术,与上汽、中石油成立合资公司;重卡换电渗透率从<strong>3.7%</strong>跃升至<strong>38.4%</strong>(2024年1-9月)。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="timeline-item relative pb-8">
|
||
<div class="timeline-dot"></div>
|
||
<div class="timeline-line"></div>
|
||
<div class="ml-4">
|
||
<h3 class="text-lg font-semibold text-blue-300">2024Q4:政策密集催化</h3>
|
||
<ul class="list-disc pl-5 text-slate-400 mt-2 space-y-1">
|
||
<li><strong>12月18日</strong>:宁德时代生态大会宣布<strong>2025年建1000座换电站</strong>,远期目标<strong>3万座</strong>,并推出20#/25#标准化电池。</li>
|
||
<li><strong>12月20日</strong>:山东威达涨停,因宁德换电站设备订单预期(2025年10-20亿元)。</li>
|
||
<li><strong>政策催化</strong>:深圳计划新增<strong>2万个电动自行车换电仓位</strong>(2025年3月)。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="timeline-item relative">
|
||
<div class="timeline-dot"></div>
|
||
<div class="ml-4">
|
||
<h3 class="text-lg font-semibold text-blue-300">2025年:全面扩张期</h3>
|
||
<p class="text-slate-400 mt-2">蔚来"换电县县通"计划覆盖<strong>1200个县级行政区</strong>,奇瑞、红旗等车企加入宁德换电联盟。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 核心观点摘要 -->
|
||
<div class="card rounded-xl p-6 mb-8">
|
||
<h2 class="text-2xl font-bold mb-6 text-purple-400">核心观点摘要</h2>
|
||
<div class="bg-gradient-to-r from-purple-900/30 to-blue-900/30 rounded-lg p-6">
|
||
<p class="text-lg">
|
||
换电已从"政策驱动"进入<strong class="text-purple-300">"商业化拐点"</strong>:
|
||
</p>
|
||
<ul class="mt-4 space-y-2 text-slate-300">
|
||
<li><span class="tag tag-blue">短期(2025-2026)</span> 设备端爆发(宁德/蔚来千站计划),重卡换电经济性验证(5年省25万成本)。</li>
|
||
<li><span class="tag tag-green">长期</span> 标准化电池+车电分离模式将重塑新能源车价值链,<strong class="text-green-300">换电站="电池银行"</strong>的盈利逻辑逐步兑现。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 核心逻辑与市场认知分析 -->
|
||
<div class="card rounded-xl p-6 mb-8">
|
||
<h2 class="text-2xl font-bold mb-6 text-green-400">核心逻辑与市场认知分析</h2>
|
||
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-green-300">核心驱动力</h3>
|
||
<div class="table-container">
|
||
<table class="table">
|
||
<thead>
|
||
<tr>
|
||
<th>维度</th>
|
||
<th>数据验证</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td><strong>政策</strong></td>
|
||
<td>2025年多地强制公共领域电动化(出租车/重卡),换电占比要求<strong>≥50%</strong>。</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>技术</strong></td>
|
||
<td>宁德巧克力电池兼容<strong>A0-C级车型</strong>(轴距2.55-3.1m),换电时长<strong>100秒</strong>。</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>成本</strong></td>
|
||
<td>乘用车换电站盈亏平衡点:<strong>日服务60次</strong>(利用率15%),电池成本下降30%后可行。</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-green-300">市场热度与情绪</h3>
|
||
<div class="mb-4">
|
||
<p><span class="tag tag-blue">研报密度</span> 2024年11-12月,中信/华泰/长江等<strong>7家券商</strong>密集发布换电深度报告,一致预期2025年设备市场空间<strong>343亿元</strong>(CAGR 54.9%)。</p>
|
||
</div>
|
||
|
||
<div class="bg-slate-800/50 rounded-lg p-4 mb-4">
|
||
<h4 class="font-semibold text-blue-300 mb-2">情绪分歧</h4>
|
||
<div class="space-y-2">
|
||
<p><span class="tag tag-green">乐观方</span> 宁德3万站目标+蔚来县县通,设备商订单弹性大(联赢激光/博众精工)。</p>
|
||
<p><span class="tag tag-orange">谨慎方</span> 乘用车换电车型不足(仅蔚来/吉利等少数品牌),利用率可能低于预期。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h4 class="font-semibold text-purple-300 mb-2">预期差</h4>
|
||
<ul class="list-disc pl-5 text-slate-300 space-y-1">
|
||
<li><strong>重卡换电已盈利</strong>:协鑫能科数据显示,重卡换电站<strong>日服务20次</strong>即可盈亏平衡(单站投资400万),远优于乘用车。</li>
|
||
<li><strong>电池银行模式</strong>:宁德通过"订阅制"(469元/月)锁定现金流,电池残值管理成为新盈利点。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 催化剂与路径 -->
|
||
<div class="card rounded-xl p-6 mb-8">
|
||
<h2 class="text-2xl font-bold mb-6 text-yellow-400">催化剂与路径</h2>
|
||
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-yellow-300">近期催化剂(3-6个月)</h3>
|
||
<div class="space-y-4">
|
||
<div class="flex items-start">
|
||
<div class="bg-yellow-500/20 rounded-full p-2 mr-3 mt-1">
|
||
<i class="fas fa-bolt text-yellow-400"></i>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold">2025Q1:宁德换电站设备招标落地</h4>
|
||
<p class="text-slate-400 text-sm">预计<strong>1000套</strong>,单价200万/套</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="flex items-start">
|
||
<div class="bg-yellow-500/20 rounded-full p-2 mr-3 mt-1">
|
||
<i class="fas fa-bolt text-yellow-400"></i>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold">2025Q2:蔚来第四代换电站量产</h4>
|
||
<p class="text-slate-400 text-sm">单日服务能力<strong>822次</strong>(当前仅30次)</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="flex items-start">
|
||
<div class="bg-yellow-500/20 rounded-full p-2 mr-3 mt-1">
|
||
<i class="fas fa-bolt text-yellow-400"></i>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold">政策:工信部将发布《重卡换电安全标准》</h4>
|
||
<p class="text-slate-400 text-sm">统一电池接口</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-yellow-300">长期路径</h3>
|
||
<div class="mermaid">
|
||
<div class="flex flex-col items-center">
|
||
<div class="bg-blue-600 rounded-lg px-4 py-2 mb-4">2025:设备爆发</div>
|
||
<div class="text-blue-400 mb-2">
|
||
<i class="fas fa-arrow-down"></i>
|
||
</div>
|
||
<div class="bg-purple-600 rounded-lg px-4 py-2 mb-4">2026-2027:运营盈利</div>
|
||
<div class="text-purple-400 mb-2">
|
||
<i class="fas fa-arrow-down"></i>
|
||
</div>
|
||
<div class="bg-green-600 rounded-lg px-4 py-2 mb-4">2028+:电池银行证券化</div>
|
||
<div class="text-green-400 mb-2">
|
||
<i class="fas fa-arrow-down"></i>
|
||
</div>
|
||
<div class="bg-yellow-600 rounded-lg px-4 py-2">换电站=储能节点</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 产业链与核心公司 -->
|
||
<div class="card rounded-xl p-6 mb-8">
|
||
<h2 class="text-2xl font-bold mb-6 text-indigo-400">产业链与核心公司</h2>
|
||
|
||
<div class="mb-6">
|
||
<h3 class="text-xl font-semibold mb-4 text-indigo-300">产业链图谱</h3>
|
||
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
|
||
<div class="bg-slate-800/50 rounded-lg p-4">
|
||
<h4 class="font-semibold text-blue-300 mb-2">上游</h4>
|
||
<p>电池(宁德时代)、设备(联赢激光/瀚川智能/山东威达)</p>
|
||
</div>
|
||
<div class="bg-slate-800/50 rounded-lg p-4">
|
||
<h4 class="font-semibold text-purple-300 mb-2">中游</h4>
|
||
<p>运营商(蔚来/协鑫能科/启源芯动力)</p>
|
||
</div>
|
||
<div class="bg-slate-800/50 rounded-lg p-4">
|
||
<h4 class="font-semibold text-green-300 mb-2">下游</h4>
|
||
<p>车企(长安/广汽/五菱)、场景方(滴滴/京东物流)</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-indigo-300">核心玩家对比</h3>
|
||
<div class="table-container">
|
||
<table class="table">
|
||
<thead>
|
||
<tr>
|
||
<th>公司</th>
|
||
<th>角色</th>
|
||
<th>关键数据</th>
|
||
<th>风险点</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td><strong>宁德时代</strong></td>
|
||
<td>电池+运营</td>
|
||
<td>2025年目标1000站,远期3万站;巧克力电池适配<strong>10款车型</strong>(2025年上市)。</td>
|
||
<td>换电车型销量不及预期。</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>蔚来</strong></td>
|
||
<td>运营龙头</td>
|
||
<td>换电站<strong>2788座</strong>(占乘用车66%),2026年县县通。</td>
|
||
<td>单站利用率仅30次/日。</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>联赢激光</strong></td>
|
||
<td>设备商</td>
|
||
<td>宁德换电站激光焊接设备<strong>市占率70%</strong>,2025年订单弹性<strong>15亿元</strong>。</td>
|
||
<td>消费电子业务拖累现金流。</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>协鑫能科</strong></td>
|
||
<td>重卡运营</td>
|
||
<td>已建<strong>200座</strong>重卡换电站,绿电成本低于行业20%。</td>
|
||
<td>政策补贴退坡风险。</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
|
||
<div class="mt-6 bg-slate-800/50 rounded-lg p-4">
|
||
<h4 class="font-semibold text-red-300 mb-2">验证与证伪</h4>
|
||
<ul class="list-disc pl-5 text-slate-300 space-y-1">
|
||
<li><strong>矛盾点</strong>:华泰预测宁德2025年换电站<strong>1500座</strong>,但宁德官方口径为<strong>1000座</strong>(需跟踪实际招标)。</li>
|
||
<li><strong>风险信号</strong>:蔚来换电站<strong>日均30次</strong>远低于盈亏平衡60次,需观察乐道/萤火虫车型放量。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 潜在风险 -->
|
||
<div class="card rounded-xl p-6 mb-8">
|
||
<h2 class="text-2xl font-bold mb-6 text-red-400">潜在风险</h2>
|
||
<div class="table-container">
|
||
<table class="table">
|
||
<thead>
|
||
<tr>
|
||
<th>风险类型</th>
|
||
<th>具体表现</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td><strong>技术</strong></td>
|
||
<td>重卡底部换电(如Deep Way)可能颠覆现有侧换电站设计。</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>商业化</strong></td>
|
||
<td>乘用车换电车型不足(仅<strong>10款</strong>规划),私家车接受度低。</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>政策</strong></td>
|
||
<td>电网扩容滞后,换电站可能面临<strong>峰时电价惩罚</strong>。</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>信息矛盾</strong></td>
|
||
<td>山东威达称宁德2025年设备订单<strong>10-20亿</strong>,但宁德未明确提及具体金额。</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 综合结论与投资启示 -->
|
||
<div class="card rounded-xl p-6 mb-8">
|
||
<h2 class="text-2xl font-bold mb-6 text-cyan-400">综合结论与投资启示</h2>
|
||
|
||
<div class="mb-6">
|
||
<h3 class="text-xl font-semibold mb-4 text-cyan-300">阶段判断</h3>
|
||
<div class="bg-gradient-to-r from-cyan-900/30 to-blue-900/30 rounded-lg p-6">
|
||
<p class="text-lg">
|
||
换电处于<strong class="text-cyan-300">"设备驱动→运营验证"过渡期</strong>,2025年设备订单爆发,2026年看单站盈利。
|
||
</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-cyan-300">投资方向</h3>
|
||
<div class="space-y-4">
|
||
<div class="flex items-start">
|
||
<div class="bg-cyan-500/20 rounded-full p-2 mr-3 mt-1">
|
||
<i class="fas fa-chart-line text-cyan-400"></i>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold">短期</h4>
|
||
<p>设备商(<strong class="text-green-300">联赢激光/博众精工</strong>),宁德换电站招标落地催化。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="flex items-start">
|
||
<div class="bg-cyan-500/20 rounded-full p-2 mr-3 mt-1">
|
||
<i class="fas fa-chart-line text-cyan-400"></i>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold">长期</h4>
|
||
<p>重卡换电运营商(<strong class="text-green-300">协鑫能科</strong>),场景标准化+经济性已验证。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-cyan-300">跟踪指标</h3>
|
||
<div class="space-y-4">
|
||
<div class="flex items-start">
|
||
<div class="bg-cyan-500/20 rounded-full p-2 mr-3 mt-1">
|
||
<i class="fas fa-search text-cyan-400"></i>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold">2025Q2</h4>
|
||
<p>宁德换电站实际开工数量(验证1000座目标)。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="flex items-start">
|
||
<div class="bg-cyan-500/20 rounded-full p-2 mr-3 mt-1">
|
||
<i class="fas fa-search text-cyan-400"></i>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold">2025H2</h4>
|
||
<p>蔚来单站换电次数能否突破<strong>60次</strong>(盈亏平衡线)。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="bg-gradient-to-r from-purple-900/30 to-pink-900/30 rounded-lg p-6 text-center">
|
||
<p class="text-xl font-semibold">
|
||
换电的终局不是"加油站",而是<strong class="text-purple-300">"电池资产管理公司"</strong>——谁掌握标准化电池+高频场景,谁就是赢家。
|
||
</p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 关联股票表格 -->
|
||
<div class="card rounded-xl p-6">
|
||
<h2 class="text-2xl font-bold mb-6 text-orange-400">关联股票</h2>
|
||
<div class="table-container">
|
||
<table class="table">
|
||
<thead>
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>行业</th>
|
||
<th>项目</th>
|
||
<th>原因</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td><strong>山东威达</strong></td>
|
||
<td>换电站设备</td>
|
||
<td>博众精工、科大智能、瀚川智能合作</td>
|
||
<td>公司涉及换电站设备领域,与多家智能设备企业合作</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>协鑫能科</strong></td>
|
||
<td>换电站运营</td>
|
||
<td>北汽蓝谷合作</td>
|
||
<td>专注于换电站运营服务,与北汽蓝谷开展业务合作</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>东风汽车</strong></td>
|
||
<td>换电车型</td>
|
||
<td>中国重汽、一汽解放、福田汽车、北汽蓝谷、力帆科技</td>
|
||
<td>生产适配换电模式的商用车型,与多家车企合作</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>雅运股份</strong></td>
|
||
<td>换电服务</td>
|
||
<td>收购鹰明智通100%股份</td>
|
||
<td>通过收购进入新能源车换电服务领域</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>动力新科</strong></td>
|
||
<td>新能源重卡</td>
|
||
<td>上汽红岩布局纯电、充换一体等产品</td>
|
||
<td>子公司专注新能源重卡研发,涵盖多种动力形式</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>豪尔赛</strong></td>
|
||
<td>换电站建设</td>
|
||
<td>建成3座重卡换电站,3座在建</td>
|
||
<td>具备换电站建设与运营能力</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>英飞特</strong></td>
|
||
<td>换电系统</td>
|
||
<td>与伯坦科技合作</td>
|
||
<td>在换电车型动力系统和储能系统有技术合作</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>通合科技</strong></td>
|
||
<td>充电设备</td>
|
||
<td>充换电站充电电源系统及核心模块</td>
|
||
<td>提供充换电站核心充电设备</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>宁德时代</strong></td>
|
||
<td>换电生态</td>
|
||
<td>巧克力换电块、出行平台合作</td>
|
||
<td>推出标准化换电产品并拓展出行领域合作</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>英可瑞</strong></td>
|
||
<td>充电电源</td>
|
||
<td>直流快充充电领域应用</td>
|
||
<td>充电电源产品适配换电模式下的快充场景</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>盛弘股份</strong></td>
|
||
<td>换电设备</td>
|
||
<td>新能源汽车换电设备及服务</td>
|
||
<td>提供绿色出行领域的换电解决方案</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>阿尔特</strong></td>
|
||
<td>换电生态</td>
|
||
<td>与宁德时代、壁虎科技战略合作</td>
|
||
<td>共建滑板底盘及换电业务产业联盟</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>奥特迅</strong></td>
|
||
<td>换电设备</td>
|
||
<td>与蔚来汽车业务合作</td>
|
||
<td>在换电站、充电桩领域有业务协同</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>金冠股份</strong></td>
|
||
<td>充电设施</td>
|
||
<td>南京能瑞新能源充电设施</td>
|
||
<td>子公司产品涵盖电动自行车换电柜</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>宝馨科技</strong></td>
|
||
<td>重卡换电</td>
|
||
<td>与金茂智慧交通战略合作</td>
|
||
<td>拓展重卡换电领域业务</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>许继电气</strong></td>
|
||
<td>换电服务</td>
|
||
<td>配套建设换电站</td>
|
||
<td>为新能源汽车提供换电服务</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>中恒电气</strong></td>
|
||
<td>智能电网</td>
|
||
<td>涉及换电相关技术</td>
|
||
<td>在智能电网和新能源领域有业务布局</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>永贵电器</strong></td>
|
||
<td>充电设备</td>
|
||
<td>换电接口及线束、充电桩</td>
|
||
<td>产品涵盖换电接口及交直流充电桩</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Scripts -->
|
||
<script src="https://cdn.jsdelivr.net/npm/tsparticles@3/tsparticles.bundle.min.js"></script>
|
||
<script>
|
||
// Initialize particles
|
||
tsParticles.load("particles-js", {
|
||
particles: {
|
||
number: {
|
||
value: 80,
|
||
density: {
|
||
enable: true,
|
||
value_area: 800
|
||
}
|
||
},
|
||
color: {
|
||
value: "#60a5fa"
|
||
},
|
||
shape: {
|
||
type: "circle"
|
||
},
|
||
opacity: {
|
||
value: 0.5,
|
||
random: false
|
||
},
|
||
size: {
|
||
value: 3,
|
||
random: true
|
||
},
|
||
line_linked: {
|
||
enable: true,
|
||
distance: 150,
|
||
color: "#334155",
|
||
opacity: 0.4,
|
||
width: 1
|
||
},
|
||
move: {
|
||
enable: true,
|
||
speed: 2,
|
||
direction: "none",
|
||
random: false,
|
||
straight: false,
|
||
out_mode: "out",
|
||
bounce: false
|
||
}
|
||
},
|
||
interactivity: {
|
||
detect_on: "canvas",
|
||
events: {
|
||
onhover: {
|
||
enable: true,
|
||
mode: "grab"
|
||
},
|
||
onclick: {
|
||
enable: true,
|
||
mode: "push"
|
||
},
|
||
resize: true
|
||
},
|
||
modes: {
|
||
grab: {
|
||
distance: 140,
|
||
line_linked: {
|
||
opacity: 1
|
||
}
|
||
},
|
||
push: {
|
||
particles_nb: 4
|
||
}
|
||
}
|
||
},
|
||
retina_detect: true
|
||
});
|
||
</script>
|
||
</body>
|
||
</html>
|
||
``` |