546 lines
36 KiB
HTML
546 lines
36 KiB
HTML
直接生成HTML代码如下,您可以将其保存为`.html`文件并在浏览器中打开。
|
||
|
||
|
||
<!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 CSS & DaisyUI -->
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.10.1/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
|
||
<!-- Alpine.js for interactivity -->
|
||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
||
|
||
<!-- ECharts for data visualization -->
|
||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
|
||
|
||
<!-- Google Fonts for a futuristic feel -->
|
||
<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=Manrope:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||
|
||
<style>
|
||
/* --- Custom Styles for the Sci-Fi FUI / James Turrell theme --- */
|
||
|
||
/* Main body and background */
|
||
body {
|
||
font-family: 'Manrope', sans-serif;
|
||
background-color: #020010;
|
||
background-image:
|
||
radial-gradient(ellipse 50% 80% at 20% 10%, rgba(138, 43, 226, 0.15), transparent),
|
||
radial-gradient(ellipse 40% 70% at 80% 90%, rgba(0, 242, 255, 0.15), transparent);
|
||
background-attachment: fixed;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
/* Glassmorphism Card Style */
|
||
.glass-card {
|
||
background: rgba(10, 10, 30, 0.5);
|
||
backdrop-filter: blur(20px);
|
||
-webkit-backdrop-filter: blur(20px);
|
||
border: 1px solid rgba(0, 242, 255, 0.1);
|
||
border-radius: 1.5rem; /*极致圆角*/
|
||
transition: all 0.3s ease-in-out;
|
||
box-shadow: 0 0 10px rgba(0, 242, 255, 0.05), 0 0 30px rgba(138, 43, 226, 0.05);
|
||
}
|
||
.glass-card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 0 20px rgba(0, 242, 255, 0.15), 0 0 60px rgba(138, 43, 226, 0.1);
|
||
border-color: rgba(0, 242, 255, 0.3);
|
||
}
|
||
|
||
/* Glowing Text Effect */
|
||
.text-shadow-glow {
|
||
color: #fff;
|
||
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
|
||
0 0 10px rgba(0, 242, 255, 0.7),
|
||
0 0 15px rgba(0, 242, 255, 0.5),
|
||
0 0 20px rgba(0, 242, 255, 0.3);
|
||
}
|
||
.text-accent-glow {
|
||
color: #00f2ff;
|
||
text-shadow: 0 0 8px rgba(0, 242, 255, 0.8);
|
||
}
|
||
|
||
/* Custom scrollbar for a cleaner look */
|
||
.custom-scrollbar::-webkit-scrollbar {
|
||
width: 8px;
|
||
}
|
||
.custom-scrollbar::-webkit-scrollbar-track {
|
||
background: rgba(255, 255, 255, 0.05);
|
||
border-radius: 10px;
|
||
}
|
||
.custom-scrollbar::-webkit-scrollbar-thumb {
|
||
background: rgba(0, 242, 255, 0.3);
|
||
border-radius: 10px;
|
||
}
|
||
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
||
background: rgba(0, 242, 255, 0.6);
|
||
}
|
||
|
||
/* Custom DaisyUI component styling */
|
||
.tab {
|
||
transition: all 0.3s ease;
|
||
}
|
||
.tab-active {
|
||
color: #00f2ff;
|
||
border-color: #00f2ff !important;
|
||
}
|
||
.collapse-title, .accordion-title {
|
||
font-weight: 500;
|
||
}
|
||
.table th, .table td {
|
||
border-bottom: 1px solid rgba(0, 242, 255, 0.1);
|
||
}
|
||
.table th {
|
||
color: #e0e0e0;
|
||
}
|
||
.highlight-tag {
|
||
background-color: rgba(0, 242, 255, 0.1);
|
||
color: #00f2ff;
|
||
padding: 2px 8px;
|
||
border-radius: 9999px;
|
||
font-size: 0.8rem;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.bento-content {
|
||
max-height: 450px;
|
||
overflow-y: auto;
|
||
}
|
||
</style>
|
||
</head>
|
||
|
||
<body class="min-h-screen text-neutral-content/90 selection:bg-cyan-300 selection:text-black">
|
||
<div class="container mx-auto p-4 lg:p-8">
|
||
|
||
<!-- Header Section -->
|
||
<header class="text-center my-12 lg:my-16" x-data>
|
||
<h1 class="text-5xl md:text-7xl font-bold tracking-tight text-shadow-glow animate-pulse [animation-duration:3s]">
|
||
数据可信
|
||
</h1>
|
||
<p class="mt-4 text-xl text-cyan-300/80">深度研究报告</p>
|
||
<div class="divider divider-primary max-w-sm mx-auto my-6 opacity-30"></div>
|
||
<p class="mt-2 text-xs text-neutral-content/50">
|
||
北京价值前沿科技有限公司 AI投研agent:“价小前投研” 呈现
|
||
<br>
|
||
本报告为AI合成数据,不构成任何投资建议,投资需谨慎。
|
||
</p>
|
||
</header>
|
||
|
||
<!-- Main Content - Bento Grid -->
|
||
<main class="grid grid-cols-12 gap-6">
|
||
|
||
<!-- Insight Section (Largest Card) -->
|
||
<section class="col-span-12 lg:col-span-8 glass-card p-6 md:p-8 order-1">
|
||
<h2 class="text-2xl font-bold mb-4 text-shadow-glow">核心观点与市场认知 (Insight)</h2>
|
||
<div class="prose max-w-none prose-invert prose-p:text-neutral-content/80 prose-li:text-neutral-content/80 custom-scrollbar bento-content pr-4">
|
||
<h4>综合结论</h4>
|
||
<p>“数据可信”概念目前处于<strong class="text-accent-glow">政策驱动下的主题投资与基本面萌芽的叠加阶段</strong>。短期股价表现由政策、试点、中标等事件驱动。长期将过渡到由数据应用价值和运营效益驱动的基本面阶段。当前投资的核心是识别政策红利的最直接、最确定的受益者。</p>
|
||
|
||
<h4>核心驱动力:政策顶层设计</h4>
|
||
<p>概念的根本驱动力是<strong class="text-accent-glow">政策驱动</strong>。国家将数据提升至生产要素战略高度,其价值释放的前提是解决安全和信任问题。“可信数据空间”是国家数据局为破解此难题给出的官方解决方案。它并非由单一技术突破或市场自发需求引爆,而是自上而下的国家战略,旨在为全国一体化数据要素市场构建统一、安全、高效的流通基础设施。</p>
|
||
|
||
<h4>市场热度与预期差</h4>
|
||
<ul>
|
||
<li><strong>市场情绪</strong>: 整体乐观,但存在分歧。乐观源于政策的清晰度和强度(《行动计划》、试点名单);分歧在于商业化落地路径仍不清晰,业内对数据交易所“交易数据造假”的担忧(路演十)揭示了产业“虚火”与现实的矛盾。</li>
|
||
<li><strong>预期差1: 基建热 vs. 应用冷</strong>。市场聚焦基建订单,但瓶颈在于高质量数据供给不足和有价值应用场景匮乏。基建是前提,但无法直接变现。</li>
|
||
<li><strong>预期差2: 技术万能论 vs. 综合治理</strong>。市场追捧隐私计算、区块链,但数据可信是系统工程,涉及数据登记、监管、收益分配等治理框架,单纯技术无法解决商业核心问题。</li>
|
||
<li><strong>预期差3: 全国一盘棋 vs. 地方试点探索</strong>。蓝图宏伟,但目前仍处于地方试点探索阶段(如济南、天津模式),技术路线仍在“收敛融合”,市场可能高估了标准统一和网络互联的速度。</li>
|
||
</ul>
|
||
|
||
<h4>潜在风险与挑战</h4>
|
||
<ul>
|
||
<li><strong>技术风险</strong>: 技术路线不统一,存在更迭风险;隐私计算等技术在性能、安全、成本之间仍需平衡。</li>
|
||
<li><strong>商业化风险</strong>: 盈利模式不清晰,数据定价、收益分配是世界性难题;高质量数据供给不足导致“有路无车”。</li>
|
||
<li><strong>政策与竞争风险</strong>: 政策落地不及预期是首要风险;赛道前景广阔必然吸引大量玩家,导致竞争加剧。</li>
|
||
<li><strong>信息交叉验证风险</strong>: 研报中存在数据笔误(营收增速“227.39%” vs “27.39%”);路演专家“交易数据造假”观点与宏观乐观叙事形成巨大反差,需警惕。</li>
|
||
</ul>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Key Catalysts & Timeline Section -->
|
||
<section class="col-span-12 lg:col-span-4 glass-card p-6 md:p-8 order-2">
|
||
<h2 class="text-2xl font-bold mb-4 text-shadow-glow">催化剂与发展路径</h2>
|
||
<div class="prose max-w-none prose-invert prose-p:text-neutral-content/80 prose-li:text-neutral-content/80 custom-scrollbar bento-content pr-4">
|
||
<h4>近期催化剂 (3-6个月)</h4>
|
||
<ol>
|
||
<li><strong>首批试点成果发布</strong>: 63个试点项目的阶段性成果和商业模式将是验证概念能否走向基本面的关键。</li>
|
||
<li><strong>国家级技术标准出台</strong>: 《可信数据空间技术架构》等正式稿将统一技术路径,利好路线匹配度高的公司。</li>
|
||
<li><strong>数据资产入表(RDA)会计准则明确</strong>: 将极大刺激企业数据资产化需求,倒逼可信流通基础设施建设。</li>
|
||
</ol>
|
||
<h4>长期发展路径</h4>
|
||
<ul>
|
||
<li><strong>第一阶段 (当前-2025)</strong>: <strong class="text-accent-glow">基建与试点期</strong>。重点是建设空间、完善登记、跑通场景。投资逻辑在于获取基建订单。</li>
|
||
<li><strong>第二阶段 (2026-2028)</strong>: <strong class="text-accent-glow">互联与生态期</strong>。重点是100+数据空间互联互通,数据产品服务创新。投资逻辑转向数据运营商和高质量数据源持有者。</li>
|
||
<li><strong>第三阶段 (2028以后)</strong>: <strong class="text-accent-glow">价值与智能期</strong>。数据流通成为常态,大规模、高价值应用涌现。投资逻辑转向应用层公司。</li>
|
||
</ul>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Industry Chain Chart -->
|
||
<section class="col-span-12 lg:col-span-7 glass-card p-6 md:p-8 order-3">
|
||
<h2 class="text-2xl font-bold mb-4 text-shadow-glow">产业链图谱与核心玩家</h2>
|
||
<div id="echarts-industry-chain" style="width: 100%; height: 450px;"></div>
|
||
</section>
|
||
|
||
<!-- Key Players Comparison -->
|
||
<section class="col-span-12 lg:col-span-5 glass-card p-6 md:p-8 order-4">
|
||
<h2 class="text-2xl font-bold mb-4 text-shadow-glow">核心玩家对比</h2>
|
||
<div class="custom-scrollbar bento-content pr-4 space-y-4">
|
||
<div>
|
||
<h4 class="font-bold text-lg text-cyan-300">领导者梯队 (国家队与战略卡位)</h4>
|
||
<p class="text-sm text-neutral-content/80"><strong>太极股份:</strong> 逻辑最宏大。依托中国电科背景,发起“中国可信体系”,定位国家级“可信数字底座”,政策理解深、资源协同强。</p>
|
||
<p class="text-sm text-neutral-content/80 mt-2"><strong>中远海科:</strong> 逻辑最纯粹。作为“航运行业可信数据空间”唯一国家级试点,拥有“船视宝”高质量自有数据资产。是“数据资产+可信空间”模式标杆。</p>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-bold text-lg text-cyan-300">实践者梯队 (项目落地与区域深耕)</h4>
|
||
<p class="text-sm text-neutral-content/80"><strong>山大地纬:</strong> 逻辑最扎实。已获济南1.61亿元城市可信数据空间项目订单,商业落地案例明确,业绩确定性相对较高。</p>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-bold text-lg text-cyan-300">技术赋能者梯队 (“卖铲人”)</h4>
|
||
<p class="text-sm text-neutral-content/80"><strong>安恒信息:</strong> 逻辑最底层。“数据安全岛”(隐私计算平台)是构建数据空间的关键技术组件,技术领先,可为多厂商赋能。</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Data Sources Section (Tabs) -->
|
||
<section class="col-span-12 glass-card p-6 md:p-8 order-5" x-data="{ tab: 'news' }">
|
||
<div class="flex justify-between items-center mb-4">
|
||
<h2 class="text-2xl font-bold text-shadow-glow">核心数据源摘要</h2>
|
||
<div class="tabs tabs-boxed bg-black/20">
|
||
<a class="tab" :class="{'tab-active': tab === 'news'}" @click.prevent="tab = 'news'">新闻数据</a>
|
||
<a class="tab" :class="{'tab-active': tab === 'roadshow'}" @click.prevent="tab = 'roadshow'">路演纪要</a>
|
||
<a class="tab" :class="{'tab-active': tab === 'report'}" @click.prevent="tab = 'report'">研报精粹</a>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- News Content -->
|
||
<div x-show="tab === 'news'" class="prose max-w-none prose-invert prose-p:text-neutral-content/80 prose-li:text-neutral-content/80 space-y-4 custom-scrollbar pr-4" style="max-height: 500px; overflow-y: auto;">
|
||
<div class="collapse collapse-plus border border-base-300 bg-base-200/30">
|
||
<input type="checkbox" checked />
|
||
<div class="collapse-title text-xl font-medium">核心概念与定义</div>
|
||
<div class="collapse-content">
|
||
<p><strong>定义:</strong> 可信数据空间是基于共识规则,联接多方主体,实现数据资源共享共用的<strong class="text-accent-glow">数据流通利用基础设施</strong>,是支撑构建全国一体化数据市场的重要载体。</p>
|
||
<p><strong>核心作用:</strong> 数据流通交易前提是<strong class="text-accent-glow">安全和可信</strong>。可信数据空间是数据要素商业模式落地的前提保障,旨在破除多主体数据共享共用信任壁垒。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus border border-base-300 bg-base-200/30">
|
||
<input type="checkbox" />
|
||
<div class="collapse-title text-xl font-medium">政策目标与规划</div>
|
||
<div class="collapse-content">
|
||
<p><strong>行动计划:</strong> 国家数据局印发《可信数据空间发展行动计划(2024—2028年)》。</p>
|
||
<p><strong>量化目标:</strong> 到2028年,建成<strong class="text-accent-glow">100个以上可信数据空间</strong>。</p>
|
||
<p><strong>首批试点:</strong> 2025年7月16日公布首批<strong class="text-accent-glow">63个试点项目</strong>,涵盖城市、行业、企业三类。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus border border-base-300 bg-base-200/30">
|
||
<input type="checkbox" />
|
||
<div class="collapse-title text-xl font-medium">技术实现路径</div>
|
||
<div class="collapse-content">
|
||
<p><strong>核心原则:</strong> 实现“<strong class="text-accent-glow">原始数据不出域,数据可用不可见</strong>”。</p>
|
||
<p><strong>技术流派:</strong> 国内厂商基于多方计算、差分隐私、区块链、虚拟沙箱等多种技术,并支持数据加密、可信流通、安全治理等技术创新应用。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Roadshow Content -->
|
||
<div x-show="tab === 'roadshow'" class="prose max-w-none prose-invert prose-p:text-neutral-content/80 prose-li:text-neutral-content/80 space-y-4 custom-scrollbar pr-4" style="max-height: 500px; overflow-y: auto;">
|
||
<div class="collapse collapse-plus border border-base-300 bg-base-200/30">
|
||
<input type="checkbox" checked />
|
||
<div class="collapse-title text-xl font-medium">数据权属与安全</div>
|
||
<div class="collapse-content">
|
||
<p><strong>数据登记制度:</strong> 首次提出,明确数据持有权,解决权属争议,类比不动产登记,是数据交易的基础。</p>
|
||
<p><strong>安全监管:</strong> 强调<strong class="text-accent-glow">全流程安全管控</strong>、个人信息保护与风险评估,建立“授权-监管-退出”全周期管理。</p>
|
||
<p><strong>核心原则:</strong> 国家数据局强调“供得出、流得动、用得好、<strong class="text-accent-glow">保安全</strong>”。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus border border-base-300 bg-base-200/30">
|
||
<input type="checkbox" />
|
||
<div class="collapse-title text-xl font-medium">可信技术与设施</div>
|
||
<div class="collapse-content">
|
||
<p><strong>基础设施:</strong> 数据资源登记平台、可信流通网络(如<strong class="text-accent-glow">区块链交互通道</strong>)成为刚需。</p>
|
||
<p><strong>核心技术栈:</strong> <strong class="text-accent-glow">隐私计算 + 区块链</strong>,构建“数据保险箱”与可信交互通道,实现“可用不可见”。</p>
|
||
<p><strong>技术路线:</strong> 隐私计算(联邦学习/MPC)、机密计算(TEE)、同态加密是主要技术方向,但各有优劣和成熟度差异。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus border border-base-300 bg-base-200/30">
|
||
<input type="checkbox" />
|
||
<div class="collapse-title text-xl font-medium">合规与商业模式</div>
|
||
<div class="collapse-content">
|
||
<p><strong>数据财政反对:</strong> 国家明确反对直接出售原始数据牟利,强调数据应用需围绕实体经济价值。</p>
|
||
<p><strong>合规路径:</strong> 遵循“数据资源持有权、加工使用权、产品经营权”<strong class="text-accent-glow">三权分置</strong>框架,通过授权运营主体开展增值服务。</p>
|
||
<p><strong>行业痛点:</strong> 存在数据供给不足、数据质量低、多数交易所“<strong class="text-accent-glow">交易数据造假</strong>”等问题。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Research Report Content -->
|
||
<div x-show="tab === 'report'" class="prose max-w-none prose-invert prose-p:text-neutral-content/80 prose-li:text-neutral-content/80 space-y-4 custom-scrollbar pr-4" style="max-height: 500px; overflow-y: auto;">
|
||
<div class="collapse collapse-plus border border-base-300 bg-base-200/30">
|
||
<input type="checkbox" checked />
|
||
<div class="collapse-title text-xl font-medium">数据来源与可信度</div>
|
||
<div class="collapse-content">
|
||
<p><strong>权威第三方数据:</strong> 市场规模与格局数据普遍引自<strong class="text-accent-glow">信通院、赛迪顾问、IDC</strong>等机构的权威报告。</p>
|
||
<p><strong>官方测评认证:</strong> 技术与安全测评结果来自中国电子技术标准化研究院、中国信息安全测评中心等官方公告,产品性能通过<strong class="text-accent-glow">等保四级、EAL4+</strong>等国家认证。</p>
|
||
<p><strong>公司官方披露:</strong> 财务数据、渠道建设情况等基于公司招股说明书及公开财报。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus border border-base-300 bg-base-200/30">
|
||
<input type="checkbox" />
|
||
<div class="collapse-title text-xl font-medium">预测依据与风险提示</div>
|
||
<div class="collapse-content">
|
||
<p><strong>预测假设明确:</strong> 研报普遍明确列出收入增长、毛利率、税收优惠等关键假设,并进行敏感性分析。</p>
|
||
<p><strong>风险提示充分:</strong> 共同的风险提示包括<strong class="text-accent-glow">政策及信创推进不及预期、行业竞争加剧、技术创新风险</strong>等。</p>
|
||
<p><strong>数据矛盾点:</strong> 存在个别报告数据笔误(如营收复合增速出现227.39%与27.39%两个版本),使用者需谨慎交叉验证。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus border border-base-300 bg-base-200/30">
|
||
<input type="checkbox" />
|
||
<div class="collapse-title text-xl font-medium">可验证的关键数据点</div>
|
||
<div class="collapse-content">
|
||
<p><strong>自主可控:</strong> 核心源码自主率达99.9%或100%。</p>
|
||
<p><strong>性能指标:</strong> DM8数据库TPCC性能达228万tpmc。</p>
|
||
<p><strong>客户案例:</strong> 客户包括商务部、国家电网、中国建设银行等,并有具体项目案例(如南方基金TA系统)。</p>
|
||
<p><strong>生态兼容:</strong> 完成与数千个国产芯片、操作系统等软硬件产品适配。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Stock List Section -->
|
||
<section class="col-span-12 glass-card p-6 md:p-8 order-6">
|
||
<h2 class="text-2xl font-bold mb-4 text-shadow-glow">核心概念股池</h2>
|
||
<div class="overflow-x-auto">
|
||
<table class="table table-zebra w-full">
|
||
<thead>
|
||
<tr>
|
||
<th class="w-1/12">序号</th>
|
||
<th class="w-2/12">股票名称</th>
|
||
<th class="w-2/12">股票代码</th>
|
||
<th class="w-7/12">入选理由</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<th>1</th>
|
||
<td>太极股份</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002368" target="_blank" class="link link-primary">002368</a></td>
|
||
<td>与中国电科旗下相关板块公司联合发起成立了中国可信体系。</td>
|
||
</tr>
|
||
<tr>
|
||
<th>2</th>
|
||
<td>山大地纬</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=688579" target="_blank" class="link link-primary">688579</a></td>
|
||
<td>目前已在济南市落地,支撑公共数据授权运营、城市可信数据空间建设。</td>
|
||
</tr>
|
||
<tr>
|
||
<th>3</th>
|
||
<td>国投智能</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300188" target="_blank" class="link link-primary">300188</a></td>
|
||
<td>已形成以零信任安全、数据资产分类分级等产品为主的综合解决方案,助力可信数据流通体系建设。</td>
|
||
</tr>
|
||
<tr>
|
||
<th>4</th>
|
||
<td>星环科技</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=688031" target="_blank" class="link link-primary">688031</a></td>
|
||
<td>是首批15家可信数据空间应用解决方案供应商之一。</td>
|
||
</tr>
|
||
<tr>
|
||
<th>5</th>
|
||
<td>南威软件</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=603636" target="_blank" class="link link-primary">603636</a></td>
|
||
<td>创新打造“六电融合”可信文件解决方案。</td>
|
||
</tr>
|
||
<tr>
|
||
<th>6</th>
|
||
<td>科创信息</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300730" target="_blank" class="link link-primary">300730</a></td>
|
||
<td>公司2023年度参建的数据要素可信流通平台项目。</td>
|
||
</tr>
|
||
<tr>
|
||
<th>7</th>
|
||
<td>湘邮科技</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=600476" target="_blank" class="link link-primary">600476</a></td>
|
||
<td>ECO iPaaS混合云集成平台可用于数字政务、城市可信数据空间建设。</td>
|
||
</tr>
|
||
<tr>
|
||
<th>8</th>
|
||
<td>南京熊猫</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=600775" target="_blank" class="link link-primary">600775</a></td>
|
||
<td>基于可信数据空间等技术,完成数字园区泛在操作系统系列产品的研发与应用推广。</td>
|
||
</tr>
|
||
<tr>
|
||
<th>9</th>
|
||
<td>优刻得-W</td>
|
||
<td>-</td>
|
||
<td>公司入选可信工业数据空间生态链执行委员单位。</td>
|
||
</tr>
|
||
<tr>
|
||
<th>10</th>
|
||
<td>深桑达A</td>
|
||
<td>-</td>
|
||
<td>产品承担了若干国家重点项目;“1+N+M”可信智算战略已取得成绩。</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Rise Analysis Section -->
|
||
<section class="col-span-12 glass-card p-6 md:p-8 order-7">
|
||
<h2 class="text-2xl font-bold mb-4 text-shadow-glow">相关个股异动解析</h2>
|
||
<div class="space-y-4">
|
||
<div class="collapse collapse-arrow border border-cyan-500/30 bg-base-200/30">
|
||
<input type="checkbox" name="rise-accordion" />
|
||
<div class="collapse-title text-xl font-medium">
|
||
中远海科 (002401) - <span class="text-success">+10.01%</span> - 概念联动标杆
|
||
</div>
|
||
<div class="collapse-content prose max-w-none prose-invert prose-p:text-neutral-content/80 prose-li:text-neutral-content/80">
|
||
<p><strong>核心结论:</strong> 上海稳定币试点 + 国家可信数据空间名单双重催化,旗下“船视宝”数据资产价值重估引爆涨停。</p>
|
||
<ul>
|
||
<li><strong>可信数据空间催化:</strong> 公司“航运行业可信数据空间”项目入选国家数据局首批试点名单,为航运领域唯一入选,政策正宗性强。</li>
|
||
<li><strong>RDA数据资产:</strong> “船视宝”数据产品已在上数所挂牌,汇聚290亿条船位数据,覆盖5000港口,满足RDA真实性验证标准,具备数据资产入表及公允价值重估条件。</li>
|
||
<li><strong>市场地位:</strong> 叠加中字头央企背景与上海自贸区区位优势,政策红利优先受益。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-arrow border border-cyan-500/30 bg-base-200/30">
|
||
<input type="checkbox" name="rise-accordion" />
|
||
<div class="collapse-title text-xl font-medium">
|
||
市北高新 (600604) - <span class="text-success">+10.08%</span> - 区域试点承载
|
||
</div>
|
||
<div class="collapse-content prose max-w-none prose-invert prose-p:text-neutral-content/80 prose-li:text-neutral-content/80">
|
||
<p><strong>核心结论:</strong> 国务院批复上海数字经济先行区并点名市北高新为“可信数据跨境试点”核心承载区,政策红利与订单落地共振触发涨停。</p>
|
||
<ul>
|
||
<li><strong>政策点名:</strong> 国务院批复文件明确市北高新园区为“可信数据跨境试点”核心承载区,政策定位精准。</li>
|
||
<li><strong>产业集聚:</strong> 园区已集聚300余家数据要素企业,形成产业生态,为后续数据托管、算力服务提供客户与场景。</li>
|
||
<li><strong>订单落地:</strong> 与新加坡电信、腾讯云就跨境数据托管运营达成合作,首期规模2亿元,验证了政策转化为商业订单的能力。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-arrow border border-cyan-500/30 bg-base-200/30">
|
||
<input type="checkbox" name="rise-accordion" />
|
||
<div class="collapse-title text-xl font-medium">
|
||
海量数据 (603138) - <span class="text-success">+6.03%</span> - 政策预期受益
|
||
</div>
|
||
<div class="collapse-content prose max-w-none prose-invert prose-p:text-neutral-content/80 prose-li:text-neutral-content/80">
|
||
<p><strong>核心结论:</strong> 北京市发布《关于加快北京市公共数据资源开发利用的实施意见》,市场预期公司作为数据库服务商将受益于政策红利。</p>
|
||
<ul>
|
||
<li><strong>政策契合度:</strong> 政策中提到的“原始数据不出域,数据可用不可见”、建设城市可信数据空间等,与海量数据主营业务和技术方向高度契合。</li>
|
||
<li><strong>场景拓展:</strong> 政策提出在金融、医疗健康、教育等领域形成城市可信数据空间,为公司提供了潜在的业务拓展方向。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</main>
|
||
</div>
|
||
|
||
<script>
|
||
// ECharts initialization
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
var chartDom = document.getElementById('echarts-industry-chain');
|
||
var myChart = echarts.init(chartDom, 'dark'); // Use 'dark' theme
|
||
var option;
|
||
|
||
const data = {
|
||
name: '数据可信产业链',
|
||
children: [
|
||
{
|
||
name: '上游:核心技术与组件',
|
||
children: [
|
||
{ name: '加密算法', value: 1, itemStyle: { color: '#00bcd4' } },
|
||
{ name: '隐私计算平台\n(安恒信息)', value: 1, itemStyle: { color: '#00bcd4' } },
|
||
{ name: '区块链底层', value: 1, itemStyle: { color: '#00bcd4' } },
|
||
{ name: '可信硬件(TEE)', value: 1, itemStyle: { color: '#00bcd4' } },
|
||
{ name: '安全组件\n(国投智能, 科蓝软件)', value: 1, itemStyle: { color: '#00bcd4' } },
|
||
]
|
||
},
|
||
{
|
||
name: '中游:数据空间建设与运营\n(核心受益环节)',
|
||
children: [
|
||
{ name: '城市数据空间\n(山大地纬)', value: 1, itemStyle: { color: '#8e44ad' } },
|
||
{ name: '行业数据空间\n(中远海科)', value: 1, itemStyle: { color: '#8e44ad' } },
|
||
{ name: '国家级可信底座\n(太极股份)', value: 1, itemStyle: { color: '#8e44ad' } },
|
||
{ name: '解决方案商\n(星环科技)', value: 1, itemStyle: { color: '#8e44ad' } },
|
||
]
|
||
},
|
||
{
|
||
name: '下游:数据应用与服务',
|
||
children: [
|
||
{ name: '新药研发', value: 1, itemStyle: { color: '#e91e63' } },
|
||
{ name: 'AI大模型训练', value: 1, itemStyle: { color: '#e91e63' } },
|
||
{ name: '新能源车', value: 1, itemStyle: { color: '#e91e63' } },
|
||
{ name: '数字媒体\n(湖南广电)', value: 1, itemStyle: { color: '#e91e63' } },
|
||
{ name: '智能制造\n(长虹)', value: 1, itemStyle: { color: '#e91e63' } },
|
||
]
|
||
}
|
||
]
|
||
};
|
||
|
||
option = {
|
||
tooltip: {
|
||
trigger: 'item',
|
||
triggerOn: 'mousemove',
|
||
backgroundColor: 'rgba(0,0,0,0.7)',
|
||
borderColor: '#00f2ff',
|
||
textStyle: {
|
||
color: '#fff'
|
||
}
|
||
},
|
||
series: {
|
||
type: 'sunburst',
|
||
data: data.children,
|
||
radius: [60, '90%'],
|
||
center: ['50%', '55%'],
|
||
label: {
|
||
rotate: 'radial',
|
||
color: 'rgba(255, 255, 255, 0.9)',
|
||
fontSize: 12,
|
||
},
|
||
itemStyle: {
|
||
borderColor: '#020010',
|
||
borderWidth: 2,
|
||
},
|
||
emphasis: {
|
||
focus: 'ancestor'
|
||
},
|
||
levels: [
|
||
{},
|
||
{
|
||
r0: '15%',
|
||
r: '60%',
|
||
itemStyle: {
|
||
borderWidth: 2
|
||
},
|
||
label: {
|
||
rotate: 'tangential',
|
||
fontSize: 14,
|
||
fontWeight: 'bold',
|
||
}
|
||
},
|
||
{
|
||
r0: '60%',
|
||
r: '95%',
|
||
label: {
|
||
align: 'right'
|
||
},
|
||
itemStyle: {
|
||
borderWidth: 3
|
||
}
|
||
},
|
||
]
|
||
}
|
||
};
|
||
|
||
myChart.setOption(option);
|
||
window.addEventListener('resize', myChart.resize);
|
||
});
|
||
</script>
|
||
</body>
|
||
</html> |