534 lines
33 KiB
HTML
534 lines
33 KiB
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>
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.11.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=Space+Grotesk:wght@300;400;500;700&display=swap');
|
||
|
||
body {
|
||
font-family: 'Space Grotesk', sans-serif;
|
||
background-color: #000010;
|
||
color: #E0E0E0;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
.bg-space {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
z-index: -1;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.glow-sphere {
|
||
position: absolute;
|
||
border-radius: 50%;
|
||
filter: blur(150px);
|
||
opacity: 0.3;
|
||
animation: drift 30s infinite alternate linear;
|
||
}
|
||
|
||
@keyframes drift {
|
||
0% { transform: translate(-20%, -20%) scale(1); }
|
||
100% { transform: translate(20%, 20%) scale(1.2); }
|
||
}
|
||
|
||
.glass-card {
|
||
background: rgba(20, 20, 40, 0.4);
|
||
-webkit-backdrop-filter: blur(12px);
|
||
backdrop-filter: blur(12px);
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
border-radius: 2rem;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.glass-card:hover {
|
||
transform: translateY(-5px) scale(1.01);
|
||
box-shadow: 0 0 30px rgba(0, 191, 255, 0.2);
|
||
border-color: rgba(0, 191, 255, 0.3);
|
||
}
|
||
|
||
.bento-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||
gap: 1.5rem;
|
||
}
|
||
|
||
.bento-item {
|
||
position: relative;
|
||
overflow: hidden;
|
||
padding: 1.5rem;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.bento-item::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: -50%;
|
||
left: -50%;
|
||
width: 200%;
|
||
height: 200%;
|
||
background: conic-gradient(transparent, rgba(0, 191, 255, 0.2), transparent 30%);
|
||
animation: rotate 8s infinite linear;
|
||
}
|
||
|
||
@keyframes rotate {
|
||
from { transform: rotate(0deg); }
|
||
to { transform: rotate(360deg); }
|
||
}
|
||
|
||
.text-glow {
|
||
text-shadow: 0 0 8px rgba(0, 191, 255, 0.7), 0 0 20px rgba(0, 191, 255, 0.5);
|
||
}
|
||
|
||
/* Timeline styles */
|
||
.timeline {
|
||
position: relative;
|
||
padding: 2rem 0;
|
||
}
|
||
.timeline::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: 0;
|
||
left: 1.5rem;
|
||
width: 2px;
|
||
height: 100%;
|
||
background: linear-gradient(to bottom, rgba(0, 191, 255, 0), rgba(0, 191, 255, 0.5), rgba(0, 191, 255, 0));
|
||
}
|
||
.timeline-item {
|
||
position: relative;
|
||
padding-left: 4rem;
|
||
margin-bottom: 2rem;
|
||
}
|
||
.timeline-dot {
|
||
position: absolute;
|
||
left: calc(1.5rem - 0.5rem + 1px);
|
||
top: 0.25rem;
|
||
width: 1rem;
|
||
height: 1rem;
|
||
border-radius: 50%;
|
||
background-color: #00BFFF;
|
||
box-shadow: 0 0 15px #00BFFF;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.timeline-item:hover .timeline-dot {
|
||
transform: scale(1.5);
|
||
}
|
||
|
||
/* Table Styles */
|
||
.table {
|
||
background-color: transparent;
|
||
}
|
||
.table th, .table td {
|
||
border-color: rgba(255, 255, 255, 0.15) !important;
|
||
color: #E0E0E0;
|
||
}
|
||
.table thead th {
|
||
color: #00BFFF;
|
||
font-size: 1.1rem;
|
||
background-color: rgba(0, 191, 255, 0.05);
|
||
}
|
||
.table tbody tr:hover {
|
||
background-color: rgba(0, 191, 255, 0.1) !important;
|
||
}
|
||
.table a {
|
||
color: #60A5FA;
|
||
transition: all 0.2s ease;
|
||
}
|
||
.table a:hover {
|
||
color: #93C5FD;
|
||
text-shadow: 0 0 5px #60A5FA;
|
||
}
|
||
|
||
</style>
|
||
</head>
|
||
<body class="min-h-screen">
|
||
<div class="bg-space">
|
||
<div class="glow-sphere" style="top: -20%; left: -20%; width: 50vw; height: 50vw; background-color: #3b82f6; animation-duration: 40s;"></div>
|
||
<div class="glow-sphere" style="bottom: -30%; right: -30%; width: 60vw; height: 60vw; background-color: #8b5cf6; animation-duration: 35s; animation-direction: reverse;"></div>
|
||
<div class="glow-sphere" style="top: 10%; right: -20%; width: 40vw; height: 40vw; background-color: #ec4899; animation-duration: 25s;"></div>
|
||
</div>
|
||
|
||
<div class="container mx-auto p-4 md:p-8 relative z-10">
|
||
<header class="text-center my-12">
|
||
<h1 class="text-5xl md:text-7xl font-bold text-glow tracking-widest">乌克兰重建</h1>
|
||
<p class="mt-4 text-xl text-gray-400">Ukraine Reconstruction: A Deep Dive into Geopolitics and Market Opportunities</p>
|
||
<p class="mt-8 text-sm text-gray-500 max-w-2xl mx-auto">
|
||
北京价值前沿科技有限公司 AI投研agent:“价小前投研” 进行投研呈现。<br>本报告为AI合成数据,不构成任何投资建议,投资需谨慎。
|
||
</p>
|
||
</header>
|
||
|
||
<main class="space-y-12">
|
||
|
||
<!-- Insight Section -->
|
||
<section id="insight" class="glass-card p-6 md:p-10">
|
||
<h2 class="text-3xl font-bold mb-6 text-glow border-l-4 border-cyan-400 pl-4">概念核心洞察</h2>
|
||
|
||
<div class="space-y-8">
|
||
<article>
|
||
<h3 class="text-2xl font-semibold mb-3 text-cyan-300">核心观点摘要</h3>
|
||
<p class="text-gray-300 leading-relaxed">乌克兰重建是一个由<strong class="text-white">地缘政治驱动、想象空间巨大但落地周期漫长</strong>的宏大叙事概念。当前,该概念尚处于<strong class="text-white">预期的早期博弈阶段</strong>,核心驱动力在于“停火”的可能性而非实际订单;其未来潜力取决于<strong class="text-white">重建资金的实际到位率</strong>和<strong class="text-white">中国企业的实质性参与程度</strong>,这其中存在巨大的不确定性和预期差。</p>
|
||
</article>
|
||
|
||
<article>
|
||
<h3 class="text-2xl font-semibold mb-3 text-cyan-300">核心驱动力与市场认知</h3>
|
||
<p class="text-gray-300 leading-relaxed mb-4">该概念的根本驱动力是<strong class="text-white">地缘政治局势的预期转变</strong>。不同于技术或产业周期驱动的概念,乌克兰重建的启动、规模和节奏完全取决于冲突的结束。因此,所有关于和平谈判、停火协议、以及大国(特别是美、俄)关系的信号,都是驱动该概念股价表现的最直接因素。其次是<strong class="text-white">资金来源的创新与确认</strong>,如动用俄罗斯被冻结资产、美乌矿产协议等,这些为“钱从哪来”这一核心问题提供了答案,使宏大的重建规模(<strong class="text-white">4860亿 - 7500亿美元</strong>)显得不那么遥不可及。</p>
|
||
<div class="p-4 border border-yellow-500/30 rounded-xl bg-yellow-500/10 text-yellow-300">
|
||
<h4 class="font-bold">预期差分析</h4>
|
||
<ul class="list-disc list-inside mt-2 space-y-1">
|
||
<li><strong>规模预期差:</strong>市场普遍聚焦于超5000亿美元的宏大叙事,但可能忽略了国际援助资金到位率不足20%的现实,高估了需求的有效性。</li>
|
||
<li><strong>参与预期差:</strong>市场普遍认为中国企业将深度参与,但多数被热议的公司目前在乌克兰并无在执行项目,市场对“潜在参与者”和“实际参与者”的认知存在模糊。</li>
|
||
<li><strong>风险预期差:</strong>乐观叙事下,市场可能忽略了乌克兰面临的严重人口流失(650万难民)、劳动力萎缩及经济结构失衡等深层次问题,这些是制约重建效率的潜在“灰犀牛”。</li>
|
||
</ul>
|
||
</div>
|
||
</article>
|
||
|
||
<article>
|
||
<h3 class="text-2xl font-semibold mb-3 text-cyan-300">关键催化剂与发展路径</h3>
|
||
<div class="grid md:grid-cols-2 gap-6">
|
||
<div class="p-4 border border-cyan-500/30 rounded-xl bg-cyan-500/10">
|
||
<h4 class="font-bold text-cyan-200">近期催化剂 (未来3-6个月)</h4>
|
||
<ul class="list-disc list-inside mt-2 space-y-1 text-gray-300">
|
||
<li>正式停火协议的签署</li>
|
||
<li>美乌重建投资基金的正式启动与首批项目招标</li>
|
||
<li>关于动用俄罗斯被冻结资产的最终法律决议</li>
|
||
<li>中国企业获得首批标志性重建合同</li>
|
||
</ul>
|
||
</div>
|
||
<div class="p-4 border border-purple-500/30 rounded-xl bg-purple-500/10">
|
||
<h4 class="font-bold text-purple-200">长期发展路径 (三阶段)</h4>
|
||
<ol class="list-decimal list-inside mt-2 space-y-1 text-gray-300">
|
||
<li><strong>紧急修复期 (1-2年):</strong> 关键基础设施、民生项目。</li>
|
||
<li><strong>全面重建期 (2-5年):</strong> 工业、农业、商业设施。</li>
|
||
<li><strong>长期改造期 (5-10年+):</strong> 产业升级,发展可再生能源。</li>
|
||
</ol>
|
||
</div>
|
||
</div>
|
||
</article>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Key Timeline -->
|
||
<section id="timeline" class="glass-card p-6 md:p-10">
|
||
<h2 class="text-3xl font-bold mb-8 text-glow border-l-4 border-cyan-400 pl-4">概念催化时间轴</h2>
|
||
<div class="timeline">
|
||
<div class="timeline-item">
|
||
<div class="timeline-dot"></div>
|
||
<div class="text-gray-400 text-sm">2024年2月</div>
|
||
<h4 class="font-semibold text-xl text-white">RDNA3报告发布</h4>
|
||
<p class="text-gray-300">世界银行等多方联合发布报告,首次系统性量化重建需求,预估未来十年需4860亿美元,成为市场核心基准数据。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<div class="timeline-dot"></div>
|
||
<div class="text-gray-400 text-sm">2024年4月30日</div>
|
||
<h4 class="font-semibold text-xl text-white">美乌重建投资基金建立</h4>
|
||
<p class="text-gray-300">以乌克兰未来矿产收益为基础,为重建提供了创新的、有资产背书的资金来源模式。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<div class="timeline-dot"></div>
|
||
<div class="text-gray-400 text-sm">2024年7月10-11日</div>
|
||
<h4 class="font-semibold text-xl text-white">罗马重建会议</h4>
|
||
<p class="text-gray-300">达成超100亿欧元的协议,标志着国际合作从意向转向实质。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<div class="timeline-dot"></div>
|
||
<div class="text-gray-400 text-sm">2025年2月-3月</div>
|
||
<h4 class="font-semibold text-xl text-white">市场预期升温</h4>
|
||
<p class="text-gray-300">美俄接触和特朗普“推动停火”言论背景下,研报和路演信息密集出现,市场对和平进程预期显著升温。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<div class="timeline-dot"></div>
|
||
<div class="text-gray-400 text-sm">2025年10月21日</div>
|
||
<h4 class="font-semibold text-xl text-white">停火预期强化</h4>
|
||
<p class="text-gray-300">外媒报道乌克兰联合多国首次明确支持特朗普的“立即停火”提议,以当前控制线为谈判起点,极大强化了停火预期。</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Reconstruction Scale & Key Areas -->
|
||
<section id="scale_and_areas" class="grid md:grid-cols-2 gap-8">
|
||
<div class="glass-card p-6 md:p-8">
|
||
<h2 class="text-3xl font-bold mb-4 text-glow border-l-4 border-cyan-400 pl-4">重建规模估算</h2>
|
||
<p class="mb-6 text-gray-400">各方对重建成本估算存在差异,反映了评估口径与时间点的不同,但均指向一个万亿级别的巨大市场。</p>
|
||
<div id="reconstruction-chart" class="w-full h-80"></div>
|
||
</div>
|
||
<div class="glass-card p-6 md:p-8">
|
||
<h2 class="text-3xl font-bold mb-6 text-glow border-l-4 border-cyan-400 pl-4">资金来源机制</h2>
|
||
<ul class="space-y-4">
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400 mr-3 mt-1 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 10v-1m0 0c-1.657 0-3-.895-3-2s1.343-2 3-2 3-.895 3-2-1.343-2-3-2m0 0c-1.11 0-2.08-.402-2.599-1M12 4v1m0 14v1m-6.401-7H4m16 0h-1.599" /></svg>
|
||
<div>
|
||
<h4 class="font-bold text-lg text-white">俄罗斯被冻结资产</h4>
|
||
<p class="text-gray-300">规模约3000亿美元,动用其收益或本金是核心资金来源之一,但面临复杂的法律和政治争议。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400 mr-3 mt-1 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 9V7a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2m2 4h10a2 2 0 002-2v-6a2 2 0 00-2-2H9a2 2 0 00-2 2v6a2 2 0 002 2zm7-5a2 2 0 11-4 0 2 2 0 014 0z" /></svg>
|
||
<div>
|
||
<h4 class="font-bold text-lg text-white">美乌重建投资基金</h4>
|
||
<p class="text-gray-300">以乌克兰未来矿产收益为担保,引入美国资金与金融产品,提供了一种创新的资产背书融资模式。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400 mr-3 mt-1 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3.055 11H5a2 2 0 012 2v1a2 2 0 002 2h10a2 2 0 002-2v-1a2 2 0 012-2h1.945M7.737 16.95l.007-.005a2.002 2.002 0 012.223.442l.18.271a1.5 1.5 0 002.7 0l.18-.271a2.002 2.002 0 012.223-.442l.007.005M7.737 16.95a2 2 0 00-2.223-.442L5.333 17a1.5 1.5 0 01-2.7 0l-.18-.271a2 2 0 00-2.223.442" /></svg>
|
||
<div>
|
||
<h4 class="font-bold text-lg text-white">欧盟及国际组织支持</h4>
|
||
<p class="text-gray-300">通过 "Ukraine Facility" 计划,欧盟将在2024-2027年提供贷款和赠款,撬动约500亿欧元投资。</p>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="bento" class="glass-card p-6 md:p-10">
|
||
<h2 class="text-3xl font-bold mb-6 text-glow border-l-4 border-cyan-400 pl-4">重点重建领域 (Bento Grid)</h2>
|
||
<div class="bento-grid">
|
||
<div class="bento-item glass-card md:col-span-2">
|
||
<h3 class="text-2xl font-bold text-pink-400">基础设施 & 住房</h3>
|
||
<p class="text-gray-300 my-2">需求在总投资中占比超60%,是重建的绝对核心,涵盖交通、能源、市政等。</p>
|
||
<div class="text-4xl font-black self-end text-white/80">~ $2283 亿</div>
|
||
</div>
|
||
<div class="bento-item glass-card">
|
||
<h3 class="text-2xl font-bold text-yellow-400">电力 & 能源</h3>
|
||
<p class="text-gray-300 my-2">重建成本约404亿美元,其中新能源(光储、风电)占比高达70%。</p>
|
||
<div class="text-4xl font-black self-end text-white/80">~ $404 亿</div>
|
||
</div>
|
||
<div class="bento-item glass-card">
|
||
<h3 class="text-2xl font-bold text-green-400">农业</h3>
|
||
<p class="text-gray-300 my-2">作为“欧洲粮仓”,农业恢复至关重要,损失超100亿美元,重建需求约550亿美元。</p>
|
||
<div class="text-4xl font-black self-end text-white/80">~ $550 亿</div>
|
||
</div>
|
||
<div class="bento-item glass-card">
|
||
<h3 class="text-2xl font-bold text-blue-400">工商业</h3>
|
||
<p class="text-gray-300 my-2">东部工业区被毁,经济重心西移。恢复工业生产和商业活动是长期目标。</p>
|
||
<div class="text-4xl font-black self-end text-white/80">~ $640 亿</div>
|
||
</div>
|
||
<div class="bento-item glass-card">
|
||
<h3 class="text-2xl font-bold text-purple-400">排雷 & 安防</h3>
|
||
<p class="text-gray-300 my-2">重建的先决条件,对排雷设备、无人排爆车等特种装备需求迫切。</p>
|
||
<div class="text-4xl font-black self-end text-white/80">优先需求</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="investment_implications" class="glass-card p-6 md:p-10">
|
||
<h2 class="text-3xl font-bold mb-6 text-glow border-l-4 border-cyan-400 pl-4">投资启示与价值环节</h2>
|
||
<div class="space-y-6">
|
||
<div>
|
||
<h3 class="text-xl font-semibold text-cyan-300 mb-2">阶段判断:</h3>
|
||
<p class="text-gray-300">概念目前明确处于由地缘政治预期驱动的<strong class="text-white">“主题炒作”阶段</strong>。市场正在交易“可能性”,而非“确定性”。少数个股已显现基本面驱动的苗头,但整个板块尚未进入业绩兑现期。</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="text-xl font-semibold text-cyan-300 mb-2">最具投资价值的细分环节:</h3>
|
||
<div class="grid md:grid-cols-3 gap-4">
|
||
<div class="p-4 border border-green-500/30 rounded-xl bg-green-500/10">
|
||
<h4 class="font-bold text-green-300">第一阶段 (确定性最高)</h4>
|
||
<p class="text-gray-300 mt-1"><strong>排雷</strong>和<strong>电力修复</strong>。需求刚性最强,订单有望最先落地。</p>
|
||
</div>
|
||
<div class="p-4 border border-yellow-500/30 rounded-xl bg-yellow-500/10">
|
||
<h4 class="font-bold text-yellow-300">第二阶段 (弹性最大)</h4>
|
||
<p class="text-gray-300 mt-1">具备在乌成功执行大型项目经验的<strong>EPC龙头</strong>。有望获得大额订单,业绩弹性巨大。</p>
|
||
</div>
|
||
<div class="p-4 border border-blue-500/30 rounded-xl bg-blue-500/10">
|
||
<h4 class="font-bold text-blue-300">配套环节 (逻辑稳健)</h4>
|
||
<p class="text-gray-300 mt-1"><strong>工程机械</strong>和<strong>特种运输</strong>。无论谁主导重建,都离不开设备和物流,是稳健的“卖铲人”。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div>
|
||
<h3 class="text-xl font-semibold text-cyan-300 mb-2">需重点跟踪和验证的关键指标:</h3>
|
||
<ul class="list-disc list-inside space-y-2 text-gray-300">
|
||
<li><strong>宏观层面:</strong><strong class="text-white">正式停火协议的签署进展</strong>;重建基金的实际资金划拨与项目招标公告。</li>
|
||
<li><strong>中观层面:</strong>中国与乌克兰官方重建合作框架协议的签订;面向中国企业的项目说明会或招标信息。</li>
|
||
<li><strong>微观层面:</strong>相关上市公司的<strong class="text-white">【新签海外订单公告】</strong>,特别是明确指向乌克兰地区的合同。这是概念从主题转向基本面的核心验证信号。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="stocks" class="glass-card p-6 md:p-10">
|
||
<h2 class="text-3xl font-bold mb-6 text-glow border-l-4 border-cyan-400 pl-4">相关标的梳理</h2>
|
||
|
||
<h3 class="text-2xl font-semibold mb-4 text-cyan-300">核心关联公司</h3>
|
||
<div class="overflow-x-auto">
|
||
<table class="table w-full">
|
||
<thead>
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>核心逻辑/原因</th>
|
||
<th>分类/其他标签</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>中钢国际 (<a href="https://valuefrontier.cn/company?scode=000928" target="_blank">000928</a>)</td>
|
||
<td>在乌项目因战争暂缓,在乌钢铁业务领域具优势,曾建乌最大球团项目。</td>
|
||
<td class="whitespace-nowrap">基础建设, 海外营收占比: 74%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>中工国际 (<a href="https://valuefrontier.cn/company?scode=002051" target="_blank">002051</a>)</td>
|
||
<td>暂无在乌执行项目,曾签约乌克兰生物质发电厂建设项目。</td>
|
||
<td class="whitespace-nowrap">基础建设, 海外营收占比: 67%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>中材国际 (<a href="https://valuefrontier.cn/company?scode=600970" target="_blank">600970</a>)</td>
|
||
<td>国际水泥工程龙头,曾承建乌克兰熟料水泥项目,在俄乌业务较小。</td>
|
||
<td class="whitespace-nowrap">基础建设, 海外营收占比: 54%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>中国电建 (<a href="https://valuefrontier.cn/company?scode=601669" target="_blank">601669</a>)</td>
|
||
<td>曾在乌克兰能源电力投资领域有较大投资,尤其是多个大型风电项目。</td>
|
||
<td class="whitespace-nowrap">基础建设, 海外营收占比: 15%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>贝肯能源 (<a href="https://valuefrontier.cn/company?scode=002828" target="_blank">002828</a>)</td>
|
||
<td>2024年乌克兰营收占比8.2%,将以轻资产模式继续深耕乌克兰市场。</td>
|
||
<td class="whitespace-nowrap">设备</td>
|
||
</tr>
|
||
<tr>
|
||
<td>德业股份 (<a href="https://valuefrontier.cn/company?scode=605117" target="_blank">605117</a>)</td>
|
||
<td>2024年业绩增长原因明确指向乌克兰市场用电刚性需求持续增长。</td>
|
||
<td class="whitespace-nowrap">电力/能源, 海外营收占比: 70%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>山河智能 (<a href="https://valuefrontier.cn/company?scode=002097" target="_blank">002097</a>)</td>
|
||
<td>军工产品包括无人排雷车,完美契合重建第一阶段的“排雷”刚需。</td>
|
||
<td class="whitespace-nowrap">排雷, 海外营收占比: 63%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>徐工机械 (<a href="https://valuefrontier.cn/company?scode=000425" target="_blank">000425</a>)</td>
|
||
<td>子公司掌握扫雷机器人技术并国产化。工程机械龙头,受益确定性高。</td>
|
||
<td class="whitespace-nowrap">排雷, 海外营收占比: 46%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>苏交科 (<a href="https://valuefrontier.cn/company?scode=300284" target="_blank">300284</a>)</td>
|
||
<td>战前在乌当地市场有稳定项目,设计咨询业务优势突出,已参与医院重建设计。</td>
|
||
<td class="whitespace-nowrap">基础建设, 海外营收占比: 20%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>濮耐股份 (<a href="https://valuefrontier.cn/company?scode=002225" target="_blank">002225</a>)</td>
|
||
<td>冲突前乌克兰是公司头部市场,有售后团队。重建需要大量钢材,生产钢材需要耐火材料。</td>
|
||
<td class="whitespace-nowrap">设备, 海外营收占比: 30%</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
|
||
<h3 class="text-2xl font-semibold mb-4 mt-10 text-cyan-300">涨停异动分析</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>东方铁塔 (<a href="https://valuefrontier.cn/company?scode=002545" target="_blank">002545</a>)</td>
|
||
<td>2025-09-16</td>
|
||
<td class="text-green-400 font-bold">10.01%</td>
|
||
<td><strong>【逻辑最硬核】</strong>公告乌克兰6.8万吨钢结构合同复工,且单价较2022年锁定价格上涨27%,是目前唯一得到验证的、直接受益于重建进程的案例。</td>
|
||
</tr>
|
||
<tr>
|
||
<td>龙高股份 (<a href="https://valuefrontier.cn/company?scode=605086" target="_blank">605086</a>)</td>
|
||
<td>2025-12-01</td>
|
||
<td class="text-green-400 font-bold">8.56%</td>
|
||
<td><strong>【题材炒作】</strong>非基本面驱动,因股票名称与“银龙股份”(俄乌重建核心标的)相似,被市场作为影子股或同概念股进行情绪化炒作。</td>
|
||
</tr>
|
||
<tr>
|
||
<td>建设机械 (<a href="https://valuefrontier.cn/company?scode=600984" target="_blank">600984</a>)</td>
|
||
<td>2025-10-20</td>
|
||
<td class="text-green-400 font-bold">6.74%</td>
|
||
<td><strong>【板块联动】</strong>俄乌停火预期催生重建想象空间,带动整个工程机械板块走强,公司作为板块一员被资金联动选中,叠加超跌反弹。</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
|
||
</section>
|
||
</main>
|
||
</div>
|
||
|
||
<script>
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
var chartDom = document.getElementById('reconstruction-chart');
|
||
var myChart = echarts.init(chartDom);
|
||
var option;
|
||
|
||
option = {
|
||
backgroundColor: 'transparent',
|
||
tooltip: {
|
||
trigger: 'axis',
|
||
axisPointer: {
|
||
type: 'shadow'
|
||
},
|
||
backgroundColor: 'rgba(20, 20, 40, 0.8)',
|
||
borderColor: '#00BFFF',
|
||
textStyle: {
|
||
color: '#E0E0E0'
|
||
}
|
||
},
|
||
grid: {
|
||
left: '3%',
|
||
right: '4%',
|
||
bottom: '3%',
|
||
containLabel: true
|
||
},
|
||
xAxis: {
|
||
type: 'value',
|
||
boundaryGap: [0, 0.01],
|
||
axisLabel: { color: '#888' },
|
||
splitLine: { show: true, lineStyle: { color: 'rgba(255, 255, 255, 0.1)' } }
|
||
},
|
||
yAxis: {
|
||
type: 'category',
|
||
data: ['RDNA3报告(世行等)', '加拿大财长', '小商品城调研', '乌克兰自身预计', '华泰建筑建材'],
|
||
axisLabel: { color: '#E0E0E0', fontSize: 12 }
|
||
},
|
||
series: [
|
||
{
|
||
name: '估算金额(亿美元)',
|
||
type: 'bar',
|
||
data: [4860, 5000, 6500, 7500, 75000], //华泰数据可能是笔误,但按原文保留
|
||
itemStyle: {
|
||
color: new echarts.graphic.LinearGradient(1, 0, 0, 0, [
|
||
{ offset: 0, color: '#833ab4' },
|
||
{ offset: 0.5, color: '#fd1d1d' },
|
||
{ offset: 1, color: '#fcb045' }
|
||
]),
|
||
borderRadius: [0, 5, 5, 0],
|
||
shadowColor: 'rgba(252, 176, 69, 0.5)',
|
||
shadowBlur: 10
|
||
},
|
||
label: {
|
||
show: true,
|
||
position: 'right',
|
||
formatter: '{c} 亿',
|
||
color: '#fff'
|
||
}
|
||
}
|
||
]
|
||
};
|
||
|
||
// Note for the outlier data point from Huatai
|
||
option.yAxis.data[4] = '华泰(可能笔误)';
|
||
|
||
myChart.setOption(option);
|
||
window.addEventListener('resize', myChart.resize);
|
||
});
|
||
</script>
|
||
</body>
|
||
</html> |