544 lines
34 KiB
HTML
544 lines
34 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN" data-theme="night">
|
||
<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 href="https://cdn.jsdelivr.net/npm/daisyui@4.11.1/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
|
||
<style>
|
||
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;600&display=swap');
|
||
|
||
body {
|
||
font-family: 'Source Code Pro', monospace;
|
||
background-color: #00001a;
|
||
color: #c0c0ff;
|
||
background-image:
|
||
radial-gradient(circle at 15% 15%, rgba(100, 120, 255, 0.2) 0%, transparent 40%),
|
||
radial-gradient(circle at 85% 75%, rgba(255, 100, 150, 0.2) 0%, transparent 40%),
|
||
radial-gradient(circle at 50% 50%, rgba(120, 255, 200, 0.1) 0%, transparent 30%);
|
||
background-attachment: fixed;
|
||
}
|
||
|
||
.glass-card {
|
||
background: rgba(10, 10, 35, 0.4);
|
||
backdrop-filter: blur(20px);
|
||
-webkit-backdrop-filter: blur(20px);
|
||
border: 1px solid rgba(100, 120, 255, 0.2);
|
||
border-radius: 1.5rem; /* 极致圆角 */
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.glass-card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 0 30px rgba(100, 120, 255, 0.3);
|
||
border-color: rgba(100, 120, 255, 0.4);
|
||
}
|
||
|
||
.bento-grid {
|
||
display: grid;
|
||
gap: 1.5rem;
|
||
grid-template-columns: repeat(6, 1fr);
|
||
grid-auto-rows: minmax(100px, auto);
|
||
}
|
||
|
||
.bento-item {
|
||
transition: all 0.3s ease-in-out;
|
||
}
|
||
|
||
/* Spanning items for the grid */
|
||
.grid-span-6 { grid-column: span 6; }
|
||
.grid-span-4 { grid-column: span 4; }
|
||
.grid-span-3 { grid-column: span 3; }
|
||
.grid-span-2 { grid-column: span 2; }
|
||
.row-span-2 { grid-row: span 2; }
|
||
|
||
@media (max-width: 1024px) {
|
||
.bento-grid {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
}
|
||
.grid-span-6, .grid-span-4, .grid-span-3, .grid-span-2 {
|
||
grid-column: span 2;
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.bento-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
.grid-span-6, .grid-span-4, .grid-span-3, .grid-span-2 {
|
||
grid-column: span 1;
|
||
}
|
||
}
|
||
|
||
.glow-divider {
|
||
height: 1px;
|
||
background: linear-gradient(90deg, transparent, rgba(120, 255, 200, 0.5), transparent);
|
||
border: none;
|
||
}
|
||
|
||
.tab-lift {
|
||
transition: all 0.3s;
|
||
}
|
||
|
||
.tab-lift:hover {
|
||
transform: translateY(-2px);
|
||
opacity: 1;
|
||
}
|
||
|
||
.tab-active {
|
||
background-color: rgba(120, 255, 200, 0.1) !important;
|
||
border-bottom-color: #78ffc8 !important;
|
||
color: #78ffc8 !important;
|
||
}
|
||
|
||
h1, h2, h3 {
|
||
text-shadow: 0 0 8px rgba(120, 255, 200, 0.3);
|
||
color: #e0e0ff;
|
||
}
|
||
|
||
h3 {
|
||
color: #a0a0ff;
|
||
}
|
||
|
||
.timeline {
|
||
position: relative;
|
||
padding-left: 2rem;
|
||
}
|
||
.timeline::before {
|
||
content: '';
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
bottom: 0;
|
||
width: 2px;
|
||
background: linear-gradient(to bottom, rgba(100, 120, 255, 0.1), rgba(100, 120, 255, 0.5), rgba(100, 120, 255, 0.1));
|
||
}
|
||
.timeline-item {
|
||
position: relative;
|
||
margin-bottom: 1.5rem;
|
||
}
|
||
.timeline-item::before {
|
||
content: '';
|
||
position: absolute;
|
||
left: -2.5rem;
|
||
top: 0.25rem;
|
||
width: 1rem;
|
||
height: 1rem;
|
||
border-radius: 50%;
|
||
background-color: #78ffc8;
|
||
border: 2px solid #00001a;
|
||
box-shadow: 0 0 10px #78ffc8;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body class="min-h-screen p-4 sm:p-6 lg:p-8">
|
||
<div class="max-w-7xl mx-auto">
|
||
<!-- Header -->
|
||
<header class="text-center mb-12">
|
||
<h1 class="text-4xl md:text-5xl font-bold tracking-wider mb-4 text-cyan-300">
|
||
充电宝 (Power Bank) 概念深度投研报告
|
||
</h1>
|
||
<p class="text-sm text-gray-400">
|
||
北京价值前沿科技有限公司 AI投研agent:“价小前投研” 进行投研呈现
|
||
</p>
|
||
<p class="text-xs text-gray-500 mt-1">本报告为AI合成数据,投资需谨慎。</p>
|
||
</header>
|
||
|
||
<hr class="glow-divider my-8">
|
||
|
||
<!-- Insight Bento Grid -->
|
||
<main class="bento-grid">
|
||
<div class="bento-item grid-span-4 row-span-2 glass-card p-6">
|
||
<h2 class="text-2xl font-semibold mb-4 text-fuchsia-400">核心观点与驱动逻辑</h2>
|
||
<div class="space-y-4">
|
||
<div>
|
||
<h3 class="font-bold text-lg text-cyan-300">核心观点摘要</h3>
|
||
<p class="text-gray-300 text-sm">充电宝概念正经历一场由<strong class="text-yellow-300">强监管驱动的供给侧结构性改革</strong>,核心驱动力已从需求拉动与价格竞争,彻底转向<strong class="text-yellow-300">安全、合规与技术升级</strong>。行业正处“劣币驱逐良币”向“良币淘汰劣币”过渡的剧烈洗牌期,短期阵痛与长期机遇并存。</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-bold text-lg text-cyan-300">核心驱动力:政策倒逼下的全产业链升级</h3>
|
||
<ul class="list-disc list-inside space-y-2 text-sm text-gray-300">
|
||
<li><strong>准入门槛法制化:</strong> 从整机到电芯的3C认证,再到“先审厂后发证”的流程改革,系统性抬高行业门槛,挤出“白牌”厂商。</li>
|
||
<li><strong>存量市场“清零”:</strong> 民航局禁令与市场集中整治,实质上是对不合规产品的“强制出清”,为合规产品腾出巨大市场空间。</li>
|
||
<li><strong>未来标准“顶格”:</strong> 2026年“史上最严”新国标,将倒逼产业链上游进行技术迭代,从源头提升产品安全性。</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-bold text-lg text-cyan-300">预期差分析:个人与共享的冰火两重天</h3>
|
||
<ul class="list-disc list-inside space-y-2 text-sm text-gray-300">
|
||
<li><strong>逻辑差异:</strong> 市场热议个人充电宝的“安全替代”,但路演数据显示共享充电宝(怪兽充电)核心矛盾是<strong class="text-red-400">盈利模式和运营效率</strong>,其Q1总收入同比下降15.1%,与个人市场热销形成鲜明对比。</li>
|
||
<li><strong>龙头企业的“危”与“机”:</strong> 安克创新等龙头虽将受益,但也深度卷入召回风波。市场可能低估其短期成本,高估其抢占市场速度。</li>
|
||
<li><strong>成本传导影响:</strong> 合规化导致成本大幅上涨(电芯占50%-60%),最终可能影响整体市场规模增速。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="bento-item grid-span-2 row-span-2 glass-card p-6">
|
||
<h2 class="text-2xl font-semibold mb-4 text-fuchsia-400">关键事件时间轴</h2>
|
||
<div class="timeline text-sm">
|
||
<div class="timeline-item">
|
||
<p class="font-semibold text-cyan-400">2024年8月-9月</p>
|
||
<p class="text-gray-300">小米主动召回超14万台充电宝,拉开大规模召回序幕。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<p class="font-semibold text-cyan-400">2024年10月20日</p>
|
||
<p class="text-gray-300">上海虹桥机场疑似充电宝自燃,安全问题推向舆论焦点。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<p class="font-semibold text-cyan-400">2025年6月28日起</p>
|
||
<p class="text-gray-300">民航局禁止无3C标识充电宝登机,冲击存量市场。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<p class="font-semibold text-cyan-400">2025年8月15日起</p>
|
||
<p class="text-gray-300">移动电源锂电池3C认证新规实施,未获认证产品全面禁产禁售。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<p class="font-semibold text-cyan-400">2026年 (预期)</p>
|
||
<p class="text-gray-300">“史上最严”新国标发布,预计淘汰近<strong class="text-red-400">七成</strong>现有产能。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="bento-item grid-span-3 glass-card p-6">
|
||
<h2 class="text-2xl font-semibold mb-4 text-fuchsia-400">催化剂与发展路径</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 text-sm">
|
||
<div>
|
||
<h3 class="font-bold text-lg text-cyan-300">近期催化剂 (3-6个月)</h3>
|
||
<ul class="list-disc list-inside space-y-1 text-gray-300 mt-2">
|
||
<li>8月1日后合规品牌销售数据验证。</li>
|
||
<li>集中整治行动结果公布。</li>
|
||
<li>半固态安全电芯等新技术产品发布。</li>
|
||
<li>头部企业财报揭示召回影响。</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-bold text-lg text-cyan-300">长期发展路径</h3>
|
||
<ul class="list-disc list-inside space-y-1 text-gray-300 mt-2">
|
||
<li><strong>当前-2026:</strong> 规范化整合期,市场洗牌,份额向头部集中。</li>
|
||
<li><strong>2026以后:</strong> 价值回归与技术创新期,竞争转向品质与技术。</li>
|
||
<li><strong>远期:</strong> 生态延伸期,与户外储能融合,共享模式向综合能源服务转型。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="bento-item grid-span-3 glass-card p-6">
|
||
<h2 class="text-2xl font-semibold mb-4 text-fuchsia-400">综合结论与投资启示</h2>
|
||
<p class="text-gray-300 text-sm mb-3">概念已从主题炒作进入<strong class="text-yellow-300">基本面重构阶段</strong>。这不是普涨机会,而是结构性分化、优胜劣汰的赛道。</p>
|
||
<h3 class="font-bold text-lg text-cyan-300">最具投资价值细分环节</h3>
|
||
<ul class="list-decimal list-inside space-y-1 text-sm text-gray-300 mt-2">
|
||
<li><strong>上游核心安全部件:</strong> 以<strong class="text-green-300">维科技术</strong>为代表的高安全性电芯解决方案商,掌握议价权和技术壁垒。</li>
|
||
<li><strong>下游品牌龙头:</strong> 以<strong class="text-green-300">安克创新</strong>为代表,有能力承受阵痛并最终收割市场份额。</li>
|
||
<li><strong>中游检测服务:</strong> 确定性最高的“卖铲人”,风险较低,持续受益于行业规范化。</li>
|
||
</ul>
|
||
</div>
|
||
</main>
|
||
|
||
<hr class="glow-divider my-8">
|
||
|
||
<!-- Data Tabs -->
|
||
<div x-data="{ activeTab: 'data' }" class="glass-card p-6">
|
||
<div role="tablist" class="tabs tabs-bordered">
|
||
<a role="tab" class="tab tab-lift text-lg" :class="{'tab-active': activeTab === 'data'}" @click="activeTab = 'data'">市场与行业数据</a>
|
||
<a role="tab" class="tab tab-lift text-lg" :class="{'tab-active': activeTab === 'news'}" @click="activeTab = 'news'">新闻纪要</a>
|
||
<a role="tab" class="tab tab-lift text-lg" :class="{'tab-active': activeTab === 'reports'}" @click="activeTab = 'reports'">路演与研报精粹</a>
|
||
</div>
|
||
|
||
<div class="pt-6">
|
||
<!-- Data Visualization Tab -->
|
||
<div x-show="activeTab === 'data'" class="space-y-8">
|
||
<h2 class="text-2xl font-semibold text-center text-fuchsia-400">行业图谱与市场洞察</h2>
|
||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
|
||
<div class="glass-card p-4">
|
||
<h3 class="text-xl font-bold text-cyan-300 text-center mb-2">共享充电宝市场规模预测 (亿元)</h3>
|
||
<div id="market-size-chart" style="width: 100%; height: 300px;"></div>
|
||
</div>
|
||
<div class="glass-card p-4">
|
||
<h3 class="text-xl font-bold text-cyan-300 text-center mb-2">共享充电宝竞争格局 (2023)</h3>
|
||
<div id="market-share-chart" style="width: 100%; height: 300px;"></div>
|
||
</div>
|
||
</div>
|
||
<div class="glass-card p-6">
|
||
<h3 class="text-xl font-bold text-cyan-300 mb-4">产业链核心环节</h3>
|
||
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 text-center">
|
||
<div class="p-4 bg-black/20 rounded-xl border border-cyan-500/30">
|
||
<h4 class="font-bold text-lg text-cyan-400">上游:核心零部件</h4>
|
||
<p class="text-sm text-gray-300"><strong>电芯</strong> (成本占比50%-60%,监管风暴中心), 外壳, 电路板, 芯片</p>
|
||
</div>
|
||
<div class="p-4 bg-black/20 rounded-xl border border-fuchsia-500/30">
|
||
<h4 class="font-bold text-lg text-fuchsia-400">中游:检测与认证</h4>
|
||
<p class="text-sm text-gray-300">第三方检测机构,监管趋严直接利好,业务需求确定性高。</p>
|
||
</div>
|
||
<div class="p-4 bg-black/20 rounded-xl border border-yellow-500/30">
|
||
<h4 class="font-bold text-lg text-yellow-400">下游:品牌与渠道</h4>
|
||
<p class="text-sm text-gray-300">个人充电宝品牌商 (安克创新), 共享充电宝运营商 (怪兽充电)</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- News Tab -->
|
||
<div x-show="activeTab === 'news'" class="space-y-4">
|
||
<div class="collapse collapse-plus glass-card">
|
||
<input type="radio" name="news-accordion" checked="checked" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-300">市场动态与消费者影响</div>
|
||
<div class="collapse-content">
|
||
<ul class="list-disc list-inside space-y-2 text-sm text-gray-300">
|
||
<li><strong>销量与库存:</strong> 受“充电宝召回”影响,带3C标识产品销量增长,部分商家库存告急。</li>
|
||
<li><strong>二手市场:</strong> 大量疑似机场拦截货流向二手平台,售价极低(1万毫安仅18元),甚至按斤出售。</li>
|
||
<li><strong>价格趋势:</strong> 行业人士表示,未来充电宝产品价格可能上涨。</li>
|
||
<li><strong>公众关注度:</strong> “热搜前二流感和充电宝”,社会关注度极高。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus glass-card">
|
||
<input type="radio" name="news-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-300">监管政策与标准制定</div>
|
||
<div class="collapse-content">
|
||
<ul class="list-disc list-inside space-y-2 text-sm text-gray-300">
|
||
<li><strong>3C认证强制要求:</strong> 2024年8月1日起,市售充电宝必须有CCC认证。认证模式于2025年5月6日升级为更严格的“先审厂后发证”。</li>
|
||
<li><strong>“史上最严”新国标:</strong> 《移动电源安全技术规范》正在制定,预计2026年发布,将淘汰近七成现有产能。</li>
|
||
<li><strong>市场集中整治:</strong> 2025年7-9月,市场监管总局在全国开展为期三个月的质量安全集中整治。</li>
|
||
<li><strong>航空规定:</strong> 中国民航局自2025年6月28日起禁止无3C标识、被召回充电宝登机。澳大利亚航空公司将于2025年12月起禁止在航班上使用充电宝。</li>
|
||
<li><strong>铁路规定:</strong> 目前铁路仅查验额定能量(不超过100WH),不看3C认证。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus glass-card">
|
||
<input type="radio" name="news-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-300">行业现状与企业动态</div>
|
||
<div class="collapse-content">
|
||
<ul class="list-disc list-inside space-y-2 text-sm text-gray-300">
|
||
<li><strong>生产模式:</strong> 60%企业采用代工模式,对工厂和质量管控有疏忽。电芯成本占50%-60%。</li>
|
||
<li><strong>行业问题:</strong> 低价竞争激烈,生产企业良莠不齐,行业将迎来洗牌。</li>
|
||
<li><strong>企业动态:</strong> <strong>罗马仕</strong>陷入停工停产困境;<strong>安克创新</strong>召回产品并与宁德时代合作研发新电芯;<strong>小米</strong>主动召回;<strong>维科技术</strong>半固态安全电芯通过3C认证。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Reports Tab -->
|
||
<div x-show="activeTab === 'reports'" class="space-y-4">
|
||
<div class="collapse collapse-plus glass-card">
|
||
<input type="radio" name="report-accordion" checked="checked" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-300">共享充电宝(以怪兽充电为例)</div>
|
||
<div class="collapse-content">
|
||
<ul class="list-disc list-inside space-y-2 text-sm text-gray-300">
|
||
<li><strong>运营数据:</strong> Q1 GMV同比微增,但3月下滑。一二线城市GMV下降,低线城市增长4%,战略转向下沉市场。</li>
|
||
<li><strong>业务模式转型:</strong> 大力发展NPM(网络合作伙伴模式),占比提升至79.7%。该模式经济性更强,但Q1贡献收入下降58%,存在矛盾点(可能因收入核算方式变化)。</li>
|
||
<li><strong>财务表现:</strong> Q1总收入3.972亿元,同比下降15.1%。毛利率-0.1%(去年同期1.3%),因设备销售成本上升。</li>
|
||
<li><strong>新业务探索:</strong> 启动充电宝回收计划,响应ESG政策。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus glass-card">
|
||
<input type="radio" name="report-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-300">个人充电宝与用户行为</div>
|
||
<div class="collapse-content">
|
||
<ul class="list-disc list-inside space-y-2 text-sm text-gray-300">
|
||
<li><strong>核心驱动:</strong> 手机存在约2571mAh的日均电量缺口;线下场景复苏提供良好应用场景。</li>
|
||
<li><strong>用户习惯:</strong> 超70%用户倾向在电量剩余10-30%时充电;最关注就近归还便利度和充电速度。</li>
|
||
<li><strong>未来趋势:</strong> 场景向医院、写字楼拓展;模式出海;深挖流量价值,开发广告和门店数字化业务;拓展充电桩、户外储能等新业务。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus glass-card">
|
||
<input type="radio" name="report-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-300">概念延伸:“电网充电宝” (V2G)</div>
|
||
<div class="collapse-content">
|
||
<ul class="list-disc list-inside space-y-2 text-sm text-gray-300">
|
||
<li><strong>核心概念:</strong> 将新能源汽车车载动力电池定义为“移动充电宝”,作为大规模、分布式的灵活资源与电网互动,参与调峰/调频。</li>
|
||
<li><strong>量化潜力:</strong> 预计到2040年,中国车载电池总容量将超过200亿千瓦时,相当于中国每天消费的总电量。</li>
|
||
<li><strong>政策驱动:</strong> 国家四部委联合发布《关于加强新能源汽车与电网融合互动的实施意见》,推动车网互动(V2G)发展。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<hr class="glow-divider my-8">
|
||
|
||
<!-- Stock Data Table -->
|
||
<div class="glass-card p-6">
|
||
<h2 class="text-3xl font-bold mb-6 text-center text-fuchsia-400">相关产业链公司梳理</h2>
|
||
<div class="space-y-8">
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-cyan-300">核心标的列表</h3>
|
||
<div class="overflow-x-auto">
|
||
<table class="table table-zebra w-full bg-transparent">
|
||
<thead>
|
||
<tr class="text-base text-cyan-300">
|
||
<th>股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>核心逻辑</th>
|
||
<th>标签</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors"><td>安克创新</td><td><a href="https://valuefrontier.cn/company?scode=300866" target="_blank" class="link link-hover text-fuchsia-400">300866</a></td><td>充电器和充电宝领域实现200元以上价位段份额第一</td><td>产品</td></tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors"><td>维科技术</td><td><a href="https://valuefrontier.cn/company?scode=600152" target="_blank" class="link link-hover text-fuchsia-400">600152</a></td><td>消费类电池应用领域包括移动电源;网传充电宝半固态安全电芯已通过3C认证</td><td>电芯</td></tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors"><td>长虹能源</td><td><a href="https://valuefrontier.cn/company?scode=920239" target="_blank" class="link link-hover text-fuchsia-400">920239</a></td><td>子公司长虹三杰内置电池组供货安克等充电宝厂家;网传18个电芯获3C认证</td><td>电芯, 北交所</td></tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors"><td>和胜股份</td><td><a href="https://valuefrontier.cn/company?scode=002824" target="_blank" class="link link-hover text-fuchsia-400">002824</a></td><td>充电宝外壳</td><td>外壳</td></tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors"><td>正业科技</td><td><a href="https://valuefrontier.cn/company?scode=300410" target="_blank" class="link link-hover text-fuchsia-400">300410</a></td><td>在国内锂电池检测市场中的领头地位</td><td>检测</td></tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors"><td>星云股份</td><td><a href="https://valuefrontier.cn/company?scode=300648" target="_blank" class="link link-hover text-fuchsia-400">300648</a></td><td>锂电池检测技术领先企业</td><td>检测</td></tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors"><td>绿联科技</td><td><a href="https://valuefrontier.cn/company?scode=301606" target="_blank" class="link link-hover text-fuchsia-400">301606</a></td><td>公司储能类产品包括多款便携式移动电源(充电宝)</td><td>产品</td></tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors"><td>奥海科技</td><td><a href="https://valuefrontier.cn/company?scode=002993" target="_blank" class="link link-hover text-fuchsia-400">002993</a></td><td>AOHI依托星舰充电宝、140W氮化镓快充等创新产品,海外众筹实现突破</td><td>产品</td></tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors"><td>鹏辉能源</td><td><a href="https://valuefrontier.cn/company?scode=300438" target="_blank" class="link link-hover text-fuchsia-400">300438</a></td><td>公司产品应用领域包括移动电源</td><td>电芯</td></tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors"><td>亿纬锂能</td><td><a href="https://valuefrontier.cn/company?scode=300014" target="_blank" class="link link-hover text-fuchsia-400">300014</a></td><td>旗下小型锂离子电池应用领域包括移动电源</td><td>电芯</td></tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-cyan-300">涨幅异动分析</h3>
|
||
<div class="overflow-x-auto">
|
||
<table class="table table-zebra w-full bg-transparent">
|
||
<thead>
|
||
<tr class="text-base text-cyan-300">
|
||
<th>股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>异动日期</th>
|
||
<th>涨幅</th>
|
||
<th>异动原因分析</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors">
|
||
<td>中孚实业</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=600595" target="_blank" class="link link-hover text-fuchsia-400">600595</a></td>
|
||
<td>2025-07-01</td>
|
||
<td class="text-green-400">10.05%</td>
|
||
<td class="text-sm">核心驱动:铜替代铝逻辑 + 充电宝铝壳强制升级带来订单激增。公司高表面阳极氧化铝材已批量供货罗马仕、安克等头部品牌,短期新增订单弹性大。叠加高分红属性,获得机构与游资共振。</td>
|
||
</tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors">
|
||
<td>宝莫股份</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002476" target="_blank" class="link link-hover text-fuchsia-400">002476</a></td>
|
||
<td>2025-11-26</td>
|
||
<td class="text-green-400">5.11%</td>
|
||
<td class="text-sm">核心驱动:典型的“概念关联性错误”炒作。主营业务与充电宝毫无关联,但因具备“小盘、低价”等特性,被市场游资利用“史上最严充电宝新规”热点作为短期炒作载体。</td>
|
||
</tr>
|
||
<tr class="hover:bg-cyan-900/50 transition-colors">
|
||
<td>宝色股份</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300402" target="_blank" class="link link-hover text-fuchsia-400">300402</a></td>
|
||
<td>2025-07-07</td>
|
||
<td class="text-green-400">7.60%</td>
|
||
<td class="text-sm">核心驱动:铜价大幅上涨带来的业绩预期改善。公司可能与有色金属、特种材料相关,受益于大宗商品价格波动。大股东增持承诺提供信心支撑。</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<footer class="text-center mt-12 py-4">
|
||
<p class="text-xs text-gray-500">报告生成时间: <span id="generation-time"></span></p>
|
||
<p class="text-xs text-gray-500 mt-1">免责声明:本报告由AI生成,内容仅供参考,不构成任何投资建议。据此操作,风险自担。</p>
|
||
</footer>
|
||
</div>
|
||
|
||
<script>
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
// Set generation time
|
||
document.getElementById('generation-time').textContent = new Date().toLocaleString('zh-CN');
|
||
|
||
// ECharts for Market Size
|
||
var marketSizeChart = echarts.init(document.getElementById('market-size-chart'));
|
||
var marketSizeOption = {
|
||
backgroundColor: 'transparent',
|
||
tooltip: {
|
||
trigger: 'axis',
|
||
axisPointer: { type: 'shadow' }
|
||
},
|
||
grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true },
|
||
xAxis: [{
|
||
type: 'category',
|
||
data: ['2023', '2024(E)', '2025(E)', '2026(E)', '2027(E)', '2028(E)', '2029(E)'],
|
||
axisLine: { lineStyle: { color: 'rgba(100, 120, 255, 0.5)' } },
|
||
axisLabel: { color: '#c0c0ff' }
|
||
}],
|
||
yAxis: [{
|
||
type: 'value',
|
||
axisLine: { show: true, lineStyle: { color: 'rgba(100, 120, 255, 0.5)' } },
|
||
axisLabel: { color: '#c0c0ff' },
|
||
splitLine: { lineStyle: { color: 'rgba(100, 120, 255, 0.1)' } }
|
||
}],
|
||
series: [{
|
||
name: '市场规模 (亿元)',
|
||
type: 'bar',
|
||
barWidth: '60%',
|
||
data: [126, 151, 182, 220, 266, 328, 400],
|
||
itemStyle: {
|
||
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||
{ offset: 0, color: '#83bff6' },
|
||
{ offset: 0.5, color: '#188df0' },
|
||
{ offset: 1, color: '#188df0' }
|
||
])
|
||
},
|
||
emphasis: {
|
||
itemStyle: {
|
||
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||
{ offset: 0, color: '#2378f7' },
|
||
{ offset: 0.7, color: '#2378f7' },
|
||
{ offset: 1, color: '#83bff6' }
|
||
])
|
||
}
|
||
}
|
||
}]
|
||
};
|
||
marketSizeChart.setOption(marketSizeOption);
|
||
|
||
// ECharts for Market Share
|
||
var marketShareChart = echarts.init(document.getElementById('market-share-chart'));
|
||
var marketShareOption = {
|
||
backgroundColor: 'transparent',
|
||
tooltip: {
|
||
trigger: 'item',
|
||
formatter: '{a} <br/>{b} : {c}%'
|
||
},
|
||
legend: {
|
||
orient: 'vertical',
|
||
left: 'left',
|
||
textStyle: { color: '#c0c0ff' }
|
||
},
|
||
series: [{
|
||
name: '市场份额',
|
||
type: 'pie',
|
||
radius: ['40%', '70%'],
|
||
avoidLabelOverlap: false,
|
||
label: { show: false, position: 'center' },
|
||
emphasis: {
|
||
label: {
|
||
show: true,
|
||
fontSize: '20',
|
||
fontWeight: 'bold',
|
||
color: '#ffffff'
|
||
}
|
||
},
|
||
labelLine: { show: false },
|
||
data: [
|
||
{ value: 96.6, name: '前五大品牌' },
|
||
{ value: 3.4, name: '其他' }
|
||
],
|
||
itemStyle: {
|
||
borderColor: '#00001a',
|
||
borderWidth: 2
|
||
}
|
||
}],
|
||
color: ['#37A2DA', '#67E0E3', '#FFDB5C', '#FF9F7F', '#E062AE']
|
||
};
|
||
marketShareChart.setOption(marketShareOption);
|
||
|
||
window.addEventListener('resize', function() {
|
||
marketSizeChart.resize();
|
||
marketShareChart.resize();
|
||
});
|
||
});
|
||
</script>
|
||
</body>
|
||
</html> |