Files
vf_react/public/htmls/安徽国资.html
2025-11-13 17:38:54 +08:00

824 lines
52 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh-CN">
<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>
<script src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js" defer></script>
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
* {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.gold-gradient {
background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.card-glow {
background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
border: 1px solid rgba(255, 215, 0, 0.2);
backdrop-filter: blur(10px);
}
.timeline-line {
background: linear-gradient(180deg, #FFD700, #FFA500);
}
.stock-table {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.stock-table::-webkit-scrollbar {
height: 8px;
}
.stock-table::-webkit-scrollbar-track {
background: rgba(255, 215, 0, 0.1);
border-radius: 4px;
}
.stock-table::-webkit-scrollbar-thumb {
background: rgba(255, 215, 0, 0.3);
border-radius: 4px;
}
.animate-pulse-slow {
animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeInUp {
animation: fadeInUp 0.6s ease-out;
}
.glass-effect {
background: rgba(17, 24, 39, 0.7);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 215, 0, 0.1);
}
</style>
</head>
<body class="bg-gray-950 text-gray-100" x-data="{ activeTab: 'overview', mobileMenu: false, stockSearch: '' }">
<!-- Hero Section -->
<header class="relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-br from-gray-950 via-gray-900 to-gray-950"></div>
<div class="absolute inset-0 bg-gradient-to-t from-yellow-900/10 to-transparent"></div>
<div class="relative z-10 container mx-auto px-4 py-16 lg:py-24">
<div class="text-center animate-fadeInUp">
<span class="inline-block px-4 py-2 bg-yellow-500/10 border border-yellow-500/30 rounded-full text-yellow-400 text-sm font-semibold mb-6">
<i class="ri-stock-line mr-2"></i>概念深度解析
</span>
<h1 class="text-4xl lg:text-6xl font-bold mb-6">
<span class="gold-gradient">安徽国资</span>
</h1>
<p class="text-xl text-gray-400 max-w-3xl mx-auto mb-8">
从地方国企改革到新质生产力培育的战略跃升
</p>
<div class="flex flex-wrap justify-center gap-4">
<span class="px-4 py-2 bg-gray-800 rounded-lg text-sm">
<i class="ri-time-line text-yellow-400 mr-2"></i>发布时间2025年10月24日
</span>
<span class="px-4 py-2 bg-gray-800 rounded-lg text-sm">
<i class="ri-bar-chart-box-line text-yellow-400 mr-2"></i>相关股票42只
</span>
<span class="px-4 py-2 bg-gray-800 rounded-lg text-sm">
<i class="ri-fire-line text-yellow-400 mr-2"></i>热度指数:★★★★★
</span>
</div>
</div>
</div>
<!-- Decorative Elements -->
<div class="absolute top-20 right-20 w-64 h-64 bg-yellow-500/10 rounded-full blur-3xl"></div>
<div class="absolute bottom-20 left-20 w-96 h-96 bg-orange-500/10 rounded-full blur-3xl"></div>
</header>
<!-- Navigation Tabs -->
<nav class="sticky top-0 z-40 glass-effect border-b border-gray-800">
<div class="container mx-auto px-4">
<div class="flex overflow-x-auto scrollbar-hide">
<button @click="activeTab = 'overview'" :class="activeTab === 'overview' ? 'border-yellow-400 text-yellow-400' : 'border-transparent text-gray-400'"
class="px-6 py-4 border-b-2 font-medium whitespace-nowrap transition-all hover:text-gray-200">
<i class="ri-dashboard-3-line mr-2"></i>核心洞察
</button>
<button @click="activeTab = 'timeline'" :class="activeTab === 'timeline' ? 'border-yellow-400 text-yellow-400' : 'border-transparent text-gray-400'"
class="px-6 py-4 border-b-2 font-medium whitespace-nowrap transition-all hover:text-gray-200">
<i class="ri-timeline-line mr-2"></i>事件时间轴
</button>
<button @click="activeTab = 'companies'" :class="activeTab === 'companies' ? 'border-yellow-400 text-yellow-400' : 'border-transparent text-gray-400'"
class="px-6 py-4 border-b-2 font-medium whitespace-nowrap transition-all hover:text-gray-200">
<i class="ri-building-line mr-2"></i>核心公司
</button>
<button @click="activeTab = 'stocks'" :class="activeTab === 'stocks' ? 'border-yellow-400 text-yellow-400' : 'border-transparent text-gray-400'"
class="px-6 py-4 border-b-2 font-medium whitespace-nowrap transition-all hover:text-gray-200">
<i class="ri-stock-line mr-2"></i>股票池
</button>
<button @click="activeTab = 'risks'" :class="activeTab === 'risks' ? 'border-yellow-400 text-yellow-400' : 'border-transparent text-gray-400'"
class="px-6 py-4 border-b-2 font-medium whitespace-nowrap transition-all hover:text-gray-200">
<i class="ri-alert-line mr-2"></i>风险提示
</button>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="container mx-auto px-4 py-12">
<!-- Core Overview Section -->
<section x-show="activeTab === 'overview'" x-transition class="space-y-12">
<!-- Key Insights -->
<div class="grid lg:grid-cols-3 gap-6">
<div class="card-glow rounded-2xl p-6 hover:transform hover:scale-105 transition-all">
<div class="w-12 h-12 bg-yellow-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="ri-strategy-line text-yellow-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">战略引领</h3>
<p class="text-gray-400 text-sm">安徽省以国资为核心抓手,推动产业结构转型升级的系统性工程</p>
</div>
<div class="card-glow rounded-2xl p-6 hover:transform hover:scale-105 transition-all">
<div class="w-12 h-12 bg-yellow-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="ri-stack-line text-yellow-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">产业基础</h3>
<p class="text-gray-400 text-sm">汽车产量全国第一,形成完整产业链集群,为产业升级提供土壤</p>
</div>
<div class="card-glow rounded-2xl p-6 hover:transform hover:scale-105 transition-all">
<div class="w-12 h-12 bg-yellow-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="ri-exchange-dollar-line text-yellow-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">资本运作</h3>
<p class="text-gray-400 text-sm">内整外引的多元化模式,赋予国资平台强大的成长弹性</p>
</div>
</div>
<!-- Core Logic -->
<div class="card-glow rounded-2xl p-8">
<h2 class="text-2xl font-bold mb-6 gold-gradient">核心逻辑分析</h2>
<div class="space-y-6">
<div class="flex gap-4">
<div class="flex-shrink-0 w-8 h-8 bg-yellow-500/20 rounded-full flex items-center justify-center">
<span class="text-yellow-400 font-bold">1</span>
</div>
<div>
<h3 class="text-lg font-semibold mb-2">政策催化与市场认知</h3>
<p class="text-gray-400">《安徽省推进"大资产"统筹管理总体工作方案》引爆概念,但市场认知仍停留在事件驱动层面,对深层次产业逻辑理解尚浅</p>
</div>
</div>
<div class="flex gap-4">
<div class="flex-shrink-0 w-8 h-8 bg-yellow-500/20 rounded-full flex items-center justify-center">
<span class="text-yellow-400 font-bold">2</span>
</div>
<div>
<h3 class="text-lg font-semibold mb-2">关键预期差</h3>
<ul class="text-gray-400 space-y-2">
<li><span class="text-yellow-400">重并购轻整合:</span>市场过度关注并购预期,忽视整合难度与协同释放周期</li>
<li><span class="text-yellow-400">重光环轻竞争:</span>国资是加分项非决定项,核心竞争力仍需市场化验证</li>
<li><span class="text-yellow-400">重政策轻风险:</span>地方债务、回款压力等现实挑战不容忽视</li>
</ul>
</div>
</div>
<div class="flex gap-4">
<div class="flex-shrink-0 w-8 h-8 bg-yellow-500/20 rounded-full flex items-center justify-center">
<span class="text-yellow-400 font-bold">3</span>
</div>
<div>
<h3 class="text-lg font-semibold mb-2">发展阶段演进</h3>
<div class="grid md:grid-cols-3 gap-4 mt-4">
<div class="bg-gray-800/50 rounded-lg p-4">
<h4 class="text-yellow-400 font-semibold mb-2">阶段一:资产盘活</h4>
<p class="text-sm text-gray-400">当前-1年内提升效率修复价值</p>
</div>
<div class="bg-gray-800/50 rounded-lg p-4">
<h4 class="text-yellow-400 font-semibold mb-2">阶段二:产业整合</h4>
<p class="text-sm text-gray-400">1-3年打造产业链主集中资源</p>
</div>
<div class="bg-gray-800/50 rounded-lg p-4">
<h4 class="text-yellow-400 font-semibold mb-2">阶段三:创新驱动</h4>
<p class="text-sm text-gray-400">3-5年构建创新生态全球竞争</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Catalyst -->
<div class="card-glow rounded-2xl p-8">
<h2 class="text-2xl font-bold mb-6 gold-gradient">关键催化剂</h2>
<div class="grid md:grid-cols-2 gap-6">
<div class="bg-gray-800/30 rounded-xl p-6 border-l-4 border-yellow-400">
<h3 class="text-lg font-semibold mb-3 text-yellow-400">近期催化剂3-6个月</h3>
<ul class="space-y-2 text-gray-400 text-sm">
<li><i class="ri-arrow-right-s-line text-yellow-400 mr-2"></i>《大资产统筹方案》细则落地</li>
<li><i class="ri-arrow-right-s-line text-yellow-400 mr-2"></i>市值管理考核细则公布</li>
<li><i class="ri-arrow-right-s-line text-yellow-400 mr-2"></i>安徽机器人项目重大突破</li>
<li><i class="ri-arrow-right-s-line text-yellow-400 mr-2"></i>关键公司财报/订单超预期</li>
</ul>
</div>
<div class="bg-gray-800/30 rounded-xl p-6 border-l-4 border-orange-400">
<h3 class="text-lg font-semibold mb-3 text-orange-400">长期发展路径</h3>
<ul class="space-y-2 text-gray-400 text-sm">
<li><i class="ri-arrow-right-s-line text-orange-400 mr-2"></i>国有资产证券化率提升</li>
<li><i class="ri-arrow-right-s-line text-orange-400 mr-2"></i>产业并购整合加速</li>
<li><i class="ri-arrow-right-s-line text-orange-400 mr-2"></i>新兴产业集群形成</li>
<li><i class="ri-arrow-right-s-line text-orange-400 mr-2"></i>全球竞争力企业培育</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Timeline Section -->
<section x-show="activeTab === 'timeline'" x-transition class="space-y-12">
<div class="card-glow rounded-2xl p-8">
<h2 class="text-2xl font-bold mb-8 gold-gradient">概念事件时间轴</h2>
<div class="relative">
<div class="absolute left-8 top-0 bottom-0 w-0.5 timeline-line"></div>
<div class="space-y-8">
<!-- 2024 Q4 -->
<div class="relative flex items-start gap-6">
<div class="flex-shrink-0 w-16 h-16 bg-gray-800 rounded-full flex items-center justify-center border-4 border-yellow-400">
<span class="text-xs font-bold text-yellow-400">2024 Q4</span>
</div>
<div class="flex-1">
<h3 class="text-lg font-semibold mb-2">产业基础奠定期</h3>
<div class="space-y-3">
<div class="bg-gray-800/50 rounded-lg p-4">
<span class="text-yellow-400 text-sm">2024-11-29</span>
<p class="text-gray-300 mt-1">安徽合力收购好运机械、安鑫货叉,完善产业链布局</p>
</div>
<div class="bg-gray-800/50 rounded-lg p-4">
<span class="text-yellow-400 text-sm">2024-12-11/12</span>
<p class="text-gray-300 mt-1">市场聚焦"安徽机器人"概念,挖掘伯特利、安徽合力等标的</p>
</div>
<div class="bg-gray-800/50 rounded-lg p-4">
<span class="text-yellow-400 text-sm">2024-12-29</span>
<p class="text-gray-300 mt-1">安徽人工智能产业先导区正式启动</p>
</div>
</div>
</div>
</div>
<!-- 2025 Q2-Q3 -->
<div class="relative flex items-start gap-6">
<div class="flex-shrink-0 w-16 h-16 bg-gray-800 rounded-full flex items-center justify-center border-4 border-orange-400">
<span class="text-xs font-bold text-orange-400">2025 Q2-Q3</span>
</div>
<div class="flex-1">
<h3 class="text-lg font-semibold mb-2">政策驱动期</h3>
<div class="space-y-3">
<div class="bg-gray-800/50 rounded-lg p-4">
<span class="text-orange-400 text-sm">2025-08-01</span>
<p class="text-gray-300 mt-1">国资委强调推进"十五五"规划,加速培育新质生产力</p>
</div>
<div class="bg-gray-800/50 rounded-lg p-4">
<span class="text-orange-400 text-sm">2025-08-15</span>
<p class="text-gray-300 mt-1">安徽马鞍山国资江东产投入主蓝黛科技,并购模式受关注</p>
</div>
</div>
</div>
</div>
<!-- 2025 Q4 -->
<div class="relative flex items-start gap-6">
<div class="flex-shrink-0 w-16 h-16 bg-gray-800 rounded-full flex items-center justify-center border-4 border-red-400 animate-pulse-slow">
<span class="text-xs font-bold text-red-400">2025 Q4</span>
</div>
<div class="flex-1">
<h3 class="text-lg font-semibold mb-2">概念引爆期</h3>
<div class="space-y-3">
<div class="bg-gray-800/50 rounded-lg p-4 border border-red-400/30">
<span class="text-red-400 text-sm">2025-10-24</span>
<p class="text-gray-300 mt-1 font-semibold">《安徽省推进"大资产"统筹管理总体工作方案》印发</p>
<p class="text-gray-400 text-sm mt-2">安徽建工触及涨停,建研设计、合肥城建等跟涨,概念形成板块效应</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Companies Analysis -->
<section x-show="activeTab === 'companies'" x-transition class="space-y-12">
<div class="card-glow rounded-2xl p-8">
<h2 class="text-2xl font-bold mb-6 gold-gradient">核心玩家深度剖析</h2>
<div class="overflow-x-auto">
<table class="w-full">
<thead>
<tr class="border-b border-gray-700">
<th class="text-left py-4 px-4 font-semibold text-yellow-400">公司</th>
<th class="text-left py-4 px-4 font-semibold text-yellow-400">定位与逻辑</th>
<th class="text-left py-4 px-4 font-semibold text-yellow-400">竞争优势</th>
<th class="text-left py-4 px-4 font-semibold text-yellow-400">风险与挑战</th>
<th class="text-left py-4 px-4 font-semibold text-yellow-400">角色分析</th>
</tr>
</thead>
<tbody>
<tr class="border-b border-gray-800 hover:bg-gray-800/30 transition-colors">
<td class="py-4 px-4">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-yellow-500/20 rounded-lg flex items-center justify-center">
<span class="text-yellow-400 font-bold">合力</span>
</div>
<div>
<div class="font-semibold">安徽合力</div>
<div class="text-xs text-gray-500">600761.SH</div>
</div>
</div>
</td>
<td class="py-4 px-4 text-gray-300">国企"链主"与新质生产力结合的典范,华为机器人合作伙伴</td>
<td class="py-4 px-4">
<ul class="text-sm text-gray-400 space-y-1">
<li>• 市场化基因,激励到位</li>
<li>• 制造能力全球领先</li>
<li>• 战略卡位精准</li>
</ul>
</td>
<td class="py-4 px-4">
<ul class="text-sm text-gray-400 space-y-1">
<li>• 新业务转化周期</li>
<li>• 行业竞争加剧</li>
</ul>
</td>
<td class="py-4 px-4">
<span class="px-2 py-1 bg-green-500/20 text-green-400 text-xs rounded-full">先锋与转型者</span>
</td>
</tr>
<tr class="border-b border-gray-800 hover:bg-gray-800/30 transition-colors">
<td class="py-4 px-4">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-blue-500/20 rounded-lg flex items-center justify-center">
<span class="text-blue-400 font-bold">建工</span>
</div>
<div>
<div class="font-semibold">安徽建工</div>
<div class="text-xs text-gray-500">600502.SH</div>
</div>
</div>
</td>
<td class="py-4 px-4 text-gray-300">区域基建"压舱石"与改革"试验田"</td>
<td class="py-4 px-4">
<ul class="text-sm text-gray-400 space-y-1">
<li>• 深度区域绑定(80%+)</li>
<li>• 全产业链布局</li>
<li>• 改革意愿强</li>
</ul>
</td>
<td class="py-4 px-4">
<ul class="text-sm text-gray-400 space-y-1">
<li>• 高资产负债率</li>
<li>• 应收账款近70亿</li>
</ul>
</td>
<td class="py-4 px-4">
<span class="px-2 py-1 bg-blue-500/20 text-blue-400 text-xs rounded-full">领导者与整合者</span>
</td>
</tr>
<tr class="border-b border-gray-800 hover:bg-gray-800/30 transition-colors">
<td class="py-4 px-4">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-purple-500/20 rounded-lg flex items-center justify-center">
<span class="text-purple-400 font-bold">伯特利</span>
</div>
<div>
<div class="font-semibold">伯特利</div>
<div class="text-xs text-gray-500">603596.SH</div>
</div>
</div>
</td>
<td class="py-4 px-4 text-gray-300">汽车产业链"隐形冠军",奇瑞核心供应商</td>
<td class="py-4 px-4">
<ul class="text-sm text-gray-400 space-y-1">
<li>• 深度绑定核心客户</li>
<li>• 技术壁垒高</li>
<li>• 业绩增长确定</li>
</ul>
</td>
<td class="py-4 px-4">
<ul class="text-sm text-gray-400 space-y-1">
<li>• 客户集中度风险</li>
<li>• 国资属性较弱</li>
</ul>
</td>
<td class="py-4 px-4">
<span class="px-2 py-1 bg-purple-500/20 text-purple-400 text-xs rounded-full">产业深度绑定者</span>
</td>
</tr>
<tr class="hover:bg-gray-800/30 transition-colors">
<td class="py-4 px-4">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-gray-600/20 rounded-lg flex items-center justify-center">
<span class="text-gray-400 font-bold">海螺</span>
</div>
<div>
<div class="font-semibold">海螺水泥</div>
<div class="text-xs text-gray-500">600585.SH</div>
</div>
</div>
</td>
<td class="py-4 px-4 text-gray-300">传统周期龙头,价值基石</td>
<td class="py-4 px-4">
<ul class="text-sm text-gray-400 space-y-1">
<li>• 行业地位稳固</li>
<li>• 高分红潜力</li>
</ul>
</td>
<td class="py-4 px-4">
<ul class="text-sm text-gray-400 space-y-1">
<li>• 强周期性</li>
<li>• 成长性有限</li>
</ul>
</td>
<td class="py-4 px-4">
<span class="px-2 py-1 bg-gray-500/20 text-gray-400 text-xs rounded-full">价值基石</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Investment Value -->
<div class="grid lg:grid-cols-2 gap-6">
<div class="card-glow rounded-2xl p-6">
<h3 class="text-xl font-bold mb-4 text-yellow-400">最具投资价值方向</h3>
<div class="space-y-4">
<div class="bg-gray-800/50 rounded-lg p-4 border-l-4 border-yellow-400">
<h4 class="font-semibold mb-2">首选:新质生产力载体</h4>
<p class="text-sm text-gray-400 mb-2">安徽合力 - "国企+市场化+未来产业"最佳范式</p>
<div class="flex gap-2 flex-wrap">
<span class="text-xs px-2 py-1 bg-yellow-500/20 text-yellow-400 rounded">高成长性</span>
<span class="text-xs px-2 py-1 bg-yellow-500/20 text-yellow-400 rounded">想象空间大</span>
<span class="text-xs px-2 py-1 bg-yellow-500/20 text-yellow-400 rounded">安全边际</span>
</div>
</div>
<div class="bg-gray-800/50 rounded-lg p-4 border-l-4 border-blue-400">
<h4 class="font-semibold mb-2">次选:传统核心平台</h4>
<p class="text-sm text-gray-400 mb-2">安徽建工 - 高确定性与稳健增长</p>
<div class="flex gap-2 flex-wrap">
<span class="text-xs px-2 py-1 bg-blue-500/20 text-blue-400 rounded">股息率5%</span>
<span class="text-xs px-2 py-1 bg-blue-500/20 text-blue-400 rounded">区域壁垒</span>
<span class="text-xs px-2 py-1 bg-blue-500/20 text-blue-400 rounded">改革预期</span>
</div>
</div>
</div>
</div>
<div class="card-glow rounded-2xl p-6">
<h3 class="text-xl font-bold mb-4 text-yellow-400">关键跟踪指标</h3>
<div class="space-y-3">
<div class="flex items-center justify-between py-2 border-b border-gray-700">
<span class="text-gray-400">安徽建工经营性现金流</span>
<i class="ri-arrow-up-line text-green-400"></i>
</div>
<div class="flex items-center justify-between py-2 border-b border-gray-700">
<span class="text-gray-400">安徽合力机器人业务占比</span>
<i class="ri-arrow-right-line text-yellow-400"></i>
</div>
<div class="flex items-center justify-between py-2 border-b border-gray-700">
<span class="text-gray-400">应收账款周转率</span>
<i class="ri-arrow-up-line text-green-400"></i>
</div>
<div class="flex items-center justify-between py-2 border-b border-gray-700">
<span class="text-gray-400">市值管理考核细则</span>
<i class="ri-time-line text-yellow-400"></i>
</div>
<div class="flex items-center justify-between py-2">
<span class="text-gray-400">地方专项债流向</span>
<i class="ri-focus-3-line text-orange-400"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Stocks Pool -->
<section x-show="activeTab === 'stocks'" x-transition class="space-y-12">
<div class="card-glow rounded-2xl p-8">
<div class="flex flex-col lg:flex-row justify-between items-start lg:items-center gap-4 mb-6">
<h2 class="text-2xl font-bold gold-gradient">安徽国资股票池</h2>
<div class="relative">
<input x-model="stockSearch" type="text" placeholder="搜索股票代码或名称..."
class="bg-gray-800 border border-gray-700 rounded-lg px-4 py-2 pl-10 focus:outline-none focus:border-yellow-400 transition-colors">
<i class="ri-search-line absolute left-3 top-3 text-gray-400"></i>
</div>
</div>
<div class="mb-4 flex gap-2 flex-wrap">
<span class="text-sm text-gray-400"><span class="text-yellow-400 font-bold">42</span> 只相关股票</span>
<span class="text-gray-600">|</span>
<button class="text-sm text-yellow-400 hover:text-yellow-300 transition-colors">按行业筛选</button>
<span class="text-gray-600">|</span>
<button class="text-sm text-yellow-400 hover:text-yellow-300 transition-colors">按热度排序</button>
</div>
<div class="stock-table">
<table class="w-full min-w-[800px]">
<thead>
<tr class="border-b border-gray-700 text-left">
<th class="py-3 px-4 font-semibold text-gray-400">股票代码</th>
<th class="py-3 px-4 font-semibold text-gray-400">股票名称</th>
<th class="py-3 px-4 font-semibold text-gray-400">所属行业</th>
<th class="py-3 px-4 font-semibold text-gray-400">关联逻辑</th>
<th class="py-3 px-4 font-semibold text-gray-400">标签</th>
</tr>
</thead>
<tbody>
<template x-for="stock in [
{code: '600761.SH', name: '安徽合力', industry: '机械制造', reason: '安徽国资控股', tags: ['核心', '机器人']},
{code: '000868.SZ', name: '安凯客车', industry: '汽车制造', reason: '安徽国资控股', tags: ['汽车']},
{code: '000728.SZ', name: '国元证券', industry: '金融', reason: '安徽国资控股', tags: ['金融']},
{code: '000619.SZ', name: '海螺新材', industry: '建材', reason: '安徽国资控股', tags: ['建材']},
{code: '600971.SH', name: '恒源煤电', industry: '能源', reason: '安徽国资控股', tags: ['能源']},
{code: '600735.SH', name: '华塑股份', industry: '化工', reason: '安徽国资控股', tags: ['化工']},
{code: '600718.SH', name: '淮河能源', industry: '能源', reason: '安徽国资控股', tags: ['能源']},
{code: '301167.SZ', name: '建研设计', industry: '工程设计', reason: '安徽国资控股', tags: ['设计']},
{code: '873727.BJ', name: '铜冠矿建', industry: '矿业', reason: '安徽国资控股', tags: ['矿业']},
{code: '301217.SZ', name: '铜冠铜箔', industry: '有色金属', reason: '安徽国资控股', tags: ['有色']}
].filter(s => s.name.toLowerCase().includes(stockSearch.toLowerCase()) || s.code.toLowerCase().includes(stockSearch.toLowerCase()))" :key="stock.code">
<tr class="border-b border-gray-800 hover:bg-gray-800/30 transition-colors">
<td class="py-3 px-4 font-mono text-sm text-gray-400" x-text="stock.code"></td>
<td class="py-3 px-4 font-semibold" x-text="stock.name"></td>
<td class="py-3 px-4">
<span class="text-sm px-2 py-1 bg-gray-800 rounded" x-text="stock.industry"></span>
</td>
<td class="py-3 px-4 text-sm text-gray-400" x-text="stock.reason"></td>
<td class="py-3 px-4">
<template x-for="tag in stock.tags">
<span class="inline-block text-xs px-2 py-1 mr-1 rounded"
:class="tag === '核心' ? 'bg-yellow-500/20 text-yellow-400' :
tag === '机器人' ? 'bg-green-500/20 text-green-400' :
tag === '汽车' ? 'bg-blue-500/20 text-blue-400' :
'bg-gray-700 text-gray-400'"
x-text="tag"></span>
</template>
</td>
</tr>
</template>
</tbody>
</table>
</div>
</div>
<!-- Industry Distribution -->
<div class="grid lg:grid-cols-2 gap-6">
<div class="card-glow rounded-2xl p-6">
<h3 class="text-xl font-bold mb-4 text-yellow-400">行业分布</h3>
<div class="space-y-3">
<div class="flex items-center justify-between">
<span class="text-gray-400">科技</span>
<div class="flex items-center gap-2">
<div class="w-32 bg-gray-800 rounded-full h-2">
<div class="bg-yellow-400 h-2 rounded-full" style="width: 30%"></div>
</div>
<span class="text-sm text-gray-400">12家</span>
</div>
</div>
<div class="flex items-center justify-between">
<span class="text-gray-400">能源</span>
<div class="flex items-center gap-2">
<div class="w-32 bg-gray-800 rounded-full h-2">
<div class="bg-blue-400 h-2 rounded-full" style="width: 20%"></div>
</div>
<span class="text-sm text-gray-400">8家</span>
</div>
</div>
<div class="flex items-center justify-between">
<span class="text-gray-400">建材</span>
<div class="flex items-center gap-2">
<div class="w-32 bg-gray-800 rounded-full h-2">
<div class="bg-green-400 h-2 rounded-full" style="width: 15%"></div>
</div>
<span class="text-sm text-gray-400">6家</span>
</div>
</div>
<div class="flex items-center justify-between">
<span class="text-gray-400">汽车</span>
<div class="flex items-center gap-2">
<div class="w-32 bg-gray-800 rounded-full h-2">
<div class="bg-purple-400 h-2 rounded-full" style="width: 12%"></div>
</div>
<span class="text-sm text-gray-400">5家</span>
</div>
</div>
</div>
</div>
<div class="card-glow rounded-2xl p-6">
<h3 class="text-xl font-bold mb-4 text-yellow-400">核心标的精选</h3>
<div class="space-y-3">
<div class="bg-gradient-to-r from-yellow-500/10 to-transparent rounded-lg p-4 border border-yellow-500/20">
<div class="flex justify-between items-start">
<div>
<h4 class="font-semibold text-yellow-400">安徽合力</h4>
<p class="text-xs text-gray-400 mt-1">机器人产业链核心标的</p>
</div>
<span class="text-2xl">🌟</span>
</div>
</div>
<div class="bg-gradient-to-r from-blue-500/10 to-transparent rounded-lg p-4 border border-blue-500/20">
<div class="flex justify-between items-start">
<div>
<h4 class="font-semibold text-blue-400">安徽建工</h4>
<p class="text-xs text-gray-400 mt-1">基建领域绝对龙头</p>
</div>
<span class="text-2xl"></span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Risk Analysis -->
<section x-show="activeTab === 'risks'" x-transition class="space-y-12">
<div class="card-glow rounded-2xl p-8">
<h2 class="text-2xl font-bold mb-6 gold-gradient">潜在风险与挑战</h2>
<div class="grid lg:grid-cols-3 gap-6 mb-8">
<div class="bg-red-500/10 border border-red-500/30 rounded-xl p-6">
<div class="w-12 h-12 bg-red-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="ri-money-dollar-circle-line text-red-400 text-2xl"></i>
</div>
<h3 class="text-lg font-bold mb-2 text-red-400">商业化与财务风险</h3>
<p class="text-gray-400 text-sm">地方政府支付能力是最大风险点安徽建工70亿应收账款悬顶</p>
</div>
<div class="bg-orange-500/10 border border-orange-500/30 rounded-xl p-6">
<div class="w-12 h-12 bg-orange-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="ri-shield-check-line text-orange-400 text-2xl"></i>
</div>
<h3 class="text-lg font-bold mb-2 text-orange-400">政策与竞争风险</h3>
<p class="text-gray-400 text-sm">政策变动与行业竞争加剧,国企机制能否持续高效是关键</p>
</div>
<div class="bg-yellow-500/10 border border-yellow-500/30 rounded-xl p-6">
<div class="w-12 h-12 bg-yellow-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="ri-information-line text-yellow-400 text-2xl"></i>
</div>
<h3 class="text-lg font-bold mb-2 text-yellow-400">信息交叉验证风险</h3>
<p class="text-gray-400 text-sm">宏大叙事与微观困境的张力,需平衡预期与现实</p>
</div>
</div>
<!-- Risk Details -->
<div class="space-y-6">
<div class="bg-gray-800/30 rounded-xl p-6">
<h3 class="text-lg font-semibold mb-4 flex items-center">
<span class="w-8 h-8 bg-red-500/20 rounded-lg flex items-center justify-center mr-3">
<i class="ri-alert-line text-red-400"></i>
</span>
核心风险点详解
</h3>
<div class="grid md:grid-cols-2 gap-6">
<div>
<h4 class="font-semibold text-gray-300 mb-3">财务层面</h4>
<ul class="space-y-2 text-gray-400 text-sm">
<li class="flex items-start gap-2">
<i class="ri-checkbox-circle-line text-gray-600 mt-0.5"></i>
<span>应收账款回收进度不及预期,冲击利润表</span>
</li>
<li class="flex items-start gap-2">
<i class="ri-checkbox-circle-line text-gray-600 mt-0.5"></i>
<span>高资产负债率制约融资能力与扩张</span>
</li>
<li class="flex items-start gap-2">
<i class="ri-checkbox-circle-line text-gray-600 mt-0.5"></i>
<span>PPP项目历史包袱影响现金流改善</span>
</li>
</ul>
</div>
<div>
<h4 class="font-semibold text-gray-300 mb-3">经营层面</h4>
<ul class="space-y-2 text-gray-400 text-sm">
<li class="flex items-start gap-2">
<i class="ri-checkbox-circle-line text-gray-600 mt-0.5"></i>
<span>并购后整合难度大,协同效应释放慢</span>
</li>
<li class="flex items-start gap-2">
<i class="ri-checkbox-circle-line text-gray-600 mt-0.5"></i>
<span>新兴业务投入大,短期难见成效</span>
</li>
<li class="flex items-start gap-2">
<i class="ri-checkbox-circle-line text-gray-600 mt-0.5"></i>
<span>市场化改革进度低于预期</span>
</li>
</ul>
</div>
</div>
</div>
<!-- Risk Mitigation -->
<div class="bg-gradient-to-r from-blue-500/10 to-green-500/10 rounded-xl p-6 border border-blue-500/30">
<h3 class="text-lg font-semibold mb-4 text-blue-400">风险缓释措施</h3>
<div class="grid md:grid-cols-3 gap-4">
<div class="bg-gray-800/50 rounded-lg p-4">
<h4 class="font-semibold mb-2 text-yellow-400">加强催收机制</h4>
<p class="text-sm text-gray-400">建立专业团队,通过法律途径保障回款</p>
</div>
<div class="bg-gray-800/50 rounded-lg p-4">
<h4 class="font-semibold mb-2 text-yellow-400">优化项目结构</h4>
<p class="text-sm text-gray-400">优先承接支付保障好的政府项目</p>
</div>
<div class="bg-gray-800/50 rounded-lg p-4">
<h4 class="font-semibold mb-2 text-yellow-400">引入战略投资者</h4>
<p class="text-sm text-gray-400">改善治理结构,提升市场化程度</p>
</div>
</div>
</div>
</div>
</div>
<!-- Investment Conclusion -->
<div class="card-glow rounded-2xl p-8 bg-gradient-to-br from-yellow-500/5 to-orange-500/5">
<h2 class="text-2xl font-bold mb-6 gold-gradient">投资启示</h2>
<div class="prose prose-invert max-w-none">
<p class="text-lg text-gray-300 leading-relaxed mb-4">
"安徽国资"概念正从<strong class="text-yellow-400">主题炒作</strong>迈向<strong class="text-yellow-400">分化成长</strong>的关键阶段。政策的号角已经吹响,但最终的胜利属于那些能够将政策红利转化为真实业绩、能够穿越经营困境的企业。
</p>
<div class="grid lg:grid-cols-2 gap-6 mt-6">
<div class="bg-gray-800/50 rounded-xl p-6">
<h3 class="text-lg font-semibold mb-3 text-yellow-400">投资策略建议</h3>
<ul class="space-y-2 text-gray-300">
<li><strong class="text-yellow-300">优选标的:</strong>聚焦具备"链主"潜力的新质生产力载体</li>
<li><strong class="text-yellow-300">跟踪验证:</strong>密切监控关键经营指标的改善进度</li>
<li><strong class="text-yellow-300">风险管理:</strong>平衡成长性与现金流安全</li>
<li><strong class="text-yellow-300">长期视角:</strong>关注产业整合与生态构建的长期价值</li>
</ul>
</div>
<div class="bg-gray-800/50 rounded-xl p-6">
<h3 class="text-lg font-semibold mb-3 text-yellow-400">关键验证时点</h3>
<div class="space-y-3">
<div class="flex justify-between items-center pb-2 border-b border-gray-700">
<span class="text-sm text-gray-400">Q4 2025</span>
<span class="text-sm text-yellow-400">政策细则落地</span>
</div>
<div class="flex justify-between items-center pb-2 border-b border-gray-700">
<span class="text-sm text-gray-400">Q1 2026</span>
<span class="text-sm text-yellow-400">年报业绩验证</span>
</div>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-400">H2 2026</span>
<span class="text-sm text-yellow-400">并购整合成效</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="border-t border-gray-800 mt-20">
<div class="container mx-auto px-4 py-8">
<div class="text-center text-gray-500 text-sm">
<p>本报告仅供参考,不构成投资建议 | 数据来源:公开信息整理</p>
<p class="mt-2">© 2025 金融洞察分析平台</p>
</div>
</div>
</footer>
</body>
</html>