598 lines
42 KiB
HTML
598 lines
42 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.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=Noto+Sans+SC:wght@300;400;500;700&display=swap');
|
||
|
||
body {
|
||
font-family: 'Noto Sans SC', sans-serif;
|
||
background-color: #020617; /* slate-950 */
|
||
color: #d1d5db; /* gray-300 */
|
||
overflow-x: hidden;
|
||
position: relative;
|
||
}
|
||
|
||
.glass-card {
|
||
background: rgba(17, 24, 39, 0.5); /* gray-900 with 50% opacity */
|
||
backdrop-filter: blur(24px);
|
||
--webkit-backdrop-filter: blur(24px);
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
border-radius: 1.5rem; /* rounded-3xl */
|
||
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);
|
||
grid-auto-rows: auto;
|
||
}
|
||
|
||
.grid-item-header { grid-column: span 12; }
|
||
.grid-item-insight { grid-column: span 12; lg:grid-column: span 8; }
|
||
.grid-item-drivers { grid-column: span 12; lg:grid-column: span 4; }
|
||
.grid-item-chart { grid-column: span 12; md:grid-column: span 5; }
|
||
.grid-item-risks { grid-column: span 12; md:grid-column: span 7; }
|
||
.grid-item-tables { grid-column: span 12; }
|
||
|
||
|
||
.turrell-light {
|
||
position: fixed;
|
||
border-radius: 50%;
|
||
filter: blur(150px);
|
||
opacity: 0.15;
|
||
pointer-events: none;
|
||
z-index: -1;
|
||
}
|
||
|
||
.light-1 {
|
||
width: 500px;
|
||
height: 500px;
|
||
background: radial-gradient(circle, #4a00e0, transparent);
|
||
top: -10%;
|
||
left: -10%;
|
||
animation: moveLight1 25s infinite alternate ease-in-out;
|
||
}
|
||
|
||
.light-2 {
|
||
width: 600px;
|
||
height: 600px;
|
||
background: radial-gradient(circle, #8e2de2, transparent);
|
||
bottom: -20%;
|
||
right: -15%;
|
||
animation: moveLight2 30s infinite alternate ease-in-out;
|
||
}
|
||
|
||
.light-3 {
|
||
width: 400px;
|
||
height: 400px;
|
||
background: radial-gradient(circle, #00c9ff, transparent);
|
||
top: 20%;
|
||
right: 5%;
|
||
animation: moveLight3 20s infinite alternate ease-in-out;
|
||
}
|
||
|
||
@keyframes moveLight1 {
|
||
0% { transform: translate(0, 0); }
|
||
100% { transform: translate(20vw, 30vh); }
|
||
}
|
||
@keyframes moveLight2 {
|
||
0% { transform: translate(0, 0); }
|
||
100% { transform: translate(-25vw, -20vh); }
|
||
}
|
||
@keyframes moveLight3 {
|
||
0% { transform: translate(0, 0); }
|
||
100% { transform: translate(-10vw, 15vh); }
|
||
}
|
||
|
||
h1, h2, h3 {
|
||
font-weight: 500;
|
||
background: -webkit-linear-gradient(45deg, #a855f7, #60a5fa, #f472b6);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
}
|
||
|
||
h2 {
|
||
border-left: 3px solid #60a5fa;
|
||
padding-left: 1rem;
|
||
}
|
||
|
||
.tab-active {
|
||
background-color: rgba(96, 165, 250, 0.2) !important;
|
||
border-color: #60a5fa !important;
|
||
color: #e5e7eb !important;
|
||
}
|
||
|
||
table {
|
||
border-collapse: separate;
|
||
border-spacing: 0;
|
||
width: 100%;
|
||
}
|
||
th, td {
|
||
padding: 0.75rem 1rem;
|
||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||
vertical-align: middle;
|
||
}
|
||
th {
|
||
background-color: rgba(255, 255, 255, 0.05);
|
||
font-weight: 500;
|
||
text-align: left;
|
||
color: #9ca3af;
|
||
}
|
||
tr:hover {
|
||
background-color: rgba(255, 255, 255, 0.03);
|
||
}
|
||
thead th:first-child { border-top-left-radius: 1rem; }
|
||
thead th:last-child { border-top-right-radius: 1rem; }
|
||
tbody tr:last-child td:first-child { border-bottom-left-radius: 1rem; }
|
||
tbody tr:last-child td:last-child { border-bottom-right-radius: 1rem; }
|
||
tbody tr:last-child td { border-bottom: none; }
|
||
</style>
|
||
</head>
|
||
<body class="min-h-screen">
|
||
<div class="turrell-light light-1"></div>
|
||
<div class="turrell-light light-2"></div>
|
||
<div class="turrell-light light-3"></div>
|
||
|
||
<div class="container mx-auto p-4 md:p-8">
|
||
<div class="bento-grid">
|
||
<header class="glass-card p-8 grid-item-header">
|
||
<h1 class="text-4xl md:text-5xl font-bold text-center tracking-wider">
|
||
深度行研报告:并购重组预期
|
||
</h1>
|
||
<p class="text-center text-gray-400 mt-4 text-sm">
|
||
北京价值前沿科技有限公司 AI投研agent:“价小前投研” 进行投研呈现
|
||
</p>
|
||
<p class="text-center text-red-400/80 mt-2 text-xs">
|
||
本报告为AI合成数据,投资需谨慎
|
||
</p>
|
||
</header>
|
||
|
||
<section class="glass-card p-6 md:p-8 grid-item-insight" id="insight">
|
||
<h2 class="text-3xl mb-6">概念洞察 (Concept Insight)</h2>
|
||
|
||
<div class="space-y-8">
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-fuchsia-400">0. 核心观点摘要</h3>
|
||
<p class="text-gray-300 leading-relaxed">“并购重组预期”已从过往的“炒壳”、“套利”主题,演变为一轮由<strong class="text-sky-300">政策顶层设计</strong>与<strong class="text-sky-300">市场内生需求</strong>双轮驱动的结构性行情。当前正处于政策红利释放与产业逻辑验证的关键阶段,其核心驱动力在于通过资本市场优化资源配置,服务于<strong class="text-amber-300">国企改革提效、科技产业升级(新质生产力)、以及化解一级市场退出压力</strong>三大战略目标。未来,行情将从普涨的预期炒作,逐步深化为对<strong class="text-emerald-300">并购质量和整合效果</strong>的价值发现。</p>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-fuchsia-400">1. 概念事件与发展脉络</h3>
|
||
<ul class="timeline timeline-compact timeline-vertical">
|
||
<li>
|
||
<div class="timeline-start timeline-box glass-card border-l-purple-400">
|
||
<time class="font-mono italic text-xs">2023 - 2024年中</time>
|
||
<div class="text-lg font-black">政策酝酿与预热期</div>
|
||
政策宽松信号释放,IPO收紧为并购提供标的池。证监会明确提出“通过并购重组打造10家优质券商”。
|
||
</div>
|
||
<hr class="bg-purple-400"/>
|
||
</li>
|
||
<li>
|
||
<hr class="bg-sky-400"/>
|
||
<div class="timeline-end timeline-box glass-card border-l-sky-400">
|
||
<time class="font-mono italic text-xs">2024下半年 - 2025年初</time>
|
||
<div class="text-lg font-black">政策集中爆发与市场升温期</div>
|
||
标志性的“并购六条”发布,提升监管包容度、优化流程效率。地方政府密集响应,形成政策共振。“航母级”并购案例浮现,市场热度急剧升温。
|
||
</div>
|
||
<hr class="bg-sky-400"/>
|
||
</li>
|
||
<li>
|
||
<hr class="bg-emerald-400"/>
|
||
<div class="timeline-start timeline-box glass-card border-l-emerald-400">
|
||
<time class="font-mono italic text-xs">2025年至今</time>
|
||
<div class="text-lg font-black">行情深化与结构分化期</div>
|
||
市场延续火热,交易额同比增长16%。市场炒作与产业逻辑并存,逐步形成国企改革、科技整合、困境反转、券商合并四大清晰主线。
|
||
</div>
|
||
<hr/>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-fuchsia-400">2. 核心逻辑与市场认知</h3>
|
||
<div class="space-y-4 text-gray-300 leading-relaxed">
|
||
<p><strong class="text-sky-300">政策强力驱动 (Top-Down):</strong> 以新“国九条”和“并购六条”为代表,系统性地降低了并购门槛、提升了交易效率,并明确支持科技型企业、中小市值公司“蛇吞象”、国央企资产证券化、产业链整合等方向。</p>
|
||
<p><strong class="text-sky-300">市场内生需求 (Bottom-Up):</strong> <strong class="text-amber-300">IPO渠道收紧</strong>倒逼一级市场科技企业寻求并购退出;<strong class="text-amber-300">产业升级压力</strong>促使传统与新兴行业整合;<strong class="text-amber-300">国企改革深化</strong>要求通过并购进行市值管理和解决同业竞争;<strong class="text-amber-300">上市公司转型</strong>诉求强烈。</p>
|
||
<p><strong class="text-sky-300">预期差分析:</strong> 市场的关注点正从<strong class="text-rose-400">“壳价值”</strong>转向<strong class="text-emerald-300">“整合价值”</strong>,从简单的国企重组预期转向<strong class="text-emerald-300">“产业升级型”与“化债型”的甄别</strong>,以及从关注被收购方转向关注手握<strong class="text-emerald-300">超募资金主动出击的“并购方”</strong>。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-fuchsia-400">3. 产业链与核心公司剖析</h3>
|
||
<p class="mb-4 text-gray-300">本概念的核心是一个围绕“资产”与“资本”结合的生态系统。</p>
|
||
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
|
||
<div class="p-4 bg-slate-800/50 rounded-2xl border border-white/10">
|
||
<h4 class="font-bold text-sky-300">资产供给方 (上游)</h4>
|
||
<ul class="list-disc list-inside text-sm mt-2 space-y-1 text-gray-400">
|
||
<li>IPO终止的优质科技公司</li>
|
||
<li>大集团待证券化的业务板块</li>
|
||
<li>待整合的同业竞争公司</li>
|
||
<li>经营陷入困境的转型公司</li>
|
||
</ul>
|
||
</div>
|
||
<div class="p-4 bg-slate-800/50 rounded-2xl border border-white/10">
|
||
<h4 class="font-bold text-purple-300">并购实施方 (中游)</h4>
|
||
<ul class="list-disc list-inside text-sm mt-2 space-y-1 text-gray-400">
|
||
<li>国央企平台 (国家战略)</li>
|
||
<li>产业龙头 (产业链整合)</li>
|
||
<li>中小市值公司 (转型)</li>
|
||
<li>私募基金/产业基金/券商</li>
|
||
</ul>
|
||
</div>
|
||
<div class="p-4 bg-slate-800/50 rounded-2xl border border-white/10">
|
||
<h4 class="font-bold text-emerald-300">价值实现方 (下游)</h4>
|
||
<ul class="list-disc list-inside text-sm mt-2 space-y-1 text-gray-400">
|
||
<li>整合后的新主体</li>
|
||
<li>获得退出渠道的一级市场投资者</li>
|
||
<li>受益于集中度提升的整个产业</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-3 text-fuchsia-400">4. 综合结论与投资启示</h3>
|
||
<div class="space-y-4 text-gray-300 leading-relaxed">
|
||
<p>本轮“并购重组预期”概念正处在<strong class="text-sky-300">从“主题炒作”向“基本面驱动”过渡的关键时期</strong>。政策东风与市场需求共振,使其具备了成为中期结构性主线的坚实基础。市场的“试金石”将转向并购的<strong class="text-emerald-300">真实性、协同性、和最终的业绩兑现能力</strong>。</p>
|
||
<p><strong class="text-amber-300">最具投资价值的细分方向:</strong></p>
|
||
<ul class="list-decimal list-inside space-y-2 pl-4">
|
||
<li><strong class="text-purple-300">国央企专业化整合与核心资产注入:</strong>确定性最高,由国家意志推动,旨在解决同业竞争、提升核心竞争力。</li>
|
||
<li><strong class="text-blue-300">“硬科技”产业链并购:</strong>在IPO收紧背景下,由具备资金实力的科技龙头(特别是科创板/创业板公司)发起的产业链上下游整合。</li>
|
||
<li><strong class="text-rose-300">券商行业整合:</strong>政策目标明确(打造一流投行),行业格局有待优化。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<aside class="glass-card p-6 md:p-8 grid-item-drivers" x-data="{ activeTab: 'news' }">
|
||
<h2 class="text-3xl mb-6">核心驱动与市场数据</h2>
|
||
<div class="tabs tabs-boxed bg-slate-800/50 mb-6">
|
||
<a class="tab" :class="{'tab-active': activeTab === 'news'}" @click="activeTab = 'news'">新闻数据</a>
|
||
<a class="tab" :class="{'tab-active': activeTab === 'roadshow'}" @click="activeTab = 'roadshow'">路演纪要</a>
|
||
<a class="tab" :class="{'tab-active': activeTab === 'report'}" @click="activeTab = 'report'">研报精粹</a>
|
||
</div>
|
||
|
||
<div x-show="activeTab === 'news'" class="space-y-4 text-sm text-gray-300 leading-relaxed max-h-[800px] overflow-y-auto pr-2">
|
||
<h4 class="text-lg font-semibold text-sky-300">宏观市场趋势与预期</h4>
|
||
<ul class="list-disc list-inside space-y-2">
|
||
<li><strong>并购重组进入活跃期:</strong>多个信息表明市场热度升温,2025年一季度交易总金额3674亿元,同比增长16%。</li>
|
||
<li><strong>产业整合成为主流:</strong>产业逻辑叠加政策支持,成为本轮并购浪潮持续火热的主要原因,并购的实质效果与产业整合深度更受关注。</li>
|
||
</ul>
|
||
<h4 class="text-lg font-semibold text-sky-300">政策与监管动态</h4>
|
||
<ul class="list-disc list-inside space-y-2">
|
||
<li><strong>国家层面政策支持:</strong>新“国九条”及《重组办法》新规落地,体现监管层继续支持并购重组的决心。</li>
|
||
<li><strong>新规五大利好方向:</strong>科技型并购、私募基金参与、蛇吞象式并购、央国企并购、链主企业主导的并购。</li>
|
||
<li><strong>地方政府积极推动:</strong>北京、深圳、上海、广州等多地出台具体行动方案和支持政策,形成政策共振。</li>
|
||
</ul>
|
||
<h4 class="text-lg font-semibold text-sky-300">行业性并购重组预期</h4>
|
||
<ul class="list-disc list-inside space-y-2">
|
||
<li><strong>钢铁行业:</strong>并购重组是大势所趋,有助于改善基本面、提高产业集中度。</li>
|
||
<li><strong>国企/央企:</strong>资产证券化率提升需求强烈,国投系等成为改革先锋。</li>
|
||
<li><strong>科技行业:</strong>政策利好收购优质未盈利科技资产,市场日趋活跃。</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div x-show="activeTab === 'roadshow'" x-cloak class="space-y-4 text-sm text-gray-300 leading-relaxed max-h-[800px] overflow-y-auto pr-2">
|
||
<h4 class="text-lg font-semibold text-purple-300">核心投资逻辑与策略</h4>
|
||
<ul class="list-disc list-inside space-y-2">
|
||
<li><strong>投资前提:</strong>政策宽松(已满足) + 业绩兑现(需AI商业化等产业趋势支撑)。</li>
|
||
<li><strong>核心策略:</strong>“投早、投小、投科技”,优选小盘科技股(汽车电子、半导体、高端制造)。</li>
|
||
<li><strong>驱动力转变:</strong>从前两阶段的“风险救助”转向当前的“业务协同”。</li>
|
||
</ul>
|
||
<h4 class="text-lg font-semibold text-purple-300">五大核心投资线索 (东吴策略)</h4>
|
||
<ul class="list-disc list-inside space-y-2">
|
||
<li>央企专业化整合与战略重组。</li>
|
||
<li>集团内部资源整合(解决同业竞争/产业链协同/资产证券化)。</li>
|
||
<li>困境反转与资产置换。</li>
|
||
<li>产业集中度提升驱动并购(钢铁、券商、光伏等)。</li>
|
||
<li>IPO超募资金与未上市科技企业的“双向奔赴”。</li>
|
||
</ul>
|
||
<h4 class="text-lg font-semibold text-purple-300">IPO收紧倒逼并购</h4>
|
||
<ul class="list-disc list-inside space-y-2">
|
||
<li><strong>背景:</strong>IPO数量大幅缩减,一级市场科技企业退出压力巨大。</li>
|
||
<li><strong>机会:</strong>半导体、AI、新能源等领域,技术领先但未盈利的科技企业成为优质并购标的。</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div x-show="activeTab === 'report'" x-cloak class="space-y-4 text-sm text-gray-300 leading-relaxed max-h-[800px] overflow-y-auto pr-2">
|
||
<h4 class="text-lg font-semibold text-emerald-300">政策导向与监管信号</h4>
|
||
<ul class="list-disc list-inside space-y-2">
|
||
<li><strong>国资委:</strong>深入推进战略性重组和专业化整合,鼓励央企围绕主业、科技创新实施并购。</li>
|
||
<li><strong>证监会:</strong>全面实行重组注册制,支持上市公司收购有助于强链补链、提升关键技术水平的优质未盈利资产。</li>
|
||
<li><strong>多部委协同:</strong>发改委、商务部、央行等多部门发文,畅通创投退出渠道、优化外资并购规则、削减“壳”资源价值。</li>
|
||
<li><strong>地方政府目标明确:</strong>上海(3000亿并购规模)、深圳(成立并购基金联盟)、无锡(600亿交易规模)等均提出量化目标。</li>
|
||
</ul>
|
||
<h4 class="text-lg font-semibold text-emerald-300">市场趋势与新特征</h4>
|
||
<ul class="list-disc list-inside space-y-2">
|
||
<li><strong>脱虚向实:</strong>由“套利并购”回归到“产业并购”。</li>
|
||
<li><strong>活跃度提升:</strong>制度优化、IPO放缓、投资者退出意愿共同推动市场活跃。</li>
|
||
<li><strong>券商行业:</strong>并购重组预期明显升温,旨在优化资源配置,提升行业集中度。</li>
|
||
</ul>
|
||
<h4 class="text-lg font-semibold text-emerald-300">重点投资领域</h4>
|
||
<ul class="list-disc list-inside space-y-2">
|
||
<li><strong>科技创新企业:</strong>政策明确优先支持,估值包容性提高。</li>
|
||
<li><strong>国央企:</strong>战略重组和专业化整合是主线,市值管理意愿提升。</li>
|
||
<li><strong>传统产业整合:</strong>支持同行业、上下游并购,提升产业集中度。</li>
|
||
</ul>
|
||
</div>
|
||
</aside>
|
||
|
||
<div class="glass-card p-6 md:p-8 grid-item-chart">
|
||
<h2 class="text-3xl mb-6">标的分类统计</h2>
|
||
<p class="text-gray-400 mb-4 text-sm">基于部分已披露并购预期的公司统计,国资背景(央企及地方国资)的公司占据主导地位,体现了本轮并购重组由国家战略和地方发展驱动的显著特征。</p>
|
||
<div id="stock-category-chart" class="w-full h-64 md:h-80"></div>
|
||
</div>
|
||
|
||
<div class="glass-card p-6 md:p-8 grid-item-risks">
|
||
<h2 class="text-3xl mb-6">潜在风险与挑战</h2>
|
||
<ul class="space-y-4 text-gray-300">
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-red-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="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" /></svg>
|
||
<div>
|
||
<h4 class="font-semibold text-red-300">政策风险</h4>
|
||
<p class="text-sm text-gray-400">若市场出现过度投机、“炒壳”乱象,监管可能再度收紧,特别是对跨界并购和“忽悠式”重组的审查。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-amber-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="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" /></svg>
|
||
<div>
|
||
<h4 class="font-semibold text-amber-300">商业化与整合风险</h4>
|
||
<p class="text-sm text-gray-400">并购最大的挑战在于投后整合。跨行业、跨文化的整合失败率高,协同效应难以实现,可能导致“1+1<2”的后果,业绩承诺无法兑现。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-sky-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 8h6m-5 4h4m5 4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2z" /></svg>
|
||
<div>
|
||
<h4 class="font-semibold text-sky-300">估值与交易风险</h4>
|
||
<p class="text-sm text-gray-400">市场热情高涨时,收购方可能支付过高溢价。同时,交易核心条款(如价格)谈判破裂是导致并购失败的常见原因。</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-purple-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="M4 6h16M4 12h16M4 18h7" /></svg>
|
||
<div>
|
||
<h4 class="font-semibold text-purple-300">信息交叉验证风险</h4>
|
||
<p class="text-sm text-gray-400">新闻热度与监管态度可能存在矛盾,国企重组的真实动机(产业升级 vs 化解债务)需要甄别,构成潜在的认知陷阱。</p>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<section class="glass-card p-6 md:p-8 grid-item-tables" id="stocks">
|
||
<h2 class="text-3xl mb-6">核心标的列表</h2>
|
||
|
||
<div class="space-y-10">
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-sky-300">国企改革与产业整合核心标的</h3>
|
||
<div class="overflow-x-auto">
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>并购重组原因</th>
|
||
<th>分类</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<!-- Stocks will be injected here by script -->
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-purple-300">IPO终止借壳潜力标的</h3>
|
||
<div class="overflow-x-auto">
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>关联已终止IPO企业</th>
|
||
<th>关系</th>
|
||
<th>流通市值(亿)</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody id="ipo-stocks-body">
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 class="text-xl font-semibold mb-4 text-emerald-300">市场热点及潜在预期标的</h3>
|
||
<div class="overflow-x-auto">
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>重组原因/预期</th>
|
||
<th>流通市值</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody id="hot-stocks-body">
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</section>
|
||
</div>
|
||
</div>
|
||
|
||
<script>
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
// ECharts Initialization
|
||
const chartDom = document.getElementById('stock-category-chart');
|
||
const myChart = echarts.init(chartDom);
|
||
const option = {
|
||
tooltip: {
|
||
trigger: 'item',
|
||
formatter: '{b} : {c} ({d}%)'
|
||
},
|
||
legend: {
|
||
orient: 'vertical',
|
||
left: 'left',
|
||
textStyle: { color: '#d1d5db' }
|
||
},
|
||
series: [
|
||
{
|
||
name: '标的分类',
|
||
type: 'pie',
|
||
radius: ['40%', '70%'],
|
||
avoidLabelOverlap: false,
|
||
itemStyle: {
|
||
borderRadius: 10,
|
||
borderColor: '#020617',
|
||
borderWidth: 2
|
||
},
|
||
label: {
|
||
show: false,
|
||
position: 'center'
|
||
},
|
||
emphasis: {
|
||
label: {
|
||
show: true,
|
||
fontSize: 20,
|
||
fontWeight: 'bold',
|
||
color: '#e5e7eb'
|
||
}
|
||
},
|
||
labelLine: {
|
||
show: false
|
||
},
|
||
data: [
|
||
{ value: 17, name: '央企' },
|
||
{ value: 18, name: '地方国资' },
|
||
{ value: 14, name: '民营企业' }
|
||
],
|
||
color: ['#8b5cf6', '#3b82f6', '#10b981']
|
||
}
|
||
]
|
||
};
|
||
myChart.setOption(option);
|
||
window.addEventListener('resize', () => myChart.resize());
|
||
|
||
// Stock Data Population
|
||
const stockData = {
|
||
"国企改革与产业整合核心标的": [
|
||
{ "stock": "保变电气", "reason": "控股股东拟变更为中国电气装备集团", "其他标签": "央企", "stock_code": "600550" },
|
||
{ "stock": "中国船舶", "reason": "与中国重工筹划重大资产重组", "其他标签": "央企", "stock_code": "600150" },
|
||
{ "stock": "盐湖股份", "reason": "控股股东拟变更为中国五矿集团", "其他标签": "央企", "stock_code": "000792" },
|
||
{ "stock": "浙商证券", "reason": "与国都证券并购重组", "其他标签": "央企", "stock_code": "601878" },
|
||
{ "stock": "宏盛华源", "reason": "属于中国电气装备集团, 和保变构成同业竞争", "其他标签": "央企", "stock_code": "601096" },
|
||
{ "stock": "长春一东", "reason": "兵器工业集团下上市平台, 资产注入预期", "其他标签": "央企", "stock_code": "600148" },
|
||
{ "stock": "中成股份", "reason": "国投集团与中国通用技术(集团), 资产注入预期", "其他标签": "央企", "stock_code": "000151" },
|
||
{ "stock": "昊华科技", "reason": "收购中化蓝天股权", "其他标签": "央企", "stock_code": "600378" },
|
||
{ "stock": "华电国际", "reason": "华电国际拟购买华电集团多项发电资产", "其他标签": "央企", "stock_code": "600027" },
|
||
{ "stock": "泰豪科技", "reason": "参股中航比特, 重组经验丰富", "其他标签": "央企", "stock_code": "600590" },
|
||
{ "stock": "天奥电子", "reason": "资产注入可能性联想", "其他标签": "央企", "stock_code": "002935" },
|
||
{ "stock": "东安动力", "reason": "央国企改革可能性联想", "其他标签": "央企", "stock_code": "600178" },
|
||
{ "stock": "建设工业", "reason": "曾完成与建设工业重大资产重组", "其他标签": "央企", "stock_code": "002265" },
|
||
{ "stock": "莫高股份", "reason": "拟收购莫高宏远49%的股权和皓天科技51%股份", "其他标签": "地方国资", "stock_code": "600543" },
|
||
{ "stock": "水发燃气", "reason": "拟以3.46亿元收购胜动燃气100%股权", "其他标签": "地方国资", "stock_code": "603318" },
|
||
{ "stock": "合肥城建", "reason": "拟收购安徽公共资源交易集团100%股权", "其他标签": "地方国资", "stock_code": "002208" },
|
||
{ "stock": "西域旅游", "reason": "控制权拟变更, 新疆国资委成新实控人", "其他标签": "地方国资", "stock_code": "300859" },
|
||
{ "stock": "东湖高新", "reason": "增资间接持有湖北数据集团股权, 将继续并购扩大业务", "其他标签": "地方国资", "stock_code": "600133" },
|
||
{ "stock": "上海九百", "reason": "百联免税牌照, 装入九百的预期", "其他标签": "地方国资", "stock_code": "600838" },
|
||
{ "stock": "国信证券", "reason": "吸收合并万和证券", "其他标签": "地方国资", "stock_code": "002736" },
|
||
{ "stock": "陕西煤业", "reason": "拟收购陕煤电力集团有限公司全部股权", "其他标签": "地方国资", "stock_code": "601225" },
|
||
{ "stock": "湖北宜化", "reason": "拟收购宜昌新发投100%股权", "其他标签": "地方国资", "stock_code": "000422" },
|
||
{ "stock": "亚邦股份", "reason": "公司控股股东股权拍卖, 实控人拟变更", "其他标签": "地方国资", "stock_code": "603188" },
|
||
{ "stock": "物产金轮", "reason": "为解决公司与股东的同业竞争, 正推进相关工作", "其他标签": "地方国资", "stock_code": "002722" },
|
||
{ "stock": "新宏泰", "reason": "安谱隆资产注入预期", "其他标签": "地方国资", "stock_code": "603016" },
|
||
{ "stock": "空港股份", "reason": "瑞能半导体曾拟借壳空港股份, 后重组失败", "其他标签": "地方国资", "stock_code": "600463" },
|
||
{ "stock": "澳柯玛", "reason": "最终控制人均为青岛国资委, 资产注入联想", "其他标签": "地方国资", "stock_code": "600336" },
|
||
{ "stock": "国中水务", "reason": "拟收购诸暨文盛汇股权, 其下属持有汇源部分资产", "其他标签": "民营企业", "stock_code": "600187" },
|
||
{ "stock": "中电电机", "reason": "控股股东拟变更为高地资源", "其他标签": "民营企业", "stock_code": "603988" },
|
||
{ "stock": "大富科技", "reason": "实控人或将变更", "其他标签": "民营企业", "stock_code": "300134" },
|
||
{ "stock": "汉嘉设计", "reason": "拟5.81亿元收购伏泰科技51%股份", "其他标签": "民营企业", "stock_code": "300746" },
|
||
{ "stock": "高新发展", "reason": "关联方高投电子拟注入华鲲振宇55%股权", "其他标签": "民营企业", "stock_code": "000628" },
|
||
{ "stock": "长电科技", "reason": "公司实控人将变更为中国华润", "其他标签": "民营企业", "stock_code": "600584" },
|
||
{ "stock": "宁波富邦", "reason": "公司拟收购电工合金不低于51%的股权", "其他标签": "民营企业", "stock_code": "600768" },
|
||
{ "stock": "凯瑞德", "reason": "将成为国网电力的控股股东", "其他标签": "民营企业", "stock_code": "002072" },
|
||
{ "stock": "万里股份", "reason": "至创天地收购公司股份", "其他标签": "民营企业", "stock_code": "600847" },
|
||
{ "stock": "苏州固锝", "reason": "明镐传感重组预期", "其他标签": "民营企业", "stock_code": "002079" }
|
||
],
|
||
"IPO终止借壳潜力标的": [
|
||
{ "stock": "莫高股份", "其他标签": { "流通市值(亿)": 19, "已终止IPO企业": "皓天科技", "关系": "拟收购51%股权" }, "stock_code": "600543" },
|
||
{ "stock": "北陆药业", "其他标签": { "流通市值(亿)": 24, "已终止IPO企业": "世和基因", "关系": "持股16.4%第二大股东" }, "stock_code": "300016" },
|
||
{ "stock": "富乐德", "其他标签": { "流通市值(亿)": 28, "已终止IPO企业": "中欣晶圆半导体", "关系": "同一实控人" }, "stock_code": "301297" },
|
||
{ "stock": "汉嘉设计", "其他标签": { "流通市值(亿)": 28, "已终止IPO企业": "伏泰科技", "关系": "拟收购51%股权" }, "stock_code": "300746" },
|
||
{ "stock": "浪潮软件", "其他标签": { "流通市值(亿)": 35, "已终止IPO企业": "华光光电", "关系": "同一实控人" }, "stock_code": "600756" },
|
||
{ "stock": "荃银高科", "其他标签": { "流通市值(亿)": 57, "已终止IPO企业": "先正达", "关系": "同一实控人" }, "stock_code": "300087" },
|
||
{ "stock": "苏州固锝", "其他标签": { "流通市值(亿)": 66, "已终止IPO企业": "明皜传感", "关系": "持股21.6%子公司" }, "stock_code": "002079" },
|
||
{ "stock": "华天科技", "其他标签": { "流通市值(亿)": 247, "已终止IPO企业": "华羿微电", "关系": "同一实控人" }, "stock_code": "002185" }
|
||
],
|
||
"市场热点及潜在预期标的": [
|
||
{ "stock": "永达股份", "stock_code": "001239", "流通值": "7.29亿", "reason": "永达股份拟收购金源装备51%股权" },
|
||
{ "stock": "汉嘉设计", "stock_code": "300746", "流通值": "8.64亿", "reason": "拟以5.81亿元收购伏泰科技51%股权,实控人将变更" },
|
||
{ "stock": "凯瑞德", "stock_code": "002072", "流通值": "8.88亿", "reason": "拟购买国网电力29.01%股权,成为其控股股东" },
|
||
{ "stock": "中电电机", "stock_code": "603988", "流通值": "9.82亿", "reason": "控股股东及实际控制人拟变更" },
|
||
{ "stock": "日播时尚", "stock_code": "603196", "流通值": "10.27亿", "reason": "拟购买锦源晟,主营新能源电池正极材料" },
|
||
{ "stock": "新宏泰", "stock_code": "603016", "流通值": "10.63亿", "reason": "安谱隆(全球第二大移动基站射频器)注入预期" },
|
||
{ "stock": "莫高股份", "stock_code": "600543", "流通值": "11.44亿", "reason": "拟收购CDMO/CMO企业皓天科技51%股权" },
|
||
{ "stock": "双成药业", "stock_code": "002693", "流通值": "13.23亿", "reason": "拟收购奥拉半导体,主营模拟及数模混合芯片" },
|
||
{ "stock": "郑州煤电", "stock_code": "600121", "流通值": "17.87亿", "reason": "待杨河煤业达上市条件后,适时注入上市公司" },
|
||
{ "stock": "澳柯玛", "stock_code": "600336", "流通值": "23.70亿", "reason": "芯恩(青岛)集成电路注入预期" },
|
||
{ "stock": "智光电气", "stock_code": "002169", "流通值": "27.54亿", "reason": "实控人是粤芯半导体实控人,存在芯片资产注入预期" },
|
||
{ "stock": "高新发展", "stock_code": "000628", "流通值": "63.08亿", "reason": "重组华鲲振宇预期" },
|
||
{ "stock": "东湖高新", "stock_code": "600133", "流通值": "66.06亿", "reason": "可能注入湖北路桥" }
|
||
]
|
||
};
|
||
|
||
const firstTableBody = document.querySelector('#stocks table tbody');
|
||
stockData["国企改革与产业整合核心标的"].forEach(item => {
|
||
const row = `
|
||
<tr>
|
||
<td class="font-semibold text-gray-200">${item.stock}</td>
|
||
<td>${item.stock_code ? `<a href="https://valuefrontier.cn/company?scode=${item.stock_code}" target="_blank" class="text-sky-400 hover:text-sky-300 transition-colors">${item.stock_code}</a>` : 'N/A'}</td>
|
||
<td class="text-sm text-gray-400">${item.reason}</td>
|
||
<td><span class="px-2 py-1 text-xs rounded-full ${item.其他标签 === '央企' ? 'bg-purple-500/20 text-purple-300' : (item.其他标签 === '地方国资' ? 'bg-blue-500/20 text-blue-300' : 'bg-green-500/20 text-green-300')}">${item.其他标签}</span></td>
|
||
</tr>
|
||
`;
|
||
firstTableBody.innerHTML += row;
|
||
});
|
||
|
||
const ipoTableBody = document.getElementById('ipo-stocks-body');
|
||
stockData["IPO终止借壳潜力标的"].forEach(item => {
|
||
const row = `
|
||
<tr>
|
||
<td class="font-semibold text-gray-200">${item.stock}</td>
|
||
<td>${item.stock_code ? `<a href="https://valuefrontier.cn/company?scode=${item.stock_code}" target="_blank" class="text-sky-400 hover:text-sky-300 transition-colors">${item.stock_code}</a>` : 'N/A'}</td>
|
||
<td class="text-sm font-semibold text-amber-300">${item.其他标签['已终止IPO企业']}</td>
|
||
<td class="text-sm text-gray-400">${item.其他标签['关系']}</td>
|
||
<td>${item.其他标签['流通市值(亿)']}</td>
|
||
</tr>
|
||
`;
|
||
ipoTableBody.innerHTML += row;
|
||
});
|
||
|
||
const hotTableBody = document.getElementById('hot-stocks-body');
|
||
stockData["市场热点及潜在预期标的"].forEach(item => {
|
||
const row = `
|
||
<tr>
|
||
<td class="font-semibold text-gray-200">${item.stock}</td>
|
||
<td>${item.stock_code ? `<a href="https://valuefrontier.cn/company?scode=${item.stock_code}" target="_blank" class="text-sky-400 hover:text-sky-300 transition-colors">${item.stock_code}</a>` : 'N/A'}</td>
|
||
<td class="text-sm text-gray-400">${item.reason}</td>
|
||
<td>${item.流通值}</td>
|
||
</tr>
|
||
`;
|
||
hotTableBody.innerHTML += row;
|
||
});
|
||
});
|
||
</script>
|
||
|
||
</body>
|
||
</html> |