Files
echart/research/Ai_industry_research_qwen.html
simonandClaude Opus 4.7 080d6da44c refactor: 前端库清理、页面废弃、DB→API 数据源替换
- 删除重复库文件:lib/DataTables-2/、lib/echarts/、libai/、css/fontawesome/ 等 179 个冗余文件
- 下载外部 CDN 到本地:Mermaid、AOS、Google Fonts(Inter/Noto Serif SC/Noto Sans SC)
- 所有第三方库统一到 lib/,按库名-版本号命名
- 更新 8 个 research HTML 文件引用路径

- stock_his_pro → /api/stockbasic/(getStockHist、recentPrice)
- stock_all_pro → /api/stockinfo/(tscodeToName)
- index_hist_pro → /api/indexDatas/(getIndexData)
- 新增 callDoorcomeApi() 共享函数
- 被替换表的 DB 查询代码完全删除,无回退

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-07 15:50:39 +08:00

1004 lines
46 KiB
HTML
Raw Permalink 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI产业链全景分析:市场规模、产品形态与供应链格局</title>
<link href="/lib/css/fontawesome-6.4.all.min.css" rel="stylesheet">
<link href="/lib/css/aos-2.3.1.css" rel="stylesheet">
<script src="/lib/js/chartjs-3.9.js"></script>
<script src="/lib/js/aos-2.3.1.js"></script>
<style>
:root {
--primary-color: #2563eb;
--secondary-color: #10b981;
--accent-color: #f59e0b;
--background-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--text-color: #1f2937;
--text-light: #6b7280;
--bg-light: #f8fafc;
--border-color: #e5e7eb;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background: var(--bg-light);
}
.hero {
background: var(--background-gradient);
color: white;
padding: 4rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
opacity: 0.3;
}
.hero-content {
position: relative;
z-index: 1;
max-width: 1200px;
margin: 0 auto;
}
.hero h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero p {
font-size: 1.2rem;
opacity: 0.9;
max-width: 800px;
margin: 0 auto;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.nav-bar {
background: white;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 100;
}
.nav-content {
display: flex;
justify-content: center;
padding: 1rem;
flex-wrap: wrap;
gap: 2rem;
}
.nav-link {
color: var(--text-color);
text-decoration: none;
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 25px;
transition: all 0.3s ease;
}
.nav-link:hover {
background: var(--primary-color);
color: white;
transform: translateY(-2px);
}
.section {
padding: 4rem 0;
}
.section-title {
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 2rem;
text-align: center;
position: relative;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: var(--secondary-color);
border-radius: 2px;
}
.card {
background: white;
border-radius: 15px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
margin-bottom: 2rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
}
.stat-card {
background: white;
padding: 1.5rem;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
border-left: 4px solid var(--primary-color);
}
.stat-number {
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.stat-label {
color: var(--text-light);
font-size: 0.9rem;
}
.chart-container {
background: white;
border-radius: 15px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
margin: 2rem 0;
}
.chart-wrapper {
position: relative;
height: 400px;
}
.table-container {
overflow-x: auto;
margin: 2rem 0;
}
table {
width: 100%;
border-collapse: collapse;
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
th, td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid var(--border-color);
}
th {
background: var(--primary-color);
color: white;
font-weight: 600;
}
tr:hover {
background: var(--bg-light);
}
.highlight {
background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color) 100%);
background-repeat: no-repeat;
background-size: 100% 0.2em;
background-position: 0 88%;
padding: 0 0.2rem;
}
.risk-warning {
background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
border: 1px solid #fca5a5;
border-radius: 10px;
padding: 1.5rem;
margin: 2rem 0;
}
.risk-warning h4 {
color: #dc2626;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.investment-opportunity {
background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
border: 1px solid #86efac;
border-radius: 10px;
padding: 1.5rem;
margin: 2rem 0;
}
.investment-opportunity h4 {
color: #166534;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.references {
background: white;
padding: 2rem;
border-radius: 15px;
margin-top: 3rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.references h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}
.references ol {
padding-left: 1.5rem;
}
.references li {
margin-bottom: 0.5rem;
}
.references a {
color: var(--primary-color);
text-decoration: none;
}
.references a:hover {
text-decoration: underline;
}
.footer {
background: var(--text-color);
color: white;
text-align: center;
padding: 2rem;
margin-top: 4rem;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.nav-content {
flex-direction: column;
align-items: center;
gap: 1rem;
}
.grid {
grid-template-columns: 1fr;
}
.stats-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}
.anchor-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
}
.anchor-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="hero">
<div class="hero-content">
<h1 data-aos="fade-up">AI产业链全景分析</h1>
<p data-aos="fade-up" data-aos-delay="200">市场规模、产品形态与供应链格局深度解析</p>
</div>
</div>
<nav class="nav-bar">
<div class="nav-content">
<a href="#market-size" class="nav-link">市场规模</a>
<a href="#product-forms" class="nav-link">产品形态</a>
<a href="#supply-chain" class="nav-link">供应链分析</a>
<a href="#key-companies" class="nav-link">龙头企业</a>
<a href="#trends" class="nav-link">发展趋势</a>
<a href="#investment" class="nav-link">投资分析</a>
<a href="#comparison" class="nav-link">竞争力对比</a>
</div>
</nav>
<div class="container">
<section id="market-size" class="section">
<h2 class="section-title" data-aos="fade-up">AI产业链市场规模与增长趋势</h2>
<div class="stats-grid" data-aos="fade-up" data-aos-delay="200">
<div class="stat-card">
<div class="stat-number">8159亿美元</div>
<div class="stat-label">2028年全球AI市场规模预测</div>
</div>
<div class="stat-card">
<div class="stat-number">32.9%</div>
<div class="stat-label">全球年均复合增长率</div>
</div>
<div class="stat-card">
<div class="stat-number">7000亿元</div>
<div class="stat-label">2024年中国AI市场规模</div>
</div>
<div class="stat-card">
<div class="stat-number">2万亿</div>
<div class="stat-label">2030年中国AI市场规模预测</div>
</div>
</div>
<div class="chart-container" data-aos="fade-up" data-aos-delay="400">
<h3>全球AI市场规模增长趋势</h3>
<div class="chart-wrapper">
<canvas id="marketGrowthChart"></canvas>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="600">
<h3>市场规模分析要点</h3>
<p>人工智能产业正处于第三次技术浪潮的爆发期,全球市场规模持续扩大。<span class="highlight">2018年全球AI产业规模为555.7亿美元,到2022年增长至1630.2亿美元,年均复合增长率高达30.9%</span> <a href="#ref1" class="anchor-link">[1]</a>。IDC预测,全球AI投资规模将在2028年达到8159亿美元,五年复合增长率达32.9%。</p>
<p>中国市场增速更为迅猛。<span class="highlight">2024年中国AI市场规模突破7000亿元,预计2030年将超过2万亿元</span>,五年复合增长率稳定在25%以上。中国AI市场规模可分为核心产业规模和总市场规模两个维度,其中核心产业规模指芯片、算法、服务器等基础环节,2025年目标4918亿元。</p>
</div>
<div class="chart-container" data-aos="fade-up" data-aos-delay="800">
<h3>生成式AI市场规模预测</h3>
<div class="chart-wrapper">
<canvas id="generativeAIChart"></canvas>
</div>
</div>
</section>
<section id="product-forms" class="section">
<h2 class="section-title" data-aos="fade-up">AI产业链未来产品形态与市场潜力</h2>
<div class="grid">
<div class="card" data-aos="fade-up">
<h3><i class="fas fa-mobile-alt" style="color: var(--primary-color); margin-right: 0.5rem;"></i>生成式AI硬件化终端</h3>
<p>随着大模型技术的成熟,生成式AI将从云端向终端迁移,催生AI智能手机、AI可穿戴设备等新型产品。</p>
<div class="investment-opportunity">
<h4><i class="fas fa-chart-line"></i>市场前景</h4>
<p>Counterpoint预测,2024年将是生成式AI智能手机的关键一年,出货量预计超过1亿部;到2027年,生成式AI智能手机出货量将达到5.22亿台,占据40%的市场份额,出货量复合年增长率为83%。</p>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="200">
<h3><i class="fas fa-heartbeat" style="color: var(--secondary-color); margin-right: 0.5rem;"></i>AI医疗设备</h3>
<p>AI技术与医疗设备的融合将加速医疗智能化进程,2025年全球AI医疗市场规模预计将达到361亿美元。</p>
<div class="investment-opportunity">
<h4><i class="fas fa-chart-line"></i>应用领域</h4>
<p>主要应用于医学影像分析、辅助诊断、手术机器人等领域。心血管外科AI应用渗透率提升最快,手术机器人、便携式诊断设备等细分产品需求旺盛。</p>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="400">
<h3><i class="fas fa-robot" style="color: var(--accent-color); margin-right: 0.5rem;"></i>协作机器人</h3>
<p>协作机器人将从工业场景向服务领域扩展,成为AI硬件产业链的重要增长点。</p>
<div class="investment-opportunity">
<h4><i class="fas fa-chart-line"></i>增长预测</h4>
<p>根据Interact Analysis数据,协作机器人销量年均复合增速达70%。预计到2025年全球销量将从2018年的5.8万台快速增至70万台。</p>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="600">
<h3><i class="fas fa-microchip" style="color: var(--primary-color); margin-right: 0.5rem;"></i>AI边缘计算设备</h3>
<p>边缘计算与AI技术的结合将催生低功耗、高响应速度的边缘AI设备。</p>
<div class="investment-opportunity">
<h4><i class="fas fa-chart-line"></i>技术优势</h4>
<p>这类设备在工业、农业、智慧城市等领域具有广阔应用前景。华为Atlas、阿里云IoT等边缘计算设备已开始在AI场景中部署。</p>
</div>
</div>
</div>
<div class="table-container" data-aos="fade-up" data-aos-delay="800">
<h3>产品形态市场规模预测对比</h3>
<table>
<thead>
<tr>
<th>产品形态</th>
<th>全球市场规模预测(2025-2030)</th>
<th>中国市场规模预测(2025-2030)</th>
<th>增长驱动因素</th>
</tr>
</thead>
<tbody>
<tr>
<td>生成式AI智能手机</td>
<td>2025年1亿部→2030年5.22亿部<br>(CAGR 83%)</td>
<td>2025年预计1.5亿部→2030年2.2亿部<br>(CAGR 65%)</td>
<td>大模型轻量化<br>5G/6G网络支持<br>用户需求增长</td>
</tr>
<tr>
<td>AI医疗设备</td>
<td>2025年361亿美元→2030年900亿美元<br>(CAGR 20%)</td>
<td>2025年预计150亿美元→2030年300亿美元<br>(CAGR 25%)</td>
<td>医疗影像分析<br>手术机器人<br>远程诊疗需求</td>
</tr>
<tr>
<td>协作机器人</td>
<td>2025年70万台→2030年200万台<br>(CAGR 28%)</td>
<td>2025年预计20万台→2030年60万台<br>(CAGR 35%)</td>
<td>人机协作需求<br>制造业自动化<br>服务领域扩展</td>
</tr>
<tr>
<td>AI边缘计算设备</td>
<td>2025年500亿美元→2030年1500亿美元<br>(CAGR 30%)</td>
<td>2025年预计150亿美元→2030年400亿美元<br>(CAGR 35%)</td>
<td>算力下沉需求<br>物联网设备增长<br>实时数据处理</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="supply-chain" class="section">
<h2 class="section-title" data-aos="fade-up">AI硬件产业链结构与主要供应链</h2>
<div class="card" data-aos="fade-up">
<h3>产业链三层结构</h3>
<div class="grid" style="margin-top: 2rem;">
<div style="text-align: center; padding: 2rem; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border-radius: 10px;">
<i class="fas fa-microchip" style="font-size: 3rem; margin-bottom: 1rem;"></i>
<h4>上游基础层</h4>
<p>芯片、传感器、存储设备</p>
</div>
<div style="text-align: center; padding: 2rem; background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); color: white; border-radius: 10px;">
<i class="fas fa-cogs" style="font-size: 3rem; margin-bottom: 1rem;"></i>
<h4>中游技术层</h4>
<p>算法框架、AI加速卡、边缘计算设备</p>
</div>
<div style="text-align: center; padding: 2rem; background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); color: white; border-radius: 10px;">
<i class="fas fa-rocket" style="font-size: 3rem; margin-bottom: 1rem;"></i>
<h4>下游应用层</h4>
<p>消费电子、自动驾驶、工业智能</p>
</div>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="200">
<h3>芯片供应链分析</h3>
<p>芯片供应链分为GPU、FPGA、ASIC和类脑芯片四大类。<span class="highlight">全球市场由英伟达主导,占GPU市场80%以上份额</span> <a href="#ref4" class="anchor-link">[4]</a>;中国市场则由华为昇腾、寒武纪等企业引领。华为昇腾910B推理成本仅为英伟达H100的十分之一,2025年市场份额达28%,在云端训练芯片市场占据近一半份额。</p>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="400">
<h3>传感器供应链分析</h3>
<p>主要包括MEMS传感器、激光雷达和摄像头模组等。歌尔微电子(歌尔股份子公司)为国内最大MEMS传感器供应商,<span class="highlight">2024年营收67.26亿元,来自苹果占比57.45%</span> <a href="#ref8" class="anchor-link">[8]</a>,但依赖英飞凌芯片。</p>
</div>
<div class="chart-container" data-aos="fade-up" data-aos-delay="600">
<h3>AI芯片市场份额分布</h3>
<div class="chart-wrapper">
<canvas id="chipMarketShareChart"></canvas>
</div>
</div>
</section>
<section id="key-companies" class="section">
<h2 class="section-title" data-aos="fade-up">各段供应链的主要上市公司及龙头企业分析</h2>
<div class="grid">
<div class="card" data-aos="fade-up">
<h3><i class="fas fa-microchip" style="color: var(--primary-color);"></i>芯片供应链环节</h3>
<div style="margin: 1rem 0;">
<h4 style="color: var(--primary-color);">英伟达</h4>
<p>全球GPU市场领导者,占80%以上份额。2024年在AI芯片领域的垄断地位受到挑战,但其CUDA生态仍是行业标准。</p>
</div>
<div style="margin: 1rem 0;">
<h4 style="color: var(--secondary-color);">华为昇腾</h4>
<p>国产AI芯片的绝对领跑者,2025年市场份额达28% <a href="#ref4" class="anchor-link">[4]</a>。昇腾910B算力密度达26P Flops/U,性能直逼H100。</p>
</div>
<div style="margin: 1rem 0;">
<h4 style="color: var(--accent-color);">寒武纪</h4>
<p>国产AI芯片的技术差异化竞争者,2024年营收11.74亿元,同比增长65.56% <a href="#ref7" class="anchor-link">[7]</a>,2025年前三季度营收46.07亿元,同比增长2386.38%。</p>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="200">
<h3><i class="fas fa-eye" style="color: var(--primary-color);"></i>传感器供应链环节</h3>
<div style="margin: 1rem 0;">
<h4 style="color: var(--primary-color);">歌尔股份</h4>
<p>声学组件全球龙头,2024年营收1009.54亿元,净利润26.65亿元,同比增长144.93%。子公司歌尔微电子专注于MEMS传感器研发,累计出货量超40亿颗。</p>
</div>
<div style="margin: 1rem 0;">
<h4 style="color: var(--secondary-color);">水晶光电</h4>
<p>AR波导片技术领先企业,2024年营收62.78亿元,净利润10.30亿元,同比增长71.57%。衍射光波导片技术已应用于智能眼镜等终端设备。</p>
</div>
<div style="margin: 1rem 0;">
<h4 style="color: var(--accent-color);">舜宇光学</h4>
<p>摄像头模组全球龙头,产品广泛应用于智能手机、汽车电子等领域。在车载镜头、手机镜头等领域的市场份额持续提升。</p>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="400">
<h3><i class="fas fa-memory" style="color: var(--primary-color);"></i>存储设备供应链环节</h3>
<div style="margin: 1rem 0;">
<h4 style="color: var(--primary-color);">江波龙</h4>
<p>存储模组龙头,2024年营收174.64亿元,净利润4.99亿元,同比增长160.24%。产品线涵盖嵌入式存储、固态硬盘(SSD)、移动存储及内存条四大系列。</p>
</div>
<div style="margin: 1rem 0;">
<h4 style="color: var(--secondary-color);">佰维存储</h4>
<p>AI端侧存储解决方案提供商,2024年营收66.95亿元,净利润1.61亿元,同比增长125.82%。ePOP产品已进入Meta、雷鸟创新等知名AI/AR眼镜厂商供应链。</p>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="600">
<h3><i class="fas fa-plug" style="color: var(--primary-color);"></i>连接器与结构件供应链环节</h3>
<div style="margin: 1rem 0;">
<h4 style="color: var(--primary-color);">立讯精密</h4>
<p>连接器全球龙头,2025年Q2云计算业务营收同比增超60%,是OpenAI硬件项目的独家组装商 <a href="#ref10" class="anchor-link">[10]</a>。在精密制造领域的积累使其在AI硬件代工环节占据优势地位。</p>
</div>
<div style="margin: 1rem 0;">
<h4 style="color: var(--secondary-color);">长盈精密</h4>
<p>金属中框供应商,2024年营收169.34亿元,净利润7.72亿元,同比增长800.24%。金属中框产品已应用于AI硬件设备,在结构件领域的技术壁垒较高。</p>
</div>
</div>
</div>
</section>
<section id="trends" class="section">
<h2 class="section-title" data-aos="fade-up">AI硬件产业链未来发展趋势与挑战</h2>
<div class="grid">
<div class="card" data-aos="fade-up">
<h3><i class="fas fa-link" style="color: var(--primary-color); margin-right: 0.5rem;"></i>技术融合趋势</h3>
<p>AI硬件产业链将进一步融合量子计算、生物识别等前沿技术,催生新一代智能设备。量子计算与AI结合的硬件将提升复杂问题的解决能力,生物识别传感器将增强人机交互体验。</p>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="200">
<h3><i class="fas fa-flag" style="color: var(--secondary-color); margin-right: 0.5rem;"></i>国产替代加速</h3>
<p>随着中美科技竞争加剧,中国AI硬件产业链的国产替代进程将加速。华为昇腾、寒武纪等企业在AI芯片领域的突破,以及歌尔股份、水晶光电等企业在传感器领域的布局,将推动中国AI硬件产业链的自主可控。</p>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="400">
<h3><i class="fas fa-expand-arrows-alt" style="color: var(--accent-color); margin-right: 0.5rem;"></i>应用场景扩展</h3>
<p>AI硬件将从消费电子向工业、医疗、农业等更广泛领域扩展。AI医疗设备将在诊断、治疗和康复等环节发挥更大作用;工业AI传感器将提升智能制造水平;农业AI设备将推动精准农业发展。</p>
</div>
</div>
<div class="risk-warning" data-aos="fade-up" data-aos-delay="600">
<h4><i class="fas fa-exclamation-triangle"></i>供应链安全挑战</h4>
<p>AI硬件产业链面临供应链安全挑战,特别是关键环节的"卡脖子"问题。例如,高端芯片制造仍依赖台积电等国际厂商;传感器芯片约80%依赖海外企业 <a href="#ref17" class="anchor-link">[17]</a>;通信模块主要由高通、博通等国际厂商主导。这种供应链依赖增加了企业运营风险,也限制了产业链的自主可控能力。</p>
</div>
<div class="risk-warning" data-aos="fade-up" data-aos-delay="800">
<h4><i class="fas fa-balance-scale"></i>成本与性能平衡</h4>
<p>AI硬件产业链面临成本与性能平衡的挑战。随着AI技术的普及,终端设备对成本敏感度提高,而对性能要求也日益严格。例如,华为昇腾910B推理成本仅为英伟达H100的十分之一 <a href="#ref4" class="anchor-link">[4]</a>,但性能仍有差距;寒武纪MLU590单价约为英伟达A100的60%,但在能效比上仍有提升空间。这种成本与性能的平衡将决定AI硬件产业链的长期竞争力。</p>
</div>
</section>
<section id="investment" class="section">
<h2 class="section-title" data-aos="fade-up">AI硬件产业链投资机会与风险分析</h2>
<div class="grid">
<div class="investment-opportunity" data-aos="fade-up">
<h4><i class="fas fa-chart-line"></i>投资机会</h4>
<ul style="margin-left: 2rem; margin-top: 1rem;">
<li><strong>芯片设计:</strong>华为昇腾生态已覆盖2700多家合作伙伴、6000多个行业方案 <a href="#ref9" class="anchor-link">[9]</a></li>
<li><strong>传感器制造:</strong>歌尔股份MEMS传感器已累计出货量超40亿颗 <a href="#ref11" class="anchor-link">[11]</a></li>
<li><strong>存储设备:</strong>江波龙2024年营收174.64亿元,同比增长72.48%</li>
<li><strong>连接器与结构件:</strong>立讯精密2025年Q2云计算业务营收同比增超60%</li>
<li><strong>代工服务:</strong>立讯精密是OpenAI硬件项目的独家组装商 <a href="#ref10" class="anchor-link">[10]</a></li>
</ul>
</div>
<div class="risk-warning" data-aos="fade-up" data-aos-delay="200">
<h4><i class="fas fa-exclamation-triangle"></i>投资风险</h4>
<ul style="margin-left: 2rem; margin-top: 1rem;">
<li><strong>技术迭代风险:</strong>寒武纪2024年研发投入10.72亿元,占营业收入比例达91.30% <a href="#ref13" class="anchor-link">[13]</a></li>
<li><strong>市场波动风险:</strong>江波龙、佰维存储2025年Q1净利润同比大幅下滑</li>
<li><strong>供应链安全风险:</strong>歌尔微电子依赖英飞凌芯片,寒武纪依赖台积电代工 <a href="#ref4" class="anchor-link">[4]</a></li>
<li><strong>客户集中度风险:</strong>歌尔微电子最大客户A收入占比57.45%</li>
<li><strong>估值泡沫风险:</strong>部分企业估值已处于较高水平</li>
</ul>
</div>
</div>
<div class="chart-container" data-aos="fade-up" data-aos-delay="400">
<h3>AI硬件产业链投资风险评估</h3>
<div class="chart-wrapper">
<canvas id="riskAssessmentChart"></canvas>
</div>
</div>
</section>
<section id="comparison" class="section">
<h2 class="section-title" data-aos="fade-up">AI硬件产业链龙头企业竞争力对比</h2>
<div class="table-container" data-aos="fade-up">
<h3>主要企业竞争力对比表</h3>
<table>
<thead>
<tr>
<th>企业名称</th>
<th>总部城市</th>
<th>2024年营收(亿元)</th>
<th>2024年净利润(亿元)</th>
<th>2024年增长率(%)</th>
<th>主要产品与优势</th>
</tr>
</thead>
<tbody>
<tr>
<td>立讯精密</td>
<td>广东东莞</td>
<td>1539.46 <a href="#ref14" class="anchor-link">[14]</a></td>
<td>70.71 <a href="#ref14" class="anchor-link">[14]</a></td>
<td>2025Q2云计算业务营收同比增超60%</td>
<td>连接器全球第8位<br>OpenAI硬件项目独家组装商<br>全球化制造布局</td>
</tr>
<tr>
<td>歌尔股份</td>
<td>山东潍坊</td>
<td>1009.54</td>
<td>26.65</td>
<td>2.41%</td>
<td>MEMS传感器全球领先<br>声学模组AirPods核心供应商<br>全球化客户布局</td>
</tr>
<tr>
<td>江波龙</td>
<td>广东深圳</td>
<td>174.64</td>
<td>4.99</td>
<td>72.48%</td>
<td>存储模组AI端侧龙头<br>全球化产品布局<br>DDR5/PCIe Gen5技术领先</td>
</tr>
<tr>
<td>寒武纪</td>
<td>上海</td>
<td>11.74 <a href="#ref13" class="anchor-link">[13]</a></td>
<td>16.05(2025Q3) <a href="#ref7" class="anchor-link">[7]</a></td>
<td>65.56% <a href="#ref13" class="anchor-link">[13]</a></td>
<td>国产AI芯片技术领先<br>MLU590中标率37% <a href="#ref4" class="anchor-link">[4]</a><br>软硬一体解决方案</td>
</tr>
<tr>
<td>华为昇腾</td>
<td>广东深圳</td>
<td>未单独披露</td>
<td>未单独披露</td>
<td>2025年市场份额28% <a href="#ref4" class="anchor-link">[4]</a></td>
<td>昇腾910B性能直逼H100<br>昇腾生态覆盖2700家伙伴 <a href="#ref4" class="anchor-link">[4]</a><br>政务云/智慧城市领域优势</td>
</tr>
</tbody>
</table>
</div>
<div class="chart-container" data-aos="fade-up" data-aos-delay="200">
<h3>主要企业竞争力雷达图</h3>
<div class="chart-wrapper">
<canvas id="competitivenessRadarChart"></canvas>
</div>
</div>
</section>
<div class="references" data-aos="fade-up">
<h3><i class="fas fa-bookmark"></i> 参考文献</h3>
<ol>
<li id="ref1"><a href="https://www.ithome.com/0/843/762.htm" target="_blank">全球AI市场规模预测报告</a></li>
<li id="ref2"><a href="https://zhuanlan.zhihu.com/p/1891129213295249130" target="_blank">中国AI产业发展现状分析</a></li>
<li id="ref3"><a href="https://www.sohu.com/a/666758452_100174452" target="_blank">中国AI产业区域分布研究报告</a></li>
<li id="ref4"><a href="https://www.163.com/dy/article/KC3N079L0556DLOT.html" target="_blank">AI芯片市场格局分析</a></li>
<li id="ref5"><a href="https://xueqiu.com/7371886022/344209185" target="_blank">边缘计算设备发展报告</a></li>
<li id="ref6"><a href="https://zhuanlan.zhihu.com/p/1914431751452857891" target="_blank">AI服务器PCB供应链分析</a></li>
<li id="ref7"><a href="https://page.sm.cn/blm/video-page-710/video?h=www.bilibili.com&id=26_f13bb553ee02b19627421bd192da1f06" target="_blank">寒武纪业绩分析报告</a></li>
<li id="ref8"><a href="https://www.163.com/dy/article/JMGMAA510550B1DU.html?spss=dy_author" target="_blank">MEMS传感器供应链分析</a></li>
<li id="ref9"><a href="https://www.huawei.com/cn/news/2024/9/hc-kunpeng-ascend-openeuler" target="_blank">华为昇腾生态发展报告</a></li>
<li id="ref10"><a href="https://zhuanlan.zhihu.com/p/1953766908055762907" target="_blank">立讯精密业务发展分析</a></li>
<li id="ref11"><a href="http://baike.baidu.com/item/%E6%AD%8C%E5%B0%94/59408410" target="_blank">歌尔股份声学组件业务报告</a></li>
<li id="ref12"><a href="https://www.sohu.com/a/944549837_121717382" target="_blank">自动驾驶传感器技术报告</a></li>
<li id="ref13"><a href="https://zhuanlan.zhihu.com/p/1896950668247418154" target="_blank">寒武纪研发投入分析</a></li>
<li id="ref14"><a href="http://career.csu.edu.cn/company/view/id/507713" target="_blank">立讯精密全球化布局报告</a></li>
<li id="ref15"><a href="https://finance.ifeng.com/app/hq/stock/sz002273/" target="_blank">水晶光电业务发展分析</a></li>
<li id="ref16"><a href="https://stock.stockstar.com/RB2025101800005074.shtml" target="_blank">佰维存储市场表现报告</a></li>
<li id="ref17"><a href="https://zhuanlan.zhihu.com/p/688124241" target="_blank">AI硬件供应链安全报告</a></li>
<li id="ref18"><a href="https://xueqiu.com/9057196330/323785012?_ugc_source=ugctoutiao" target="_blank">企业研发投入与业绩关系分析</a></li>
</ol>
</div>
</div>
<div class="footer">
<p>说明:报告内容由通义AI生成,仅供参考。</p>
<p>&copy; 2024 AI产业链全景分析报告</p>
</div>
<script>
// 初始化AOS动画
AOS.init({
duration: 1000,
easing: 'ease-in-out',
once: true
});
// 全球AI市场规模增长趋势图
const marketGrowthCtx = document.getElementById('marketGrowthChart').getContext('2d');
new Chart(marketGrowthCtx, {
type: 'line',
data: {
labels: ['2018', '2020', '2022', '2024', '2026', '2028'],
datasets: [{
label: '全球AI市场规模(亿美元)',
data: [555.7, 1500, 1630.2, 3200, 5000, 8159],
borderColor: '#2563eb',
backgroundColor: 'rgba(37, 99, 235, 0.1)',
fill: true,
tension: 0.4
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'top',
},
title: {
display: true,
text: '全球AI市场规模增长趋势'
}
},
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: '市场规模(亿美元)'
}
}
}
}
});
// 生成式AI市场规模预测图
const generativeAIChartCtx = document.getElementById('generativeAIChart').getContext('2d');
new Chart(generativeAIChartCtx, {
type: 'bar',
data: {
labels: ['2025', '2027', '2030'],
datasets: [{
label: '生成式AI市场规模(亿美元)',
data: [2842, 4500, 8000],
backgroundColor: '#10b981',
borderColor: '#059669',
borderWidth: 2
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'top',
},
title: {
display: true,
text: '生成式AI市场规模预测(2025-2030'
}
},
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: '市场规模(亿美元)'
}
}
}
}
});
// AI芯片市场份额分布图
const chipMarketShareCtx = document.getElementById('chipMarketShareChart').getContext('2d');
new Chart(chipMarketShareCtx, {
type: 'doughnut',
data: {
labels: ['英伟达', '华为昇腾', '寒武纪', '其他'],
datasets: [{
data: [80, 28, 5, 27],
backgroundColor: ['#2563eb', '#10b981', '#f59e0b', '#6b7280'],
borderWidth: 2,
borderColor: '#fff'
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'bottom',
},
title: {
display: true,
text: 'AI芯片市场份额分布(%'
}
}
}
});
// 投资风险评估图
const riskAssessmentCtx = document.getElementById('riskAssessmentChart').getContext('2d');
new Chart(riskAssessmentCtx, {
type: 'radar',
data: {
labels: ['技术迭代风险', '市场波动风险', '供应链安全风险', '客户集中度风险', '估值泡沫风险'],
datasets: [{
label: '风险水平',
data: [8, 7, 9, 6, 7],
borderColor: '#ef4444',
backgroundColor: 'rgba(239, 68, 68, 0.2)',
pointBackgroundColor: '#ef4444',
pointBorderColor: '#fff',
pointHoverBackgroundColor: '#fff',
pointHoverBorderColor: '#ef4444'
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'top',
},
title: {
display: true,
text: 'AI硬件产业链投资风险评估'
}
},
scales: {
r: {
beginAtZero: true,
max: 10,
ticks: {
stepSize: 2
}
}
}
}
});
// 企业竞争力雷达图
const competitivenessRadarCtx = document.getElementById('competitivenessRadarChart').getContext('2d');
new Chart(competitivenessRadarCtx, {
type: 'radar',
data: {
labels: ['营收规模', '盈利能力', '成长性', '技术实力', '市场地位', '创新能力'],
datasets: [{
label: '立讯精密',
data: [9, 8, 9, 8, 9, 8],
borderColor: '#2563eb',
backgroundColor: 'rgba(37, 99, 235, 0.2)',
pointBackgroundColor: '#2563eb'
}, {
label: '歌尔股份',
data: [8, 7, 6, 8, 8, 7],
borderColor: '#10b981',
backgroundColor: 'rgba(16, 185, 129, 0.2)',
pointBackgroundColor: '#10b981'
}, {
label: '江波龙',
data: [6, 7, 9, 7, 7, 8],
borderColor: '#f59e0b',
backgroundColor: 'rgba(245, 158, 11, 0.2)',
pointBackgroundColor: '#f59e0b'
}, {
label: '寒武纪',
data: [4, 6, 9, 9, 6, 9],
borderColor: '#8b5cf6',
backgroundColor: 'rgba(139, 92, 246, 0.2)',
pointBackgroundColor: '#8b5cf6'
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'top',
},
title: {
display: true,
text: '主要企业竞争力对比雷达图'
}
},
scales: {
r: {
beginAtZero: true,
max: 10,
ticks: {
stepSize: 2
}
}
}
}
});
// 平滑滚动导航
document.querySelectorAll('.nav-link').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href').substring(1);
const targetElement = document.getElementById(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// 引用链接跳转
document.querySelectorAll('.anchor-link').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href').substring(1);
const targetElement = document.getElementById(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth',
block: 'center'
});
// 高亮效果
targetElement.style.backgroundColor = '#fef3c7';
setTimeout(() => {
targetElement.style.backgroundColor = '';
}, 2000);
}
});
});
</script>
</body>
</html>