431 lines
30 KiB
HTML
431 lines
30 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>
|
||
|
||
<!-- Tailwind & DaisyUI -->
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.10.1/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
|
||
<!-- Alpine.js -->
|
||
<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 -->
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;700&family=Source+Code+Pro:wght@400;600&display=swap" rel="stylesheet">
|
||
|
||
<style>
|
||
:root {
|
||
--glow-color-1: rgba(0, 255, 255, 0.3);
|
||
--glow-color-2: rgba(255, 0, 255, 0.3);
|
||
--glow-color-3: rgba(120, 120, 255, 0.2);
|
||
--glass-bg: rgba(20, 22, 50, 0.3);
|
||
--glass-border: rgba(100, 100, 200, 0.2);
|
||
}
|
||
|
||
body {
|
||
font-family: 'Manrope', sans-serif;
|
||
background-color: #020418;
|
||
color: #e0e0e0;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
.font-mono {
|
||
font-family: 'Source Code Pro', monospace;
|
||
}
|
||
|
||
.glow-background {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
z-index: -1;
|
||
overflow: hidden;
|
||
background: #020418;
|
||
}
|
||
|
||
.glow-background::before,
|
||
.glow-background::after {
|
||
content: '';
|
||
position: absolute;
|
||
width: 800px;
|
||
height: 800px;
|
||
border-radius: 50%;
|
||
filter: blur(150px);
|
||
opacity: 0.5;
|
||
animation: moveGlow 25s infinite alternate;
|
||
}
|
||
|
||
.glow-background::before {
|
||
top: -20%;
|
||
left: -20%;
|
||
background: radial-gradient(circle, var(--glow-color-1), transparent 60%);
|
||
}
|
||
|
||
.glow-background::after {
|
||
bottom: -30%;
|
||
right: -30%;
|
||
background: radial-gradient(circle, var(--glow-color-2), transparent 60%);
|
||
animation-delay: -12s;
|
||
}
|
||
|
||
@keyframes moveGlow {
|
||
0% { transform: translate(0, 0) scale(1); }
|
||
100% { transform: translate(100px, 150px) scale(1.2); }
|
||
}
|
||
|
||
.glass-card {
|
||
background: var(--glass-bg);
|
||
border: 1px solid var(--glass-border);
|
||
backdrop-filter: blur(12px);
|
||
-webkit-backdrop-filter: blur(12px);
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.glass-card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
||
border-color: rgba(150, 150, 255, 0.3);
|
||
}
|
||
|
||
.bento-grid {
|
||
display: grid;
|
||
gap: 1rem;
|
||
grid-template-columns: repeat(4, 1fr);
|
||
grid-auto-rows: minmax(100px, auto);
|
||
}
|
||
|
||
.bento-item {
|
||
border-radius: 1.5rem;
|
||
padding: 1.5rem;
|
||
}
|
||
|
||
.bento-item-2x2 { grid-column: span 2; grid-row: span 2; }
|
||
.bento-item-2x1 { grid-column: span 2; }
|
||
.bento-item-1x1 { grid-column: span 1; }
|
||
|
||
@media (max-width: 768px) {
|
||
.bento-item-2x2, .bento-item-2x1, .bento-item-1x1 {
|
||
grid-column: span 4;
|
||
grid-row: auto;
|
||
}
|
||
}
|
||
|
||
/* Custom Scrollbar */
|
||
::-webkit-scrollbar {
|
||
width: 8px;
|
||
}
|
||
::-webkit-scrollbar-track {
|
||
background: rgba(0,0,0,0.2);
|
||
}
|
||
::-webkit-scrollbar-thumb {
|
||
background: var(--glass-border);
|
||
border-radius: 10px;
|
||
}
|
||
::-webkit-scrollbar-thumb:hover {
|
||
background: rgba(150, 150, 255, 0.5);
|
||
}
|
||
</style>
|
||
</head>
|
||
<body class="antialiased">
|
||
<div class="glow-background"></div>
|
||
|
||
<div class="relative min-h-screen px-4 py-8 sm:px-6 lg:px-8">
|
||
<div class="max-w-7xl mx-auto">
|
||
|
||
<!-- Header -->
|
||
<header class="text-center mb-12">
|
||
<div class="inline-block glass-card rounded-2xl px-6 py-2 mb-4">
|
||
<p class="font-mono text-cyan-400 text-sm">北京价值前沿科技有限公司 AI投研agent:“价小前投研”</p>
|
||
</div>
|
||
<h1 class="text-4xl md:text-6xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-white via-cyan-200 to-purple-300 tracking-tight">
|
||
墨西哥汽车零部件
|
||
</h1>
|
||
<p class="mt-4 text-lg text-gray-400 max-w-3xl mx-auto">地缘驱动下的供应链重构:北美市场的贸易跳板与产能兑现</p>
|
||
</header>
|
||
|
||
<!-- Insight Section (Bento Grid) -->
|
||
<section class="mb-16">
|
||
<h2 class="text-3xl font-bold mb-6 text-gray-200 border-l-4 border-cyan-400 pl-4">概念洞察 (Insight)</h2>
|
||
<div class="bento-grid">
|
||
<!-- Core Logic -->
|
||
<div class="glass-card bento-item bento-item-2x2 flex flex-col justify-between">
|
||
<div>
|
||
<h3 class="font-bold text-xl mb-4 text-cyan-300">核心逻辑:地缘政治驱动的供应链重构</h3>
|
||
<p class="text-gray-300 mb-2">
|
||
“墨西哥汽车零部件”概念的本质,是中国优势汽车产业链借助墨西哥的“贸易跳板”,实现对北美市场的深度渗透。它并非短期主题,而是全球供应链在关税壁垒下结构性转移的必然产物。
|
||
</p>
|
||
<ul class="space-y-2 list-disc list-inside text-gray-400">
|
||
<li><strong class="text-white">政策驱动 (USMCA):</strong> 75%区域产值含量要求是“规则之鞭”,强制推动产业链向北美区域集中。</li>
|
||
<li><strong class="text-white">规避关税 (直接诱因):</strong> “中国技术+墨西哥制造”模式是绕开美国高额关税、拓展北美市场的最有效策略。</li>
|
||
<li><strong class="text-white">成本优势 (商业保障):</strong> 人力成本仅为美国的16%,运输成本比中国低52%,确保了商业上的可持续性。</li>
|
||
</ul>
|
||
</div>
|
||
<div class="mt-4 pt-4 border-t border-[var(--glass-border)]">
|
||
<p class="font-mono text-sm text-purple-300">当前阶段:已从概念炒作进入基本面验证与产能兑现的关键期。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Market Perception -->
|
||
<div class="glass-card bento-item bento-item-1x1">
|
||
<h3 class="font-bold text-lg mb-2 text-purple-300">市场认知与预期差</h3>
|
||
<p class="text-sm text-gray-300 font-bold">风险预期差 (利好):</p>
|
||
<p class="text-sm text-gray-400 mb-3">市场可能仍高估“特朗普关税”风险,而低估了<strong class="text-white">USMCA豁免权</strong>的确定性价值。</p>
|
||
<p class="text-sm text-gray-300 font-bold">盈利预期差 (利空):</p>
|
||
<p class="text-sm text-gray-400">“去墨西哥就能轻松赚钱”的印象被现实证伪。高税收(30%)、高利率(12%)、漫长的盈利周期(拓普预计亏损1.5-2亿)是残酷现实。</p>
|
||
</div>
|
||
|
||
<!-- Development Path -->
|
||
<div class="glass-card bento-item bento-item-1x1">
|
||
<h3 class="font-bold text-lg mb-2 text-purple-300">产业发展路径</h3>
|
||
<ol class="relative border-l border-gray-500 space-y-3 pl-4 text-sm">
|
||
<li><strong class="text-cyan-400">产能登陆 (已进入)</strong><p class="text-gray-400 text-xs">高资本开支、低产出</p></li>
|
||
<li><strong class="text-cyan-400">业绩爬坡 (正在发生)</strong><p class="text-gray-400 text-xs">营收增长,实现盈亏平衡</p></li>
|
||
<li><strong class="text-purple-400">生态构建 (未来2-3年)</strong><p class="text-gray-400 text-xs">本地化配套,形成产业集群</p></li>
|
||
<li><strong class="text-purple-400">价值深化 (成熟期)</strong><p class="text-gray-400 text-xs">承接研发职能,融入全球平台</p></li>
|
||
</ol>
|
||
</div>
|
||
|
||
<!-- Key Catalysts Chart -->
|
||
<div class="glass-card bento-item bento-item-2x1" x-data="{
|
||
initChart() {
|
||
const chartDom = this.$refs.chart;
|
||
const myChart = echarts.init(chartDom);
|
||
const option = {
|
||
backgroundColor: 'transparent',
|
||
title: { text: '关键事件与催化剂时间轴', textStyle: { color: '#e0e0e0', fontSize: 16, fontWeight: 'bold' } },
|
||
tooltip: { trigger: 'axis', formatter: '{b}<br/>{c}', backgroundColor: 'rgba(20, 22, 50, 0.7)', borderColor: 'var(--glass-border)', textStyle: { color: '#e0e0e0' } },
|
||
grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true },
|
||
xAxis: { type: 'category', data: ['2020.07', '2022-23', '2023.03', '2024-25'], axisLine: { lineStyle: { color: '#888' } } },
|
||
yAxis: { type: 'value', name: '事件重要性', show: false, splitLine: { show: false } },
|
||
series: [{
|
||
data: [
|
||
{ value: 10, name: '《美墨加协定》(USMCA)生效,奠定法理基础' },
|
||
{ value: 20, name: '中国企业集中投资建厂,概念走向实践' },
|
||
{ value: 30, name: '特斯拉宣布墨西哥建厂,强力催化剂' },
|
||
{ value: 25, name: '关税政策明朗化,USMCA豁免确认,风险出清' }
|
||
],
|
||
type: 'line',
|
||
smooth: true,
|
||
symbolSize: 8,
|
||
itemStyle: { color: '#00ffff' },
|
||
lineStyle: { color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{ offset: 0, color: '#83bff6' }, { offset: 1, color: '#188df0' }]) },
|
||
areaStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: 'rgba(0, 200, 255, 0.3)' }, { offset: 1, color: 'rgba(0, 50, 100, 0)' }]) }
|
||
}]
|
||
};
|
||
myChart.setOption(option);
|
||
window.addEventListener('resize', () => myChart.resize());
|
||
}
|
||
}" x-init="initChart()">
|
||
<div x-ref="chart" style="width: 100%; height: 250px;"></div>
|
||
</div>
|
||
|
||
<!-- Risks -->
|
||
<div class="glass-card bento-item bento-item-2x1">
|
||
<h3 class="font-bold text-lg mb-2 text-red-400">潜在风险与挑战</h3>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 text-sm">
|
||
<div>
|
||
<p class="font-bold text-gray-300">政策风险 (最大)</p>
|
||
<ul class="list-disc list-inside text-gray-400">
|
||
<li>美国调整USMCA条款或针对性限制</li>
|
||
<li>墨西哥本土对非协定国关税加码</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<p class="font-bold text-gray-300">商业化风险</p>
|
||
<ul class="list-disc list-inside text-gray-400">
|
||
<li>汇率波动 (墨西哥比索)</li>
|
||
<li>过度依赖单一客户 (如特斯拉)</li>
|
||
<li>北美新能源渗透率不及预期</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Data Deep Dive (Tabs) -->
|
||
<section class="mb-16" x-data="{ tab: 'news' }">
|
||
<h2 class="text-3xl font-bold mb-6 text-gray-200 border-l-4 border-cyan-400 pl-4">数据深度挖掘</h2>
|
||
|
||
<div class="tabs tabs-boxed bg-[var(--glass-bg)] border border-[var(--glass-border)] w-full md:w-auto mb-6">
|
||
<a class="tab tab-lg" :class="{ 'tab-active': tab === 'news' }" @click.prevent="tab = 'news'">新闻数据</a>
|
||
<a class="tab tab-lg" :class="{ 'tab-active': tab === 'roadshow' }" @click.prevent="tab = 'roadshow'">路演情报</a>
|
||
<a class="tab tab-lg" :class="{ 'tab-active': tab === 'research' }" @click.prevent="tab = 'research'">研报精粹</a>
|
||
</div>
|
||
|
||
<div class="glass-card rounded-2xl p-6 min-h-[400px]">
|
||
<!-- News Content -->
|
||
<div x-show="tab === 'news'" x-transition>
|
||
<h3 class="text-xl font-bold text-cyan-300 mb-4">新闻动态与政策博弈</h3>
|
||
<div class="space-y-4 text-gray-300">
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-white">1. 关税政策动态</h4>
|
||
<ul class="list-disc list-inside text-gray-400 ml-4 space-y-1">
|
||
<li><strong>USMCA关税豁免:</strong> 美国海关确认,符合《美加墨协议》的墨、加制造汽车零部件将<strong class="text-green-400">免于25%关税</strong>,极大缓解市场担忧。</li>
|
||
<li><strong>对钢铁铝产品加征关税:</strong> 美国将墨西哥钢铁和铝进口关税提至50%,INA协会表示此举将危及北美汽车产业链稳定。</li>
|
||
<li><strong>特朗普时期政策:</strong> 曾宣布对墨、加征收25%关税,但考虑为美国车企提供豁免,以帮助其生产线回迁。</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-white">2. 企业投资与生产</h4>
|
||
<ul class="list-disc list-inside text-gray-400 ml-4 space-y-1">
|
||
<li><strong>永茂泰:</strong> 投资约4.5亿元建设墨西哥智能制造基地。</li>
|
||
<li><strong>拓普集团:</strong> 2025年墨西哥对美出口预测达8亿。为应对关税,采取“泰国生产二级件 -> 墨西哥组装一级件 -> 供应美国”模式。</li>
|
||
<li><strong>特斯拉布局:</strong> 已在Santa Catarina购地,但因关税不确定性暂缓工厂建设。该工厂定位为廉价车型(<3万美元)的全球生产基地。</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-white">3. 市场分析与展望</h4>
|
||
<ul class="list-disc list-inside text-gray-400 ml-4 space-y-1">
|
||
<li><strong>长期看好:</strong> 中美贸易战背景下,美墨关系趋紧,北美电动化发展趋势明确。</li>
|
||
<li><strong>成本转嫁:</strong> 供应商与北美大客户谈判,倾向于让客户承担关税成本。</li>
|
||
<li><strong>细分机会:</strong> 底盘铝合金轻量化领域,墨西哥本地产能并不过剩,存在断供风险和机遇。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Roadshow Content -->
|
||
<div x-show="tab === 'roadshow'" x-transition style="display: none;">
|
||
<h3 class="text-xl font-bold text-cyan-300 mb-4">企业路演核心情报</h3>
|
||
<div class="space-y-4 text-gray-300">
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-white">1. 核心政策与经营环境 (2024-05-31)</h4>
|
||
<ul class="list-disc list-inside text-gray-400 ml-4 space-y-1">
|
||
<li><strong>USMCA核心条款:</strong> 整车<strong class="text-yellow-300">75%</strong>零部件、钢铝<strong class="text-yellow-300">70%</strong>需在北美生产方可享受零关税。</li>
|
||
<li><strong>IMMEX协议:</strong> 为出口北美市场的零部件生产提供关税延期和所得税优惠。</li>
|
||
<li><strong>成本对比:</strong> 人工成本比中国<strong class="text-green-400">低约20%</strong>,运费比中国<strong class="text-green-400">低52%</strong>。但企业所得税(30%)和融资利率(12%)远高于国内。</li>
|
||
<li><strong>利润分配:</strong> 企业需将年度利润的<strong class="text-red-400">10%</strong>分配给本地员工。</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-white">2. 重点公司运营进展</h4>
|
||
<ul class="list-disc list-inside text-gray-400 ml-4 space-y-1">
|
||
<li><strong>新泉股份:</strong> 2024年墨西哥产值目标<strong class="text-white">8亿元</strong>,净利润率与国内持平。</li>
|
||
<li><strong>银轮股份:</strong> 2024年墨西哥收入预计<strong class="text-white">6亿元</strong>,净利润率已提升至3-4%。</li>
|
||
<li><strong>拓普集团:</strong> 2024年建设期预计亏损<strong class="text-red-400">1.5亿-2亿元</strong>,2025年实现盈利。</li>
|
||
<li><strong>旭升股份:</strong> 2025年产值目标3-4亿元,远期目标2027年达<strong class="text-white">50亿元</strong>,特斯拉订单占50%。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Research Content -->
|
||
<div x-show="tab === 'research'" x-transition style="display: none;">
|
||
<h3 class="text-xl font-bold text-cyan-300 mb-4">研究报告核心观点</h3>
|
||
<div class="space-y-4 text-gray-300">
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-white">1. 产业地位与规模</h4>
|
||
<ul class="list-disc list-inside text-gray-400 ml-4 space-y-1">
|
||
<li><strong>全球地位:</strong> 全球第4大汽车零配件出口国,2023年产值达<strong class="text-white">1217亿美元</strong>。</li>
|
||
<li><strong>出口导向:</strong> 87%零部件用于出口,其中<strong class="text-yellow-300">74%</strong>销往美国,是进入美国市场的核心跳板。</li>
|
||
<li><strong>产业集群:</strong> 博世、大陆、麦格纳等全球Tier 1均已设厂,形成完整供应链。</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-white">2. 战略价值与投资逻辑</h4>
|
||
<ul class="list-disc list-inside text-gray-400 ml-4 space-y-1">
|
||
<li><strong>最佳避险选择:</strong> 在美国对华加征关税背景下,墨西哥建厂是规避壁垒、承接美国市场份额的最佳选择。</li>
|
||
<li><strong>全球化布局优先级:</strong> <strong class="text-cyan-300">美国有工厂 > 墨西哥有工厂 > 东南亚/欧洲有工厂 > 仅国内有工厂</strong>。</li>
|
||
<li><strong>特斯拉效应:</strong> 特斯拉50亿美元建厂计划将带动中国供应链赴墨,以满足《通胀削减法案》对北美零部件比例的要求。</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-white">3. 新能源市场潜力</h4>
|
||
<ul class="list-disc list-inside text-gray-400 ml-4 space-y-1">
|
||
<li><strong>高速增长:</strong> 2023年墨西哥新能源汽车销量同比增长81%。</li>
|
||
<li><strong>潜力巨大:</strong> NEV渗透率仅<strong class="text-white">1.12%</strong>,远低于中国,发展空间巨大。政府目标2030年部署700万辆电动车。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Rise Analysis Section -->
|
||
<section class="mb-16">
|
||
<h2 class="text-3xl font-bold mb-6 text-gray-200 border-l-4 border-cyan-400 pl-4">近期市场异动分析</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
||
<!-- Loop through rise analysis data -->
|
||
<template x-for="item in [{ stock: '豪能股份', rise_rate: 10.0, date: '2025-07-16', reason: '北美电动车差速器PPAP通过+重庆基地产能提前释放+半年度净利预增180%~200%三重利好共振。' }, { stock: '兆丰股份', rise_rate: 20.0, date: '2025-06-24', reason: '新能源汽车零部件产业政策利好叠加重大合作公告催化,与富士康体系机器人平台公司深化合作。' }, { stock: '天有为', rise_rate: 5.08, date: '2025-07-10', reason: '券商强烈推荐,指出公司为中国汽车仪表龙头,已获斯特兰蒂斯大额订单,且墨西哥工厂布局完善。' }]">
|
||
<div class="glass-card rounded-2xl p-6 h-full flex flex-col">
|
||
<div class="flex justify-between items-start mb-2">
|
||
<h3 class="text-xl font-bold text-white" x-text="item.stock"></h3>
|
||
<div class="badge badge-lg" :class="item.rise_rate > 10 ? 'badge-secondary' : 'badge-primary'" x-text="`+${item.rise_rate}%`"></div>
|
||
</div>
|
||
<p class="font-mono text-sm text-gray-400 mb-4" x-text="item.date"></p>
|
||
<p class="text-gray-300 flex-grow" x-text="item.reason"></p>
|
||
</div>
|
||
</template>
|
||
</div>
|
||
</section>
|
||
|
||
|
||
<!-- Stock List Table -->
|
||
<section>
|
||
<h2 class="text-3xl font-bold mb-6 text-gray-200 border-l-4 border-cyan-400 pl-4">产业链核心标的</h2>
|
||
<div class="glass-card rounded-2xl overflow-x-auto p-2">
|
||
<table class="table table-zebra-zebra w-full">
|
||
<thead class="text-base text-cyan-300">
|
||
<tr>
|
||
<th class="bg-transparent">股票名称</th>
|
||
<th class="bg-transparent">股票代码</th>
|
||
<th class="bg-transparent w-2/4">核心逻辑 / 墨西哥布局</th>
|
||
<th class="bg-transparent">标签</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody x-data="{ stocks: [
|
||
{ 'stock': '拓普集团', 'stock_code': '601689', 'reason': '2022年启动墨西哥萨尔蒂约底盘系统超级工厂建设,规划年产能200万套轻量化底盘,毗邻特斯拉德州超级工厂布局,2024年Q2启动Model Y配套产品交付。', 'tag': '核心标的' },
|
||
{ 'stock': '新泉股份', 'stock_code': '603179', 'reason': '墨西哥新莱昂州工厂2023年两次增资至2.5亿美元,特斯拉Cybertruck仪表板专属产线2024年Q1量产,北美内饰件本地化供应比例突破60%。', 'tag': '核心标的' },
|
||
{ 'stock': '银轮股份', 'stock_code': '002126', 'reason': '公司墨西哥工厂2023年已量产多个品类产品,配套北美客户。2023年Q4已盈亏平衡,2024年目标收入6亿元。', 'tag': '核心标的' },
|
||
{ 'stock': '伯特利', 'stock_code': '603596', 'reason': '墨西哥工厂主要配套通用汽车、Stellantis、福特汽车等北美与欧洲海外客户,生产铸铝转向节、制动钳。', 'tag': '核心标的' },
|
||
{ 'stock': '均胜电子', 'stock_code': '600699', 'reason': '深耕墨西哥超30年,拥有多个制造基地,面向北美主机厂提供汽车电子及安全产品,客户包括特斯拉、宝马、通用。', 'tag': '先行者' },
|
||
{ 'stock': '旭升集团', 'stock_code': '603305', 'reason': '2024年墨西哥刚投产,目标2027年实现50亿元产值,客户结构中特斯拉占比高达50%。', 'tag': '高弹性' },
|
||
{ 'stock': '爱柯迪', 'stock_code': '600933', 'reason': '2014年启动墨西哥项目,运营周期长,2024年有望实现单季度盈利,受益于USMCA本地化需求增长。', 'tag': '先行者' },
|
||
{ 'stock': '凯众股份', 'stock_code': '603037', 'reason': '2024年墨西哥蒙特雷工厂完成试生产,通过特斯拉、Rivian认证,预计2025年北美订单占比提升至30%。', 'tag': '墨研' },
|
||
{ 'stock': '嵘泰股份', 'stock_code': '605133', 'reason': '在墨西哥设立工厂,募投项目包括年产110万件新能源汽车铝合金零部件项目及二期扩产项目。', 'tag': '墨研' },
|
||
{ 'stock': '祥鑫科技', 'stock_code': '002965', 'reason': '在墨西哥布局生产基地,为北美客户就近配套,间接为特斯拉等供应车身结构件及座椅骨架。', 'tag': '墨研' },
|
||
{ 'stock': '津荣天宇', 'stock_code': '300988', 'reason': '墨西哥瓜纳华托生产基地聚焦新能源汽车精密冲压件,配套通用、福特北美工厂,2024年海外收入同比+69.2%。', 'tag': '墨研' },
|
||
{ 'stock': '三花智控', 'stock_code': '002050', 'reason': '计划2026年投产科阿韦拉州工厂,生产新能源车热管理组件,投资10.5亿元。', 'tag': '规划中' },
|
||
{ 'stock': '东山精密', 'stock_code': '002384', 'reason': '2022年投资9900万美元在蒙特雷建厂,生产新能源车结构件,配套特斯拉。', 'tag': '特斯拉链' },
|
||
{ 'stock': '文灿股份', 'stock_code': '603348', 'reason': '2024年收购瓜纳华托州百炼集团,布局超轻量化铝合金车轮。', 'tag': '其他布局' },
|
||
{ 'stock': '福耀玻璃', 'stock_code': '600660', 'reason': '在北美有重要布局,被视为可对冲关税风险的标的。', 'tag': '其他布局' },
|
||
{ 'stock': '华域汽车', 'stock_code': '600741', 'reason': '在墨西哥有布局设厂,可规避部分关税风险。', 'tag': '其他布局' }
|
||
]}">
|
||
<template x-for="stock in stocks" :key="stock.stock_code">
|
||
<tr class="hover:bg-[var(--glass-bg)] transition-colors">
|
||
<td class="font-bold text-white bg-transparent" x-text="stock.stock"></td>
|
||
<td class="bg-transparent">
|
||
<a :href="`https://valuefrontier.cn/company?scode=${stock.stock_code}`" target="_blank" class="font-mono text-blue-400 hover:text-blue-300 hover:underline" x-text="stock.stock_code"></a>
|
||
</td>
|
||
<td class="text-gray-400 text-sm bg-transparent" x-text="stock.reason"></td>
|
||
<td class="bg-transparent">
|
||
<span class="badge badge-outline badge-primary" x-text="stock.tag"></span>
|
||
</td>
|
||
</tr>
|
||
</template>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Footer Disclaimer -->
|
||
<footer class="mt-16 text-center">
|
||
<p class="text-xs text-gray-500 font-mono">
|
||
DISCLAIMER: 本报告由北京价值前沿科技有限公司AI投研agent“价小前投研”合成。所有内容仅为信息展示,不构成任何投资建议。投资有风险,决策需谨慎。
|
||
</p>
|
||
</footer>
|
||
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html> |