591 lines
36 KiB
HTML
591 lines
36 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<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.2/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
|
||
<!-- Alpine.js -->
|
||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
||
|
||
<!-- ECharts -->
|
||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
|
||
|
||
<!-- Google Fonts for Sci-Fi 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=Exo+2:wght@300;400;500;700&family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
|
||
|
||
<style>
|
||
:root {
|
||
--glow-color-1: rgba(0, 191, 255, 0.5); /* DeepSkyBlue */
|
||
--glow-color-2: rgba(255, 20, 147, 0.5); /* DeepPink */
|
||
--glow-color-3: rgba(75, 0, 130, 0.5); /* Indigo */
|
||
}
|
||
|
||
body {
|
||
font-family: 'Exo 2', sans-serif;
|
||
background-color: #000010;
|
||
color: #E0E0E0;
|
||
overflow-x: hidden;
|
||
background-image:
|
||
radial-gradient(circle at 10% 10%, rgba(0, 100, 255, 0.1) 0%, transparent 30%),
|
||
radial-gradient(circle at 90% 80%, rgba(255, 0, 150, 0.1) 0%, transparent 30%),
|
||
radial-gradient(circle at 50% 50%, rgba(100, 0, 200, 0.05) 0%, transparent 20%);
|
||
animation: background-pan 20s linear infinite;
|
||
background-size: 200% 200%;
|
||
}
|
||
|
||
@keyframes background-pan {
|
||
0% { background-position: 0% 50%; }
|
||
50% { background-position: 100% 50%; }
|
||
100% { background-position: 0% 50%; }
|
||
}
|
||
|
||
.glass-card {
|
||
background: rgba(10, 10, 30, 0.6);
|
||
backdrop-filter: blur(12px);
|
||
-webkit-backdrop-filter: blur(12px);
|
||
border-radius: 24px;
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
position: relative;
|
||
overflow: hidden;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.glass-card::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: -50%;
|
||
left: -50%;
|
||
width: 200%;
|
||
height: 200%;
|
||
background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
|
||
transform: translate(var(--x, 0), var(--y, 0));
|
||
transition: transform 0.5s ease-out;
|
||
pointer-events: none;
|
||
}
|
||
|
||
.glow-border {
|
||
box-shadow: 0 0 5px rgba(0, 191, 255, 0.2), 0 0 10px rgba(0, 191, 255, 0.2), 0 0 20px rgba(0, 191, 255, 0.1);
|
||
}
|
||
|
||
.title-font {
|
||
font-family: 'Orbitron', sans-serif;
|
||
text-shadow: 0 0 8px rgba(0, 191, 255, 0.7);
|
||
}
|
||
|
||
.section-header {
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-size: 1.5rem;
|
||
color: #00BFFF; /* DeepSkyBlue */
|
||
padding-bottom: 0.5rem;
|
||
border-bottom: 1px solid rgba(0, 191, 255, 0.3);
|
||
margin-bottom: 1.5rem;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 0.75rem;
|
||
}
|
||
|
||
.section-header::before {
|
||
content: '▞';
|
||
font-size: 1.2rem;
|
||
line-height: 1;
|
||
}
|
||
|
||
.bento-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(12, 1fr);
|
||
gap: 1.5rem;
|
||
}
|
||
|
||
/* DaisyUI Collapse Customization */
|
||
.collapse-title {
|
||
font-weight: 500;
|
||
color: #93C5FD; /* light blue */
|
||
}
|
||
.collapse {
|
||
background-color: rgba(30, 41, 59, 0.5) !important;
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
}
|
||
.collapse:focus {
|
||
background-color: rgba(51, 65, 85, 0.7) !important;
|
||
}
|
||
|
||
/* Table styles */
|
||
.data-table thead {
|
||
background-color: rgba(0, 191, 255, 0.1);
|
||
}
|
||
.data-table th {
|
||
color: #60A5FA; /* light blue */
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-weight: normal;
|
||
}
|
||
.data-table tbody tr {
|
||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||
}
|
||
.data-table tbody tr:hover {
|
||
background-color: rgba(0, 191, 255, 0.05);
|
||
}
|
||
.data-table a {
|
||
color: #38BDF8;
|
||
transition: color 0.2s, text-shadow 0.2s;
|
||
}
|
||
.data-table a:hover {
|
||
color: #7DD3FC;
|
||
text-shadow: 0 0 5px #7DD3FC;
|
||
}
|
||
|
||
</style>
|
||
</head>
|
||
<body x-data="{
|
||
init() {
|
||
document.querySelectorAll('.glass-card').forEach(card => {
|
||
card.addEventListener('mousemove', e => {
|
||
const rect = card.getBoundingClientRect();
|
||
const x = e.clientX - rect.left - rect.width / 2;
|
||
const y = e.clientY - rect.top - rect.height / 2;
|
||
card.style.setProperty('--x', `${x}px`);
|
||
card.style.setProperty('--y', `${y}px`);
|
||
});
|
||
});
|
||
}
|
||
}" x-init="init()">
|
||
<div class="container mx-auto p-4 md:p-8">
|
||
|
||
<!-- Header -->
|
||
<header class="text-center mb-12">
|
||
<h1 class="title-font text-4xl md:text-6xl font-bold text-white mb-4">
|
||
复星稳定币 <span class="text-sky-400">概念深度研报</span>
|
||
</h1>
|
||
<p class="text-slate-400 max-w-3xl mx-auto">
|
||
由顶级政策预期与强大产业需求驱动,处于早期催化阶段的数字金融新赛道。
|
||
</p>
|
||
</header>
|
||
|
||
<!-- Bento Grid Layout -->
|
||
<div class="bento-grid">
|
||
|
||
<!-- Core Viewpoint -->
|
||
<div class="glass-card glow-border p-6 md:p-8 col-span-12 lg:col-span-8">
|
||
<h2 class="section-header">核心观点摘要</h2>
|
||
<p class="text-slate-300 leading-relaxed">
|
||
“复星稳定币”是一个由 <strong class="text-sky-400">顶级政策预期</strong> 和 <strong class="text-fuchsia-400">强大产业需求</strong> 共同驱动的、处于 <strong class="text-amber-400">早期催化阶段</strong> 的概念。其核心驱动力在于复星利用香港的合规政策窗口,通过稳定币解决其全球化业务中的跨境支付痛点并整合其庞大的产业生态。目前,该概念存在显著的 <strong class="text-red-400">预期差</strong>——市场热情高涨,但公司层面(路演纪要)尚未有任何信息披露,表明项目仍处于高度保密或未最终确定的早期阶段。
|
||
</p>
|
||
</div>
|
||
|
||
<!-- Concept Events -->
|
||
<div class="glass-card p-6 md:p-8 col-span-12 lg:col-span-4">
|
||
<h2 class="section-header">概念事件脉络</h2>
|
||
<ul class="space-y-3 timeline timeline-compact timeline-vertical">
|
||
<li>
|
||
<div class="timeline-start timeline-box bg-slate-800/50 border-slate-700">背景铺垫 <span class="text-xs text-slate-400">(2025-07-18)</span></div>
|
||
<div class="timeline-middle"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5 text-sky-400"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.06 0l4.001-5.5z" clip-rule="evenodd"></path></svg></div>
|
||
<hr class="bg-sky-400/50">
|
||
</li>
|
||
<li>
|
||
<hr class="bg-sky-400/50">
|
||
<div class="timeline-middle"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5 text-sky-400"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.06 0l4.001-5.5z" clip-rule="evenodd"></path></svg></div>
|
||
<div class="timeline-end timeline-box bg-slate-800/50 border-slate-700">高层推动 <span class="text-xs text-slate-400">(2025-08-06)</span></div>
|
||
<hr class="bg-sky-400/50">
|
||
</li>
|
||
<li>
|
||
<hr class="bg-sky-400/50">
|
||
<div class="timeline-start timeline-box bg-slate-800/50 border-slate-700">市场发酵 <span class="text-xs text-slate-400">(2025-08-12)</span></div>
|
||
<div class="timeline-middle"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5 text-sky-400"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.06 0l4.001-5.5z" clip-rule="evenodd"></path></svg></div>
|
||
<hr class="bg-sky-400/50">
|
||
</li>
|
||
<li>
|
||
<hr class="bg-sky-400/50">
|
||
<div class="timeline-middle"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5 text-sky-400"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.06 0l4.001-5.5z" clip-rule="evenodd"></path></svg></div>
|
||
<div class="timeline-end timeline-box bg-slate-800/50 border-slate-700">官方态度:暂不置评</div>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Core Logic -->
|
||
<div class="glass-card p-6 md:p-8 col-span-12">
|
||
<h2 class="section-header">核心逻辑与市场认知分析</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||
<div class="p-4 bg-slate-800/50 rounded-xl border border-slate-700">
|
||
<h3 class="font-bold text-lg text-sky-300 mb-2">政策驱动</h3>
|
||
<p class="text-sm text-slate-300">精准把握香港金管局稳定币监管沙盒与牌照申请的政策窗口期。郭广昌亲自拜访香港高层,显示其对获取牌照志在必得,这是概念最强的逻辑支撑。</p>
|
||
</div>
|
||
<div class="p-4 bg-slate-800/50 rounded-xl border border-slate-700">
|
||
<h3 class="font-bold text-lg text-fuchsia-300 mb-2">内生需求驱动</h3>
|
||
<p class="text-sm text-slate-300">解决全球化业务痛点(海外收入占比<strong class="text-fuchsia-300">达47%</strong>)、构建产业生态闭环(健康、快乐、富足)、契合集团数字化战略。</p>
|
||
</div>
|
||
<div class="p-4 bg-slate-800/50 rounded-xl border border-slate-700">
|
||
<h3 class="font-bold text-lg text-amber-300 mb-2">市场热度与情绪</h3>
|
||
<p class="text-sm text-slate-300">新闻集中爆发引发市场高度关注,稳定币赛道已有资金活跃度。市场对复星的执行力和资源整合能力持乐观态度,郭广昌亲自出马被视为项目确定性高的标志。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Expectation Gap -->
|
||
<div class="glass-card p-6 md:p-8 col-span-12 lg:col-span-7">
|
||
<h2 class="section-header text-red-400">核心矛盾:预期差分析</h2>
|
||
<p class="mb-4 text-slate-300">当前概念最核心的特征是<strong class="text-red-400">信息披露的巨大鸿沟</strong>。这证伪了“稳定币业务已在上市公司层面全面铺开”的市场过度预期。</p>
|
||
<div class="flex flex-col md:flex-row gap-4">
|
||
<div class="flex-1 p-4 rounded-lg bg-green-500/10 border border-green-500/30">
|
||
<h4 class="font-bold text-green-300 mb-2">市场预期 (基于新闻)</h4>
|
||
<ul class="list-disc list-inside text-sm text-green-200/80 space-y-1">
|
||
<li>已组建完整团队</li>
|
||
<li>郭广昌亲自拜访香港高层</li>
|
||
<li>确定在港申请牌照</li>
|
||
<li>项目推进确定性高</li>
|
||
</ul>
|
||
</div>
|
||
<div class="flex items-center justify-center text-4xl text-red-400 font-bold p-4">VS</div>
|
||
<div class="flex-1 p-4 rounded-lg bg-red-500/10 border border-red-500/30">
|
||
<h4 class="font-bold text-red-300 mb-2">公司现实 (基于路演)</h4>
|
||
<ul class="list-disc list-inside text-sm text-red-200/80 space-y-1">
|
||
<li>路演纪要对此事“零提及”</li>
|
||
<li>上市公司聚焦传统主业</li>
|
||
<li>未披露任何数字资产规划</li>
|
||
<li>项目可能高度保密或处极早期</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Supporting Evidence -->
|
||
<div class="glass-card p-6 md:p-8 col-span-12 lg:col-span-5">
|
||
<h2 class="section-header">情报数据验证</h2>
|
||
<div class="space-y-2">
|
||
<div class="collapse collapse-plus">
|
||
<input type="radio" name="evidence-accordion" checked="checked" />
|
||
<div class="collapse-title text-xl font-medium">新闻数据</div>
|
||
<div class="collapse-content text-sm text-slate-300">
|
||
<ul class="list-disc pl-5 space-y-2">
|
||
<li><strong>申请牌照 & 组建团队:</strong> 澎湃新闻与腾讯新闻报道,复星已确定在港申请稳定币牌照,并已组建完整团队。</li>
|
||
<li><strong>高层拜访:</strong> 郭广昌于8月6日亲自带队拜访香港特首李家超及财政司司长陈茂波。</li>
|
||
<li><strong>官方回应:</strong> 复星方面对此始终表示“不予置评”或“暂不置评”。</li>
|
||
<li><strong>行业参与:</strong> 复星财富国际出席中国工业互联网研究院举办的“稳定币与工业数字资产研讨会”。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus">
|
||
<input type="radio" name="evidence-accordion" />
|
||
<div class="collapse-title text-xl font-medium">路演数据 <span class="badge badge-error badge-sm">关键矛盾</span></div>
|
||
<div class="collapse-content text-sm text-slate-300">
|
||
<p><strong>结论:零提及。</strong> 在所有提供的路演材料中,无论是提及“稳定币”的路演(涉及四方精创、众安在线等),还是提及“复星”的路演(复星国际、复星医药等),均未发现任何复星参与稳定币布局的信息。复星相关路演完全聚焦于其传统主营业务。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus">
|
||
<input type="radio" name="evidence-accordion" />
|
||
<div class="collapse-title text-xl font-medium">研报数据</div>
|
||
<div class="collapse-content text-sm text-slate-300">
|
||
<p class="mb-2"><strong>结论:未直接证实,但揭示了强烈的潜在动机。</strong></p>
|
||
<ul class="list-disc pl-5 space-y-2">
|
||
<li><strong>金融科技布局:</strong> 研报提及复星“富足”板块下的金融科技公司(如HAL, BCP, Naga),为参与数字资产项目留下了可能性。</li>
|
||
<li><strong>业务场景需求:</strong> 研报系统性地指出了复星在<strong class="text-sky-400">跨境支付、产业互联网、资产管理、生态内闭环</strong>等方面对稳定币的潜在需求。</li>
|
||
<li><strong>战略契合:</strong> 稳定币应用与复星的“数字化转型”和“全球化资产配置”战略高度契合。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Catalysts -->
|
||
<div class="glass-card p-6 md:p-8 col-span-12 lg:col-span-6">
|
||
<h2 class="section-header">关键催化剂 & 发展路径</h2>
|
||
<h3 class="font-bold text-lg text-amber-300 mb-2">近期催化剂 (3-6个月)</h3>
|
||
<ul class="list-decimal pl-5 space-y-2 text-slate-300 mb-6">
|
||
<li><strong class="text-white">复星官方公告:</strong> 从“不予置评”到正式确认申请牌照。</li>
|
||
<li><strong class="text-white">香港金管局动态:</strong> 公布首批“沙盒”测试名单或正式发放牌照,复星在列。</li>
|
||
<li><strong class="text-white">合作伙伴披露:</strong> 公布技术、托管或应用场景合作伙伴。</li>
|
||
</ul>
|
||
<h3 class="font-bold text-lg text-sky-300 mb-2">长期发展路径</h3>
|
||
<ul class="steps steps-vertical lg:steps-horizontal w-full">
|
||
<li class="step step-info">牌照获取 & 内部试用 (1年内)</li>
|
||
<li class="step step-info">B端业务拓展 (1-3年)</li>
|
||
<li class="step step-info">C端场景渗透 & RWA融合 (3-5年)</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Industry Chain -->
|
||
<div class="glass-card p-6 md:p-8 col-span-12 lg:col-span-6">
|
||
<h2 class="section-header">产业链图谱</h2>
|
||
<div id="sankey-chart" style="width: 100%; height: 280px;"></div>
|
||
</div>
|
||
|
||
<!-- Risks -->
|
||
<div class="glass-card p-6 md:p-8 col-span-12">
|
||
<h2 class="section-header text-red-400">潜在风险与挑战</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 text-sm">
|
||
<div class="p-4 rounded-lg bg-red-900/50 border border-red-500/30">
|
||
<h4 class="font-bold text-red-300 mb-2">技术与安全风险</h4>
|
||
<p>稳定币安全、合规和储备金透明度是生命线,任何技术漏洞都可能导致信任危机。</p>
|
||
</div>
|
||
<div class="p-4 rounded-lg bg-red-900/50 border border-red-500/30">
|
||
<h4 class="font-bold text-red-300 mb-2">商业化与竞争风险</h4>
|
||
<p>面临蚂蚁集团等科技巨头的激烈竞争,且生态内部整合推广存在巨大挑战。</p>
|
||
</div>
|
||
<div class="p-4 rounded-lg bg-red-900/50 border border-red-500/30">
|
||
<h4 class="font-bold text-red-300 mb-2">政策与监管风险</h4>
|
||
<p>香港具体执行细则、跨境使用限制等仍存不确定性,内地监管态度是长期变量。</p>
|
||
</div>
|
||
<div class="p-4 rounded-lg bg-red-900/50 border border-red-500/30">
|
||
<h4 class="font-bold text-red-300 mb-2">信息交叉验证风险</h4>
|
||
<p>新闻热度与路演沉默的矛盾是最大风险点,市场可能基于“传闻”交易,证伪风险高。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Conclusion -->
|
||
<div class="glass-card p-6 md:p-8 col-span-12">
|
||
<h2 class="section-header">综合结论与投资启示</h2>
|
||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
|
||
<div>
|
||
<h3 class="font-bold text-lg text-sky-300 mb-2">最终看法</h3>
|
||
<p class="text-slate-300">概念明确处于 <strong class="text-amber-400">主题炒作和事件驱动阶段</strong>。背后有坚实的产业逻辑和高层战略意图支撑,具备向基本面驱动转化的巨大潜力。然而,当前信息极不透明,确定性与实施路径均存在变数,<strong class="text-red-400">短期内投机成分远大于投资价值</strong>。</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-bold text-lg text-sky-300 mb-2">需重点跟踪的关键指标</h3>
|
||
<ul class="list-disc list-inside text-slate-300 space-y-1 text-sm">
|
||
<li>复星集团或子公司的<strong class="text-white">官方信息披露</strong>。</li>
|
||
<li>香港金管局<strong class="text-white">牌照发放进度</strong>及获批企业名单。</li>
|
||
<li>未来财报和路演中<strong class="text-white">上市公司关联度</strong>的表述。</li>
|
||
<li>项目落地后的<strong class="text-white">试点项目运营数据</strong>(交易额、用户数等)。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Stock Data -->
|
||
<div class="glass-card p-6 md:p-8 col-span-12">
|
||
<h2 class="section-header">核心关联标的</h2>
|
||
<div class="overflow-x-auto">
|
||
<table class="table w-full data-table">
|
||
<thead>
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>关联逻辑</th>
|
||
<th>消息来源</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>豫园股份</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=600655" target="_blank">600655</a></td>
|
||
<td>郭广昌持股37.58%。复星旗下商业地产平台,拥有大规模C端消费场景和巨大RWA潜力(新增13-15万方商铺)。</td>
|
||
<td>机构研报</td>
|
||
</tr>
|
||
<tr>
|
||
<td>上海钢联</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300226" target="_blank">300226</a></td>
|
||
<td>郭广昌持股21.64%。旗下钢银电商平台有区块链应用探索,大宗商品交易对高效B2B支付有刚需。</td>
|
||
<td>公开资料</td>
|
||
</tr>
|
||
<tr>
|
||
<td>复星医药</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=600196" target="_blank">600196</a></td>
|
||
<td>郭广昌持股20.68%。复星核心医药平台,数字化基础好(双SAAS系统覆盖超150家医疗机构),可在医药供应链金融中应用。</td>
|
||
<td>互动</td>
|
||
</tr>
|
||
<tr>
|
||
<td>海南矿业</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=601969" target="_blank">601969</a></td>
|
||
<td>郭广昌持股29.47%。总投资10.56亿元的2万吨电池级氢氧化锂项目已进入试生产阶段。 (关联度较弱)</td>
|
||
<td>公开资料</td>
|
||
</tr>
|
||
<tr>
|
||
<td>舍得酒业</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=600702" target="_blank">600702</a></td>
|
||
<td>郭广昌持股9.01%。Q1四川回款35%,河南、江苏等地反馈回款困难,库存约4个月。 (关联度弱)</td>
|
||
<td>年报/机构研报</td>
|
||
</tr>
|
||
<tr class="opacity-50">
|
||
<td>南钢股份</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=600282" target="_blank">600282</a></td>
|
||
<td class="text-slate-400">2023年12月4日完成出售,集团不再持有任何股权。</td>
|
||
<td>公告</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Rise Analysis -->
|
||
<div class="glass-card p-6 md:p-8 col-span-12">
|
||
<h2 class="section-header">相关概念涨幅分析</h2>
|
||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
|
||
<div class="lg:col-span-2">
|
||
<p class="text-slate-400 mb-4">稳定币概念在特定时期表现活跃,以下为部分相关股票在不同交易日的涨幅及原因分析摘要,展示了市场对此赛道的热情和资金活跃度。</p>
|
||
<div id="rise-chart" style="width: 100%; height: 400px;"></div>
|
||
</div>
|
||
</div>
|
||
<div class="overflow-x-auto mt-6">
|
||
<table class="table w-full data-table">
|
||
<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=300180" target="_blank">300180</a></td><td class="text-green-400">11.58%</td><td>2025-06-18</td><td>子公司威富通支付业务被市场与稳定币、跨境支付创新概念关联。</td></tr>
|
||
<tr><td>宇信科技</td><td><a href="https://valuefrontier.cn/company?scode=300674" target="_blank">300674</a></td><td class="text-green-400">6.00%</td><td>2025-06-16</td><td>陆家嘴论坛提"数字人民币+稳定币",公司有Web3支付系统研究。</td></tr>
|
||
<tr><td>楚天龙</td><td><a href="https://valuefrontier.cn/company?scode=003040" target="_blank">003040</a></td><td class="text-green-400">5.94%</td><td>2025-06-19</td><td>受美股Circle暴涨传导,机构研报列为稳定币标的,主力资金流入。</td></tr>
|
||
<tr><td>市北高新</td><td><a href="https://valuefrontier.cn/company?scode=600604" target="_blank">600604</a></td><td class="text-green-400">5.72%</td><td>2025-07-16</td><td>上海国资委学习稳定币,作为上海国企被市场解读为受益者。</td></tr>
|
||
<tr><td>金时科技</td><td><a href="https://valuefrontier.cn/company?scode=002951" target="_blank">002951</a></td><td class="text-green-400">9.65%</td><td>2025-06-10</td><td>稳定币概念炒作,叠加与蚂蚁数科的合作预期。</td></tr>
|
||
<tr><td>御银股份</td><td><a href="https://valuefrontier.cn/company?scode=002177" target="_blank">002177</a></td><td class="text-green-400">7.25%</td><td>2025-06-16</td><td>稳定币板块走强,机构资金大额买入,公司是首批数币清算服务商。</td></tr>
|
||
<tr><td>京北方</td><td><a href="https://valuefrontier.cn/company?scode=002987" target="_blank">002987</a></td><td class="text-green-400">6.12%</td><td>2025-07-09</td><td>香港稳定币政策利好,公司被认为估值低估,存在修复需求。</td></tr>
|
||
<tr><td>古鳌科技</td><td><a href="https://valuefrontier.cn/company?scode=300551" target="_blank">300551</a></td><td class="text-green-400">7.77%</td><td>2025-07-14</td><td>香港法规生效在即,被市场归类为稳定币概念股受资金追捧。</td></tr>
|
||
<tr><td>爱建集团</td><td><a href="https://valuefrontier.cn/company?scode=600643" target="_blank">600643</a></td><td class="text-green-400">7.23%</td><td>2025-06-30</td><td>稳定币概念炒作,拥有香港1/4/9号金融牌照受关注。</td></tr>
|
||
<tr><td>协鑫能科</td><td><a href="https://valuefrontier.cn/company?scode=002015" target="_blank">002015</a></td><td class="text-green-400">7.23%</td><td>2025-07-04</td><td>稳定币/RWA概念发酵,叠加光伏/电力概念走强,主力资金流入。</td></tr>
|
||
<tr><td>海联金汇</td><td><a href="https://valuefrontier.cn/company?scode=002537" target="_blank">002537</a></td><td class="text-green-400">5.14%</td><td>2025-06-17</td><td>香港稳定币政策催化,公司实施股权激励,提振市场信心。</td></tr>
|
||
<tr><td>四方精创</td><td><a href="https://valuefrontier.cn/company?scode=300468" target="_blank">300468</a></td><td class="text-green-400">5.09%</td><td>2025-06-13</td><td>蚂蚁集团申请香港稳定币牌照,公司作为金融科技服务商被预期受益。</td></tr>
|
||
<tr><td>金一文化</td><td><a href="https://valuefrontier.cn/company?scode=002721" target="_blank">002721</a></td><td class="text-green-400">10.14%</td><td>2025-07-04</td><td>子公司“稳定币系统1.0”研发进度获确认,叠加摘帽后低市值。</td></tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
<!-- Footer -->
|
||
<footer class="mt-12 text-center text-xs text-slate-500">
|
||
<p>由 北京价值前沿科技有限公司 AI投研agent:“价小前投研” 进行投研呈现。</p>
|
||
<p>免责声明:本报告为AI基于公开信息合成,不构成任何投资建议,投资有风险,决策需谨慎。</p>
|
||
</footer>
|
||
|
||
</div>
|
||
|
||
<script>
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
// Sankey Chart
|
||
var sankeyChart = echarts.init(document.getElementById('sankey-chart'));
|
||
var sankeyOption = {
|
||
tooltip: {
|
||
trigger: 'item',
|
||
triggerOn: 'mousemove',
|
||
backgroundColor: 'rgba(0, 0, 0, 0.7)',
|
||
borderColor: '#333',
|
||
textStyle: { color: '#fff' }
|
||
},
|
||
series: [
|
||
{
|
||
type: 'sankey',
|
||
layout: 'none',
|
||
emphasis: { focus: 'adjacency' },
|
||
nodeAlign: 'right',
|
||
data: [
|
||
{ name: '技术与合规', itemStyle: { color: '#0ea5e9' } },
|
||
{ name: '发行与运营', itemStyle: { color: '#8b5cf6' } },
|
||
{ name: '内部生态应用', itemStyle: { color: '#10b981' } },
|
||
{ name: '外部生态应用', itemStyle: { color: '#f97316' } },
|
||
{ name: '复星集团', itemStyle: { color: '#a855f7' } },
|
||
{ name: '豫园股份(C端/RWA)', itemStyle: { color: '#22c55e' } },
|
||
{ name: '复星医药(B2B供应链)', itemStyle: { color: '#22c55e' } },
|
||
{ name: '复星旅文(跨境支付)', itemStyle: { color: '#22c55e' } },
|
||
{ name: '上海钢联(大宗交易)', itemStyle: { color: '#22c55e' } },
|
||
{ name: '全球合作伙伴', itemStyle: { color: '#fb923c' } }
|
||
],
|
||
links: [
|
||
{ source: '技术与合规', target: '发行与运营', value: 10 },
|
||
{ source: '发行与运营', target: '复星集团', value: 10 },
|
||
{ source: '复星集团', target: '内部生态应用', value: 8 },
|
||
{ source: '复星集团', target: '外部生态应用', value: 2 },
|
||
{ source: '内部生态应用', target: '豫园股份(C端/RWA)', value: 2 },
|
||
{ source: '内部生态应用', target: '复星医药(B2B供应链)', value: 2 },
|
||
{ source: '内部生态应用', target: '复星旅文(跨境支付)', value: 2 },
|
||
{ source: '内部生态应用', target: '上海钢联(大宗交易)', value: 2 },
|
||
{ source: '外部生态应用', target: '全球合作伙伴', value: 2 }
|
||
],
|
||
lineStyle: {
|
||
color: 'gradient',
|
||
curveness: 0.5
|
||
},
|
||
label: {
|
||
color: '#fff',
|
||
fontFamily: 'Exo 2'
|
||
}
|
||
}
|
||
]
|
||
};
|
||
sankeyChart.setOption(sankeyOption);
|
||
|
||
// Rise Analysis Bar Chart
|
||
var riseChart = echarts.init(document.getElementById('rise-chart'));
|
||
const riseData = [
|
||
{stock: "华峰超纤", rise_rate: 11.58},
|
||
{stock: "金一文化", rise_rate: 10.14},
|
||
{stock: "金时科技", rise_rate: 9.65},
|
||
{stock: "古鳌科技", rise_rate: 7.77},
|
||
{stock: "御银股份", rise_rate: 7.25},
|
||
{stock: "爱建集团", rise_rate: 7.23},
|
||
{stock: "协鑫能科", rise_rate: 7.23},
|
||
{stock: "京北方", rise_rate: 6.12},
|
||
{stock: "宇信科技", rise_rate: 6.0},
|
||
{stock: "楚天龙", rise_rate: 5.94},
|
||
{stock: "市北高新", rise_rate: 5.72},
|
||
{stock: "海联金汇", rise_rate: 5.14},
|
||
{stock: "四方精创", rise_rate: 5.09}
|
||
].sort((a,b) => a.rise_rate - b.rise_rate); // Sort for better visualization
|
||
|
||
var riseOption = {
|
||
backgroundColor: 'transparent',
|
||
tooltip: {
|
||
trigger: 'axis',
|
||
axisPointer: { type: 'shadow' },
|
||
backgroundColor: 'rgba(0, 0, 0, 0.7)',
|
||
borderColor: '#333',
|
||
textStyle: { color: '#fff' }
|
||
},
|
||
grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true },
|
||
xAxis: {
|
||
type: 'value',
|
||
boundaryGap: [0, 0.01],
|
||
axisLine: { lineStyle: { color: 'rgba(255,255,255,0.3)' } },
|
||
splitLine: { lineStyle: { color: 'rgba(255,255,255,0.1)' } },
|
||
axisLabel: { color: '#ccc', formatter: '{value}%' }
|
||
},
|
||
yAxis: {
|
||
type: 'category',
|
||
data: riseData.map(item => item.stock),
|
||
axisLine: { lineStyle: { color: 'rgba(255,255,255,0.3)' } },
|
||
axisLabel: { color: '#ccc', fontSize: 10 }
|
||
},
|
||
series: [{
|
||
name: '涨幅',
|
||
type: 'bar',
|
||
data: riseData.map(item => item.rise_rate),
|
||
itemStyle: {
|
||
borderRadius: [0, 5, 5, 0],
|
||
color: new echarts.graphic.LinearGradient(1, 0, 0, 0, [
|
||
{ offset: 0, color: '#0ea5e9' }, // sky-500
|
||
{ offset: 1, color: '#6366f1' } // indigo-500
|
||
])
|
||
},
|
||
emphasis: {
|
||
itemStyle: {
|
||
color: new echarts.graphic.LinearGradient(1, 0, 0, 0, [
|
||
{ offset: 0, color: '#38bdf8' }, // sky-400
|
||
{ offset: 1, color: '#818cf8' } // indigo-400
|
||
])
|
||
}
|
||
}
|
||
}]
|
||
};
|
||
riseChart.setOption(riseOption);
|
||
|
||
window.addEventListener('resize', function() {
|
||
sankeyChart.resize();
|
||
riseChart.resize();
|
||
});
|
||
});
|
||
</script>
|
||
|
||
</body>
|
||
</html> |