607 lines
35 KiB
HTML
607 lines
35 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>
|
||
|
||
<!-- Tailwind CSS & DaisyUI -->
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.10.1/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
|
||
<!-- Alpine.js -->
|
||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
||
|
||
<!-- ECharts -->
|
||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
|
||
|
||
<!-- Google Fonts -->
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||
|
||
<style>
|
||
:root {
|
||
--glow-color-1: rgba(0, 225, 255, 0.6);
|
||
--glow-color-2: rgba(255, 0, 225, 0.6);
|
||
--glow-color-3: rgba(138, 43, 226, 0.6);
|
||
}
|
||
|
||
body {
|
||
font-family: 'Inter', 'Noto Sans SC', sans-serif;
|
||
background-color: #020010;
|
||
color: #E0E0E0;
|
||
overflow-x: hidden;
|
||
position: relative;
|
||
}
|
||
|
||
.glass-card {
|
||
background: rgba(18, 18, 42, 0.5);
|
||
-webkit-backdrop-filter: blur(20px);
|
||
backdrop-filter: blur(20px);
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.glass-card:hover {
|
||
border-color: rgba(0, 225, 255, 0.3);
|
||
box-shadow: 0 0 20px rgba(0, 225, 255, 0.1);
|
||
}
|
||
|
||
.bento-grid {
|
||
display: grid;
|
||
gap: 1rem;
|
||
grid-template-columns: repeat(12, 1fr);
|
||
}
|
||
|
||
.bento-item {
|
||
border-radius: 1.5rem; /* 24px */
|
||
padding: 1.5rem;
|
||
}
|
||
|
||
.bento-item h3 {
|
||
font-size: 1.25rem;
|
||
font-weight: 600;
|
||
margin-bottom: 0.75rem;
|
||
color: #FFFFFF;
|
||
border-left: 3px solid var(--glow-color-1);
|
||
padding-left: 0.75rem;
|
||
}
|
||
|
||
.glow-background {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
z-index: -1;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.glow-blob {
|
||
position: absolute;
|
||
border-radius: 50%;
|
||
filter: blur(150px);
|
||
opacity: 0.3;
|
||
}
|
||
|
||
.glow-blob-1 {
|
||
width: 500px;
|
||
height: 500px;
|
||
background: var(--glow-color-1);
|
||
top: -150px;
|
||
left: -150px;
|
||
animation: move-blob-1 25s infinite alternate;
|
||
}
|
||
|
||
.glow-blob-2 {
|
||
width: 600px;
|
||
height: 600px;
|
||
background: var(--glow-color-2);
|
||
bottom: -200px;
|
||
right: -200px;
|
||
animation: move-blob-2 30s infinite alternate;
|
||
}
|
||
|
||
.glow-blob-3 {
|
||
width: 400px;
|
||
height: 400px;
|
||
background: var(--glow-color-3);
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
animation: move-blob-3 20s infinite alternate;
|
||
}
|
||
|
||
|
||
@keyframes move-blob-1 {
|
||
from { transform: translate(0, 0) scale(1); }
|
||
to { transform: translate(20vw, 30vh) scale(1.2); }
|
||
}
|
||
|
||
@keyframes move-blob-2 {
|
||
from { transform: translate(0, 0) scale(1); }
|
||
to { transform: translate(-30vw, -20vh) scale(0.8); }
|
||
}
|
||
|
||
@keyframes move-blob-3 {
|
||
from { transform: rotate(0deg) scale(1); }
|
||
to { transform: rotate(180deg) scale(1.3); }
|
||
}
|
||
|
||
.section-title {
|
||
font-size: 2rem;
|
||
font-weight: 700;
|
||
text-align: center;
|
||
margin-bottom: 2.5rem;
|
||
color: #fff;
|
||
position: relative;
|
||
padding-bottom: 1rem;
|
||
}
|
||
.section-title::after {
|
||
content: '';
|
||
position: absolute;
|
||
bottom: 0;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
width: 80px;
|
||
height: 3px;
|
||
background: linear-gradient(90deg, var(--glow-color-1), var(--glow-color-2));
|
||
border-radius: 2px;
|
||
}
|
||
</style>
|
||
</head>
|
||
|
||
<body class="min-h-screen">
|
||
<div class="glow-background">
|
||
<div class="glow-blob glow-blob-1"></div>
|
||
<div class="glow-blob glow-blob-2"></div>
|
||
<div class="glow-blob glow-blob-3"></div>
|
||
</div>
|
||
|
||
<div class="container mx-auto px-4 py-8 md:py-16">
|
||
<!-- Header -->
|
||
<header class="text-center mb-16">
|
||
<h1 class="text-4xl md:text-6xl font-bold mb-4 text-white tracking-wider">
|
||
机器人轻量化—碳纤维
|
||
</h1>
|
||
<h2 class="text-2xl md:text-3xl font-light text-cyan-300 mb-6">深度行研报告</h2>
|
||
<p class="text-sm text-gray-400 max-w-3xl mx-auto">
|
||
北京价值前沿科技有限公司 AI投研agent:“价小前投研” 进行投研呈现,本报告为AI合成数据,投资需谨慎。
|
||
</p>
|
||
</header>
|
||
|
||
<!-- Concept Insight Section -->
|
||
<section class="mb-16">
|
||
<h2 class="section-title">概念洞察 (Concept Insight)</h2>
|
||
<div class="bento-grid">
|
||
<div class="col-span-12 lg:col-span-8 glass-card bento-item">
|
||
<h3>核心观点摘要</h3>
|
||
<p class="text-gray-300">“机器人轻量化—碳纤维”概念正处于从 <strong class="text-cyan-400">主题炒作向早期基本面验证过渡</strong> 的关键阶段。其核心驱动力源于人形机器人产业化进程中对性能提升的 <strong class="text-cyan-400">刚性需求</strong>,而国产碳纤维成本的下降则为其商业化提供了可能。当前,市场潜力巨大,但仍面临 <strong class="text-amber-400">复合材料技术瓶颈</strong> 和 <strong class="text-amber-400">高昂成本</strong> 两大核心挑战,未来发展将取决于技术突破和规模化应用带来的成本下降速度。</p>
|
||
</div>
|
||
|
||
<div class="col-span-12 lg:col-span-4 glass-card bento-item flex flex-col justify-center">
|
||
<h3>核心驱动力</h3>
|
||
<ul class="space-y-2 text-gray-300 list-disc list-inside">
|
||
<li><strong class="text-white">性能驱动“刚需”:</strong>减重10kg带来30%速度提升。</li>
|
||
<li><strong class="text-white">成本驱动“可行性”:</strong>民用级价格降至83.75元/千克。</li>
|
||
<li><strong class="text-white">产业链驱动“本土化”:</strong>国产突破保障供应链安全。</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="col-span-12 glass-card bento-item">
|
||
<h3>概念事件与催化剂时间轴</h3>
|
||
<ul class="timeline timeline-snap-icon max-md:timeline-compact timeline-vertical">
|
||
<li>
|
||
<div class="timeline-middle text-cyan-400">
|
||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm.75-13a.75.75 0 00-1.5 0v5c0 .414.336.75.75.75h4a.75.75 0 000-1.5h-3.25V5z" clip-rule="evenodd" /></svg>
|
||
</div>
|
||
<div class="timeline-end md:text-end mb-10">
|
||
<time class="font-mono italic text-gray-400">至2024年初</time>
|
||
<div class="text-lg font-black text-white">技术验证期</div>
|
||
碳纤维被视为理想材料,在机械臂、外骨骼等高端场景探索。比强度为钢铁的43倍,密度仅为1/4。
|
||
</div>
|
||
<hr class="bg-cyan-400/50"/>
|
||
</li>
|
||
<li>
|
||
<hr class="bg-cyan-400/50"/>
|
||
<div class="timeline-middle text-cyan-400">
|
||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm.75-13a.75.75 0 00-1.5 0v5c0 .414.336.75.75.75h4a.75.75 0 000-1.5h-3.25V5z" clip-rule="evenodd" /></svg>
|
||
</div>
|
||
<div class="timeline-start mb-10">
|
||
<time class="font-mono italic text-gray-400">2022 - 2024年底</time>
|
||
<div class="text-lg font-black text-white">价格拐点</div>
|
||
产能扩张致价格下跌,主流民用级从200元/公斤降至100元以下。2024年12月起价格企稳于约83.5元/千克,打开商业化窗口。
|
||
</div>
|
||
<hr class="bg-cyan-400/50"/>
|
||
</li>
|
||
<li>
|
||
<hr class="bg-cyan-400/50"/>
|
||
<div class="timeline-middle text-cyan-400">
|
||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm.75-13a.75.75 0 00-1.5 0v5c0 .414.336.75.75.75h4a.75.75 0 000-1.5h-3.25V5z" clip-rule="evenodd" /></svg>
|
||
</div>
|
||
<div class="timeline-end md:text-end mb-10">
|
||
<time class="font-mono italic text-gray-400">2025年</time>
|
||
<div class="text-lg font-black text-white">产业预期升温</div>
|
||
政策驱动、订单落地(会通股份千台级订单)、资本布局(宁波华翔)及行业大会催化,市场关注度空前。
|
||
</div>
|
||
<hr/>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="col-span-12 lg:col-span-6 glass-card bento-item">
|
||
<h3>预期差分析:认知 VS 现实</h3>
|
||
<div class="space-y-4">
|
||
<div>
|
||
<p class="font-semibold text-white">应用广度 vs. 落地深度</p>
|
||
<p class="text-gray-400"><strong class="text-cyan-400">市场认知:</strong>将在机械臂、骨架等大规模应用,需求达“万吨级别”。</p>
|
||
<p class="text-gray-400"><strong class="text-amber-400">实际进展:</strong>商业化仅限于会通股份的“千台级”外壳订单,核心PEEK/CF复合材料技术仍处“实验室阶段”。</p>
|
||
</div>
|
||
<div>
|
||
<p class="font-semibold text-white">性能优势 vs. 成本劣势</p>
|
||
<p class="text-gray-400"><strong class="text-cyan-400">市场认知:</strong>聚焦于卓越的轻质高强性能。</p>
|
||
<p class="text-gray-400"><strong class="text-amber-400">被忽略的关键点:</strong>PEEK/CF复材单价(353-529元/kg)远高于钛合金(约214元/kg),成本是量产巨大障碍。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-span-12 lg:col-span-6 glass-card bento-item">
|
||
<h3>未来发展路径</h3>
|
||
<ul class="steps steps-vertical lg:steps-horizontal w-full">
|
||
<li class="step step-primary">
|
||
<div class="text-left p-2">
|
||
<strong class="text-white">初期 (当前-2026)</strong>
|
||
<p class="text-xs text-gray-400">外围应用渗透期:外壳、非承力结构件小批量应用。</p>
|
||
</div>
|
||
</li>
|
||
<li class="step step-primary">
|
||
<div class="text-left p-2">
|
||
<strong class="text-white">中期 (2026-2028)</strong>
|
||
<p class="text-xs text-gray-400">核心部件突破期:关节、灵巧手等在高端机型小规模商用。</p>
|
||
</div>
|
||
</li>
|
||
<li class="step">
|
||
<div class="text-left p-2">
|
||
<strong class="text-white">成熟期 (2028+)</strong>
|
||
<p class="text-xs text-gray-400">规模化应用期:成本下降,成为主流方案之一。</p>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Market Data Visualization Section -->
|
||
<section class="mb-16">
|
||
<h2 class="section-title">市场动态与数据</h2>
|
||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
|
||
<div class="glass-card rounded-3xl p-6 h-[400px]" id="price-chart"></div>
|
||
<div class="glass-card rounded-3xl p-6 h-[400px]" id="demand-chart"></div>
|
||
</div>
|
||
<div class="mt-8 grid grid-cols-1 md:grid-cols-3 gap-4 text-center">
|
||
<div class="glass-card p-6 rounded-3xl">
|
||
<div class="stat-title text-gray-400">单机碳纤维用量</div>
|
||
<div class="stat-value text-cyan-300">2.4 ~ 8 kg</div>
|
||
<div class="stat-desc text-gray-500">不同研报口径存在差异</div>
|
||
</div>
|
||
<div class="glass-card p-6 rounded-3xl">
|
||
<div class="stat-title text-gray-400">PEEK/CF复材BOM成本</div>
|
||
<div class="stat-value text-purple-300">~ 3,000 元</div>
|
||
<div class="stat-desc text-gray-500">约占整机成本1.5%</div>
|
||
</div>
|
||
<div class="glass-card p-6 rounded-3xl">
|
||
<div class="stat-title text-gray-400">核心替代威胁</div>
|
||
<div class="stat-value text-amber-300">镁合金</div>
|
||
<div class="stat-desc text-gray-500">成本及散热优势显著</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Supporting Evidence Section -->
|
||
<section class="mb-16" x-data="{ tab: 'news' }">
|
||
<h2 class="section-title">多维信息源交叉验证</h2>
|
||
<div role="tablist" class="tabs tabs-boxed tabs-lg bg-white/10 mb-8 max-w-2xl mx-auto">
|
||
<a role="tab" class="tab" :class="{ 'tab-active': tab === 'news' }" @click="tab = 'news'">新闻数据</a>
|
||
<a role="tab" class="tab" :class="{ 'tab-active': tab === 'roadshow' }" @click="tab = 'roadshow'">路演纪要</a>
|
||
<a role="tab" class="tab" :class="{ 'tab-active': tab === 'research' }" @click="tab = 'research'">研报精粹</a>
|
||
</div>
|
||
|
||
<div class="p-4">
|
||
<div x-show="tab === 'news'" x-transition>
|
||
<div class="glass-card rounded-3xl p-8 space-y-4">
|
||
<h3 class="text-2xl font-bold text-white mb-4">新闻数据核心观点</h3>
|
||
<p><strong>核心材料定位:</strong>碳纤维及其复合材料是实现人形机器人轻量化的关键材料,用于减轻自重,提升续航、灵活性和负载。</p>
|
||
<p><strong>具体应用:</strong>广泛探讨应用于关节、机械臂、滚柱丝杠、外壳及结构件。PEEK-碳纤维复合(CF/PEEK)和碳纤维增强尼龙(PA)是两大主要技术路径。</p>
|
||
<ul class="list-disc list-inside space-y-2 pl-4 text-gray-300">
|
||
<li><strong>CF/PEEK:</strong>有望在机身重要关节率先渗透,解决塑料脆性问题,提升机械强度和耐磨性。</li>
|
||
<li><strong>碳纤维增强尼龙:</strong>用于手臂外壳、躯干外壳等,兼具高刚性与轻量化。</li>
|
||
</ul>
|
||
<p><strong>企业布局与订单:</strong>
|
||
<span class="badge badge-info mr-2">会通股份</span>提供碳纤维增强尼龙材料,已获国内主机厂千台级订单。
|
||
<span class="badge badge-primary mr-2">精工科技</span>第二代外骨骼机器人采用碳纤维减重30%,并探索CF/PEEK新应用。
|
||
<span class="badge badge-secondary mr-2">明新旭腾</span>成立子公司进军机器人轻量化。
|
||
</p>
|
||
<p><strong>市场趋势:</strong>分析预测,随着人形机器人产量放量,将显著拉动碳纤维材料的消费需求,机械臂等部件需求有望达万吨级别。</p>
|
||
</div>
|
||
</div>
|
||
<div x-show="tab === 'roadshow'" x-transition>
|
||
<div class="glass-card rounded-3xl p-8 space-y-4">
|
||
<h3 class="text-2xl font-bold text-white mb-4">路演纪要核心观点</h3>
|
||
<p><strong>核心定位与优势:</strong>碳纤维是轻量化核心材料,比铝轻30%、钢轻70%,可提升运动精度。主要用于骨架、关节承重结构、机械臂等。</p>
|
||
<p><strong>用量与需求预测:</strong>单机用量约 <strong class="text-cyan-400">7-10kg</strong>。预测2028年全球需求约3000吨;若渗透率完全释放,国内需求或达 <strong class="text-cyan-400">10万吨</strong>以上。</p>
|
||
<p><strong>成本与价格:</strong>PEEK/CF复合材料BOM成本约 <strong class="text-amber-400">3000元/台</strong>。国内民用碳纤维价格经历下跌后于2024年底企稳,均价约83.5元/千克。</p>
|
||
<p><strong>技术瓶颈:</strong>
|
||
<ul class="list-disc list-inside space-y-2 pl-4 text-gray-300">
|
||
<li><strong>复合技术:</strong>PEEK-CF复合工艺难度高,国外技术封锁,国内产业化待突破。</li>
|
||
<li><strong>连接技术:</strong>碳纤维-金属接头强度、耐久性是挑战,目前仅原型机使用。</li>
|
||
</ul>
|
||
</p>
|
||
<p><strong>替代竞争:</strong>与镁合金相比,碳纤维“更轻但成本高、脆性大”,存在被技术替代的风险。</p>
|
||
</div>
|
||
</div>
|
||
<div x-show="tab === 'research'" x-transition>
|
||
<div class="glass-card rounded-3xl p-8 space-y-4">
|
||
<h3 class="text-2xl font-bold text-white mb-4">研报精粹核心观点</h3>
|
||
<p><strong>轻量化必要性:</strong>人形机器人轻量化是核心趋势,特斯拉Optimus Gen2减重10kg,速度提升30%。轻量化可提高机动性、降能耗、增寿命。</p>
|
||
<p><strong>性能优势:</strong>碳纤维凭借轻质高强(比强度是钢的43倍)、精度提升、能耗降低等特性成为核心材料。国产化降价推动其发展。</p>
|
||
<p><strong>CF/PEEK复合材料:</strong>
|
||
<ul class="list-disc list-inside space-y-2 pl-4 text-gray-300">
|
||
<li><strong>性能卓越:</strong>解决PEEK低温脆性问题,强度、模量优异,比强度远高于镁/铝合金。</li>
|
||
<li><strong>应用场景:</strong>谐波减速器(疲劳寿命是金属19倍)、肢体部件、六维力传感器等。</li>
|
||
</ul>
|
||
</p>
|
||
<p><strong>市场与成本:</strong>单机用量估算为 <strong class="text-cyan-400">2.4kg-8kg</strong> 不等。CF/PEEK复合材料价格约 <strong class="text-amber-400">353-529元/kg</strong>,高于钛合金,成本是挑战。</p>
|
||
<p><strong>生产工艺:</strong>国内熔融浸渍等连续CF/PEEK预浸料技术可能仍处实验室阶段,未大规模量产。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Risks Section -->
|
||
<section class="mb-16">
|
||
<h2 class="section-title">潜在风险与挑战</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||
<div class="glass-card p-6 rounded-3xl border-l-4 border-amber-500">
|
||
<h4 class="font-bold text-lg text-amber-300 mb-2">技术风险</h4>
|
||
<ul class="list-disc list-inside text-gray-300 space-y-1">
|
||
<li>复合工艺瓶颈:PEEK-CF复合工艺难度高,国内产业化进度不及预期。</li>
|
||
<li>连接技术难题:碳纤维-金属接头强度与耐久性待突破。</li>
|
||
</ul>
|
||
</div>
|
||
<div class="glass-card p-6 rounded-3xl border-l-4 border-red-500">
|
||
<h4 class="font-bold text-lg text-red-300 mb-2">商业化风险</h4>
|
||
<ul class="list-disc list-inside text-gray-300 space-y-1">
|
||
<li>成本高昂:CF/PEEK复材价格远高于钛合金、镁合金,降本压力巨大。</li>
|
||
<li>市场接受度:终端厂商可能因成本、加工工艺等选择其他材料。</li>
|
||
</ul>
|
||
</div>
|
||
<div class="glass-card p-6 rounded-3xl border-l-4 border-purple-500">
|
||
<h4 class="font-bold text-lg text-purple-300 mb-2">竞争与信息风险</h4>
|
||
<ul class="list-disc list-inside text-gray-300 space-y-1">
|
||
<li>替代材料竞争:镁合金、高性能塑料等是直接竞争对手。</li>
|
||
<li>信息交叉验证风险:各信息源对用量、需求预测差异巨大(2-3倍),存在高估风险。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Core Companies Section -->
|
||
<section>
|
||
<h2 class="section-title">产业链核心标的</h2>
|
||
|
||
<div class="mb-12">
|
||
<h3 class="text-xl font-semibold mb-4 text-center text-white">核心产业链公司</h3>
|
||
<div class="overflow-x-auto glass-card rounded-3xl p-4">
|
||
<table class="table table-zebra w-full">
|
||
<thead class="text-white">
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>核心逻辑</th>
|
||
<th>标签</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>吉林化纤</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=000420" target="_blank" class="link link-hover text-cyan-400">000420</a></td>
|
||
<td>全国最大的碳纤维原丝、碳丝生产基地;碳纤维产业链产能23万吨/年。</td>
|
||
<td><div class="badge badge-primary">碳纤维</div></td>
|
||
</tr>
|
||
<tr>
|
||
<td>吉林碳谷(北交所)</td>
|
||
<td>-</td>
|
||
<td>年产15万吨碳纤维原丝项目,已完成超80%建设。</td>
|
||
<td><div class="badge badge-primary">碳纤维</div></td>
|
||
</tr>
|
||
<tr>
|
||
<td>中复神鹰</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=688295" target="_blank" class="link link-hover text-cyan-400">688295</a></td>
|
||
<td>2023年总产能2.85万吨,产能规模世界前三,国内产量第一。</td>
|
||
<td><div class="badge badge-primary">碳纤维</div></td>
|
||
</tr>
|
||
<tr>
|
||
<td>光威复材</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300699" target="_blank" class="link link-hover text-cyan-400">300699</a></td>
|
||
<td>碳纤维总产能将达到近8000吨/年。</td>
|
||
<td><div class="badge badge-primary">碳纤维</div></td>
|
||
</tr>
|
||
<tr>
|
||
<td>中简科技</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300777" target="_blank" class="link link-hover text-cyan-400">300777</a></td>
|
||
<td>按12K口径计算,已建成的产能约为2800吨/年。</td>
|
||
<td><div class="badge badge-primary">碳纤维</div></td>
|
||
</tr>
|
||
<tr>
|
||
<td>中研股份</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=688716" target="_blank" class="link link-hover text-cyan-400">688716</a></td>
|
||
<td>上海碳纤维聚醚醚酮复合材料研发中心项目。</td>
|
||
<td><div class="badge badge-accent">复合材料</div></td>
|
||
</tr>
|
||
<tr>
|
||
<td>宏达高科</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002144" target="_blank" class="link link-hover text-cyan-400">002144</a></td>
|
||
<td>拟建设高端功能性面料和碳纤维复合材料智能工厂。</td>
|
||
<td><div class="badge badge-accent">复合材料</div></td>
|
||
</tr>
|
||
<tr>
|
||
<td>精工科技</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002006" target="_blank" class="link link-hover text-cyan-400">002006</a></td>
|
||
<td>碳纤维装备国内龙头,市占率超50%。即将发布基于碳纤维的AI外骨骼机器人。</td>
|
||
<td><div class="badge badge-secondary">设备</div> <div class="badge badge-info">应用</div></td>
|
||
</tr>
|
||
<tr>
|
||
<td>纳克诺尔</td>
|
||
<td>-</td>
|
||
<td>研制的碳纤维预浸布生产线已交付并形成收入。</td>
|
||
<td><div class="badge badge-secondary">设备</div></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-6 text-center text-white">相关概念涨幅异动分析</h3>
|
||
<div class="space-y-4">
|
||
<div class="collapse collapse-plus glass-card">
|
||
<input type="radio" name="rise-accordion" checked="checked" />
|
||
<div class="collapse-title text-lg font-medium text-white">
|
||
会通股份 (688219) - 碳纤维增强尼龙订单落地
|
||
</div>
|
||
<div class="collapse-content">
|
||
<p class="text-gray-300"><strong>核心催化剂:</strong>机器人轻量化材料业务前景受关注。其碳纤维增强尼龙材料已通过国内某主机厂量产验证,获得<strong class="text-cyan-400">千台级别订单</strong>,单机价值量1500-2000元。同时,其改性PEEK材料也开始导入下游谐波减速器企业。公司从概念走向了实际订单,确定性高。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus glass-card">
|
||
<input type="radio" name="rise-accordion" />
|
||
<div class="collapse-title text-lg font-medium text-white">
|
||
宁波华翔 (002048) - PEEK/CF专利锁定
|
||
</div>
|
||
<div class="collapse-content">
|
||
<p class="text-gray-300"><strong>核心催化剂:</strong>公司用3000万元锁定吉林大学PEEK仿生关节<strong class="text-cyan-400">20年专利</strong>,覆盖“碳纤维/PEEK复合结构件”工业化量产,卡位国内稀缺批量成型工艺。同时新设1亿元“新三电”平台,可复用车规产线,形成“材料-结构件-关节-客户”闭环。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus glass-card">
|
||
<input type="radio" name="rise-accordion" />
|
||
<div class="collapse-title text-lg font-medium text-white">
|
||
永茂泰(605208) / 宝武镁业(002182) / 星源卓镁(301398) - 镁合金替代路线
|
||
</div>
|
||
<div class="collapse-content">
|
||
<p class="text-gray-300"><strong>核心逻辑:</strong>这组公司的活跃表明市场对轻量化技术路线存在分歧。镁合金凭借其<strong class="text-amber-400">成本优势</strong>(镁/铝价格比降至0.88,极具性价比)和良好的散热、减震性能,成为碳纤维的有力竞争者。宝武镁业与埃斯顿合作的机器人已实现减重11%、能耗降低10%,验证了镁合金路线的可行性,是对碳纤维“唯一性”的证伪。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
</div>
|
||
|
||
<script>
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
// Price Chart
|
||
var priceChartDom = document.getElementById('price-chart');
|
||
if(priceChartDom) {
|
||
var priceChart = echarts.init(priceChartDom, 'dark');
|
||
var priceOption = {
|
||
backgroundColor: 'transparent',
|
||
title: {
|
||
text: '国内碳纤维价格趋势 (元/公斤)',
|
||
left: 'center',
|
||
textStyle: { color: '#E0E0E0', fontSize: 16 }
|
||
},
|
||
tooltip: { trigger: 'axis' },
|
||
legend: {
|
||
data: ['小丝束 (T700/T800)', '大丝束'],
|
||
bottom: 10,
|
||
textStyle: { color: '#ccc' }
|
||
},
|
||
grid: { left: '3%', right: '4%', bottom: '15%', containLabel: true },
|
||
xAxis: {
|
||
type: 'category',
|
||
boundaryGap: false,
|
||
data: ['高点 (至2022)', '当前 (2025初)'],
|
||
axisLine: { lineStyle: { color: 'rgba(255,255,255,0.3)' } }
|
||
},
|
||
yAxis: {
|
||
type: 'value',
|
||
axisLabel: { formatter: '{value}' },
|
||
splitLine: { lineStyle: { color: 'rgba(255,255,255,0.1)' } },
|
||
axisLine: { lineStyle: { color: 'rgba(255,255,255,0.3)' } }
|
||
},
|
||
series: [
|
||
{
|
||
name: '小丝束 (T700/T800)',
|
||
type: 'line',
|
||
smooth: true,
|
||
data: [200, 100],
|
||
itemStyle: { color: 'rgba(0, 225, 255, 1)' }
|
||
},
|
||
{
|
||
name: '大丝束',
|
||
type: 'line',
|
||
smooth: true,
|
||
data: [120, 60],
|
||
itemStyle: { color: 'rgba(138, 43, 226, 1)' }
|
||
}
|
||
]
|
||
};
|
||
priceChart.setOption(priceOption);
|
||
}
|
||
|
||
// Demand Chart
|
||
var demandChartDom = document.getElementById('demand-chart');
|
||
if(demandChartDom) {
|
||
var demandChart = echarts.init(demandChartDom, 'dark');
|
||
var demandOption = {
|
||
backgroundColor: 'transparent',
|
||
title: {
|
||
text: '人形机器人对应碳纤维需求预测 (吨)',
|
||
left: 'center',
|
||
textStyle: { color: '#E0E0E0', fontSize: 16 }
|
||
},
|
||
tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } },
|
||
grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true },
|
||
xAxis: {
|
||
type: 'value',
|
||
boundaryGap: [0, 0.01],
|
||
axisLine: { lineStyle: { color: 'rgba(255,255,255,0.3)' } },
|
||
splitLine: { show: false }
|
||
},
|
||
yAxis: {
|
||
type: 'category',
|
||
data: ['2028年全球 (69万台)', '2025年假设 (100万台)', '国内远期潜在'],
|
||
axisLine: { lineStyle: { color: 'rgba(255,255,255,0.3)' } }
|
||
},
|
||
series: [
|
||
{
|
||
name: '需求量',
|
||
type: 'bar',
|
||
data: [3000, 8000, 100000],
|
||
itemStyle: {
|
||
color: new echarts.graphic.LinearGradient(1, 0, 0, 0, [
|
||
{ offset: 0, color: 'rgba(255, 0, 225, 0.8)' },
|
||
{ offset: 1, color: 'rgba(0, 225, 255, 0.8)' }
|
||
])
|
||
},
|
||
label: {
|
||
show: true,
|
||
position: 'right',
|
||
color: '#fff'
|
||
}
|
||
}
|
||
]
|
||
};
|
||
demandChart.setOption(demandOption);
|
||
}
|
||
|
||
window.addEventListener('resize', function() {
|
||
priceChart.resize();
|
||
demandChart.resize();
|
||
});
|
||
});
|
||
</script>
|
||
|
||
</body>
|
||
</html> |