update pay ui
This commit is contained in:
@@ -1,441 +1,436 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<html lang="zh-CN" data-theme="night">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>无人机蜂群 - AI+无人机的第二发展方向</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css">
|
||||
<title>无人机蜂群 (UAV Swarm) - 深度行业研究报告</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.10.1/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
|
||||
<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=Space+Grotesk:wght@400;500;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--primary-color: #0d6efd;
|
||||
--secondary-color: #6c757d;
|
||||
--accent-color: #198754;
|
||||
--light-bg: #f8f9fa;
|
||||
--glow-color-1: rgba(0, 255, 255, 0.4);
|
||||
--glow-color-2: rgba(192, 0, 255, 0.4);
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||
color: #333;
|
||||
background-color: #f5f7fa;
|
||||
font-family: 'Inter', sans-serif;
|
||||
color: #E0E0E0;
|
||||
background-color: #02040a;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.hero-section {
|
||||
background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
|
||||
color: white;
|
||||
padding: 4rem 0;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
.font-title {
|
||||
font-family: 'Space Grotesk', sans-serif;
|
||||
}
|
||||
|
||||
.hero-section::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
.glass-card {
|
||||
background: rgba(20, 22, 38, 0.4);
|
||||
backdrop-filter: blur(20px);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 1.5rem; /* 24px */
|
||||
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
|
||||
}
|
||||
.bento-grid {
|
||||
display: grid;
|
||||
gap: 1.5rem;
|
||||
grid-template-columns: repeat(12, 1fr);
|
||||
}
|
||||
.bento-item {
|
||||
transition: all 0.3s ease-in-out;
|
||||
}
|
||||
.bento-item:hover {
|
||||
transform: translateY(-5px);
|
||||
border-color: rgba(0, 255, 255, 0.4);
|
||||
}
|
||||
.text-glow {
|
||||
text-shadow: 0 0 8px var(--glow-color-1), 0 0 20px var(--glow-color-1);
|
||||
}
|
||||
.text-glow-purple {
|
||||
text-shadow: 0 0 8px var(--glow-color-2), 0 0 20px var(--glow-color-2);
|
||||
}
|
||||
|
||||
.background-glow {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
|
||||
background-size: 50px 50px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.section-card {
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
|
||||
padding: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.section-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.feature-icon {
|
||||
font-size: 3rem;
|
||||
color: var(--primary-color);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.table-container {
|
||||
overflow-x: auto;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
|
||||
.stock-table {
|
||||
min-width: 100%;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.stock-table thead {
|
||||
background-color: var(--primary-color);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.stock-table th {
|
||||
font-weight: 600;
|
||||
padding: 1rem;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.stock-table td {
|
||||
padding: 0.75rem 1rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.stock-table tbody tr {
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.stock-table tbody tr:hover {
|
||||
background-color: rgba(13, 110, 253, 0.05);
|
||||
}
|
||||
|
||||
.badge-status {
|
||||
font-size: 0.85rem;
|
||||
padding: 0.35rem 0.65rem;
|
||||
}
|
||||
|
||||
.tech-pill {
|
||||
display: inline-block;
|
||||
padding: 0.25rem 0.75rem;
|
||||
margin: 0.25rem;
|
||||
background-color: #e9ecef;
|
||||
border-radius: 20px;
|
||||
font-size: 0.85rem;
|
||||
color: #495057;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.tech-pill:hover {
|
||||
background-color: var(--primary-color);
|
||||
color: white;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
padding-left: 2rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.timeline-item::before {
|
||||
content: '';
|
||||
|
||||
.glow-sphere {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0.5rem;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background-color: var(--primary-color);
|
||||
filter: blur(150px);
|
||||
}
|
||||
|
||||
.sphere-1 {
|
||||
width: 60vw;
|
||||
height: 60vw;
|
||||
max-width: 800px;
|
||||
max-height: 800px;
|
||||
top: -20%;
|
||||
left: -15%;
|
||||
background: radial-gradient(circle, rgba(29, 78, 216, 0.3) 0%, rgba(29, 78, 216, 0) 70%);
|
||||
animation: move-glow 25s ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
.sphere-2 {
|
||||
width: 50vw;
|
||||
height: 50vw;
|
||||
max-width: 700px;
|
||||
max-height: 700px;
|
||||
bottom: -25%;
|
||||
right: -10%;
|
||||
background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, rgba(147, 51, 234, 0) 70%);
|
||||
animation: move-glow 30s ease-in-out infinite alternate-reverse;
|
||||
}
|
||||
|
||||
.timeline-item::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
top: 1.5rem;
|
||||
width: 2px;
|
||||
height: calc(100% + 0.5rem);
|
||||
background-color: #dee2e6;
|
||||
@keyframes move-glow {
|
||||
from {
|
||||
transform: translate(0, 0) scale(1);
|
||||
}
|
||||
to {
|
||||
transform: translate(10vw, 15vh) scale(1.2);
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-item:last-child::after {
|
||||
display: none;
|
||||
table.table {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero-section {
|
||||
padding: 2rem 0;
|
||||
}
|
||||
|
||||
.section-card {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.stock-table {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.stock-table th,
|
||||
.stock-table td {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
table.table thead tr {
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
table.table th, table.table td {
|
||||
background: transparent;
|
||||
color: #E0E0E0;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
table.table th {
|
||||
color: #00E5FF;
|
||||
font-weight: 600;
|
||||
}
|
||||
table.table a {
|
||||
color: #67E8F9;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
table.table a:hover {
|
||||
color: #F0ABFC;
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Hero Section -->
|
||||
<section class="hero-section">
|
||||
<div class="container">
|
||||
<div class="hero-content text-center">
|
||||
<h1 class="display-4 fw-bold mb-3">无人机蜂群</h1>
|
||||
<p class="lead mb-0">AI+无人机的第二发展方向 | 低成本 · 高协同 · 智能化</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Main Content -->
|
||||
<div class="container my-5">
|
||||
<!-- Concept Overview -->
|
||||
<div class="section-card">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-md-8">
|
||||
<h2 class="mb-3">概念概述</h2>
|
||||
<p class="mb-3">无人机蜂群作为AI+无人机的第二发展方向,具备低成本、高协同性的核心优势,已在俄乌冲突中实现初步实战应用。通过多机协同、智能决策和分布式执行,无人机蜂群能够完成传统单机难以完成的复杂任务。</p>
|
||||
<div class="d-flex flex-wrap">
|
||||
<span class="tech-pill"><i class="bi bi-cpu me-1"></i>人工智能</span>
|
||||
<span class="tech-pill"><i class="bi bi-wifi me-1"></i>自组网通信</span>
|
||||
<span class="tech-pill"><i class="bi bi-shield me-1"></i>抗干扰隐身</span>
|
||||
<span class="tech-pill"><i class="bi bi-diagram-3 me-1"></i>集群控制</span>
|
||||
<span class="tech-pill"><i class="bi bi-geo-alt me-1"></i>协同导航</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 text-center">
|
||||
<i class="bi bi-behive2 feature-icon"></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Key Features -->
|
||||
<div class="row">
|
||||
<div class="col-md-4 mb-4">
|
||||
<div class="section-card h-100">
|
||||
<div class="text-center">
|
||||
<i class="bi bi-cash-stack feature-icon"></i>
|
||||
<h4>低成本优势</h4>
|
||||
<p>通过规模化生产和标准化设计,大幅降低单机成本,实现"数量胜质量"的作战理念</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 mb-4">
|
||||
<div class="section-card h-100">
|
||||
<div class="text-center">
|
||||
<i class="bi bi-people-fill feature-icon"></i>
|
||||
<h4>高协同性</h4>
|
||||
<p>多机协同作战,通过自组网通信和分布式决策,实现整体作战效能的指数级提升</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 mb-4">
|
||||
<div class="section-card h-100">
|
||||
<div class="text-center">
|
||||
<i class="bi bi-lightning-charge-fill feature-icon"></i>
|
||||
<h4>智能化水平</h4>
|
||||
<p>融合AI大模型技术,实现自主决策、自适应任务规划和智能故障恢复</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Application Scenarios -->
|
||||
<div class="section-card">
|
||||
<h2 class="mb-4">应用场景</h2>
|
||||
<div class="row">
|
||||
<div class="col-md-6 mb-4">
|
||||
<h5 class="text-primary mb-3"><i class="bi bi-shield-check me-2"></i>军事领域</h5>
|
||||
<ul class="list-unstyled">
|
||||
<li class="timeline-item">侦察监视:大范围、多角度情报收集</li>
|
||||
<li class="timeline-item">电子对抗:分布式电子干扰和压制</li>
|
||||
<li class="timeline-item">精确打击:协同攻击高价值目标</li>
|
||||
<li class="timeline-item">通信中继:构建战场通信网络</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<h5 class="text-success mb-3"><i class="bi bi-building me-2"></i>民用领域</h5>
|
||||
<ul class="list-unstyled">
|
||||
<li class="timeline-item">农业植保:大规模病虫害监测与防治</li>
|
||||
<li class="timeline-item">应急救援:灾区通信中继与物资投送</li>
|
||||
<li class="timeline-item">环境监测:大气/水质实时监控</li>
|
||||
<li class="timeline-item">物流配送:最后一公里智能配送</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Stock Data Table -->
|
||||
<div class="section-card">
|
||||
<h2 class="mb-4">相关上市公司</h2>
|
||||
<div class="table-container">
|
||||
<table class="table table-hover stock-table mb-0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>股票名称</th>
|
||||
<th>所属领域</th>
|
||||
<th>核心技术/产品</th>
|
||||
<th>项目状态</th>
|
||||
<th>信息来源</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="fw-semibold">光启技术</td>
|
||||
<td>无人机蜂群</td>
|
||||
<td>长航时大规模无人机蜂群</td>
|
||||
<td><span class="badge bg-warning badge-status">试飞阶段</span></td>
|
||||
<td>调研</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">振华科技</td>
|
||||
<td>无人机蜂群</td>
|
||||
<td>无人机及蜂群系统研产销(子公司:甘肃长风电子)</td>
|
||||
<td><span class="badge bg-success badge-status">运营中</span></td>
|
||||
<td>公告</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">航天彩虹</td>
|
||||
<td>无人机蜂群</td>
|
||||
<td>CH8系列无人机(复杂环境下自主起降/集群作战)</td>
|
||||
<td><span class="badge bg-info badge-status">技术验证</span></td>
|
||||
<td>互动</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">星网宇达</td>
|
||||
<td>无人机蜂群</td>
|
||||
<td>智能蜂群控制/抗干扰隐身技术(北京市科学技术二等奖)</td>
|
||||
<td><span class="badge bg-success badge-status">批量供货</span></td>
|
||||
<td>调研</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">科思科技</td>
|
||||
<td>指控系统</td>
|
||||
<td>集群作战的系统级供应商</td>
|
||||
<td><span class="badge bg-primary badge-status">系统级</span></td>
|
||||
<td>券商</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">华如科技</td>
|
||||
<td>指控系统</td>
|
||||
<td>无人机集群指控系统"云脑"(硬件产品)</td>
|
||||
<td><span class="badge bg-info badge-status">产品化</span></td>
|
||||
<td>年报</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">盟升电子</td>
|
||||
<td>数据链</td>
|
||||
<td>导航数据链一体化终端/蜂群自组网通信网络规模伸缩技术</td>
|
||||
<td><span class="badge bg-success badge-status">已结题</span></td>
|
||||
<td>互动/年报</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">王子新材</td>
|
||||
<td>数据链</td>
|
||||
<td>抗干扰通信算法/抗干扰数据链(合作方:成都高斯联合)</td>
|
||||
<td><span class="badge bg-info badge-status">研发中</span></td>
|
||||
<td>媒体访谈</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">佳缘科技</td>
|
||||
<td>数据加密</td>
|
||||
<td>Gb/s级高速实时加密技术/区块链分布式去中心化技术</td>
|
||||
<td><span class="badge bg-info badge-status">技术突破</span></td>
|
||||
<td>互动</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">智明达</td>
|
||||
<td>飞控</td>
|
||||
<td>飞控系统/航电组网/蜂群抗干扰系统</td>
|
||||
<td><span class="badge bg-success badge-status">系统参与</span></td>
|
||||
<td>半年报</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">铭普光磁</td>
|
||||
<td>其他</td>
|
||||
<td>频率源组件(参股华盾防务4.23%)</td>
|
||||
<td><span class="badge bg-info badge-status">参股</span></td>
|
||||
<td>公告/工商</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="fw-semibold">海能达</td>
|
||||
<td>其他</td>
|
||||
<td>微型无人机蜂群系统/通讯模块</td>
|
||||
<td><span class="badge bg-info badge-status">产品化</span></td>
|
||||
<td>公开资料</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Future Outlook -->
|
||||
<div class="section-card">
|
||||
<h2 class="mb-4">未来展望</h2>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h5 class="mb-3"><i class="bi bi-graph-up-arrow me-2 text-primary"></i>技术融合趋势</h5>
|
||||
<div class="d-flex flex-wrap">
|
||||
<span class="tech-pill">AI大模型</span>
|
||||
<span class="tech-pill">5G/6G通信</span>
|
||||
<span class="tech-pill">数字孪生</span>
|
||||
<span class="tech-pill">边缘计算</span>
|
||||
<span class="tech-pill">量子通信</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h5 class="mb-3"><i class="bi bi-rocket-takeoff me-2 text-success"></i>发展阶段</h5>
|
||||
<div class="progress mb-2" style="height: 25px;">
|
||||
<div class="progress-bar bg-info" role="progressbar" style="width: 35%" aria-valuenow="35" aria-valuemin="0" aria-valuemax="100">技术验证</div>
|
||||
</div>
|
||||
<div class="progress mb-2" style="height: 25px;">
|
||||
<div class="progress-bar bg-warning" role="progressbar" style="width: 45%" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100">小规模应用</div>
|
||||
</div>
|
||||
<div class="progress" style="height: 25px;">
|
||||
<div class="progress-bar bg-success" role="progressbar" style="width: 20%" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100">规模化部署</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<body class="min-h-screen">
|
||||
<div class="background-glow">
|
||||
<div class="glow-sphere sphere-1"></div>
|
||||
<div class="glow-sphere sphere-2"></div>
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="bg-dark text-white py-4 mt-5">
|
||||
<div class="container text-center">
|
||||
<p class="mb-0">© 2024 无人机蜂群概念分析 | 数据来源:公开信息整理</p>
|
||||
</div>
|
||||
</footer>
|
||||
<div class="container mx-auto p-4 md:p-8">
|
||||
<!-- Header -->
|
||||
<header class="text-center py-12">
|
||||
<h1 class="font-title text-4xl md:text-6xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-cyan-300 via-fuchsia-400 to-cyan-300 animate-pulse">
|
||||
无人机蜂群 (UAV Swarm)
|
||||
</h1>
|
||||
<p class="font-title text-2xl md:text-3xl mt-4 text-cyan-200 text-glow">深度行业研究报告</p>
|
||||
<p class="mt-6 text-sm text-slate-400 max-w-3xl mx-auto">
|
||||
由 北京价值前沿科技有限公司 AI投研agent:“价小前投研” 呈现。<br>本报告基于新闻、路演、研报、市场洞察及股票数据进行AI合成,不构成投资建议,投资需谨慎。
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<!-- Main Content Grid -->
|
||||
<main class="bento-grid">
|
||||
<!-- Core View -->
|
||||
<section class="col-span-12 md:col-span-7 p-6 glass-card bento-item">
|
||||
<h2 class="font-title text-2xl font-bold text-cyan-300 text-glow mb-4">核心观点摘要</h2>
|
||||
<p class="text-slate-200 leading-relaxed">
|
||||
无人机蜂群正处在从<strong class="text-fuchsia-300">战术验证</strong>向<strong class="text-fuchsia-300">体系化装备</strong>过渡的关键阶段,其核心驱动力源于现代战争对“低成本、非对称、饱和攻击”能力的迫切需求。市场热情虽高,但技术瓶颈与订单落地的不确定性构成了显著的预期差。该赛道潜力巨大,但实现路径并非一帆风顺,投资价值更倾向于壁垒更高的<strong class="text-cyan-300">“大脑”(指控系统)</strong>和<strong class="text-cyan-300">“神经网络”(数据链)</strong>环节。
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<!-- Key Quote -->
|
||||
<section class="col-span-12 md:col-span-5 p-6 glass-card bento-item flex flex-col justify-center">
|
||||
<h2 class="font-title text-2xl font-bold text-cyan-300 text-glow mb-4">关键声音</h2>
|
||||
<blockquote class="border-l-4 border-fuchsia-400 pl-4 italic">
|
||||
<p class="text-slate-200">"与此同时,一些傻子还在生产F-35这样的载人战斗机。"</p>
|
||||
<cite class="block text-right mt-2 text-slate-400">- 埃隆·马斯克 (转发中国无人机蜂群视频后评论)</cite>
|
||||
</blockquote>
|
||||
</section>
|
||||
|
||||
<!-- Concept Events Timeline -->
|
||||
<section class="col-span-12 p-6 glass-card bento-item">
|
||||
<h2 class="font-title text-2xl font-bold text-cyan-300 text-glow mb-4">概念核心事件演进</h2>
|
||||
<div id="timeline-chart" class="w-full h-72 md:h-80"></div>
|
||||
</section>
|
||||
|
||||
<!-- In-Depth Insight Section -->
|
||||
<section class="col-span-12 p-6 glass-card bento-item">
|
||||
<h2 class="font-title text-3xl font-bold text-center text-cyan-300 text-glow mb-8">深度洞察:逻辑、预期差与路径</h2>
|
||||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
|
||||
<!-- Core Logic -->
|
||||
<div class="space-y-4 p-4 border border-white/10 rounded-2xl">
|
||||
<h3 class="font-title text-xl font-semibold text-fuchsia-300 text-glow-purple">核心驱动力 & 市场认知</h3>
|
||||
<ul class="list-disc list-inside space-y-2 text-slate-300">
|
||||
<li><strong>军事范式变革 (根本逻辑):</strong> “以量换质”的饱和攻击,削弱重型装备代差优势,重塑未来战争形态。</li>
|
||||
<li><strong>技术成熟度提升 (使能条件):</strong> AI、数据链、飞控等技术进步构建了产业生态基础,使蜂群作战成为可能。</li>
|
||||
<li><strong>成本效益驱动 (经济逻辑):</strong> 相较于昂贵的载人战机,廉价无人机进行消耗作战具备极高的经济效益,是其大规模列装的前提。</li>
|
||||
<li><strong>市场情绪:</strong> 市场关注度极高,整体情绪乐观,普遍将无人机蜂群视为“万亿级赛道”,但亦带有部分炒作成分。</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- Expectation Gap -->
|
||||
<div class="space-y-4 p-4 border border-white/10 rounded-2xl">
|
||||
<h3 class="font-title text-xl font-semibold text-fuchsia-300 text-glow-purple">预期差分析:机遇与风险</h3>
|
||||
<ul class="list-disc list-inside space-y-2 text-slate-300">
|
||||
<li><strong>【预期差一】订单落地速度:</strong> 市场对新闻事件反应瞬时,但兴图新科路演揭示“订单推迟”,表明从技术验证到采购落地存在时间差。</li>
|
||||
<li><strong>【预期差二】技术实现瓶颈:</strong> 市场普遍认为技术已成熟,但路演指出“民用5G/星链难以支持蜂群操控”,数据链稳定性是重大挑战。</li>
|
||||
<li><strong>【预期差三】价值核心认知:</strong> 市场易聚焦平台本身,但真正的核心壁垒在于<strong class="text-cyan-300">集群指控系统、自组网数据链和AI算法</strong>,其价值可能被低估。</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Catalysts & Path -->
|
||||
<section class="col-span-12 lg:col-span-8 p-6 glass-card bento-item">
|
||||
<h2 class="font-title text-2xl font-bold text-cyan-300 text-glow mb-4">关键催化剂与发展路径</h2>
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div>
|
||||
<h4 class="font-semibold text-lg text-fuchsia-300 mb-2">近期催化剂 (3-6个月)</h4>
|
||||
<ul class="list-decimal list-inside space-y-1 text-slate-300">
|
||||
<li>“九天”蜂群母舰首飞及测试成功。</li>
|
||||
<li>“九三阅兵”等重大场合公开展示。</li>
|
||||
<li>核心系统供应商(如科思科技)大额订单公告。</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="font-semibold text-lg text-fuchsia-300 mb-2">长期发展路径</h4>
|
||||
<ul class="list-decimal list-inside space-y-1 text-slate-300">
|
||||
<li><strong>阶段一 (当前):</strong> 技术验证与小规模列装。</li>
|
||||
<li><strong>阶段二 (1-3年):</strong> 平台化与体系化发展(“九天”母舰)。</li>
|
||||
<li><strong>阶段三 (3-5年):</strong> 智能化与大规模应用(百架级 -> 万架级)。</li>
|
||||
<li><strong>阶段四 (未来):</strong> 军民两用拓展(物流、应急等)。</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- War Paradigm -->
|
||||
<section class="col-span-12 lg:col-span-4 p-6 glass-card bento-item flex flex-col justify-center items-center text-center">
|
||||
<h3 class="font-title text-xl font-bold text-cyan-300 text-glow">未来作战新范式</h3>
|
||||
<p class="mt-2 text-slate-200">无人机“蜂群作战”、人机协同、无人装备集群...<br>一个全新的万亿级赛道正在开启。</p>
|
||||
</section>
|
||||
|
||||
<!-- Supporting Data Tabs -->
|
||||
<section class="col-span-12 p-6 glass-card bento-item" x-data="{ tab: 'news' }">
|
||||
<h2 class="font-title text-2xl font-bold text-cyan-300 text-glow mb-4">支撑数据源摘要</h2>
|
||||
<div class="tabs tabs-boxed bg-black/20">
|
||||
<a class="tab" :class="{'tab-active !bg-cyan-600 !text-white': tab === 'news'}" @click="tab = 'news'">新闻数据</a>
|
||||
<a class="tab" :class="{'tab-active !bg-cyan-600 !text-white': tab === 'roadshow'}" @click="tab = 'roadshow'">路演纪要</a>
|
||||
<a class="tab" :class="{'tab-active !bg-cyan-600 !text-white': tab === 'research'}" @click="tab = 'research'">研报观点</a>
|
||||
</div>
|
||||
<div class="mt-4 space-y-4 text-slate-300">
|
||||
<div x-show="tab === 'news'">
|
||||
<ul class="list-disc list-inside space-y-2">
|
||||
<li><strong>俄乌冲突应用:</strong> 乌克兰利用无人机蜂群突袭俄炼油业等高价值目标。</li>
|
||||
<li><strong>中国军队无人化作战:</strong> 央视披露陆军“蜂群”“狼群”协同作战演习,300架无人机组成直径2公里立体作战集群。</li>
|
||||
<li><strong>关键装备“九天”母舰:</strong> 中国首款蜂群母舰,机腹集成“异构蜂巢任务舱”,可容纳上百枚巡飞弹或小型无人机。</li>
|
||||
<li><strong>AI技术融合:</strong> 360集团AI升级为“多智能体蜂群”,实现从“单兵作战”到“群体协同”的进化。</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div x-show="tab === 'roadshow'" style="display: none;">
|
||||
<ul class="list-disc list-inside space-y-2">
|
||||
<li><strong>产品能力明确:</strong> 中无人机“翼龙-2”改进型明确支持“蜂群”作战,未来趋势为“自主蜂群”。</li>
|
||||
<li><strong>技术瓶颈揭示:</strong> 路演指出民用4G/5G和星链难以支持蜂群操控,战场数据链稳定性是关键瓶颈。</li>
|
||||
<li><strong>订单落地不确定性:</strong> 兴图新科透露,已完成蜂群演练,但原计划的年内订单推迟。</li>
|
||||
<li><strong>美军大规模需求:</strong> 美军“地狱火”导弹作战计划将采用“万台级”蜂群无人机列装,需求空间广阔。</li>
|
||||
<li><strong>中国技术领先:</strong> 路演信息称中国在无人机蜂群技术方面已接近或部分超越美国,可协同999架以下无人机。</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div x-show="tab === 'research'" style="display: none;">
|
||||
<ul class="list-disc list-inside space-y-2">
|
||||
<li><strong>核心技术原理:</strong> 核心是“集群智能”,通过简单个体间的协同行为涌现出复杂的群体智能,系统去中心化,生存能力强。</li>
|
||||
<li><strong>中无人机技术储备:</strong> 掌握“无人机智能自主与智能指控技术”、“TSN网络信息交互技术”等蜂群核心技术。</li>
|
||||
<li><strong>关键产品:</strong> “云影-350”无人机可组成可消耗集群系统,“翼龙-6”强调“耗得起”,符合蜂群作战理念。</li>
|
||||
<li><strong>未来发展趋势:</strong> 智能化水平提升、异构协同、网络化作战、微型化。</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Industry Chain & Core Companies -->
|
||||
<section class="col-span-12 p-6 glass-card bento-item">
|
||||
<h2 class="font-title text-3xl font-bold text-center text-cyan-300 text-glow mb-8">产业链深度剖析</h2>
|
||||
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 text-center mb-8">
|
||||
<div class="p-4 border border-cyan-400/30 rounded-2xl">
|
||||
<h4 class="font-title text-xl font-semibold text-cyan-300">上游:核心软硬件</h4>
|
||||
<p class="text-slate-300 mt-2">芯片/组件、飞控/抗干扰、数据加密、机体材料</p>
|
||||
</div>
|
||||
<div class="p-4 border-2 border-fuchsia-400/50 rounded-2xl ring-4 ring-fuchsia-500/20">
|
||||
<h4 class="font-title text-xl font-semibold text-fuchsia-300">中游:系统与平台</h4>
|
||||
<p class="text-slate-200 mt-2"><strong>指控系统/AI大脑、数据链/通信网络</strong>、无人机平台</p>
|
||||
</div>
|
||||
<div class="p-4 border border-cyan-400/30 rounded-2xl">
|
||||
<h4 class="font-title text-xl font-semibold text-cyan-300">下游:应用</h4>
|
||||
<p class="text-slate-300 mt-2">国防军工、应急、物流、测绘</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 class="font-title text-2xl font-bold text-cyan-300 text-glow mb-4">核心玩家对比</h3>
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4">
|
||||
<div class="p-4 bg-black/20 rounded-xl">
|
||||
<h5 class="font-semibold text-lg text-white">领导者 (平台) - 中无人机</h5>
|
||||
<p class="text-sm text-slate-300 mt-1">拥有从平台到技术的全面布局,具备“链长”优势,但业务弹性相对较小。</p>
|
||||
</div>
|
||||
<div class="p-4 bg-black/20 rounded-xl border border-cyan-400">
|
||||
<h5 class="font-semibold text-lg text-white">最纯粹的核心 (大脑) - 科思科技</h5>
|
||||
<p class="text-sm text-slate-300 mt-1">集群作战系统级供应商,逻辑最纯粹,壁垒最深,业绩弹性最大。</p>
|
||||
</div>
|
||||
<div class="p-4 bg-black/20 rounded-xl border border-cyan-400">
|
||||
<h5 class="font-semibold text-lg text-white">关键赋能者 (神经) - 盟升电子</h5>
|
||||
<p class="text-sm text-slate-300 mt-1">解决通信瓶颈,蜂群自组网技术是关键基础,是体系基石。</p>
|
||||
</div>
|
||||
<div class="p-4 bg-black/20 rounded-xl">
|
||||
<h5 class="font-semibold text-lg text-white">潜力股 - 星网宇达</h5>
|
||||
<p class="text-sm text-slate-300 mt-1">智能蜂群控制项目已获科学技术奖并批量供货,具备黑马潜力。</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Risks -->
|
||||
<section class="col-span-12 p-6 glass-card bento-item">
|
||||
<h2 class="font-title text-2xl font-bold text-cyan-300 text-glow mb-4">潜在风险与挑战</h2>
|
||||
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
|
||||
<div class="p-4 bg-red-900/20 border border-red-500/30 rounded-xl">
|
||||
<h4 class="font-semibold text-red-300">技术风险</h4>
|
||||
<p class="text-slate-300 text-sm mt-1">通信瓶颈(自组网数据链稳定性)、协同决策算法成熟度、反制技术(激光/微波)快速发展。</p>
|
||||
</div>
|
||||
<div class="p-4 bg-yellow-900/20 border border-yellow-500/30 rounded-xl">
|
||||
<h4 class="font-semibold text-yellow-300">商业化风险</h4>
|
||||
<p class="text-slate-300 text-sm mt-1">军工订单释放节奏不确定(兴图新科订单推迟是例证)、低成本与高效能的平衡仍待实战检验。</p>
|
||||
</div>
|
||||
<div class="p-4 bg-blue-900/20 border border-blue-500/30 rounded-xl">
|
||||
<h4 class="font-semibold text-blue-300">政策与竞争风险</h4>
|
||||
<p class="text-slate-300 text-sm mt-1">国际法与战争伦理限制、行业竞争加剧。</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Associated Stocks -->
|
||||
<section class="col-span-12 p-6 glass-card bento-item">
|
||||
<h2 class="font-title text-3xl font-bold text-center text-cyan-300 text-glow mb-8">产业链关联个股</h2>
|
||||
<div class="overflow-x-auto">
|
||||
<table class="table w-full">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>股票名称</th>
|
||||
<th>股票代码</th>
|
||||
<th>关联原因</th>
|
||||
<th>核心标签</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td>光启技术</td><td><a href="https://valuefrontier.cn/company?scode=002625" target="_blank">002625</a></td><td>公司致力于打造拥有长航时的大规模无人机蜂群,相关产品正处于试飞阶段</td><td>无人机蜂群</td></tr>
|
||||
<tr><td>振华科技</td><td><a href="https://valuefrontier.cn/company?scode=000733" target="_blank">000733</a></td><td>关联公司甘肃长风电子主营业务包括无人机及无人机蜂群系统的研产销等</td><td>无人机蜂群</td></tr>
|
||||
<tr><td>航天彩虹</td><td><a href="https://valuefrontier.cn/company?scode=002389" target="_blank">002389</a></td><td>公司CH8系列无人机部分机型可在复杂环境下自主起降,携带引爆装置进行集群作战</td><td>无人机蜂群</td></tr>
|
||||
<tr><td>星网宇达</td><td><a href="https://valuefrontier.cn/company?scode=002829" target="_blank">002829</a></td><td>公司的智能蜂群控制的抗干扰隐身无人机项目获“北京市科学技术二等奖”,产品已批量供货</td><td>无人机蜂群</td></tr>
|
||||
<tr><td>科思科技</td><td><a href="https://valuefrontier.cn/company?scode=688788" target="_blank">688788</a></td><td>集群作战的系统级供应商</td><td>指控系统</td></tr>
|
||||
<tr><td>华如科技</td><td><a href="https://valuefrontier.cn/company?scode=301302" target="_blank">301302</a></td><td>无人集群指控系统“云脑”(硬件产品等)</td><td>指控系统</td></tr>
|
||||
<tr><td>盟升电子</td><td><a href="https://valuefrontier.cn/company?scode=688311" target="_blank">688311</a></td><td>蜂群自组网通信技术已结题,导航数据链一体化终端产品已应用于国防领域</td><td>数据链</td></tr>
|
||||
<tr><td>王子新材</td><td><a href="https://valuefrontier.cn/company?scode=002735" target="_blank">002735</a></td><td>孙公司成都高斯研发的抗干扰数据链已用于无人机蜂群</td><td>数据链</td></tr>
|
||||
<tr><td>佳缘科技</td><td><a href="https://valuefrontier.cn/company?scode=301117" target="_blank">301117</a></td><td>研发Gbps以上高速实时加密技术,解决无人机蜂群数据实时加密协同难题</td><td>数据加密</td></tr>
|
||||
<tr><td>智明达</td><td><a href="https://valuefrontier.cn/company?scode=688636" target="_blank">688636</a></td><td>公司成功参与无人机飞控系统、无人机航电组网、无人机蜂群抗干扰等系统</td><td>飞控</td></tr>
|
||||
<tr><td>铭普光磁</td><td><a href="https://valuefrontier.cn/company?scode=002902" target="_blank">002902</a></td><td>参股公司华盾防务的频率源组件用于无人机蜂群项目</td><td>其他</td></tr>
|
||||
<tr><td>海能达</td><td><a href="https://valuefrontier.cn/company?scode=002583" target="_blank">002583</a></td><td>机器人搭载微型无人机蜂群系统,配合公司通讯模块</td><td>其他</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer class="text-center py-8">
|
||||
<p class="text-xs text-slate-500">
|
||||
北京价值前沿科技有限公司 AI投研agent:“价小前投研”<br>
|
||||
本报告所有信息均基于公开数据由AI模型分析合成,仅供参考,不构成任何投资建议。市场有风险,投资需谨慎。
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script>
|
||||
// Add smooth scrolling
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener('click', function (e) {
|
||||
e.preventDefault();
|
||||
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
||||
behavior: 'smooth'
|
||||
});
|
||||
});
|
||||
});
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
var chartDom = document.getElementById('timeline-chart');
|
||||
var myChart = echarts.init(chartDom, 'dark');
|
||||
var option;
|
||||
|
||||
// Add animation on scroll
|
||||
const observerOptions = {
|
||||
threshold: 0.1,
|
||||
rootMargin: '0px 0px -100px 0px'
|
||||
};
|
||||
option = {
|
||||
tooltip: {
|
||||
trigger: 'axis',
|
||||
formatter: function (params) {
|
||||
let res = `<strong style="color: #67E8F9;">${params[0].name}</strong><br/>`;
|
||||
res += `<span style="font-size:12px;">${params[0].value[2]}</span>`;
|
||||
return res;
|
||||
},
|
||||
backgroundColor: 'rgba(20, 22, 38, 0.8)',
|
||||
borderColor: 'rgba(0, 255, 255, 0.5)',
|
||||
textStyle: {
|
||||
color: '#E0E0E0'
|
||||
}
|
||||
},
|
||||
grid: {
|
||||
left: '3%',
|
||||
right: '4%',
|
||||
bottom: '3%',
|
||||
containLabel: true
|
||||
},
|
||||
xAxis: {
|
||||
type: 'time',
|
||||
axisLine: { lineStyle: { color: 'rgba(255,255,255,0.3)' } },
|
||||
splitLine: { show: false },
|
||||
},
|
||||
yAxis: {
|
||||
type: 'value',
|
||||
show: false
|
||||
},
|
||||
series: [{
|
||||
name: '事件',
|
||||
type: 'line',
|
||||
symbol: 'circle',
|
||||
symbolSize: 12,
|
||||
itemStyle: {
|
||||
color: '#00E5FF',
|
||||
borderColor: '#02040a',
|
||||
borderWidth: 2
|
||||
},
|
||||
lineStyle: {
|
||||
color: 'rgba(0, 229, 255, 0.5)',
|
||||
width: 2,
|
||||
type: 'dashed'
|
||||
},
|
||||
label: {
|
||||
show: true,
|
||||
position: 'top',
|
||||
formatter: '{b}',
|
||||
color: '#E0E0E0',
|
||||
fontSize: 12,
|
||||
offset: [0, -15]
|
||||
},
|
||||
data: [
|
||||
{ name: '俄乌冲突', value: ['2024-03-01', 1, '实战验证:乌克兰蜂群突袭俄炼油厂,展示非对称作战潜力。'] },
|
||||
{ name: '“九天”母舰', value: ['2024-05-17', 1, '平台突破:央视报道中国首款蜂群母舰将首飞,可容纳上百无人机。'] },
|
||||
{ name: 'AI融合', value: ['2024-08-02', 1, '技术融合:360集团AI升级为“多智能体蜂群”,提供算法决策基础。'] },
|
||||
{ name: '陆军演习', value: ['2024-08-03', 1, '战略展示:央视披露解放军300架无人机与50台无人战车协同演习。'] },
|
||||
{ name: '美军规划', value: ['2024-12-23', 1, '需求预期:路演披露美军计划列装“万台级”蜂群无人机。'] }
|
||||
]
|
||||
}]
|
||||
};
|
||||
|
||||
const observer = new IntersectionObserver(function(entries) {
|
||||
entries.forEach(entry => {
|
||||
if (entry.isIntersecting) {
|
||||
entry.target.style.opacity = '1';
|
||||
entry.target.style.transform = 'translateY(0)';
|
||||
}
|
||||
});
|
||||
}, observerOptions);
|
||||
|
||||
document.querySelectorAll('.section-card').forEach(el => {
|
||||
el.style.opacity = '0';
|
||||
el.style.transform = 'translateY(20px)';
|
||||
el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
|
||||
observer.observe(el);
|
||||
myChart.setOption(option);
|
||||
window.addEventListener('resize', myChart.resize);
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
Reference in New Issue
Block a user