Files
vf_react/public/htmls/工业机器人.html
2025-12-05 13:29:18 +08:00

506 lines
34 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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.10.2/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=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
background-color: #0a0a1a;
background-image:
radial-gradient(circle at 15% 15%, rgba(100, 120, 255, 0.15) 0%, transparent 40%),
radial-gradient(circle at 85% 75%, rgba(255, 100, 180, 0.15) 0%, transparent 40%),
radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
color: #e0e0e0;
}
.glass-card {
background: rgba(20, 20, 40, 0.5);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(100, 120, 255, 0.2);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
transition: all 0.3s ease;
}
.glass-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 40px 0 rgba(0, 255, 255, 0.2);
border: 1px solid rgba(0, 255, 255, 0.4);
}
.concept-title {
font-family: 'Orbitron', sans-serif;
text-shadow: 0 0 10px rgba(0, 255, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.5);
}
.section-header {
font-family: 'Orbitron', sans-serif;
color: #00e5ff;
text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
border-bottom: 1px solid rgba(0, 229, 255, 0.3);
padding-bottom: 0.5rem;
}
.glow-divider {
height: 1px;
background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), transparent);
}
.bento-grid {
display: grid;
gap: 1.5rem;
grid-template-columns: repeat(12, 1fr);
}
.bento-item {
border-radius: 1.5rem;
padding: 1.5rem;
position: relative;
overflow: hidden;
}
.bento-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 229, 255, 0.15), transparent 40%);
opacity: 0;
transition: opacity 0.5s;
}
.bento-item:hover::before {
opacity: 1;
}
/* AlpineJS Tab Styles */
.tab-button {
transition: all 0.3s;
border-bottom: 2px solid transparent;
}
.tab-button.active, .tab-button:hover {
color: #00e5ff;
border-bottom-color: #00e5ff;
background: rgba(0, 229, 255, 0.1);
}
table.stock-table thead {
background-color: rgba(0, 229, 255, 0.1);
color: #00e5ff;
}
table.stock-table tbody tr {
border-bottom-color: rgba(100, 120, 255, 0.2);
}
table.stock-table tbody tr:hover {
background-color: rgba(100, 120, 255, 0.15);
}
</style>
</head>
<body class="min-h-screen p-4 sm:p-8">
<div class="max-w-screen-2xl mx-auto space-y-8">
<!-- Header -->
<header class="text-center p-6 glass-card rounded-3xl">
<h1 class="text-4xl md:text-6xl font-bold concept-title">工业机器人</h1>
<p class="mt-4 text-lg text-gray-300">深度概念分析报告</p>
<p class="mt-2 text-xs text-gray-500">
北京价值前沿科技有限公司 AI投研agent“价小前投研” 进行投研呈现
<br>
<span class="text-red-500">本报告为AI合成数据投资需谨慎。</span>
</p>
</header>
<!-- Bento Grid Dashboard -->
<section class="bento-grid" x-data="{
handleMouseMove(e) {
const rect = e.currentTarget.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
e.currentTarget.style.setProperty('--x', `${x}px`);
e.currentTarget.style.setProperty('--y', `${y}px`);
}
}">
<div class="bento-item glass-card col-span-12 md:col-span-4 flex flex-col justify-center" @mousemove="handleMouseMove">
<h3 class="text-lg font-bold text-cyan-300 mb-2">核心观点摘要</h3>
<p class="text-sm text-gray-300">
工业机器人正处在<strong class="text-white">“国产化加速替代”</strong><strong class="text-white">“智能化升级前夜”</strong>的关键交汇点。核心驱动力已从单纯的“机器换人”,演变为<strong class="text-cyan-400">政策推动、下游分化、AI赋能</strong>三轮驱动。
</p>
</div>
<div class="bento-item glass-card col-span-12 md:col-span-8" @mousemove="handleMouseMove">
<h3 class="text-lg font-bold text-cyan-300 mb-2">市场核心数据</h3>
<div id="marketCoreChart" class="w-full h-64"></div>
</div>
<div class="bento-item glass-card col-span-12 md:col-span-7" @mousemove="handleMouseMove">
<h3 class="text-lg font-bold text-cyan-300 mb-2">下游需求结构 (2024 H1)</h3>
<div id="downstreamDemandChart" class="w-full h-64"></div>
</div>
<div class="bento-item glass-card col-span-12 md:col-span-5 flex flex-col justify-center" @mousemove="handleMouseMove">
<h3 class="text-lg font-bold text-cyan-300 mb-2">国产化里程碑 (2024 H1)</h3>
<div class="text-center">
<p class="text-sm text-gray-400">内资品牌市场份额</p>
<p class="text-6xl font-bold my-2" style="text-shadow: 0 0 10px rgba(255, 100, 180, 0.7);">50.1%</p>
<p class="text-lg text-fuchsia-400 font-semibold">首次超越外资</p>
<p class="text-sm text-gray-400 mt-2">内资品牌同比增速: <span class="text-xl font-bold text-white">+21.3%</span></p>
</div>
</div>
</section>
<!-- Main Insight Section -->
<main class="glass-card rounded-3xl p-6 md:p-8 space-y-8">
<h2 class="section-header text-2xl">概念深度洞察 (Insight)</h2>
<!-- 0. Concept Events -->
<article>
<h3 class="font-bold text-xl text-cyan-400 mb-3">0. 概念事件时间轴</h3>
<ul class="space-y-3 border-l-2 border-cyan-700 pl-4">
<li class="relative pl-4">
<div class="absolute -left-[0.8rem] top-1 w-3 h-3 bg-cyan-400 rounded-full"></div>
<p class="font-semibold text-white">宏观背景 (贯穿2024年)</p>
<p class="text-sm text-gray-300">全球市场疲软(-3%),中国市场逆势增长(+5%)全球份额升至54%,成核心稳定器。</p>
</li>
<li class="relative pl-4">
<div class="absolute -left-[0.8rem] top-1 w-3 h-3 bg-cyan-400 rounded-full"></div>
<p class="font-semibold text-white">2024年H1国产替代拐点</p>
<p class="text-sm text-gray-300">内资品牌市场份额首次过半(50.1%)同比增速高达21.3%,标志国产化进入加速阶段。</p>
</li>
<li class="relative pl-4">
<div class="absolute -left-[0.8rem] top-1 w-3 h-3 bg-cyan-400 rounded-full"></div>
<p class="font-semibold text-white">2024年Q3弱复苏与结构性分化</p>
<p class="text-sm text-gray-300">市场弱复苏(同比+3.4%),下游需求分化:家电/3C/半导体(>20%) vs 光伏/锂电(大幅下滑)。</p>
</li>
<li class="relative pl-4">
<div class="absolute -left-[0.8rem] top-1 w-3 h-3 bg-cyan-400 rounded-full"></div>
<p class="font-semibold text-white">2025年Q3政策与产业催化</p>
<p class="text-sm text-gray-300">“工业母机”税收优惠、高质量标准体系方案落地特斯拉Optimus供应链中国行提振板块情绪。</p>
</li>
<li class="relative pl-4">
<div class="absolute -left-[0.8rem] top-1 w-3 h-3 bg-cyan-400 rounded-full"></div>
<p class="font-semibold text-white">2025年Q4资本与企业动态</p>
<p class="text-sm text-gray-300">正裕工业设机器人子公司;机器人(300024)与五冶集团合资软银收购ABB机器人业务资本巨头看好赛道。</p>
</li>
</ul>
</article>
<div class="glow-divider"></div>
<!-- 2. Core Logic -->
<article>
<h3 class="font-bold text-xl text-cyan-400 mb-3">2. 核心逻辑与市场认知分析</h3>
<div class="space-y-4">
<div>
<p class="font-semibold text-white">核心驱动力:</p>
<ul class="list-disc list-inside text-gray-300 text-sm space-y-1 pl-4">
<li><strong class="text-cyan-400">国产替代深化 (根本逻辑):</strong> 2024年H1内资份额首次过半(50.1%),增速(21.3%)远超外资。背后是政策导向、成本优势和技术追赶的共振。</li>
<li><strong class="text-cyan-400">下游需求结构性爆发 (市场引擎):</strong> 摆脱对光伏/锂电的过度依赖家电、3C、半导体等新引擎增速超20%,向更广阔制造业渗透。</li>
<li><strong class="text-cyan-400">智能化与AI融合 (长期价值):</strong> 90%以上机器人仍是“无智能”模式。AI赋能如自主路径规划将解决非标复杂场景打开行业天花板是市场给予高估值的核心预期。</li>
</ul>
</div>
<div>
<p class="font-semibold text-white">预期差分析:</p>
<ul class="list-disc list-inside text-gray-300 text-sm space-y-1 pl-4">
<li><strong class="text-fuchsia-400">人形机器人Hype vs. 工业机器人Cash Cow:</strong> 市场易被Optimus点燃但短期业绩支撑和确定性价值来源于技术成熟、正加速国产替代的工业/协作机器人。</li>
<li><strong class="text-fuchsia-400">规模增长 vs. 盈利能力:</strong> 产量高增(+29.8%)掩盖了盈利挑战。新松路演揭示本体毛利率仅15%,行业处于“以价换量”阶段,是市场最易忽略的关键点。</li>
<li><strong class="text-fuchsia-400">“AI机器人”概念 vs. “AI赋能”现实:</strong> 真正的变革在于用AI软件(视觉、算法)赋能存量和增量硬件。投资逻辑应关注核心软硬件“赋能者”,其价值可能被低估。</li>
</ul>
</div>
</div>
</article>
<div class="glow-divider"></div>
<!-- 3. Catalysts & Path -->
<article>
<h3 class="font-bold text-xl text-cyan-400 mb-3">3. 关键催化剂与未来发展路径</h3>
<div class="grid md:grid-cols-2 gap-6">
<div>
<p class="font-semibold text-white mb-2">近期催化剂 (3-6个月)</p>
<ul class="list-decimal list-inside text-gray-300 text-sm space-y-1">
<li>国产核心零部件(大负载减速器)放量。</li>
<li>下游重点行业3C、汽车电子资本开支回暖。</li>
<li>国产龙头企业获得标志性海外大额订单。</li>
<li>协作机器人商业化加速,新品发布与市场推广。</li>
</ul>
</div>
<div>
<p class="font-semibold text-white mb-2">长期发展路径</p>
<ol class="list-decimal list-inside text-gray-300 text-sm space-y-1">
<li><strong class="text-white">第一阶段 (当前 - 2026):</strong> 国产化纵深推进,完成大负载替代和核心零部件自主可控。</li>
<li><strong class="text-white">第二阶段 (2026 - 2028):</strong> 智能化初步普及“AI+3D视觉”成为主流配置向初级智能设备转变。</li>
<li><strong class="text-white">第三阶段 (2028以后):</strong> 平台化与生态构建,形成“硬件标准化+服务定制化”的商业模式。</li>
</ol>
</div>
</div>
</article>
<div class="glow-divider"></div>
<!-- 4. Industry Chain -->
<article>
<h3 class="font-bold text-xl text-cyan-400 mb-3">4. 产业链与核心公司深度剖析</h3>
<div>
<p class="font-semibold text-white mb-2">产业链图谱:</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 text-sm">
<div class="glass-card rounded-xl p-4 border-l-4 border-cyan-500">
<p class="font-bold text-cyan-400">上游 (核心零部件与软件)</p>
<p><strong class="text-white">硬件:</strong> 减速器(绿的谐波, 双环传动), 伺服系统(汇川技术), 控制器(华中数控)</p>
<p><strong class="text-white">软件/AI:</strong> 视觉算法(梅卡曼德), AI芯片(地平线), 工业软件(中控技术)</p>
</div>
<div class="glass-card rounded-xl p-4 border-l-4 border-fuchsia-500">
<p class="font-bold text-fuchsia-400">中游 (本体制造商)</p>
<p><strong class="text-white">国产品牌:</strong> 埃斯顿, 汇川技术, 埃夫特, 新时达, 机器人(新松)</p>
<p><strong class="text-white">外资品牌:</strong> ABB, 库卡, 发那科, 安川</p>
</div>
<div class="glass-card rounded-xl p-4 border-l-4 border-yellow-500">
<p class="font-bold text-yellow-400">下游 (系统集成与应用)</p>
<p><strong class="text-white">集成商:</strong> 拓斯达, 亚威股份, 巨一科技</p>
<p><strong class="text-white">终端用户:</strong> 汽车, 3C电子, 锂电, 光伏, 家电等</p>
</div>
</div>
</div>
</article>
<div class="glow-divider"></div>
<!-- 5. Risks & 6. Conclusion -->
<div class="grid md:grid-cols-2 gap-8">
<article>
<h3 class="font-bold text-xl text-red-400 mb-3">5. 潜在风险与挑战</h3>
<ul class="list-disc list-inside text-gray-300 text-sm space-y-1">
<li><strong class="text-white">技术风险:</strong> 高端产品大负载机器人、RV减速器仍存技术瓶颈AI工业场景落地可靠性挑战大。</li>
<li><strong class="text-white">商业化风险:</strong> 价格战侵蚀利润本体毛利率低至15%);下游需求与宏观经济周期强相关。</li>
<li><strong class="text-white">政策与竞争风险:</strong> 国际贸易摩擦(如反倾销调查)加剧;外资品牌可能降价反击。</li>
<li><strong class="text-white">数据交叉验证风险:</strong> 产量增速(29.8%)与销量增速(4.5%)存在巨大差异,需对真实需求保持审慎。</li>
</ul>
</article>
<article>
<h3 class="font-bold text-xl text-green-400 mb-3">6. 综合结论与投资启示</h3>
<ul class="list-disc list-inside text-gray-300 text-sm space-y-1">
<li><strong class="text-white">阶段判断:</strong> 正从主题炒作与基本面改善并行,向基本面驱动为主过渡。</li>
<li><strong class="text-white">最具确定性的方向:</strong> 核心零部件,如精密减速器(绿的谐波、双环传动)和伺服系统(汇川技术)。</li>
<li><strong class="text-white">最具成长潜力的方向:</strong> 智能化赋能层如AI视觉软件梅卡曼德和底层AI芯片平台地平线</li>
<li><strong class="text-white">需重点跟踪的关键指标:</strong> 国产龙头毛利率变化、大负载机器人市占率、非汽车/3C领域新应用订单。</li>
</ul>
</article>
</div>
</main>
<!-- Supporting Data Tabs -->
<section x-data="{ tab: 'news' }" class="glass-card rounded-3xl p-6 md:p-8">
<h2 class="section-header text-2xl mb-4">数据与纪要</h2>
<div class="flex border-b border-gray-700">
<button @click="tab = 'news'" :class="{ 'active': tab === 'news' }" class="tab-button px-4 py-2 font-semibold">新闻洞察</button>
<button @click="tab = 'roadshow'" :class="{ 'active': tab === 'roadshow' }" class="tab-button px-4 py-2 font-semibold">路演纪要</button>
<button @click="tab = 'report'" :class="{ 'active': tab === 'report' }" class="tab-button px-4 py-2 font-semibold">研报精粹</button>
</div>
<div class="pt-4 text-sm">
<div x-show="tab === 'news'" x-transition>
<ul class="space-y-2 list-disc list-inside">
<li><strong>市场宏观:</strong> 2024年Q3销量7.5万台(同比+3.4%)市场弱复苏。中国2024年新装机量逆势增长5%全球份额升至54%在役存量突破200万台居全球首位。</li>
<li><strong>国产替代:</strong> 2024年H1内资份额首次超50%,埃斯顿(10.0%)、汇川(9.3%)等4家国产厂商跻身销量前十。</li>
<li><strong>下游需求:</strong> 需求分化明显,家电、电子制造、半导体行业高速增长(>20%),而光伏、锂电行业大幅下滑。</li>
<li><strong>技术动态:</strong> AI与机器人结合是趋势ABB已展示AI驱动工业场景。核心零部件如高柔性线缆技术壁垒高。</li>
<li><strong>贸易摩擦:</strong> 韩国对原产于中国的工业机器人启动反倾销调查,反映中国出口崛起引发的国际竞争。</li>
</ul>
</div>
<div x-show="tab === 'roadshow'" x-transition>
<ul class="space-y-2 list-disc list-inside">
<li><strong>新松(机器人):</strong> 战略聚焦工业机器人目标2-3年毛利率提升至25-30%(当前15%)。核心零部件减速器目标2024-25年实现国产替代。</li>
<li><strong>减速器专题:</strong> 减速器是机器人核心零件工业机器人每台平均使用6-7个。2023年工业机器人对减速器需求约70亿元。</li>
<li><strong>华泰机械周观点:</strong> 未来破局方向为国产替代深化(大负载攻坚)、场景创新(智能焊接)、海外市场拓展。重点关注埃斯顿、汇川技术。</li>
<li><strong>梅卡曼德:</strong> 当前工业机器人渗透率仅1-2%90%以上无智能。其提供“相机+AI软件”组合赋能传统机器人。</li>
<li><strong>产业链对比:</strong> 工业机器人核心零部件为伺服电机、减速器、编码器,结构相对人形机器人简单,主要应用场景为工业制造(汽车、3C)。</li>
</ul>
</div>
<div x-show="tab === 'report'" x-transition>
<ul class="space-y-2 list-disc list-inside">
<li><strong>三协电机:</strong> 产品获海康威视、法奥机器人等认可,在协作机器人领域已实现量产。募投项目扩产,强化机器人等高增长领域。</li>
<li><strong>地平线机器人:</strong> 愿景是成为机器人时代的"Wintel",提供算法+硬件基础设施。其技术可从智能驾驶迁移至工业等场景。</li>
<li><strong>鸣志电器:</strong> 机器人领域营收增长产品覆盖无刷电机、空心杯电机、减速机等核心模块。空心杯电机在机器人应用收入增长近200%,重点突破人形机器人领域。</li>
<li><strong>地瓜机器人(地平线分拆):</strong> 提供软硬一体、端云协同的机器人基础设施,构建类"Wintel"通用底座平台其旭日系列芯片支持Transformer等复杂模型。</li>
</ul>
</div>
</div>
</section>
<!-- Stock Analysis Table -->
<section class="glass-card rounded-3xl p-6 md:p-8">
<h2 class="section-header text-2xl mb-4">相关个股异动分析</h2>
<div class="overflow-x-auto">
<table class="table stock-table w-full">
<thead>
<tr>
<th>股票名称</th>
<th>代码</th>
<th>异动日期</th>
<th>涨幅</th>
<th class="w-2/3">上涨原因分析</th>
</tr>
</thead>
<tbody>
<tr>
<td>机器人</td>
<td><a href="https://valuefrontier.cn/company?scode=300024" target="_blank" class="text-cyan-400 hover:underline">300024</a></td>
<td>2025-10-09</td>
<td>5.13%</td>
<td class="text-xs whitespace-pre-wrap"><strong>直接催化:</strong> 与中国五冶集团合资成立注册资本1亿元的机器人公司战略布局实质性推进。
<strong>行业共振:</strong> 券商密集发布积极研报智元机器人获大额订单软银收购ABB机器人业务特斯拉Optimus进展顺利提振整个板块。
<strong>市场情绪:</strong> 市场开始重新交易机器人板块估值,板块效应明显。</td>
</tr>
<tr>
<td>建设工业</td>
<td><a href="https://valuefrontier.cn/company?scode=002265" target="_blank" class="text-cyan-400 hover:underline">002265</a></td>
<td>2025-06-24</td>
<td>6.75%</td>
<td class="text-xs whitespace-pre-wrap"><strong>直接催化:</strong> 机器人概念股集体走强京东618数据智能机器人销售额增3倍公司在军用机器人领域有技术布局。
<strong>核心驱动:</strong> 控股股东兵器装备集团正在进行重大重组,市场对重组后公司价值提升有极高期待。
<strong>板块带动:</strong> 军工板块整体走强,公司作为军工央企受益。</td>
</tr>
<tr>
<td>正裕工业</td>
<td><a href="https://valuefrontier.cn/company?scode=603089" target="_blank" class="text-cyan-400 hover:underline">603089</a></td>
<td>2025-09-08</td>
<td>7.43%</td>
<td class="text-xs whitespace-pre-wrap"><strong>核心事件:</strong> 公告设立控股子公司,切入具身智能赛道,专注机器人用柔性触觉传感技术,引入顶尖技术人才。
<strong>行业催化:</strong> AI机器人板块热度传导AI服务器算力需求拉动产业链具身智能政策与产业趋势推动。
<strong>基本面支撑:</strong> 汽车零部件(尤其是新能源)基本盘稳固,为新业务提供资金保障。</td>
</tr>
<tr>
<td>征和工业</td>
<td><a href="https://valuefrontier.cn/company?scode=003033" target="_blank" class="text-cyan-400 hover:underline">003033</a></td>
<td>2025-08-15</td>
<td>9.99%</td>
<td class="text-xs whitespace-pre-wrap"><strong>核心驱动:</strong> 受机器人概念热度提升7月工业机器人产量同比+24%)和工业母机政策利好(三部门发布税收优惠政策)双重驱动。
<strong>基本面:</strong> 公司被市场归为“小盘+低市盈率+机器人题材+一季报高增长”的概念股,符合市场热点。</td>
</tr>
<tr>
<td>威唐工业</td>
<td><a href="https://valuefrontier.cn/company?scode=300707" target="_blank" class="text-cyan-400 hover:underline">300707</a></td>
<td>2025-08-13</td>
<td>5.86%</td>
<td class="text-xs whitespace-pre-wrap"><strong>核心逻辑:</strong> 市场对其战略转型机器人业务的预期。公司作为特斯拉供应商,计划利用现有优势对接机器人结构件业务,并考虑布局核心零部件。
<strong>背景强化:</strong> 特斯拉产业链背景强化了市场预期,认为可能受益于特斯拉机器人业务发展。
<strong>财务支持:</strong> 公司拥有一定现金储备,为转型提供资金支持。</td>
</tr>
<tr>
<td>秦川机床</td>
<td><a href="https://valuefrontier.cn/company?scode=000837" target="_blank" class="text-cyan-400 hover:underline">000837</a></td>
<td>2025-09-02</td>
<td>10.02%</td>
<td class="text-xs whitespace-pre-wrap"><strong>双重催化:</strong> 国家级《工业母机高质量标准体系建设方案》落地公司为“工业母机创新联盟”理事长单位同时特斯拉Optimus供应链消息发酵公司确认滚珠/行星滚柱丝杠已小批量供货国内人形机器人整机厂。
<strong>稀缺标的:</strong> 兼具“工业母机+人形机器人丝杠”双重稀缺概念,政策与产业共振。</td>
</tr>
<tr>
<td>博众精工</td>
<td><a href="https://valuefrontier.cn/company?scode=688097" target="_blank" class="text-cyan-400 hover:underline">688097</a></td>
<td>2025-08-11</td>
<td>5.25%</td>
<td class="text-xs whitespace-pre-wrap"><strong>行业利好:</strong> 工业具身机器人规模化商用取得突破,行业首个规模化商业签单案例落地,标志着行业从技术验证迈向规模化商用新阶段,利好整个产业链。
<strong>资本关注:</strong> 资本市场对机器人产业链关注度提升,相关公司完成新一轮融资,强化投资热情。</td>
</tr>
<tr>
<td>众辰科技</td>
<td><a href="https://valuefrontier.cn/company?scode=603275" target="_blank" class="text-cyan-400 hover:underline">603275</a></td>
<td>2025-09-03</td>
<td>9.99%</td>
<td class="text-xs whitespace-pre-wrap"><strong>政策驱动:</strong> 《工业母机高质量标准体系建设方案》印发公司伺服驱动、PLC等产品直接用于高端工业母机升级。
<strong>业绩驱动:</strong> H1机器人业务收入占比升至18%毛利率34%,在手机器人专用伺服系统订单饱满。
<strong>资金面:</strong> 连续4日融资净买入杠杆资金提前锁仓。</td>
</tr>
<tr>
<td>博杰股份</td>
<td><a href="https://valuefrontier.cn/company?scode=002975" target="_blank" class="text-cyan-400 hover:underline">002975</a></td>
<td>2025-09-02</td>
<td>10.0%</td>
<td class="text-xs whitespace-pre-wrap"><strong>订单落地:</strong> 中报披露已获北美头部客户传闻为特斯拉人形机器人整机测试线小批量订单同时确认获得NV、谷歌、Meta的AI服务器测试订单。
<strong>政策催化:</strong> 《工业母机高质量标准体系建设方案》落地,公司自动化测试/装配设备属“卡脖子”环节,直接受益。
<strong>业绩共振:</strong> H1业绩高增政策、AI服务器、人形机器人订单形成共振。</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- Footer -->
<footer class="text-center text-xs text-gray-600 py-4">
<p>北京价值前沿科技有限公司 AI投研agent“价小前投研”</p>
<p>报告生成时间: 2024-05-21. 本报告内容由AI模型基于提供的数据自动生成仅供参考不构成任何投资建议。</p>
</footer>
</div>
<script>
// ECharts Initialization
document.addEventListener('DOMContentLoaded', function () {
// Chart 1: Market Core Data
var marketCoreChart = echarts.init(document.getElementById('marketCoreChart'));
var marketCoreOption = {
tooltip: { trigger: 'axis', backgroundColor: 'rgba(20, 20, 40, 0.8)', borderColor: '#00e5ff', textStyle: { color: '#e0e0e0' } },
legend: { data: ['中国市场增速', '全球市场增速'], textStyle: { color: '#e0e0e0' } },
grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true },
xAxis: { type: 'category', boundaryGap: false, data: ['2023', '2024 (est)'], axisLine: { lineStyle: { color: '#888' } } },
yAxis: { type: 'value', name: '增速 (%)', axisLine: { lineStyle: { color: '#888' } }, splitLine: { lineStyle: { color: 'rgba(255,255,255,0.1)' } } },
series: [
{
name: '中国市场增速', type: 'line', smooth: true,
itemStyle: { color: '#00e5ff' }, areaStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: 'rgba(0, 229, 255, 0.5)' }, { offset: 1, color: 'rgba(0, 229, 255, 0)' }]) },
data: [5, 5] // Data from news
},
{
name: '全球市场增速', type: 'line', smooth: true,
itemStyle: { color: '#fuchsia' }, areaStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: 'rgba(255, 0, 255, 0.5)' }, { offset: 1, color: 'rgba(255, 0, 255, 0)' }]) },
data: [-3, -3] // Data from news, assuming 2024 is also -3%
}
]
};
marketCoreChart.setOption(marketCoreOption);
// Chart 2: Downstream Demand
var downstreamDemandChart = echarts.init(document.getElementById('downstreamDemandChart'));
var downstreamDemandOption = {
tooltip: { trigger: 'item', formatter: '{a} <br/>{b}: {d}%', backgroundColor: 'rgba(20, 20, 40, 0.8)', borderColor: '#00e5ff', textStyle: { color: '#e0e0e0' } },
legend: { orient: 'vertical', left: 'left', textStyle: { color: '#e0e0e0' } },
series: [
{
name: '需求增速', type: 'pie', radius: ['40%', '70%'],
avoidLabelOverlap: false,
itemStyle: {
borderRadius: 10,
borderColor: 'rgba(10, 10, 26, 1)',
borderWidth: 2
},
label: { show: false, position: 'center' },
emphasis: { label: { show: true, fontSize: '20', fontWeight: 'bold' } },
labelLine: { show: false },
data: [
{ value: 40, name: '高速增长(>20%)', itemStyle: { color: '#00e5ff' } },
{ value: 35, name: '中速增长(10-20%)', itemStyle: { color: '#3366ff' } },
{ value: 25, name: '大幅下滑', itemStyle: { color: '#ff3366' } }
]
}
]
};
downstreamDemandChart.setOption(downstreamDemandOption);
window.addEventListener('resize', function() {
marketCoreChart.resize();
downstreamDemandChart.resize();
});
});
</script>
</body>
</html>