Files
vf_react/public/htmls/自动驾驶.html
2025-12-05 13:29:18 +08:00

526 lines
38 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

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

<!DOCTYPE html>
<html lang="zh-CN" data-theme="night">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI投研报告自动驾驶</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>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #020010;
overflow-x: hidden;
}
.glass-card {
background: rgba(20, 20, 50, 0.2);
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
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);
}
.glow-text {
text-shadow: 0 0 8px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.4);
}
.title-line {
position: relative;
padding-bottom: 0.75rem;
}
.title-line::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background: linear-gradient(90deg, #3B82F6, #818CF8);
border-radius: 999px;
}
.background-glow {
position: fixed;
top: 50%;
left: 50%;
width: 1200px;
height: 1200px;
background: radial-gradient(circle, rgba(29, 78, 216, 0.2) 0%, rgba(29, 78, 216, 0) 60%);
transform: translate(-50%, -50%);
z-index: -1;
pointer-events: none;
animation: pulse 15s infinite alternate;
}
@keyframes pulse {
0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.7; }
100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}
.table thead th {
background-color: rgba(59, 130, 246, 0.1);
color: #A5B4FC;
font-weight: 600;
}
.table tbody tr:hover {
background-color: rgba(59, 130, 246, 0.08);
}
details > summary {
list-style: none;
}
details > summary::-webkit-details-marker {
display: none;
}
</style>
</head>
<body class="text-gray-300 min-h-screen">
<div class="background-glow"></div>
<div class="max-w-7xl mx-auto p-4 sm:p-6 lg:p-8">
<!-- Header -->
<header class="text-center py-8">
<p class="text-sm text-gray-500">北京价值前沿科技有限公司 AI投研agent“价小前投研” 呈现</p>
<h1 class="text-5xl md:text-6xl font-bold text-white my-4 glow-text">自动驾驶</h1>
<p class="max-w-3xl mx-auto text-gray-400">从辅助驾驶到完全无人AI大模型驱动的智能化下半场已至拐点。</p>
<p class="text-xs text-red-400 mt-2">本报告为AI合成数据投资需谨慎。</p>
</header>
<!-- Core Insight Section -->
<main class="space-y-12">
<!-- Bento Grid Summary -->
<section class="bento-grid">
<div class="col-span-12 lg:col-span-8 p-6 glass-card">
<h2 class="text-2xl font-bold text-white mb-4 title-line">核心观点摘要</h2>
<p class="text-gray-300 leading-relaxed">自动驾驶正处在从L2+高级辅助驾驶向L3/L4高级别自动驾驶过渡的关键拐点。其核心驱动力已从单一的硬件堆砌转变为由<strong class="text-blue-300">“AI大模型技术突破”</strong><strong class="text-indigo-300">“商业化路径尤其是Robotaxi明确”</strong>共同构成的双轮驱动。未来潜力巨大,但短期内,软件算法的数据闭环能力和支撑高级别冗余的<strong class="text-purple-300">线控底盘</strong>等核心硬件的成熟度,将成为决定竞争格局的关键胜负手。</p>
</div>
<div class="col-span-12 lg:col-span-4 p-6 glass-card flex flex-col justify-center">
<h3 class="text-lg font-semibold text-white mb-2">行业关键年份</h3>
<div class="space-y-2">
<div class="flex items-center space-x-2">
<span class="badge badge-info badge-outline">2024年</span>
<span class="text-sm">L3元年 / Robotaxi经济性显现</span>
</div>
<div class="flex items-center space-x-2">
<span class="badge badge-primary badge-outline">2025年</span>
<span class="text-sm">Robotaxi量产元年 (预期)</span>
</div>
<div class="flex items-center space-x-2">
<span class="badge badge-secondary badge-outline">2026年</span>
<span class="text-sm">高速L3规模商用 (预期)</span>
</div>
</div>
</div>
</section>
<!-- Core Logic & Market Perception -->
<section class="glass-card p-6" x-data="{ activeTab: 'logic' }">
<div class="tabs tabs-boxed bg-black/20 mb-6">
<a class="tab" :class="{'tab-active': activeTab === 'logic'}" @click="activeTab = 'logic'">核心逻辑与市场认知</a>
<a class="tab" :class="{'tab-active': activeTab === 'expectation'}" @click="activeTab = 'expectation'">预期差分析</a>
</div>
<div x-show="activeTab === 'logic'">
<h3 class="text-xl font-bold text-white mb-4">核心驱动力</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="p-4 bg-black/20 rounded-xl border border-gray-700">
<h4 class="font-semibold text-blue-300">1. 技术范式革命 (根本驱动)</h4>
<p class="text-sm mt-2">端到端AI大模型是核心。特斯拉FSD V12用神经网络替代超30万行C++代码,实现信息无损传递,从“规则驱动”转向“数据驱动”,极大加速算法迭代与场景泛化能力。</p>
</div>
<div class="p-4 bg-black/20 rounded-xl border border-gray-700">
<h4 class="font-semibold text-indigo-300">2. 政策法规“开绿灯” (关键保障)</h4>
<p class="text-sm mt-2">从中央L3/L4准入试点到地方立法先行如北京政策确定性为商业化落地提供法律基础。全国已有51城出台支持政策开放测试道路3.2万公里。</p>
</div>
<div class="p-4 bg-black/20 rounded-xl border border-gray-700">
<h4 class="font-semibold text-purple-300">3. 商业化经济性显现 (商业驱动)</h4>
<p class="text-sm mt-2">Robotaxi和无人配送初步具备经济性。百度萝卜快跑第六代车型成本降至20.46万元Waymo在旧金山实现盈亏平衡成本快速下降使大规模商业化成为可能。</p>
</div>
</div>
</div>
<div x-show="activeTab === 'expectation'">
<h3 class="text-xl font-bold text-white mb-4">市场预期差</h3>
<ul class="space-y-4">
<li>
<p><strong class="text-amber-300">“完全无人”的预期差:</strong>市场对Robotaxi的“无人化”预期过高。领先的百度萝卜快跑综合人车比仍接近1:1.5(含云端远程接管),距离真正无人运营尚有距离。</p>
</li>
<li>
<p><strong class="text-teal-300">软件光环下的硬件“隐形冠军”:</strong>市场关注算法迭代但忽略了实现L3+的物理基础——硬件冗余。<strong class="font-bold">线控底盘(转向、制动)</strong>是实现车辆完全控制的必要条件,其增量价值可能被市场低估。</p>
</li>
<li>
<p><strong class="text-rose-300">数据壁垒的真实性:</strong>特斯拉13亿英里的里程数据是壁垒但迭代速度受限于“接管案例稀缺”。同时国内厂商理想月智驾里程超1.5亿公里正通过城市NOA快速积累本土化数据有望追赶。</p>
</li>
</ul>
</div>
</section>
<!-- Catalysts & Future Path -->
<section class="glass-card p-6">
<h2 class="text-2xl font-bold text-white mb-6 title-line">关键催化剂与未来发展路径</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8 items-start">
<div>
<h3 class="text-xl font-semibold text-white mb-4">近期催化剂 (未来3-6个月)</h3>
<ul class="space-y-4">
<li class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-green-400 mr-3 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>
<div>
<h4 class="font-semibold">国内首批L3级牌照发放</h4>
<p class="text-sm text-gray-400">预计3-5家车企有望获正式L3牌照是政策落地的标志性事件。</p>
</div>
</li>
<li class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-blue-400 mr-3 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" /></svg>
<div>
<h4 class="font-semibold">特斯拉FSD入华实质性进展</h4>
<p class="text-sm text-gray-400">FSD中国版若正式推送将形成“鲶鱼效应”加速国内行业竞争。</p>
</div>
</li>
<li class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-yellow-400 mr-3 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6" /></svg>
<div>
<h4 class="font-semibold">城市NOA价格下探</h4>
<p class="text-sm text-gray-400">高阶智驾功能向20万元以下甚至10万级车型覆盖将引爆新一轮渗透率增长。</p>
</div>
</li>
</ul>
</div>
<div>
<h3 class="text-xl font-semibold text-white mb-4">长期发展路径</h3>
<div id="timeline-chart" class="w-full h-80"></div>
</div>
</div>
</section>
<!-- Evidence Section -->
<section class="glass-card p-6" x-data="{ open: false }">
<details class="group">
<summary class="flex justify-between items-center font-medium cursor-pointer list-none">
<h2 class="text-2xl font-bold text-white title-line">核心数据与信息支撑 (新闻/路演/研报摘要)</h2>
<span class="transition group-open:rotate-180">
<svg fill="none" height="24" shape-rendering="geometricPrecision" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" viewBox="0 0 24 24" width="24"><path d="M6 9l6 6 6-6"></path></svg>
</span>
</summary>
<div class="mt-6 space-y-6">
<!-- News -->
<div class="collapse collapse-plus bg-black/20 border border-gray-700">
<input type="checkbox" />
<div class="collapse-title text-xl font-medium text-blue-300">新闻数据摘要</div>
<div class="collapse-content">
<ul class="list-disc pl-5 space-y-2 text-sm">
<li><strong>政策法规:</strong> 北京通过《自动驾驶汽车条例》2025年4月1日施行新增“个人乘用车出行”场景规划3000平方公里示范区。全国51城出台支持政策已发测试号牌1.6万张。</li>
<li><strong>商业化运营:</strong> 广州开通全国首个全天时全天候Robotaxi服务联结机场高铁站。深圳开通首条自动驾驶公交线。滴滴、百度自动驾驶出海中东。菜鸟无人车目标明年交付12000台。</li>
<li><strong>事故调查:</strong> 亚马逊Zoox因软件问题召回270辆车特斯拉Robotaxi在奥斯汀首秀期间涉嫌违规接受联邦调查。</li>
<li><strong>技术预测:</strong> 华为预测2026年高速L3将规模商用。产业反馈今年将是L3元年3-5家车企有望获正式牌照。L3硬件架构趋向多激光雷达+线控冗余。</li>
</ul>
</div>
</div>
<!-- Roadshows -->
<div class="collapse collapse-plus bg-black/20 border border-gray-700">
<input type="checkbox" />
<div class="collapse-title text-xl font-medium text-indigo-300">路演数据摘要</div>
<div class="collapse-content">
<ul class="list-disc pl-5 space-y-2 text-sm">
<li><strong>技术路线:</strong> 端到端大模型成为共识。特斯拉FSD V12.4接管里程提升5-10倍华为ADS 3.0、小鹏NGP等跟进端到端架构。世界模型被视为L4到L5跃迁关键。</li>
<li><strong>Robotaxi进展:</strong> 百度萝卜快跑在武汉覆盖3000平方公里Q2订单预计破120万单第六代车成本降至20万以下。特斯拉发布CyberCab2026年量产目标每英里成本30-40美分。</li>
<li><strong>硬件核心:</strong> 英伟达Thor芯片2025年量产支持三域融合比亚迪、小鹏等将采用。L3以上自动驾驶对<strong class="text-purple-300">线控底盘(转向/制动)</strong>的需求成为刚性增量。</li>
<li><strong>FSD入华:</strong> 特斯拉已在上海南汇新城启动约10台车FSD测试受益于数据跨境传输政策松绑将对国内市场形成“鲶鱼效应”。</li>
</ul>
</div>
</div>
<!-- Research Reports -->
<div class="collapse collapse-plus bg-black/20 border border-gray-700">
<input type="checkbox" />
<div class="collapse-title text-xl font-medium text-purple-300">研报数据摘要</div>
<div class="collapse-content">
<ul class="list-disc pl-5 space-y-2 text-sm">
<li><strong>市场规模与渗透率:</strong> 2023年中国自动驾驶市场规模超3300亿元。L2渗透率达51%预计2025年NOA渗透率超17%。高阶智驾双Orin-X级渗透率2025年有望超10%,迎来加速拐点。</li>
<li><strong>技术趋势:</strong> 端到端E2E是2024年主线简化开发加快迭代。下一步是引入大语言模型LLM的认知智能。</li>
<li><strong>商业化进程:</strong> Robotaxi行业发展需要“车企+自动驾驶公司+平台商”三方合力。百度萝卜快跑计划2024年内实现收支平衡。特斯拉Cybercab单车成本有望降至3万美元以下。</li>
<li><strong>政策标准:</strong> 国家层面发布L3/L4准入试点通知9个联合体进入。地方层面北京、上海等20余城开放商业化运营。</li>
</ul>
</div>
</div>
</div>
</details>
</section>
<!-- Industry Chain & Core Companies -->
<section class="glass-card p-6">
<h2 class="text-2xl font-bold text-white mb-6 title-line">产业链与核心公司深度剖析</h2>
<div class="space-y-8">
<!-- Industry Chain Map -->
<div>
<h3 class="text-xl font-semibold text-white mb-4">产业链图谱</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 text-center">
<div class="p-4 bg-black/20 rounded-xl border border-blue-500">
<h4 class="font-bold text-blue-300">上游:核心软硬件</h4>
<p class="text-sm mt-2"><strong>感知层:</strong> 摄像头, 激光雷达<br><strong>决策层:</strong> AI芯片, 高精地图, 域控制器<br><strong>执行层 (核心增量):</strong> <span class="text-yellow-300 font-bold">线控底盘 (制动/转向/悬架)</span></p>
</div>
<div class="p-4 bg-black/20 rounded-xl border border-indigo-500">
<h4 class="font-bold text-indigo-300">中游:整车与方案商</h4>
<p class="text-sm mt-2"><strong>整车厂:</strong> 特斯拉, 百度, 华为系, 小鹏等<br><strong>解决方案商:</strong> 百度Apollo, 小马智行, Momenta</p>
</div>
<div class="p-4 bg-black/20 rounded-xl border border-purple-500">
<h4 class="font-bold text-purple-300">下游:运营与服务</h4>
<p class="text-sm mt-2"><strong>出行服务 (Robotaxi):</strong> 萝卜快跑, 滴滴<br><strong>无人配送/特种作业:</strong> 菜鸟, 经纬恒润(港口)<br><strong>车路协同:</strong> 金溢科技, 万集科技</p>
</div>
</div>
</div>
<!-- Core Player Comparison -->
<div>
<h3 class="text-xl font-semibold text-white mb-4">核心玩家对比</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="p-4 bg-black/20 rounded-xl">
<h4 class="text-lg font-bold">特斯拉</h4>
<p class="text-sm text-gray-400 mb-2">技术引领者 & 模式颠覆者</p>
<p class="text-sm"><strong class="text-green-400">优势:</strong> 端到端算法、影子模式数据、品牌力。旨在构建庞大运力网络。<br><strong class="text-red-400">风险:</strong> 纯视觉路线可靠性、中国市场合规挑战。</p>
</div>
<div class="p-4 bg-black/20 rounded-xl">
<h4 class="text-lg font-bold">百度 (萝卜快跑)</h4>
<p class="text-sm text-gray-400 mb-2">L4级Robotaxi运营先行者</p>
<p class="text-sm"><strong class="text-green-400">优势:</strong> 国内最丰富运营经验、最长测试里程、政府关系密切。<br><strong class="text-red-400">风险:</strong> 重资产运营模式、依赖高精地图限制扩张速度。</p>
</div>
<div class="p-4 bg-black/20 rounded-xl">
<h4 class="text-lg font-bold">华为</h4>
<p class="text-sm text-gray-400 mb-2">全栈技术赋能者</p>
<p class="text-sm"><strong class="text-green-400">优势:</strong> 全栈解决方案、与车企深度绑定、商业落地快。<br><strong class="text-red-400">风险:</strong> “不造车”模式下如何平衡多方利益,构建统一数据闭环。</p>
</div>
</div>
</div>
</div>
</section>
<!-- Risks & Challenges -->
<section class="glass-card p-6">
<h2 class="text-2xl font-bold text-white mb-6 title-line">潜在风险与挑战</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 text-sm">
<div class="p-4 bg-red-900/20 border border-red-500/50 rounded-lg">
<h4 class="font-semibold text-red-300">技术风险</h4>
<ul class="list-disc pl-5 mt-2 space-y-1">
<li>长尾场景 (Corner Case) 解决难度大</li>
<li>端到端模型“黑箱”问题,事故定责难</li>
<li>数据安全与隐私合规挑战</li>
</ul>
</div>
<div class="p-4 bg-amber-900/20 border border-amber-500/50 rounded-lg">
<h4 class="font-semibold text-amber-300">商业化风险</h4>
<ul class="list-disc pl-5 mt-2 space-y-1">
<li>成本与盈利平衡难,前期投入巨大</li>
<li>公众接受度受事故影响波动大</li>
<li>保险与责任界定法规滞后于技术</li>
</ul>
</div>
<div class="p-4 bg-yellow-900/20 border border-yellow-500/50 rounded-lg">
<h4 class="font-semibold text-yellow-300">政策与竞争风险</h4>
<ul class="list-disc pl-5 mt-2 space-y-1">
<li>监管政策不确定性,或因安全事故收紧</li>
<li>行业内卷加剧,价格战侵蚀利润</li>
<li>技术路线尚未统一,存在押注失误风险</li>
</ul>
</div>
</div>
</section>
<!-- Conclusion & Investment Implications -->
<section class="glass-card p-6">
<h2 class="text-2xl font-bold text-white mb-6 title-line">综合结论与投资启示</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-semibold text-white mb-4">综合看法</h3>
<p>自动驾驶正经历从<strong class="text-yellow-400">主题炒作向基本面驱动过渡</strong>的关键阶段。</p>
<ul class="mt-4 space-y-2">
<li><strong class="text-blue-300">L2+市场 (城市NOA):</strong> 已进入基本面驱动阶段,竞争焦点是用户体验、成本和数据闭环效率。</li>
<li><strong class="text-indigo-300">L4级市场 (Robotaxi):</strong> 仍带有浓厚主题投资色彩,但商业化时间表和经济性正逐步验证其基本面。</li>
</ul>
<h3 class="text-xl font-semibold text-white mt-8 mb-4">最具投资价值的细分环节</h3>
<ol class="list-decimal list-inside space-y-2 font-semibold">
<li><span class="text-purple-300">线控底盘执行器:</span> L3+确定性增量,安全刚需,不依赖特定技术路线。</li>
<li><span class="text-teal-300">域控制器与Tier1:</span> 汽车架构集中化趋势下的产业链中枢。</li>
<li><span class="text-lime-300">特定场景解决方案商:</span> 港口、矿山等封闭场景可能更早实现商业闭环。</li>
</ol>
</div>
<div>
<h3 class="text-xl font-semibold text-white mb-4">需重点跟踪和验证的关键指标</h3>
<div class="space-y-4">
<div class="p-4 bg-black/20 rounded-lg">
<h4 class="font-semibold">C端渗透率指标</h4>
<p class="text-sm text-gray-400">城市NOA在20万以下车型的渗透率 & 用户月活率 (MAU)。</p>
</div>
<div class="p-4 bg-black/20 rounded-lg">
<h4 class="font-semibold">Robotaxi运营效率指标</h4>
<p class="text-sm text-gray-400">MPHD (每次干预行驶里程)、单车日均订单、每公里运营成本。</p>
</div>
<div class="p-4 bg-black/20 rounded-lg">
<h4 class="font-semibold">产业链订单指标</h4>
<p class="text-sm text-gray-400">线控底盘公司在手订单 & 毛利率、高算力AI芯片出货量。</p>
</div>
</div>
</div>
</div>
</section>
<!-- Stock Data -->
<section class="glass-card p-6">
<h2 class="text-2xl font-bold text-white mb-6 title-line">产业链核心标的</h2>
<div class="overflow-x-auto">
<table class="table table-zebra w-full text-sm">
<thead>
<tr>
<th>股票名称</th>
<th>股票代码</th>
<th>核心逻辑</th>
<th>产业链环节</th>
</tr>
</thead>
<tbody>
<tr><td>联创电子</td><td><a href="https://valuefrontier.cn/company?scode=002036" target="_blank" class="link link-hover text-blue-400">002036</a></td><td>光学镜片, 镜头组, 车载摄像头模组</td><td>感知域, 摄像头</td></tr>
<tr><td>舜宇光学</td><td></td><td>光学镜片, 镜头组</td><td>感知域, 摄像头</td></tr>
<tr><td>水晶光电</td><td><a href="https://valuefrontier.cn/company?scode=002273" target="_blank" class="link link-hover text-blue-400">002273</a></td><td>滤光片, 保护膜</td><td>感知域, 摄像头</td></tr>
<tr><td>亚太股份</td><td><a href="https://valuefrontier.cn/company?scode=002284" target="_blank" class="link link-hover text-blue-400">002284</a></td><td>毫米波雷达, 线控制动</td><td>感知域, 执行域</td></tr>
<tr><td>万集科技</td><td><a href="https://valuefrontier.cn/company?scode=300552" target="_blank" class="link link-hover text-blue-400">300552</a></td><td>激光雷达模组, 路侧设备</td><td>感知域, 车路协同</td></tr>
<tr><td>德赛西威</td><td><a href="https://valuefrontier.cn/company?scode=002920" target="_blank" class="link link-hover text-blue-400">002920</a></td><td>算力平台, 算法</td><td>决策域</td></tr>
<tr><td>经纬恒润</td><td><a href="https://valuefrontier.cn/company?scode=688326" target="_blank" class="link link-hover text-blue-400">688326</a></td><td>算力平台, 算法, 域控制器</td><td>决策域, 执行域</td></tr>
<tr><td>伯特利</td><td><a href="https://valuefrontier.cn/company?scode=603596" target="_blank" class="link link-hover text-blue-400">603596</a></td><td>线控制动</td><td>执行域, 线控底盘</td></tr>
<tr><td>浙江世宝</td><td><a href="https://valuefrontier.cn/company?scode=002703" target="_blank" class="link link-hover text-blue-400">002703</a></td><td>线控转向</td><td>执行域, 线控底盘</td></tr>
<tr><td>拓普集团</td><td><a href="https://valuefrontier.cn/company?scode=601689" target="_blank" class="link link-hover text-blue-400">601689</a></td><td>线控制动</td><td>执行域, 线控底盘</td></tr>
<tr><td>金溢科技</td><td><a href="https://valuefrontier.cn/company?scode=002869" target="_blank" class="link link-hover text-blue-400">002869</a></td><td>路侧设备</td><td>车路协同</td></tr>
<tr><td>四维图新</td><td><a href="https://valuefrontier.cn/company?scode=002405" target="_blank" class="link link-hover text-blue-400">002405</a></td><td>高精地图导航</td><td>车路协同</td></tr>
</tbody>
</table>
</div>
</section>
<!-- Rise Analysis -->
<section class="glass-card p-6">
<h2 class="text-2xl font-bold text-white mb-6 title-line">近期异动个股分析</h2>
<div class="space-y-4">
<div class="collapse collapse-arrow bg-black/20 border border-gray-700" x-data="{ open: false }" v-for="(item, index) in riseAnalysisData" :key="index">
<input type="checkbox" />
<div class="collapse-title text-lg font-medium">
<div class="flex items-center justify-between">
<div>
<span x-text="item.stock"></span>
(<a :href="'https://valuefrontier.cn/company?scode=' + item.stock_code" target="_blank" class="link link-hover text-blue-400" x-text="item.stock_code"></a>)
</div>
<div class="badge badge-success" x-text="'+' + item.rise_rate + '%'"></div>
</div>
</div>
<div class="collapse-content">
<div class="text-sm text-gray-300" x-html="item.reason.replace(/\n/g, '<br>')"></div>
</div>
</div>
</div>
</section>
</main>
</div>
<script>
document.addEventListener('alpine:init', () => {
Alpine.data('riseAnalysisData', () => ({
riseAnalysisData: [
{
"stock": "世运电路", "stock_code": "603920", "rise_rate": 10.02, "trade_date": "2025-06-24",
"reason": "<strong>核心结论:</strong> 世运电路涨停主要因特斯拉Robotaxi内测启动公司作为其PCB核心供应商将显著受益于自动驾驶领域发展。\n\n<strong>驱动概念:</strong> PCB+新能源汽车+自动驾驶\n\n<strong>个股异动解析:</strong>\n1. <strong>消息面:</strong>特斯拉Robotaxi在得克萨斯州启动内测预计2027年规模达百万辆。公司是特斯拉PCB核心供应商Cybercab车型PCB价值量将达3000-5000元/车。\n2. <strong>基本面:</strong>公司主营PCB研发生产汽车电子领域收入占比超50%。预计半年报净利润同比增长超50%。深度绑定特斯拉等头部客户,订单能见度高。"
},
{
"stock": "英利汽车", "stock_code": "601279", "rise_rate": 10.02, "trade_date": "2025-07-17",
"reason": "<strong>核心结论:</strong> 特斯拉FSD在华落地预期叠加工信部L3准入试点催化线控底盘Tier2订单放量逻辑被市场集中定价英利汽车作为特斯拉副车架供应商率先涨停。\n\n<strong>驱动概念:</strong> 特斯拉FSD+线控底盘+自动驾驶准入\n\n<strong>个股异动解析:</strong>\n1. <strong>消息面:</strong>特斯拉FSD在华落地Dojo2芯片量产倒计时。工信部发布L3准入试点线控底盘需求确定性提升。\n2. <strong>基本面:</strong>公司2025Q1公告获北美新能源客户特斯拉副车架项目定点生命周期金额12亿元。公司为Model Y副车架Tier2供应商。"
},
{
"stock": "福达股份", "stock_code": "603166", "rise_rate": 10.01, "trade_date": "2025-07-16",
"reason": "<strong>核心结论:</strong> 工信部将高精度减速器列为L3+自动驾驶强制安全部件福达股份8亿元定增扩产项目即将落地成为板块情绪与政策共振的最强弹性标的。\n\n<strong>驱动概念:</strong> 高精度减速器+人形机器人+新能源汽车电驱动\n\n<strong>个股异动解析:</strong>\n1. <strong>消息面:</strong>工信部征求意见稿首次把“高精度减速器”列为L3及以上自动驾驶强制安全部件单车用量和价值量均提升。\n2. <strong>基本面:</strong>公司2024年5月公告拟定增8亿元用于“新能源汽车电驱动系统高精密齿轮扩产项目”完全达产后新增减速器齿轮180万套/年。"
},
{
"stock": "建新股份", "stock_code": "300107", "rise_rate": 10.18, "trade_date": "2025-06-23",
"reason": "<strong>核心驱动:</strong> 与自动驾驶或飞行汽车等新兴技术领域相关的概念被市场热炒,投资者预期公司将受益于这些领域的发展。\n\n<strong>资金推动:</strong> 主力资金在尾盘集中买入,推动股价快速上涨,同时市场情绪高涨吸引了更多跟风资金。"
},
{
"stock": "豪恩汽电", "stock_code": "301488", "rise_rate": 8.22, "trade_date": "2025-09-12",
"reason": "<strong>核心驱动:</strong> 工信部等八部门发布的智能网联汽车政策利好特别是L3级自动驾驶有条件批准直接利好公司智能驾驶业务。\n\n<strong>基本面支撑:</strong> 公司在智能驾驶感知领域市占率领先超声波雷达27.3%),同时布局机器人“大脑”控制技术(绑定英伟达生态),双赛道发展前景被市场看好。"
}
]
}));
});
var chartDom = document.getElementById('timeline-chart');
var myChart = echarts.init(chartDom);
var option;
option = {
tooltip: {
trigger: 'axis',
axisPointer: { type: 'shadow' },
backgroundColor: 'rgba(20, 20, 50, 0.7)',
borderColor: 'rgba(255, 255, 255, 0.2)',
textStyle: { color: '#E0E0E0' }
},
grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true },
xAxis: {
type: 'category',
data: ['2024-2025', '2026-2028', '2028以后'],
axisLine: { lineStyle: { color: '#888' } },
axisLabel: { color: '#ccc' }
},
yAxis: {
type: 'value',
axisLine: { lineStyle: { color: '#888' } },
splitLine: { lineStyle: { color: '#333' } },
axisLabel: { color: '#ccc' }
},
series: [
{
name: '发展阶段',
type: 'bar',
stack: 'total',
label: { show: true, position: 'inside', color: '#fff', formatter: '{b}' },
itemStyle: { color: '#3B82F6' },
data: [
{ value: 1, name: '第一阶段' , label: { formatter: '第一阶段L3过渡' } },
{ value: 0 },
{ value: 0 }
],
},
{
name: '发展阶段',
type: 'bar',
stack: 'total',
itemStyle: { color: '#6366F1' },
data: [
{ value: 0 },
{ value: 1, name: '第二阶段' , label: { formatter: '第二阶段L3规模化' } },
{ value: 0 }
]
},
{
name: '发展阶段',
type: 'bar',
stack: 'total',
itemStyle: { color: '#8B5CF6' },
data: [
{ value: 0 },
{ value: 0 },
{ value: 1, name: '第三阶段' , label: { formatter: '第三阶段L4普及' } }
]
}
],
visualMap: {
show: false,
min: 0,
max: 1,
inRange: {
color: ['#3B82F6', '#6366F1', '#8B5CF6']
}
},
dataZoom: [{ type: 'inside' }]
};
myChart.setOption(option);
window.addEventListener('resize', myChart.resize);
</script>
</body>
</html>