Files
vf_react/public/htmls/信息安全.html
2025-12-05 13:29:18 +08:00

570 lines
34 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>深度研究报告:信息安全</title>
<!-- Tailwind & DaisyUI via CDN -->
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.11.1/dist/full.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<!-- Alpine.js via CDN -->
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.14.0/dist/cdn.min.js"></script>
<!-- ECharts via CDN -->
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Source+Code+Pro:wght@400;600&display=swap" rel="stylesheet">
<style>
:root {
--glow-color: rgba(0, 255, 255, 0.5);
--glow-spread: 8px;
}
body {
font-family: 'Inter', sans-serif;
background-color: #02040a;
color: #d1d5db;
overflow-x: hidden;
}
.font-mono-code {
font-family: 'Source Code Pro', monospace;
}
.nebula-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -10;
overflow: hidden;
background: #02040a;
}
.nebula-bg::before, .nebula-bg::after {
content: '';
position: absolute;
border-radius: 50%;
filter: blur(120px);
opacity: 0.15;
z-index: -1;
}
.nebula-bg::before {
width: 50vw;
height: 50vw;
background: radial-gradient(circle, rgba(118, 7, 154, 0.8) 0%, rgba(58, 1, 99, 0) 70%);
top: -20%;
left: -20%;
animation: move-glow1 25s infinite alternate ease-in-out;
}
.nebula-bg::after {
width: 60vw;
height: 60vw;
background: radial-gradient(circle, rgba(7, 85, 154, 0.8) 0%, rgba(1, 45, 99, 0) 70%);
bottom: -30%;
right: -25%;
animation: move-glow2 30s infinite alternate ease-in-out;
}
@keyframes move-glow1 {
from { transform: translate(0, 0) scale(1); }
to { transform: translate(10vw, 15vh) scale(1.2); }
}
@keyframes move-glow2 {
from { transform: translate(0, 0) scale(1); }
to { transform: translate(-15vw, -10vh) scale(0.9); }
}
.glass-card {
background: rgba(17, 24, 39, 0.6);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(55, 65, 81, 0.3);
border-radius: 1.5rem; /* 极致圆角 */
transition: all 0.3s ease-in-out;
box-shadow: 0 0 0 1px rgba(55, 65, 81, 0.2),
0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.glass-card:hover {
transform: translateY(-5px);
box-shadow: 0 0 15px 2px rgba(0, 180, 255, 0.2),
0 8px 32px 0 rgba(0, 0, 0, 0.37);
border-color: rgba(0, 180, 255, 0.3);
}
.section-title {
font-size: 2.25rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 2rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid rgba(0, 255, 255, 0.2);
text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}
.table-title {
font-size: 1.5rem;
font-weight: 600;
color: #ffffff;
padding: 1rem 1.5rem;
border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}
.table thead th {
color: #00e1ff;
background-color: rgba(31, 41, 55, 0.5);
font-size: 0.875rem;
}
.table tbody tr:hover {
background-color: rgba(55, 65, 81, 0.4);
}
.daisy-collapse {
background: rgba(17, 24, 39, 0.6);
backdrop-filter: blur(16px);
border: 1px solid rgba(55, 65, 81, 0.3);
border-radius: 1.5rem;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.daisy-collapse-title {
color: white;
font-size: 1.25rem;
}
.daisy-collapse-content {
background-color: rgba(10,15,25,0.5);
color: #d1d5db;
}
.daisy-collapse:focus-within {
border-color: rgba(0, 180, 255, 0.3);
}
h3, h4 {
color: #93c5fd; /* Light blue for subheadings */
font-weight: 600;
}
ul {
list-style-type: none;
padding-left: 0;
}
li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.75rem;
}
li::before {
content: '⏵';
position: absolute;
left: 0;
color: #22d3ee;
font-size: 1rem;
line-height: 1.5rem;
}
</style>
</head>
<body class="min-h-screen">
<div class="nebula-bg"></div>
<div class="container mx-auto p-4 md:p-8 max-w-screen-2xl">
<header class="text-center my-8 md:my-16">
<h1 class="text-4xl md:text-6xl font-bold text-white tracking-widest uppercase font-mono-code" style="text-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);">
信息安全
</h1>
<p class="text-cyan-300 mt-4 text-lg">AI 深度研究报告</p>
<div class="mt-6 text-xs text-gray-500 max-w-md mx-auto">
<p>北京价值前沿科技有限公司 AI投研agent“价小前投研” 呈现</p>
<p class="mt-1">本报告为AI合成数据不构成任何投资建议投资需谨慎。</p>
</div>
</header>
<main class="space-y-16">
<!-- Core Insight Section -->
<section id="insight">
<h2 class="section-title">核心洞察 (Concept Insight)</h2>
<div class="p-6 glass-card space-y-6">
<h3 class="text-2xl text-white">综合结论与投资启示</h3>
<p class="text-lg leading-relaxed">信息安全行业正处于由政策驱动的<strong class="text-cyan-300">“β行情”</strong>向由技术创新和场景落地驱动的<strong class="text-cyan-300">“α行情”</strong>过渡的关键阶段。其已不再是单纯的主题炒作坚实的基本面需求正在逐步形成。部分细分领域如AI安全、数据要素安全已进入需求爆发的前夜。</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-5 gap-6 mt-6">
<div class="lg:col-span-3 p-6 glass-card space-y-4">
<h3 class="text-xl text-white">核心逻辑与市场认知</h3>
<p>信息安全正经历从“合规驱动”到“价值驱动”的范式跃迁,其核心驱动力已演变为<strong class="text-cyan-300">政策强制、技术创新、地缘对抗</strong>三轮驱动的复合增长模式。</p>
<ul class="space-y-3 mt-4">
<li><strong>政策法规的“强制性”与“精细化”:</strong> 以《网络数据安全管理条例》为代表的强执行法规将数据安全从“可选项”变为“必选项”,直接创造预算和订单。</li>
<li><strong>技术范式变革创造的“新战场”:</strong> AI大模型、车联网、卫星互联网等带来全新攻击面催生了“原生安全”需求为行业带来结构性增长。</li>
<li><strong>地缘政治与供应链安全催生的“国产化”浪潮:</strong> 中美网络对抗与芯片安全风险排查,将信息安全与“信创”深度绑定,打开底层硬件替代的巨大增量市场。</li>
<li><strong>数字经济发展的“内生需求”:</strong> 数据作为“第五生产要素”,其流通与交易必须以安全为前提。数据安全已成为支撑数字经济发展的“基础设施投资”。</li>
</ul>
</div>
<div class="lg:col-span-2 p-6 glass-card">
<h3 class="text-xl text-white mb-4">核心驱动力模型</h3>
<div id="driversChart" style="width: 100%; height: 350px;"></div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mt-6">
<div class="p-6 glass-card space-y-4">
<h3 class="text-xl text-white">关键催化剂与未来路径</h3>
<h4>近期催化剂 (3-6个月):</h4>
<ul class="space-y-2 text-sm">
<li>《网络数据安全管理条例》正式实施,触发合规预算释放。</li>
<li>国家级“信创”采购目录更新,引爆订单预期。</li>
<li>AI安全标志性产品/解决方案发布,确立市场领导地位。</li>
<li>重大安全事件再次发生,成为最直接的情绪催化剂。</li>
</ul>
<h4 class="pt-4">长期发展路径:</h4>
<ul class="space-y-2 text-sm">
<li><strong>技术:</strong>走向平台化、一体化XDR, CNAPP“AI对抗AI”成为常态。</li>
<li><strong>业务:</strong>安全与业务深度融合,提供“业务风控”等场景化解决方案。</li>
<li><strong>市场:</strong>分化出存量升级(信创)、核心增量(数据/云安全、未来蓝海AI/卫星安全)三大赛道。</li>
</ul>
</div>
<div class="p-6 glass-card space-y-4">
<h3 class="text-xl text-white">预期差分析</h3>
<ul class="space-y-3">
<li><strong>从“AI for Security”到“Security for AI”的认知差</strong>市场普遍认知停留在AI赋能安全但保障AI自身安全的“Security for AI”如对抗样本检测、AIGC内容识别是更具潜力的蓝海市场对此认知不足。</li>
<li><strong>商业模式从“卖产品”到“卖服务/运营”的转型认知差:</strong>商业模式正向订阅制、服务化MSSP转型估值逻辑应区别于传统项目制公司市场预期不充分。</li>
<li><strong>对“场景安全”市场爆发节奏的预期差:</strong>市场对车联网、卫星互联网安全充满期待,但规模化商业落地仍需时间,短期业绩兑现存在不确定性。</li>
</ul>
</div>
</div>
</section>
<!-- Industry Chain & Key Players Section -->
<section id="industry-chain">
<h2 class="section-title">产业链与核心公司剖析</h2>
<div class="p-6 glass-card space-y-6">
<div>
<h3 class="text-xl text-white mb-4">产业链图谱</h3>
<div class="flex flex-col md:flex-row justify-between text-center gap-4">
<div class="flex-1 p-4 bg-gray-800/50 rounded-2xl border border-gray-700">
<h4 class="text-cyan-300 font-bold">上游</h4>
<p class="text-sm text-gray-400 mt-2">基础软硬件 (信创)</p>
<p class="mt-1">芯片 (CPU/GPU), 操作系统, 数据库</p>
</div>
<div class="flex items-center justify-center text-2xl text-cyan-400 font-bold"></div>
<div class="flex-1 p-4 bg-blue-900/50 rounded-2xl border border-blue-700 ring-2 ring-cyan-500/50">
<h4 class="text-cyan-200 font-bold">中游</h4>
<p class="text-sm text-gray-300 mt-2">安全产品与服务 (核心)</p>
<p class="mt-1">网络/终端/数据/云/应用安全, 安全运营</p>
</div>
<div class="flex items-center justify-center text-2xl text-cyan-400 font-bold"></div>
<div class="flex-1 p-4 bg-gray-800/50 rounded-2xl border border-gray-700">
<h4 class="text-cyan-300 font-bold">下游</h4>
<p class="text-sm text-gray-400 mt-2">最终用户</p>
<p class="mt-1">政府, 军工, 金融, 电信, 能源, 互联网等</p>
</div>
</div>
</div>
<div>
<h3 class="text-xl text-white mb-4">核心玩家对比</h3>
<div class="overflow-x-auto">
<table class="table w-full text-sm">
<thead>
<tr>
<th>公司</th>
<th>定位</th>
<th>核心优势</th>
<th>逻辑纯粹度</th>
</tr>
</thead>
<tbody>
<tr>
<td class="font-bold">亚信安全</td>
<td>领导者,生态整合型</td>
<td>深度绑定大厂生态 (华为鸿蒙/昇腾, 字节豆包),在"Security for AI" 和云安全领域布局清晰。</td>
<td class="text-success font-bold"></td>
</tr>
<tr>
<td class="font-bold">盛邦安全</td>
<td>追赶者,场景突破型</td>
<td>拥有“网络空间地图”高壁垒产品果断切入卫星互联网、低空安全等蓝海形成“AI+军用+空天”差异化逻辑。</td>
<td class="text-success font-bold">极高</td>
</tr>
<tr>
<td class="font-bold">中孚信息</td>
<td>特定领域龙头,政策驱动型</td>
<td>深耕党政军工保密安全市场,绝对龙头,直接受益于国家保密、信创政策。</td>
<td class="text-success font-bold">极高</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!-- Source Data Highlights -->
<section id="supporting-data">
<h2 class="section-title">源数据摘要 (Source Data Summary)</h2>
<div class="space-y-4">
<div tabindex="0" class="daisy-collapse daisy-collapse-plus">
<input type="radio" name="data-accordion" checked="checked" />
<div class="daisy-collapse-title">新闻数据精要</div>
<div class="daisy-collapse-content p-4">
<ul class="space-y-2">
<li><strong>国家与国际动态:</strong>中美网络安全博弈围绕“伏特台风”事件持续凸显国家级对抗国家网信办就H20芯片漏洞约谈英伟达协会建议谨慎采购美国芯片硬件供应链安全成焦点。</li>
<li><strong>法律法规:</strong>《数据出境安全评估申报指南(第三版)》发布优化流程《人脸识别技术应用安全管理办法》即将施行《人工智能安全治理框架》发布标志AI安全治理起步。</li>
<li><strong>产业动态 - AI融合</strong>安恒信息、奇安信、亚信安全、启明星辰等主流厂商全面接入DeepSeek大模型开启“AI for Security”时代提升威胁检测与运营效率。</li>
<li><strong>产业动态 - 新兴场景:</strong>车联网安全需求凸显(中机认检、国芯科技);智能家居摄像头隐私风险引关注;亚信安全、零点有数等深度布局鸿蒙生态安全。</li>
</ul>
</div>
</div>
<div tabindex="0" class="daisy-collapse daisy-collapse-plus">
<input type="radio" name="data-accordion" />
<div class="daisy-collapse-title">路演纪要核心</div>
<div class="daisy-collapse-content p-4">
<ul class="space-y-2">
<li><strong>亚信安全:</strong>战略清晰,双轮驱动。<strong>“AI for Security”</strong>通过新立方大模型提升运营效率;<strong>“Security for AI”</strong>是核心增量与火山引擎、豆包、鸿蒙深度合作提供对抗样本检测、DeepFake识别等能力抢占AI安全制高点。同时布局卫星互联网安全。</li>
<li><strong>盛邦安全:</strong>场景突破,差异化竞争。核心产品“网络空间地图”是增长引擎。通过收购天御云安,战略布局<strong>卫星互联网与低空安全</strong>,构建“空天地一体化”安全体系,深度绑定军用及公安需求。</li>
<li><strong>掌数信息:</strong>视角创新聚焦业务安全。从攻击视角转向防御视角定位“业务风控”利用UEBA、知识图谱及大模型技术解决反诈、反洗钱等业务场景的深层安全问题开辟蓝海市场。</li>
<li><strong>政策解读:</strong>《网络数据安全管理条例》是核心催化剂,将数据安全从合规驱动转向主动防御需求,催生数据分类分级、隐私计算、全生命周期管理三大增量市场。</li>
</ul>
</div>
</div>
<div tabindex="0" class="daisy-collapse daisy-collapse-plus">
<input type="radio" name="data-accordion" />
<div class="daisy-collapse-title">研报洞察集锦</div>
<div class="daisy-collapse-content p-4">
<ul class="space-y-2">
<li><strong>威胁态势严峻:</strong>APT攻击如Lazarus、勒索软件如LockBit持续活跃且技术升级跨平台、双重勒索黑灰产规模庞大恶意网站月增近20万。</li>
<li><strong>云安全演进:</strong>云原生环境扩大攻击面容器逃逸、API漏洞成新风险点。技术从传统主机安全演进至<strong>CWPP、CSPM、CNAPP</strong>等一体化平台,全栈一体、智能运营是未来趋势。</li>
<li><strong>AI带来新挑战</strong>AIGC技术降低了网络攻击门槛针对AI模型的提示词攻击、数据投毒等成为OWASP关注的新型威胁。防御端需探索“AI对抗AI”的能力。</li>
<li><strong>场景化安全需求:</strong>大型体育赛事如亚运会、运营商5G网络、工业互联网等场景对网络安全保障提出更高要求催生了威胁探测、数据安全防护、安全运营等定制化解决方案。</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Stock Data Section -->
<section id="stock-data">
<h2 class="section-title">相关概念股列表 (Associated Stocks)</h2>
<div class="glass-card mb-8">
<h3 class="table-title">核心安全厂商 & 国产替代 (CPU/GPU/OS/DB)</h3>
<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=688561" target="_blank" class="link link-hover text-cyan-400">688561</a></td><td>网络安全龙头企业之一,产品线全面。</td><td>网络安全</td></tr>
<tr><td>绿盟科技</td><td><a href="https://valuefrontier.cn/company?scode=300369" target="_blank" class="link link-hover text-cyan-400">300369</a></td><td>老牌网络安全厂商,技术积累深厚。</td><td>网络安全</td></tr>
<tr><td>三六零</td><td><a href="https://valuefrontier.cn/company?scode=601360" target="_blank" class="link link-hover text-cyan-400">601360</a></td><td>国内最大的互联网安全公司之一,拥有海量安全数据。</td><td>网络安全</td></tr>
<tr><td>任子行</td><td><a href="https://valuefrontier.cn/company?scode=300311" target="_blank" class="link link-hover text-cyan-400">300311</a></td><td>公共网络安全解决方案市占率领先。</td><td>国家网络安全</td></tr>
<tr><td>国华网安</td><td><a href="https://valuefrontier.cn/company?scode=000004" target="_blank" class="link link-hover text-cyan-400">000004</a></td><td>积极投身于国家信息安全战略的实施。</td><td>国家网络安全</td></tr>
<!-- 国产替代 -->
<tr><td>中国长城</td><td><a href="https://valuefrontier.cn/company?scode=000066" target="_blank" class="link link-hover text-cyan-400">000066</a></td><td>参股国产CPU龙头飞腾CPU出货量领先。</td><td>国产CPU/英特尔替代</td></tr>
<tr><td>海光信息</td><td><a href="https://valuefrontier.cn/company?scode=688041" target="_blank" class="link link-hover text-cyan-400">688041</a></td><td>国产CPU/DPU领先者产品进入主流服务器厂商。</td><td>国产CPU/DPU</td></tr>
<tr><td>龙芯中科</td><td><a href="https://valuefrontier.cn/company?scode=688047" target="_blank" class="link link-hover text-cyan-400">688047</a></td><td>完全自主的CPU公司中国自研CPU第一股。</td><td>国产CPU</td></tr>
<tr><td>景嘉微</td><td><a href="https://valuefrontier.cn/company?scode=300474" target="_blank" class="link link-hover text-cyan-400">300474</a></td><td>国产GPU第一具备完全自主研发GPU芯片能力。</td><td>国产GPU</td></tr>
<tr><td>中国软件</td><td><a href="https://valuefrontier.cn/company?scode=600536" target="_blank" class="link link-hover text-cyan-400">600536</a></td><td>旗下麒麟软件是国产操作系统核心厂商。</td><td>操作系统</td></tr>
<tr><td>达梦数据</td><td><a href="https://valuefrontier.cn/company?scode=688692" target="_blank" class="link link-hover text-cyan-400">688692</a></td><td>国产数据库龙头企业。</td><td>数据库</td></tr>
<tr><td>常山北明</td><td><a href="https://valuefrontier.cn/company?scode=000158" target="_blank" class="link link-hover text-cyan-400">000158</a></td><td>涉密计算机信息系统集成甲级资质,鸿蒙+信息安全。</td><td>国家网络安全/鸿蒙</td></tr>
</tbody>
</table>
</div>
</div>
<div class="glass-card mb-8">
<h3 class="table-title">汽车数据安全 & 车路云</h3>
<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=002405" target="_blank" class="link link-hover text-cyan-400">002405</a></td><td>国内导航电子地图行业的领先者。</td><td>地图数据</td></tr>
<tr><td>盛邦安全</td><td><a href="https://valuefrontier.cn/company?scode=688651" target="_blank" class="link link-hover text-cyan-400">688651</a></td><td>网络空间地图技术延伸至车联网及低空领域。</td><td>地图数据/网络安全</td></tr>
<tr><td>国芯科技</td><td><a href="https://valuefrontier.cn/company?scode=688262" target="_blank" class="link link-hover text-cyan-400">688262</a></td><td>车规级信息安全芯片在智能座舱批量供货。</td><td>车规级芯片/GPU</td></tr>
<tr><td>万集科技</td><td><a href="https://valuefrontier.cn/company?scode=300552" target="_blank" class="link link-hover text-cyan-400">300552</a></td><td>智能交通系统(ITS)领域的核心设备供应商ETC和V2X龙头。</td><td>车路云</td></tr>
<tr><td>金溢科技</td><td><a href="https://valuefrontier.cn/company?scode=002869" target="_blank" class="link link-hover text-cyan-400">002869</a></td><td>智慧交通和物联网领域的领先者。</td><td>车路云</td></tr>
<tr><td>赛力斯</td><td><a href="https://valuefrontier.cn/company?scode=601127" target="_blank" class="link link-hover text-cyan-400">601127</a></td><td>与华为深度合作,问界系列是汽车数据安全合规的代表。</td><td>华为汽车</td></tr>
</tbody>
</table>
</div>
</div>
<div class="glass-card">
<h3 class="table-title">近期涨幅异动分析</h3>
<div class="overflow-x-auto">
<table class="table w-full">
<thead>
<tr>
<th>股票名称</th>
<th>股票代码</th>
<th>异动日期</th>
<th>涨幅</th>
<th>核心驱动因素</th>
</tr>
</thead>
<tbody>
<tr>
<td>中孚信息</td>
<td><a href="https://valuefrontier.cn/company?scode=300659" target="_blank" class="link link-hover text-cyan-400">300659</a></td>
<td>2025-11-17</td>
<td class="text-error font-bold">+20.0%</td>
<td>信创政府采购新标+闽台信创示范区双政策共振,公司产品入围且注册地受益。</td>
</tr>
<tr>
<td>吉大正元</td>
<td><a href="https://valuefrontier.cn/company?scode=003029" target="_blank" class="link link-hover text-cyan-400">003029</a></td>
<td>2025-06-23</td>
<td class="text-error font-bold">+10.01%</td>
<td>受跨境支付政策及稳定币概念推动,叠加信息安全行业整合预期。</td>
</tr>
<tr>
<td>亚信安全</td>
<td><a href="https://valuefrontier.cn/company?scode=688225" target="_blank" class="link link-hover text-cyan-400">688225</a></td>
<td>2025-07-31</td>
<td class="text-error font-bold">+7.88%</td>
<td>入选Gartner技术曲线获权威认可叠加H20芯片漏洞等行业热点事件催化。</td>
</tr>
<tr>
<td>三未信安</td>
<td><a href="https://valuefrontier.cn/company?scode=688489" target="_blank" class="link link-hover text-cyan-400">688489</a></td>
<td>2025-06-23</td>
<td class="text-error font-bold">+6.75%</td>
<td>密码技术企业,受益于国产化替代趋势和同业公司中标项目的板块联动效应。</td>
</tr>
<tr>
<td>松原安全</td>
<td><a href="https://valuefrontier.cn/company?scode=300893" target="_blank" class="link link-hover text-cyan-400">300893</a></td>
<td>2025-10-24</td>
<td class="text-error font-bold">+6.23%</td>
<td>四中全会提升“大安全”战略地位网络安全法修订加入AI安全内容形成宏观与中观政策共振。</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</main>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
var chartDom = document.getElementById('driversChart');
var myChart = echarts.init(chartDom, 'dark');
var option;
option = {
backgroundColor: 'transparent',
tooltip: {
trigger: 'item',
backgroundColor: 'rgba(17, 24, 39, 0.8)',
borderColor: '#00e1ff',
textStyle: {
color: '#d1d5db'
}
},
legend: {
show: false
},
radar: {
indicator: [
{ name: '政策强制', max: 100 },
{ name: '技术创新', max: 100 },
{ name: '地缘对抗', max: 100 },
{ name: '数字经济内需', max: 100 }
],
center: ['50%', '55%'],
radius: '75%',
name: {
textStyle: {
color: '#ffffff',
fontSize: 14,
borderRadius: 3,
padding: [3, 5]
}
},
axisLine: {
lineStyle: {
color: 'rgba(0, 225, 255, 0.2)'
}
},
splitLine: {
lineStyle: {
color: 'rgba(0, 225, 255, 0.1)'
}
},
splitArea: {
areaStyle: {
color: ['rgba(0, 225, 255, 0.02)', 'rgba(0, 225, 255, 0.05)'],
shadowColor: 'rgba(0, 0, 0, 0.3)',
shadowBlur: 10
}
}
},
series: [{
name: '驱动力权重',
type: 'radar',
data: [
{
value: [95, 90, 85, 80],
name: '核心驱动力'
}
],
symbol: 'circle',
symbolSize: 6,
itemStyle: {
color: '#00e1ff'
},
lineStyle: {
color: '#00e1ff',
width: 2
},
areaStyle: {
color: new echarts.graphic.RadialGradient(0.5, 0.5, 1, [
{ offset: 0, color: 'rgba(0, 225, 255, 0.5)' },
{ offset: 1, color: 'rgba(0, 225, 255, 0.1)' }
])
}
}]
};
option && myChart.setOption(option);
window.addEventListener('resize', () => {
myChart.resize();
});
});
</script>
</body>
</html>