1050 lines
47 KiB
HTML
1050 lines
47 KiB
HTML
|
||
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
<link rel="apple-touch-icon" sizes="76x76" href="../../static/assets/img/apple-icon.png">
|
||
<link rel="icon" type="image/png" href="../../static/assets/img/favicon.png">
|
||
<link href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700,800" rel="stylesheet" />
|
||
<!-- Nucleo Icons -->
|
||
<link href="../../static/assets/css/nucleo-icons.css" rel="stylesheet" />
|
||
<link href="../../static/assets/css/nucleo-svg.css" rel="stylesheet" />
|
||
<!-- Font Awesome Icons -->
|
||
<script src="https://kit.fontawesome.com/1d2b6c4f81.js" crossorigin="anonymous"></script>
|
||
<!-- CSS Files -->
|
||
<link id="pagestyle" href="../../static/assets/css/soft-design-system-pro.css?v=1.2.0" rel="stylesheet" />
|
||
<script src="../../static/assets/js/core/popper.min.js" type="text/javascript"></script>
|
||
<script src="../../static/assets/js/core/bootstrap.min.js" type="text/javascript"></script>
|
||
<script src="../../static/assets/js/plugins/perfect-scrollbar.min.js"></script>
|
||
<script src="../../static/assets/js/plugins/typedjs.js"></script>
|
||
<script src="../../static/assets/js/plugins/parallax.min.js"></script>
|
||
<script src="../../static/assets/js/plugins/smooth-scroll.min.js"></script>
|
||
<script src="../../static/assets/js/plugins/nouislider.min.js" type="text/javascript"></script>
|
||
<script src="../../static/assets/js/plugins/glidejs.min.js" type="text/javascript"></script>
|
||
<script src="../../static/assets/js/plugins/anime.min.js" type="text/javascript"></script>
|
||
<script src="../../static/assets/js/plugins/chartjs.min.js"></script>
|
||
<script src="../../static/assets/js/soft-design-system-pro.min.js?v=1.2.0" type="text/javascript"></script>
|
||
<script src="https://cdn.jsdelivr.net/npm/tsparticles@3/tsparticles.bundle.min.js"></script>
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/vanta/0.5.24/vanta.waves.min.js"></script>
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/rellax/1.12.1/rellax.min.js"></script>
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
|
||
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@5/themes.css" rel="stylesheet" type="text/css" />
|
||
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
|
||
<style>
|
||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
|
||
|
||
body {
|
||
font-family: 'Inter', sans-serif;
|
||
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
|
||
color: #e2e8f0;
|
||
min-height: 100vh;
|
||
}
|
||
|
||
.quantum-bg {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
z-index: -1;
|
||
opacity: 0.15;
|
||
}
|
||
|
||
.card {
|
||
background: rgba(30, 41, 59, 0.7);
|
||
backdrop-filter: blur(10px);
|
||
border: 1px solid rgba(148, 163, 184, 0.1);
|
||
border-radius: 16px;
|
||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||
}
|
||
|
||
.card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
|
||
}
|
||
|
||
.gradient-text {
|
||
background: linear-gradient(90deg, #60a5fa, #a78bfa);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
|
||
.timeline-dot {
|
||
width: 16px;
|
||
height: 16px;
|
||
border-radius: 50%;
|
||
background: linear-gradient(135deg, #60a5fa, #a78bfa);
|
||
position: absolute;
|
||
left: -8px;
|
||
top: 6px;
|
||
}
|
||
|
||
.timeline-line {
|
||
position: absolute;
|
||
left: 0;
|
||
top: 22px;
|
||
bottom: 0;
|
||
width: 2px;
|
||
background: linear-gradient(to bottom, #60a5fa, #a78bfa);
|
||
}
|
||
|
||
.table-container {
|
||
overflow-x: auto;
|
||
}
|
||
|
||
table {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
}
|
||
|
||
th, td {
|
||
padding: 12px 15px;
|
||
text-align: left;
|
||
border-bottom: 1px solid rgba(148, 163, 184, 0.1);
|
||
}
|
||
|
||
th {
|
||
background: rgba(30, 41, 59, 0.5);
|
||
font-weight: 600;
|
||
color: #cbd5e1;
|
||
position: sticky;
|
||
top: 0;
|
||
}
|
||
|
||
tr:hover {
|
||
background: rgba(148, 163, 184, 0.05);
|
||
}
|
||
|
||
.badge {
|
||
display: inline-block;
|
||
padding: 4px 8px;
|
||
border-radius: 12px;
|
||
font-size: 12px;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.badge-primary {
|
||
background: rgba(96, 165, 250, 0.2);
|
||
color: #93c5fd;
|
||
}
|
||
|
||
.badge-secondary {
|
||
background: rgba(167, 139, 250, 0.2);
|
||
color: #c4b5fd;
|
||
}
|
||
|
||
.badge-success {
|
||
background: rgba(52, 211, 153, 0.2);
|
||
color: #6ee7b7;
|
||
}
|
||
|
||
.badge-warning {
|
||
background: rgba(251, 191, 36, 0.2);
|
||
color: #fcd34d;
|
||
}
|
||
|
||
.badge-danger {
|
||
background: rgba(248, 113, 113, 0.2);
|
||
color: #fca5a5;
|
||
}
|
||
|
||
.section-title {
|
||
font-size: 1.5rem;
|
||
font-weight: 700;
|
||
margin-bottom: 1rem;
|
||
color: #f1f5f9;
|
||
}
|
||
|
||
.highlight-box {
|
||
background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
|
||
border-left: 4px solid #60a5fa;
|
||
padding: 16px;
|
||
border-radius: 8px;
|
||
margin: 16px 0;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.card {
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.section-title {
|
||
font-size: 1.25rem;
|
||
}
|
||
|
||
th, td {
|
||
padding: 8px 10px;
|
||
font-size: 14px;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div id="particles-js" class="quantum-bg"></div>
|
||
|
||
<div class="container mx-auto px-4 py-8 max-w-6xl">
|
||
<!-- 标题部分 -->
|
||
<div class="text-center mb-12">
|
||
<h1 class="text-4xl md:text-5xl font-bold mb-4 gradient-text">量子计算突破时代</h1>
|
||
<p class="text-lg text-slate-300 max-w-3xl mx-auto">
|
||
量子计算正处于"技术验证→专用商业化"拐点,核心驱动力是量子纠错突破与政策-资本共振
|
||
</p>
|
||
</div>
|
||
|
||
<!-- 概念事件部分 -->
|
||
<div class="card p-6 mb-8">
|
||
<h2 class="section-title flex items-center">
|
||
<i class="fas fa-clock mr-3 text-blue-400"></i>
|
||
概念事件
|
||
</h2>
|
||
<div class="relative pl-8">
|
||
<div class="timeline-line"></div>
|
||
|
||
<div class="relative mb-6">
|
||
<div class="timeline-dot"></div>
|
||
<div class="ml-4">
|
||
<h3 class="text-lg font-semibold text-blue-300">2024年12月</h3>
|
||
<p class="text-slate-300">谷歌发布<strong>Willow量子芯片</strong>,实现<strong>5分钟完成10²⁵年经典超算任务</strong>的量子优越性,并首次验证<strong>"低于阈值"的量子纠错</strong>(逻辑比特错误率随物理比特增加而指数下降)。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="relative mb-6">
|
||
<div class="timeline-dot"></div>
|
||
<div class="ml-4">
|
||
<h3 class="text-lg font-semibold text-blue-300">2025年3月</h3>
|
||
<p class="text-slate-300">D-Wave发布<strong>Advantage2退火系统</strong>(1200+量子比特),商业化落地金融优化场景;微软推出<strong>4D拓扑量子纠错码</strong>,错误率降低<strong>1000倍</strong>。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="relative mb-6">
|
||
<div class="timeline-dot"></div>
|
||
<div class="ml-4">
|
||
<h3 class="text-lg font-semibold text-blue-300">2025年6月</h3>
|
||
<p class="text-slate-300">黄仁勋四次公开表态量子计算"接近拐点",预测<strong>逻辑比特5年增长10倍</strong>(当前全球仅1-2个,2030年或达20个)。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="relative">
|
||
<div class="timeline-dot"></div>
|
||
<div class="ml-4">
|
||
<h3 class="text-lg font-semibold text-blue-300">政策端</h3>
|
||
<p class="text-slate-300">2025年政府工作报告首次将"量子科技"列为未来产业培育核心,合肥市政府提出建设<strong>百万比特级量子研发平台</strong>。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 核心观点摘要部分 -->
|
||
<div class="card p-6 mb-8">
|
||
<h2 class="section-title flex items-center">
|
||
<i class="fas fa-lightbulb mr-3 text-purple-400"></i>
|
||
核心观点摘要
|
||
</h2>
|
||
<div class="highlight-box">
|
||
<p class="text-slate-200">
|
||
量子计算正处于<strong>"技术验证→专用商业化"拐点</strong>,核心驱动力是<strong>量子纠错突破</strong>(逻辑比特构建)与<strong>政策-资本共振</strong>。未来3年专用机(退火/模拟)将率先落地金融、医药场景,<strong>2030年市场规模或超千亿美元</strong>(当前50亿美元→2030年200亿美元→2035年8000亿美元)。
|
||
</p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 核心逻辑与市场认知分析部分 -->
|
||
<div class="card p-6 mb-8">
|
||
<h2 class="section-title flex items-center">
|
||
<i class="fas fa-brain mr-3 text-indigo-400"></i>
|
||
核心逻辑与市场认知分析
|
||
</h2>
|
||
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-indigo-300">核心驱动力</h3>
|
||
<ul class="space-y-3">
|
||
<li class="flex items-start">
|
||
<i class="fas fa-microchip mt-1 mr-2 text-blue-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">技术突破</strong>
|
||
<p class="text-slate-400 text-sm">谷歌Willow的纠错里程碑(<strong>物理比特↑→逻辑比特错误率↓</strong>)解决了规模化核心瓶颈;超导路线(IBM/Google)与光量子(中国"九章三号"255比特)并行推进。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<i class="fas fa-landmark mt-1 mr-2 text-green-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">政策催化</strong>
|
||
<p class="text-slate-400 text-sm">中美欧将量子纳入国家安全战略(美国NQI法案12.75亿美元、中国"十四五"量子专项)。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<i class="fas fa-chart-line mt-1 mr-2 text-yellow-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">商业化验证</strong>
|
||
<p class="text-slate-400 text-sm">D-Wave 2025年Q1营收<strong>1500万美元</strong>(同比+508%),毛利率<strong>92.5%</strong>,专用退火机在福特汽车调度中<strong>效率提升6倍</strong>。</p>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-indigo-300">市场热度与情绪</h3>
|
||
<ul class="space-y-3">
|
||
<li class="flex items-start">
|
||
<i class="fas fa-fire mt-1 mr-2 text-red-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">美股量子概念股暴涨</strong>
|
||
<p class="text-slate-400 text-sm">2025年1-6月,IonQ(IONQ)股价从<strong>3美元→16美元</strong>(+433%),Rigetti(RGTI)从<strong>18美元→38美元</strong>(+111%)。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<i class="fas fa-exclamation-triangle mt-1 mr-2 text-orange-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">分歧点</strong>
|
||
<p class="text-slate-400 text-sm">市场过度关注"量子比特数量",忽视<strong>逻辑比特</strong>(需1000物理比特=1逻辑比特)和<strong>应用场景</strong>(当前仅退火机有收入)。</p>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
|
||
<h3 class="text-xl font-semibold mb-3 mt-6 text-indigo-300">预期差</h3>
|
||
<ul class="space-y-3">
|
||
<li class="flex items-start">
|
||
<i class="fas fa-arrow-up mt-1 mr-2 text-green-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">被低估</strong>
|
||
<p class="text-slate-400 text-sm">国产稀释制冷机(国盾量子ez-QFridge)已突破<strong>10mK低温</strong>(国际同等水平),成本仅为进口1/3,但市场未充分定价。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<i class="fas fa-arrow-down mt-1 mr-2 text-red-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">被高估</strong>
|
||
<p class="text-slate-400 text-sm">D-Wave的退火机<strong>非通用量子计算机</strong>(无逻辑门),仅适用于优化问题,通用机仍需10年。</p>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 关键催化剂与未来发展路径部分 -->
|
||
<div class="card p-6 mb-8">
|
||
<h2 class="section-title flex items-center">
|
||
<i class="fas fa-rocket mr-3 text-cyan-400"></i>
|
||
关键催化剂与未来发展路径
|
||
</h2>
|
||
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-cyan-300">近期催化剂(3-6个月)</h3>
|
||
<ol class="space-y-3 list-decimal list-inside">
|
||
<li class="text-slate-300">
|
||
<strong>2025年9月</strong>:中国"本源悟空"二代(<strong>1000+超导比特</strong>)上线云平台,验证金融风控模型。
|
||
</li>
|
||
<li class="text-slate-300">
|
||
<strong>2025年10月</strong>:IBM发布<strong>1000+逻辑比特</strong>路线图(需100万物理比特),或引发技术路线争议。
|
||
</li>
|
||
<li class="text-slate-300">
|
||
<strong>政策落地</strong>:央行数字货币(DCEP)试点<strong>抗量子加密</strong>(格尔软件参与),推动密码升级需求。
|
||
</li>
|
||
</ol>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-cyan-300">长期路径</h3>
|
||
<ul class="space-y-3">
|
||
<li class="flex items-start">
|
||
<span class="badge badge-primary mr-2">2025-2027</span>
|
||
<div class="text-slate-300">专用机商业化(退火/模拟)→金融、医药、物流优化(市场规模<strong>200亿美元</strong>)</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<span class="badge badge-secondary mr-2">2028-2030</span>
|
||
<div class="text-slate-300">容错量子计算突破(逻辑比特100+)→破解RSA加密(倒逼密码产业<strong>千亿级</strong>升级)</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<span class="badge badge-success mr-2">2030年后</span>
|
||
<div class="text-slate-300">通用量子机→AI训练、气候模拟(市场规模<strong>8000亿美元</strong>)</div>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 产业链与核心公司深度剖析部分 -->
|
||
<div class="card p-6 mb-8">
|
||
<h2 class="section-title flex items-center">
|
||
<i class="fas fa-sitemap mr-3 text-pink-400"></i>
|
||
产业链与核心公司深度剖析
|
||
</h2>
|
||
|
||
<div class="mb-6">
|
||
<h3 class="text-xl font-semibold mb-3 text-pink-300">产业链图谱</h3>
|
||
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
|
||
<div class="bg-slate-800 bg-opacity-50 p-4 rounded-lg">
|
||
<h4 class="font-semibold text-blue-300 mb-2">上游</h4>
|
||
<p class="text-slate-400 text-sm">稀释制冷机(国盾量子、量羲技术)、量子芯片(本源量子、IBM)、激光器(光迅科技)</p>
|
||
</div>
|
||
<div class="bg-slate-800 bg-opacity-50 p-4 rounded-lg">
|
||
<h4 class="font-semibold text-purple-300 mb-2">中游</h4>
|
||
<p class="text-slate-400 text-sm">整机(D-Wave、IonQ、国盾量子)、云平台(AWS Braket、中国电信"天衍")</p>
|
||
</div>
|
||
<div class="bg-slate-800 bg-opacity-50 p-4 rounded-lg">
|
||
<h4 class="font-semibold text-green-300 mb-2">下游</h4>
|
||
<p class="text-slate-400 text-sm">金融(摩根大通)、医药(罗氏)、密码(格尔软件)</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-pink-300">核心玩家对比</h3>
|
||
<div class="table-container">
|
||
<table class="w-full">
|
||
<thead>
|
||
<tr>
|
||
<th>公司</th>
|
||
<th>技术路线</th>
|
||
<th>商业化进展</th>
|
||
<th>风险</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">国盾量子</td>
|
||
<td class="text-slate-400">超导+通信</td>
|
||
<td class="text-slate-400">稀释制冷机国产化,<strong>2024年营收4亿元</strong>(量子计算占比60%)</td>
|
||
<td class="text-slate-400">估值过高(PS 50x),订单依赖政府</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">D-Wave</td>
|
||
<td class="text-slate-400">退火专用机</td>
|
||
<td class="text-slate-400"><strong>2025年Q1营收1500万美元</strong>,毛利率92%</td>
|
||
<td class="text-slate-400">技术路线局限(非通用)</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">IonQ</td>
|
||
<td class="text-slate-400">离子阱</td>
|
||
<td class="text-slate-400">与美国空军合作,<strong>2025年目标20逻辑比特</strong></td>
|
||
<td class="text-slate-400">扩展性瓶颈(离子阱难千比特)</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">本源量子</td>
|
||
<td class="text-slate-400">超导</td>
|
||
<td class="text-slate-400">"悟空"系列已售<strong>2台整机</strong>(单价3000万)</td>
|
||
<td class="text-slate-400">未上市,融资停滞(2022年后无新轮)</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mt-6">
|
||
<div>
|
||
<h4 class="font-semibold text-red-300 mb-2">证伪点</h4>
|
||
<p class="text-slate-400">本源量子宣称"72比特"超导机,但路演显示<strong>仅66控制比特+110耦合比特</strong>(耦合比特不计入算力),存在夸大。</p>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold text-green-300 mb-2">验证点</h4>
|
||
<p class="text-slate-400">D-Wave的Leap云平台<strong>访问量2700万次</strong>(2025年4月),印证退火机实际应用需求。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 潜在风险与挑战部分 -->
|
||
<div class="card p-6 mb-8">
|
||
<h2 class="section-title flex items-center">
|
||
<i class="fas fa-exclamation-circle mr-3 text-red-400"></i>
|
||
潜在风险与挑战
|
||
</h2>
|
||
<ul class="space-y-3">
|
||
<li class="flex items-start">
|
||
<i class="fas fa-microchip mt-1 mr-2 text-orange-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">技术风险</strong>
|
||
<p class="text-slate-400">量子纠错需<strong>100万物理比特=1000逻辑比特</strong>,当前全球仅<strong>1-2个逻辑比特</strong>。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<i class="fas fa-dollar-sign mt-1 mr-2 text-yellow-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">商业化风险</strong>
|
||
<p class="text-slate-400">D-Wave退火机<strong>单价5000万元</strong>,客户仅限政府/巨头(福特、沙特阿美)。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<i class="fas fa-ban mt-1 mr-2 text-red-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">政策风险</strong>
|
||
<p class="text-slate-400">美国2024年将<strong>22家中国量子企业</strong>列入实体清单(含国盾量子),限制稀释制冷机出口。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<i class="fas fa-question-circle mt-1 mr-2 text-purple-400"></i>
|
||
<div>
|
||
<strong class="text-slate-200">信息矛盾</strong>
|
||
<p class="text-slate-400">黄仁勋称"20年商用",但IonQ CEO称"几个季度内量子霸权",<strong>时间预期差极大</strong>。</p>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- 综合结论与投资启示部分 -->
|
||
<div class="card p-6 mb-8">
|
||
<h2 class="section-title flex items-center">
|
||
<i class="fas fa-chart-pie mr-3 text-green-400"></i>
|
||
综合结论与投资启示
|
||
</h2>
|
||
|
||
<div class="highlight-box mb-6">
|
||
<p class="text-slate-200">
|
||
处于<strong>"主题炒作→基本面验证"过渡期</strong>,专用机(退火/模拟)已产生收入,通用机仍需10年。
|
||
</p>
|
||
</div>
|
||
|
||
<div class="mb-6">
|
||
<h3 class="text-xl font-semibold mb-3 text-green-300">投资方向</h3>
|
||
<ol class="space-y-3 list-decimal list-inside">
|
||
<li class="text-slate-300">
|
||
<strong>上游设备</strong>:稀释制冷机(国盾量子、量羲技术)——<strong>国产化替代</strong>逻辑最硬。
|
||
</li>
|
||
<li class="text-slate-300">
|
||
<strong>密码升级</strong>:抗量子加密(格尔软件、卫士通)——<strong>RSA破解倒计时</strong>(2030年)。
|
||
</li>
|
||
</ol>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-green-300">跟踪指标</h3>
|
||
<ul class="space-y-2">
|
||
<li class="flex items-center">
|
||
<i class="fas fa-check-circle mr-2 text-green-400"></i>
|
||
<span class="text-slate-300"><strong>逻辑比特数量</strong>(2030年目标20个,当前1-2个)</span>
|
||
</li>
|
||
<li class="flex items-center">
|
||
<i class="fas fa-check-circle mr-2 text-green-400"></i>
|
||
<span class="text-slate-300"><strong>D-Wave订单</strong>(2025年Q2财报验证金融客户渗透率)</span>
|
||
</li>
|
||
<li class="flex items-center">
|
||
<i class="fas fa-check-circle mr-2 text-green-400"></i>
|
||
<span class="text-slate-300"><strong>政策落地</strong>:央行抗量子加密试点规模(2025年Q4)</span>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 关联股票数据部分 -->
|
||
<div class="card p-6">
|
||
<h2 class="section-title flex items-center">
|
||
<i class="fas fa-table mr-3 text-yellow-400"></i>
|
||
关联股票数据
|
||
</h2>
|
||
|
||
<div class="mb-6">
|
||
<h3 class="text-lg font-semibold mb-3 text-yellow-300">量子科技产业链(240428)</h3>
|
||
<div class="table-container">
|
||
<table class="w-full">
|
||
<thead>
|
||
<tr>
|
||
<th>股票</th>
|
||
<th>类型</th>
|
||
<th>具体产业环节</th>
|
||
<th>原因</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">国盾量子</td>
|
||
<td class="text-slate-400">应用</td>
|
||
<td class="text-slate-400">密钥、蓝牙耳机、办公本、SIM卡等</td>
|
||
<td class="text-slate-400">量子科技产业链中的应用环节,涉及密钥、蓝牙耳机、办公本、SIM卡等产品</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">科大讯飞</td>
|
||
<td class="text-slate-400">应用</td>
|
||
<td class="text-slate-400">量子加密办公本</td>
|
||
<td class="text-slate-400">参与量子加密办公本的研发与应用</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">科大国创</td>
|
||
<td class="text-slate-400">应用</td>
|
||
<td class="text-slate-400">精密测量</td>
|
||
<td class="text-slate-400">在量子科技产业链中负责精密测量环节</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">雷科防务</td>
|
||
<td class="text-slate-400">应用</td>
|
||
<td class="text-slate-400">北斗量子手机</td>
|
||
<td class="text-slate-400">开发北斗量子手机相关技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">格尔软件</td>
|
||
<td class="text-slate-400">应用</td>
|
||
<td class="text-slate-400">抗量子密码</td>
|
||
<td class="text-slate-400">专注于抗量子密码技术的研发</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">光韵达</td>
|
||
<td class="text-slate-400">应用</td>
|
||
<td class="text-slate-400">单光子探测器</td>
|
||
<td class="text-slate-400">参与单光子探测器的制造</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">浙江东方</td>
|
||
<td class="text-slate-400">应用</td>
|
||
<td class="text-slate-400">量子通信骨干网</td>
|
||
<td class="text-slate-400">建设量子通信骨干网</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">光迅科技</td>
|
||
<td class="text-slate-400">应用</td>
|
||
<td class="text-slate-400">集成电路光电子芯片</td>
|
||
<td class="text-slate-400">研发集成电路光电子芯片</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">航天电器</td>
|
||
<td class="text-slate-400">应用</td>
|
||
<td class="text-slate-400">量子通信</td>
|
||
<td class="text-slate-400">参与量子通信技术研发</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">罗博特科</td>
|
||
<td class="text-slate-400">应用</td>
|
||
<td class="text-slate-400">光子元器件组装测试</td>
|
||
<td class="text-slate-400">负责光子元器件的组装与测试</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">国盾量子</td>
|
||
<td class="text-slate-400">精密光学元器件</td>
|
||
<td class="text-slate-400">单光子探测器</td>
|
||
<td class="text-slate-400">生产单光子探测器</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">罗博特科</td>
|
||
<td class="text-slate-400">精密光学元器件</td>
|
||
<td class="text-slate-400">光子元器件</td>
|
||
<td class="text-slate-400">研发光子元器件</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">陕西华达</td>
|
||
<td class="text-slate-400">网络建设集成商</td>
|
||
<td class="text-slate-400">供货给量子通信卫星</td>
|
||
<td class="text-slate-400">为量子通信卫星提供配套服务</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">铜牛信息</td>
|
||
<td class="text-slate-400">网络建设集成商</td>
|
||
<td class="text-slate-400">和国科量子合作</td>
|
||
<td class="text-slate-400">与国科量子合作推进量子通信项目</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">科华数据</td>
|
||
<td class="text-slate-400">网络建设集成商</td>
|
||
<td class="text-slate-400">和科大国盾、玻色量子合作</td>
|
||
<td class="text-slate-400">与科大国盾、玻色量子合作开发量子技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">飞利信</td>
|
||
<td class="text-slate-400">战略合作</td>
|
||
<td class="text-slate-400">量子保密通信</td>
|
||
<td class="text-slate-400">参与量子保密通信项目</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">奇安信</td>
|
||
<td class="text-slate-400">战略合作</td>
|
||
<td class="text-slate-400">与国盾量子在保密通信领域展开合作</td>
|
||
<td class="text-slate-400">与国盾量子合作推进保密通信技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">中国海防</td>
|
||
<td class="text-slate-400">战略合作</td>
|
||
<td class="text-slate-400">和中电广通合作</td>
|
||
<td class="text-slate-400">与中电广通合作开发量子技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">中航光电</td>
|
||
<td class="text-slate-400">芯片</td>
|
||
<td class="text-slate-400">可扩展型量子芯片封装结构专利</td>
|
||
<td class="text-slate-400">拥有量子芯片封装结构专利</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">国盾量子</td>
|
||
<td class="text-slate-400">芯片</td>
|
||
<td class="text-slate-400">QKD</td>
|
||
<td class="text-slate-400">研发量子密钥分发(QKD)技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">雄帝科技</td>
|
||
<td class="text-slate-400">芯片</td>
|
||
<td class="text-slate-400">QKD</td>
|
||
<td class="text-slate-400">参与量子密钥分发(QKD)技术研发</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">天融信</td>
|
||
<td class="text-slate-400">芯片</td>
|
||
<td class="text-slate-400">QKD</td>
|
||
<td class="text-slate-400">开发量子密钥分发(QKD)技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">震有科技</td>
|
||
<td class="text-slate-400">芯片</td>
|
||
<td class="text-slate-400">卫星互联网</td>
|
||
<td class="text-slate-400">参与卫星互联网量子通信项目</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">达华智能</td>
|
||
<td class="text-slate-400">芯片</td>
|
||
<td class="text-slate-400">卫星互联网</td>
|
||
<td class="text-slate-400">研发卫星互联网量子通信技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">苏州科达</td>
|
||
<td class="text-slate-400">芯片</td>
|
||
<td class="text-slate-400">视频加密</td>
|
||
<td class="text-slate-400">开发量子视频加密技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">中创股份</td>
|
||
<td class="text-slate-400">芯片</td>
|
||
<td class="text-slate-400">量子加密消息传输</td>
|
||
<td class="text-slate-400">研发量子加密消息传输技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">海能达</td>
|
||
<td class="text-slate-400">芯片</td>
|
||
<td class="text-slate-400">量子对讲机</td>
|
||
<td class="text-slate-400">开发量子对讲机技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">中兴通讯</td>
|
||
<td class="text-slate-400">芯片</td>
|
||
<td class="text-slate-400">量子通讯安全</td>
|
||
<td class="text-slate-400">推进量子通讯安全技术研发</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">亨通光电</td>
|
||
<td class="text-slate-400">量子计算射频</td>
|
||
<td class="text-slate-400">量子保密通信</td>
|
||
<td class="text-slate-400">参与量子保密通信项目</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">国盾量子</td>
|
||
<td class="text-slate-400">量子计算射频</td>
|
||
<td class="text-slate-400">光子源</td>
|
||
<td class="text-slate-400">研发量子计算中的光子源技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">富士达</td>
|
||
<td class="text-slate-400">量子计算射频</td>
|
||
<td class="text-slate-400">超低温下射频信号的传输</td>
|
||
<td class="text-slate-400">开发超低温射频信号传输技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">光库科技</td>
|
||
<td class="text-slate-400">量子计算射频</td>
|
||
<td class="text-slate-400">光纤激光器件和光通讯器件</td>
|
||
<td class="text-slate-400">生产光纤激光器件和光通讯器件</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">中国电信</td>
|
||
<td class="text-slate-400">保密网络运营</td>
|
||
<td class="text-slate-400">实际控制国盾量子</td>
|
||
<td class="text-slate-400">实际控制量子科技企业国盾量子</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">国民技术</td>
|
||
<td class="text-slate-400">保密网络运营</td>
|
||
<td class="text-slate-400">量子芯片研发</td>
|
||
<td class="text-slate-400">参与量子芯片研发</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">设计总院</td>
|
||
<td class="text-slate-400">其他</td>
|
||
<td class="text-slate-400">量子通信数据传输</td>
|
||
<td class="text-slate-400">研发量子通信数据传输技术</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">华工科技</td>
|
||
<td class="text-slate-400">其他</td>
|
||
<td class="text-slate-400">新型材料</td>
|
||
<td class="text-slate-400">开发量子科技相关新型材料</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">天奥电子</td>
|
||
<td class="text-slate-400">其他</td>
|
||
<td class="text-slate-400">精密测量</td>
|
||
<td class="text-slate-400">参与量子精密测量技术研发</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-lg font-semibold mb-3 text-yellow-300">量子计算(241210)</h3>
|
||
<div class="table-container">
|
||
<table class="w-full">
|
||
<thead>
|
||
<tr>
|
||
<th>股票</th>
|
||
<th>项目</th>
|
||
<th>合作</th>
|
||
<th>产业链</th>
|
||
<th>技术应用</th>
|
||
<th>股权变动</th>
|
||
<th>领域</th>
|
||
<th>投资</th>
|
||
<th>业务</th>
|
||
<th>应用领域</th>
|
||
<th>行业</th>
|
||
<th>原因</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">德美化工</td>
|
||
<td class="text-slate-400">参股本源量子</td>
|
||
<td class="text-slate-400">与本源量子成立量子计算生物化学行业应用生态联盟、发起'司南杯'量子竞赛、发起教育基地</td>
|
||
<td class="text-slate-400">量子计算生态建设</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">通过参股、合作及教育投入参与量子计算生态构建</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">复旦复华</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">与本源量子合作开拓超导量子计算机应用市场</td>
|
||
<td class="text-slate-400">量子计算产业协同发展</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">双方合作推动超导量子计算应用落地</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">禾信仪器</td>
|
||
<td class="text-slate-400">拟收购量子技术产品应用于人造粒子路线的量子计算</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">量子计算硬件</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">通过收购布局量子计算硬件领域</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">星光股份</td>
|
||
<td class="text-slate-400">收购天芯量子40%股权并增资</td>
|
||
<td class="text-slate-400">与华为合作</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">增资后持股51%</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">通过股权收购与增资布局量子计算并深化华为合作</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">吉大正元</td>
|
||
<td class="text-slate-400">抗量子密码算法研究</td>
|
||
<td class="text-slate-400">合作华为</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">量子安全加密</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">参与抗量子密码算法研发并合作华为</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">雄帝科技</td>
|
||
<td class="text-slate-400">研发量子加密安全产品</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">量子通信安全</td>
|
||
<td class="text-slate-400">量子密钥在无线网络中的安全延展</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">将量子加密技术应用于数据安全领域</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">东方中科</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">与国仪量子签约</td>
|
||
<td class="text-slate-400">量子测量设备</td>
|
||
<td class="text-slate-400">量子测量仪器平台</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">通过合作拓展量子测量仪器领域</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">科大国创</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">量子计算硬件</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">参股国仪量子</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">通过参股布局量子计算核心设备</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">康斯特</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">量子测量落地应用</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">电测量和磁测量</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">量子技术在精密测量领域的实际应用</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">格尔软件</td>
|
||
<td class="text-slate-400">上海泓格后量子科技控股公司</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">量子安全加密</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">专注后量子密码技术研发与产品开发</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">浙江东方</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">量子通信</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">持有浙江神州量子51%股权</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">通过控股子公司布局量子通信领域</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-medium text-slate-200">国盾量子</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">-</td>
|
||
<td class="text-slate-400">量子通信产品研发、生产、销售</td>
|
||
<td class="text-slate-400">光纤量子保密通信网络、星地一体广域量子保密通信</td>
|
||
<td class="text-slate-400">政务、金融、电力、国防</td>
|
||
<td class="text-slate-400">量子通信领域全产业链覆盖及多行业应用</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<script>
|
||
// 初始化粒子背景
|
||
tsParticles.load("particles-js", {
|
||
particles: {
|
||
number: {
|
||
value: 80,
|
||
density: {
|
||
enable: true,
|
||
value_area: 800
|
||
}
|
||
},
|
||
color: {
|
||
value: "#60a5fa"
|
||
},
|
||
shape: {
|
||
type: "circle"
|
||
},
|
||
opacity: {
|
||
value: 0.5,
|
||
random: false
|
||
},
|
||
size: {
|
||
value: 3,
|
||
random: true
|
||
},
|
||
line_linked: {
|
||
enable: true,
|
||
distance: 150,
|
||
color: "#a78bfa",
|
||
opacity: 0.4,
|
||
width: 1
|
||
},
|
||
move: {
|
||
enable: true,
|
||
speed: 2,
|
||
direction: "none",
|
||
random: false,
|
||
straight: false,
|
||
out_mode: "out",
|
||
bounce: false
|
||
}
|
||
},
|
||
interactivity: {
|
||
detect_on: "canvas",
|
||
events: {
|
||
onhover: {
|
||
enable: true,
|
||
mode: "grab"
|
||
},
|
||
onclick: {
|
||
enable: true,
|
||
mode: "push"
|
||
},
|
||
resize: true
|
||
},
|
||
modes: {
|
||
grab: {
|
||
distance: 140,
|
||
line_linked: {
|
||
opacity: 1
|
||
}
|
||
},
|
||
push: {
|
||
particles_nb: 4
|
||
}
|
||
}
|
||
},
|
||
retina_detect: true
|
||
});
|
||
</script>
|
||
</body>
|
||
</html>
|
||
``` |