Files
wig/index_new.html
T
2026-04-20 16:13:01 +08:00

1480 lines
87 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>隼瞻科技 - 专用处理器IP与EDA敏捷开发平台领导者</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
extend: {
colors: {
primary: '#3b82f6',
secondary: '#2563eb',
accent: '#60a5fa',
},
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
},
}
}
</script>
<style>
.glass-panel {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.8);
box-shadow: 0 8px 32px -4px rgba(59, 130, 246, 0.1);
}
.glass-panel-light {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 1);
box-shadow: 0 4px 16px -2px rgba(59, 130, 246, 0.05);
}
#sj-product-page {
font-family: 'Inter', sans-serif;
color: #1e293b;
}
/* 覆盖 a button focus */
#sj-product-page a, #sj-product-page button, #sj-product-page [role="button"] {
-webkit-tap-highlight-color: transparent !important;
}
#sj-product-page a:focus, #sj-product-page button:focus, #sj-product-page a:active, #sj-product-page button:active {
outline: none !important;
}
#sj-product-page a:hover, #sj-product-page button:hover, #sj-product-page [role="button"]:hover {
-webkit-tap-highlight-color: transparent !important;
}
/* 全局滚动条美化 */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #3b82f6;
border-radius: 4px;
}
/* Hero区域背景动画 */
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}
.hero-bg::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
max-width: 200vw;
background:
radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
animation: heroGradient 20s ease-in-out infinite;
}
@keyframes heroGradient {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
25% { transform: translate(5%, 5%) rotate(5deg); }
50% { transform: translate(0, 10%) rotate(0deg); }
75% { transform: translate(-5%, 5%) rotate(-5deg); }
}
/* 网格背景 */
.grid-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
background-size: 50px 50px;
animation: gridMove 30s linear infinite;
}
@keyframes gridMove {
0% { background-position: 0 0; }
100% { background-position: 50px 50px; }
}
/* 粒子效果 */
.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 1;
}
.particle {
position: absolute;
width: 4px;
height: 4px;
background: rgba(59, 130, 246, 0.4);
border-radius: 50%;
animation: float 15s infinite ease-in-out;
}
@keyframes float {
0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
/* 文字渐变效果 */
.gradient-text {
background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* 按钮样式 */
.btn-primary {
background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
color: #ffffff !important;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.btn-primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s ease;
}
.btn-primary:hover::before {
left: 100%;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
color: #ffffff !important;
}
.btn-secondary {
background: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(59, 130, 246, 0.3);
color: #1e293b !important;
transition: all 0.3s ease;
}
.btn-secondary:hover {
border-color: #3b82f6;
background: rgba(59, 130, 246, 0.1);
transform: translateY(-2px);
color: #1e293b !important;
}
/* 卡片样式 */
.card {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
border: 1px solid rgba(255, 255, 255, 1);
backdrop-filter: blur(16px);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #3b82f6, transparent);
transform: translateX(-100%);
transition: transform 0.5s ease;
}
.card:hover::before {
transform: translateX(100%);
}
.card:hover {
transform: translateY(-8px);
border-color: rgba(59, 130, 246, 0.3);
box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1), 0 0 40px rgba(59, 130, 246, 0.05);
}
/* 产品卡片特效 */
.product-card {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
border: 1px solid rgba(255, 255, 255, 1);
backdrop-filter: blur(16px);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.product-card::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
border-radius: inherit;
}
.product-card:hover::after {
opacity: 1;
}
.product-card:hover {
transform: translateY(-10px) scale(1.01);
border-color: rgba(59, 130, 246, 0.4);
box-shadow: 0 25px 80px rgba(59, 130, 246, 0.15), 0 0 60px rgba(59, 130, 246, 0.1);
}
/* 数字计数动画 */
.stat-number {
font-variant-numeric: tabular-nums;
}
/* 滚动显示动画 */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* 芯片图标动画 */
.chip-icon {
animation: chipPulse 3s ease-in-out infinite;
}
@keyframes chipPulse {
0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3)); }
50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5)); }
}
/* 标签样式 */
.tag {
background: rgba(59, 130, 246, 0.1);
border: 1px solid rgba(59, 130, 246, 0.2);
transition: all 0.3s ease;
}
.tag:hover {
background: rgba(59, 130, 246, 0.2);
border-color: #3b82f6;
}
/* 分割线动画 */
.divider {
height: 4px;
background: linear-gradient(90deg, transparent, #3b82f6, transparent);
border-radius: 2px;
}
/* 导航栏 */
.nav-link {
position: relative;
transition: color 0.3s ease;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
/* 环形装饰 */
.orbit {
position: absolute;
border: 1px solid rgba(59, 130, 246, 0.15);
border-radius: 50%;
animation: orbit 20s linear infinite;
pointer-events: none;
}
@keyframes orbit {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* 脉冲圆点 */
.pulse-dot {
animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.5); opacity: 0.5; }
}
/* 滚动指示器 */
.scroll-indicator {
animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(10px); }
}
/* 3D卡片效果 */
.card-3d {
transform-style: preserve-3d;
perspective: 1000px;
}
.card-3d:hover {
transform: rotateX(5deg) rotateY(-5deg);
}
</style>
</head>
<body class="font-inter text-slate-700 bg-slate-50 relative overflow-x-hidden w-full">
<!-- 全局背景光效 -->
<div class="fixed inset-0 z-0 pointer-events-none bg-slate-50">
<div class="absolute top-[-10%] left-[-10%] w-[50%] h-[50%] rounded-full bg-blue-200/50 blur-[100px]"></div>
<div class="absolute bottom-[-10%] right-[-10%] w-[40%] h-[40%] rounded-full bg-sky-200/40 blur-[100px]"></div>
<div class="absolute top-[40%] right-[10%] w-[30%] h-[30%] rounded-full bg-indigo-100/50 blur-[80px]"></div>
<div class="absolute bottom-[20%] left-[20%] w-[30%] h-[30%] rounded-full bg-blue-100/50 blur-[80px]"></div>
</div>
<!-- Scoped Wrapper for Tailwind + Glassmorphism Layout -->
<div id="sj-product-page" class="relative z-10">
<!-- ============================================ -->
<!-- Hero区域 -->
<!-- ============================================ -->
<section class="relative min-h-screen flex items-center justify-center overflow-hidden" id="hero-section">
<!-- 星座背景Canvas -->
<canvas id="constellation-canvas" class="absolute top-0 left-0 w-full h-full z-0 opacity-80"></canvas>
<!-- 动态背景 -->
<div class="hero-bg"></div>
<div class="grid-bg"></div>
<!-- 粒子效果 -->
<div class="particles" id="particles"></div>
<!-- 装饰元素 - 移动端隐藏或限制 -->
<div class="orbit w-[600px] h-[600px] -top-[200px] -right-[200px] hidden md:block" style="animation-duration: 30s;"></div>
<div class="orbit w-[400px] h-[400px] -bottom-[100px] -left-[100px] hidden md:block" style="animation-duration: 25s; animation-direction: reverse;"></div>
<!-- Hero内容 -->
<div class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center pt-24 pb-16">
<!-- 标签 -->
<div class="inline-flex items-center space-x-2 px-4 py-2 rounded-full glass-panel-light mb-8 reveal shadow-sm border border-primary/20">
<span class="pulse-dot w-2 h-2 bg-green-500 rounded-full"></span>
<span class="text-sm font-medium text-slate-700">面向DSA设计的新一代EDA平台</span>
</div>
<!-- 主标题 -->
<h1 class="text-4xl sm:text-5xl md:text-6xl lg:text-7xl font-extrabold text-slate-800 leading-tight mb-6 reveal reveal-delay-1">
领先的全场景<br/>
<span class="gradient-text drop-shadow-sm">处理器IP 提供商</span>
</h1>
<!-- 副标题 -->
<p class="text-lg sm:text-xl md:text-2xl text-slate-600 max-w-4xl mx-auto mb-12 reveal reveal-delay-2 font-medium">
以 RISC-V 为核心,打造覆盖 CPU、DSP、NPU 的完整处理器 IP 矩阵,<br class="hidden sm:block"/>
全周期可重构,为多维应用场景提供澎湃算力引擎
</p>
<!-- CTA按钮 -->
<div class="flex flex-col sm:flex-row items-center justify-center gap-4 mb-20 reveal reveal-delay-3">
<a href="#products" class="btn-primary px-8 py-4 rounded-xl text-white font-semibold text-lg flex items-center justify-center space-x-2 w-full sm:w-auto shadow-md">
<span>探索产品</span>
<i class="fa fa-arrow-right"></i>
</a>
<a href="architstudio.html" class="btn-secondary px-8 py-4 rounded-xl text-slate-700 font-semibold text-lg flex items-center justify-center space-x-2 w-full sm:w-auto shadow-sm">
<i class="fa fa-play-circle text-primary"></i>
<span>了解ArchitStudio</span>
</a>
</div>
<!-- 核心数据展示 -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 max-w-4xl mx-auto reveal reveal-delay-4 glass-panel-light rounded-3xl p-6 shadow-sm border border-white/80">
<div class="text-center p-4 rounded-2xl hover:bg-slate-50/50 transition-colors">
<div class="text-3xl sm:text-4xl font-bold gradient-text stat-number drop-shadow-sm" data-target="30" data-suffix="+">0+</div>
<div class="text-sm font-medium text-slate-600 mt-2">处理器IP型号</div>
</div>
<div class="text-center p-4 rounded-2xl hover:bg-slate-50/50 transition-colors">
<div class="text-3xl sm:text-4xl font-bold gradient-text stat-number drop-shadow-sm" data-target="100" data-suffix="+">0+</div>
<div class="text-sm font-medium text-slate-600 mt-2">知识产权</div>
</div>
<div class="text-center p-4 rounded-2xl hover:bg-slate-50/50 transition-colors">
<div class="text-3xl sm:text-4xl font-bold gradient-text stat-number drop-shadow-sm" data-target="10" data-suffix="x">0x</div>
<div class="text-sm font-medium text-slate-600 mt-2">开发效率提升</div>
</div>
<div class="text-center p-4 rounded-2xl hover:bg-slate-50/50 transition-colors">
<div class="text-3xl sm:text-4xl font-bold gradient-text stat-number drop-shadow-sm" data-text="RVA23">RVA23</div>
<div class="text-sm font-medium text-slate-600 mt-2">规范兼容</div>
</div>
</div>
</div>
<!-- 滚动指示器 -->
<div class="absolute bottom-8 left-1/2 -translate-x-1/2 scroll-indicator">
<div class="flex flex-col items-center space-y-2 text-primary">
<span class="text-xs font-semibold uppercase tracking-wider">向下滚动</span>
<i class="fa fa-chevron-down opacity-80"></i>
</div>
</div>
</section>
<!-- ============================================ -->
<!-- 公司简介 -->
<!-- ============================================ -->
<section class="py-24 relative overflow-hidden text-slate-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid lg:grid-cols-2 gap-16 items-center">
<!-- 左侧文字 -->
<div class="reveal">
<div class="inline-flex items-center space-x-2 px-4 py-2 rounded-full glass-panel border border-primary/20 mb-6 shadow-sm">
<i class="fa fa-building text-primary"></i>
<span class="text-sm font-medium text-slate-700">关于隼瞻科技</span>
</div>
<h2 class="text-3xl sm:text-4xl lg:text-5xl font-bold text-slate-800 mb-6 drop-shadow-sm">
定义未来芯片设计的<br/><span class="gradient-text">新范式</span>
</h2>
<p class="text-slate-600 text-lg leading-relaxed mb-8">
隼瞻科技是一家专注于提供专用处理器IP和EDA设计平台的创新型高科技公司。基于"算法芯片化,场景架构化"的理念,我们致力于为客户提供从硅前到硅后全周期可重构的处理器集群方案。
</p>
<div class="space-y-4 mb-8">
<div class="flex items-start space-x-4 glass-panel-light p-4 rounded-2xl border border-white">
<div class="w-10 h-10 rounded-lg bg-blue-100 flex items-center justify-center flex-shrink-0 shadow-sm">
<i class="fa fa-check text-primary"></i>
</div>
<div>
<h4 class="text-slate-800 font-bold mb-1">全栈RISC-V处理器IP</h4>
<p class="text-slate-500 text-sm font-medium">从嵌入式微控制器到高性能应用处理器的完整产品线</p>
</div>
</div>
<div class="flex items-start space-x-4 glass-panel-light p-4 rounded-2xl border border-white">
<div class="w-10 h-10 rounded-lg bg-green-100 flex items-center justify-center flex-shrink-0 shadow-sm">
<i class="fa fa-check text-green-500"></i>
</div>
<div>
<h4 class="text-slate-800 font-bold mb-1">ArchitStudio敏捷开发平台</h4>
<p class="text-slate-500 text-sm font-medium">革命性的DSA处理器设计方法学,大幅降低开发周期与成本</p>
</div>
</div>
<div class="flex items-start space-x-4 glass-panel-light p-4 rounded-2xl border border-white">
<div class="w-10 h-10 rounded-lg bg-purple-100 flex items-center justify-center flex-shrink-0 shadow-sm">
<i class="fa fa-check text-purple-500"></i>
</div>
<div>
<h4 class="text-slate-800 font-bold mb-1">端到端解决方案</h4>
<p class="text-slate-500 text-sm font-medium">覆盖AI、工业控制、通信连接等多个应用领域</p>
</div>
</div>
</div>
<a href="about.html" class="inline-flex items-center space-x-2 text-primary hover:text-blue-700 transition-colors font-bold group">
<span class="border-b border-transparent group-hover:border-blue-700">了解更多</span>
<i class="fa fa-arrow-right group-hover:translate-x-1 transition-transform"></i>
</a>
</div>
<!-- 右侧图形 -->
<div class="relative reveal reveal-delay-2">
<div class="relative aspect-square max-w-lg mx-auto">
<!-- 背景装饰 -->
<div class="absolute inset-0 bg-gradient-to-br from-primary/30 to-purple-500/20 rounded-full blur-3xl opacity-70"></div>
<!-- 主卡片 -->
<div class="relative glass-panel rounded-3xl border border-white shadow-xl p-8 h-full flex flex-col justify-center">
<!-- 芯片图形 -->
<div class="flex justify-center mb-10">
<div class="relative">
<div class="w-32 h-32 bg-gradient-to-br from-blue-50 to-indigo-100 rounded-2xl flex items-center justify-center chip-icon shadow-inner border border-white">
<i class="fa fa-microchip text-primary text-5xl"></i>
</div>
<!-- 连接线 -->
<div class="absolute -left-8 top-1/2 w-8 h-1 bg-gradient-to-r from-transparent to-primary rounded-full"></div>
<div class="absolute -right-8 top-1/2 w-8 h-1 bg-gradient-to-l from-transparent to-primary rounded-full"></div>
<div class="absolute left-1/2 -top-8 w-1 h-8 bg-gradient-to-b from-transparent to-primary rounded-full"></div>
<div class="absolute left-1/2 -bottom-8 w-1 h-8 bg-gradient-to-t from-transparent to-primary rounded-full"></div>
</div>
</div>
<!-- 2+N战略 -->
<div class="text-center glass-panel-light p-6 rounded-2xl">
<h3 class="text-2xl font-bold text-slate-800 mb-6 drop-shadow-sm">2+N 平台战略</h3>
<div class="grid grid-cols-3 gap-4">
<div class="p-3 rounded-xl pt-4 bg-blue-50 border border-blue-100 shadow-sm">
<i class="fa fa-microchip text-blue-500 text-xl mb-2"></i>
<p class="text-xs font-bold text-blue-700">基础IP</p>
</div>
<div class="p-3 rounded-xl pt-4 bg-orange-50 border border-orange-100 shadow-sm">
<i class="fa fa-cogs text-orange-500 text-xl mb-2"></i>
<p class="text-xs font-bold text-orange-700">开发平台</p>
</div>
<div class="p-3 rounded-xl pt-4 bg-green-50 border border-green-100 shadow-sm">
<i class="fa fa-th text-green-500 text-xl mb-2"></i>
<p class="text-xs font-bold text-green-700">N种应用</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ============================================ -->
<!-- 产品矩阵 -->
<!-- ============================================ -->
<section id="products" class="py-24 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<!-- 标题 -->
<div class="text-center mb-16 reveal">
<div class="inline-flex items-center space-x-2 px-4 py-2 rounded-full glass-panel border border-white mb-6 shadow-sm">
<i class="fa fa-cubes text-primary"></i>
<span class="text-sm font-medium text-slate-700">完整的处理器货架集群</span>
</div>
<h2 class="text-3xl sm:text-4xl lg:text-5xl font-bold text-slate-800 mb-4 drop-shadow-sm">
三大核心<span class="gradient-text">处理器IP</span>板块
</h2>
<p class="text-slate-600 text-lg max-w-2xl mx-auto font-medium">
覆盖极低功耗应用到高性能全场景数字算力,满足多维度需求
</p>
</div>
<!-- 产品系列 -->
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16">
<!-- CPU IP -->
<div class="product-card rounded-3xl p-8 reveal reveal-delay-1 flex flex-col shadow-lg">
<div class="flex items-center justify-between mb-8">
<div class="w-16 h-16 rounded-2xl bg-gradient-to-br from-emerald-100 to-teal-100 flex items-center justify-center border border-emerald-200">
<i class="fa fa-microchip text-emerald-600 text-3xl"></i>
</div>
<span class="tag px-3 py-1.5 rounded-full text-xs font-bold bg-emerald-50 text-emerald-600 border-emerald-200 shadow-sm">Wing-M/A</span>
</div>
<h3 class="text-2xl font-extrabold text-slate-800 mb-4">CPU IP</h3>
<p class="text-slate-600 mb-8 text-sm leading-relaxed">以RISC-V架构为核心,构建覆盖小核、中核、大核的完整产品矩阵,全面满足不同终端的算力需求。</p>
<div class="space-y-3 mb-8 flex-1">
<div class="flex justify-between items-center p-3.5 rounded-xl bg-slate-50 hover:bg-white border border-slate-100 hover:border-emerald-200 transition-all group shadow-sm">
<span class="font-semibold text-slate-700 group-hover:text-emerald-700 text-sm">量产型/专用小核</span>
<span class="text-xs text-slate-400 font-medium">MCU/IoT/安全</span>
</div>
<div class="flex justify-between items-center p-3.5 rounded-xl bg-slate-50 hover:bg-white border border-slate-100 hover:border-emerald-200 transition-all group shadow-sm">
<span class="font-semibold text-slate-700 group-hover:text-emerald-700 text-sm">通用中核</span>
<span class="text-xs text-slate-400 font-medium">通信/工控/存储等</span>
</div>
<div class="flex justify-between items-center p-3.5 rounded-xl bg-slate-50 hover:bg-white border border-slate-100 hover:border-emerald-200 transition-all group shadow-sm">
<span class="font-semibold text-slate-700 group-hover:text-emerald-700 text-sm">通用大核</span>
<span class="text-xs text-slate-400 font-medium">AP/端侧AI/边缘</span>
</div>
</div>
<div class="flex flex-wrap gap-2 mt-auto pt-4 border-t border-slate-100">
<span class="text-xs px-3 py-1.5 rounded-lg bg-emerald-50 text-emerald-600 font-bold border border-emerald-100">完整生态</span>
<span class="text-xs px-3 py-1.5 rounded-lg bg-emerald-50 text-emerald-600 font-bold border border-emerald-100">全终端覆盖</span>
</div>
</div>
<!-- DSP IP -->
<div class="product-card rounded-3xl p-8 reveal reveal-delay-2 flex flex-col shadow-lg">
<div class="flex items-center justify-between mb-8">
<div class="w-16 h-16 rounded-2xl bg-gradient-to-br from-blue-100 to-indigo-100 flex items-center justify-center border border-blue-200">
<i class="fa fa-wifi text-blue-600 text-3xl"></i>
</div>
<span class="tag px-3 py-1.5 rounded-full text-xs font-bold bg-blue-50 text-blue-600 border-blue-200 shadow-sm">Wing-D</span>
</div>
<h3 class="text-2xl font-extrabold text-slate-800 mb-4">DSP IP</h3>
<p class="text-slate-600 mb-8 text-sm leading-relaxed">聚焦5G通信核心场景,同时适配轻量级AI运算与HIFI音频处理需求,提供高效极致算力支撑。</p>
<div class="space-y-3 mb-8 flex-1">
<div class="p-3.5 rounded-xl bg-slate-50 hover:bg-white border border-slate-100 hover:border-blue-200 transition-all group shadow-sm">
<span class="font-semibold text-slate-700 group-hover:text-blue-700 text-sm">Wing-D200 矢量处理器</span>
</div>
<div class="p-3.5 rounded-xl bg-slate-50 hover:bg-white border border-slate-100 hover:border-blue-200 transition-all group shadow-sm">
<span class="font-semibold text-slate-700 group-hover:text-blue-700 text-sm">Wing-D400-VL 矢量处理器</span>
</div>
<div class="p-3.5 rounded-xl bg-blue-50 border border-blue-200 shadow-sm flex flex-col justify-center mt-2 group hover:bg-blue-100/50 transition-colors">
<span class="font-bold text-blue-600 text-sm mb-1"><i class="fa fa-crosshairs mr-1.5"></i>聚焦场景</span>
<span class="text-xs text-blue-500/80 font-medium tracking-wide">5G通信 / 轻量级AI / HIFI音频</span>
</div>
</div>
<div class="flex flex-wrap gap-2 mt-auto pt-4 border-t border-slate-100">
<span class="text-xs px-3 py-1.5 rounded-lg bg-blue-50 text-blue-600 font-bold border border-blue-100">专用架构设计</span>
<span class="text-xs px-3 py-1.5 rounded-lg bg-blue-50 text-blue-600 font-bold border border-blue-100">精准高效</span>
</div>
</div>
<!-- NPU IP -->
<div class="product-card rounded-3xl p-8 reveal reveal-delay-3 flex flex-col md:col-span-2 lg:col-span-1 shadow-lg">
<div class="flex items-center justify-between mb-8">
<div class="w-16 h-16 rounded-2xl bg-gradient-to-br from-purple-100 to-pink-100 flex items-center justify-center border border-purple-200">
<i class="fa fa-cogs text-purple-600 text-3xl"></i>
</div>
<span class="tag px-3 py-1.5 rounded-full text-xs font-bold bg-purple-50 text-purple-600 border-purple-200 shadow-sm">Wing-N/P/M</span>
</div>
<h3 class="text-2xl font-extrabold text-slate-800 mb-4">NPU IP</h3>
<p class="text-slate-600 mb-8 text-sm leading-relaxed">构建覆盖端侧、边缘、云端的全场景神经网络处理器方案,灵活匹配不同层级运算需求。</p>
<div class="space-y-4 mb-8 flex-1">
<div class="flex justify-between items-center p-3.5 rounded-xl bg-slate-50 hover:bg-white border border-slate-100 hover:border-purple-300 transition-all group shadow-sm border-l-4 border-l-purple-300">
<div class="flex flex-col">
<span class="font-semibold text-slate-700 group-hover:text-purple-700 text-sm">端侧 AI</span>
<span class="text-xs text-slate-500 mt-1 font-medium">各类 IoT 设备</span>
</div>
<span class="text-purple-600 font-mono text-sm font-bold bg-purple-100/50 px-2 py-1 rounded">0-4T</span>
</div>
<div class="flex justify-between items-center p-3.5 rounded-xl bg-slate-50 hover:bg-white border border-slate-100 hover:border-purple-400 transition-all group shadow-sm border-l-4 border-l-purple-400">
<div class="flex flex-col">
<span class="font-semibold text-slate-700 group-hover:text-purple-700 text-sm">边缘 AI</span>
<span class="text-xs text-slate-500 mt-1 font-medium">智能汽车/服务器边缘</span>
</div>
<span class="text-purple-600 font-mono text-sm font-bold bg-purple-100/50 px-2 py-1 rounded">4-64T</span>
</div>
<div class="flex justify-between items-center p-3.5 rounded-xl bg-slate-50 hover:bg-white border border-slate-100 hover:border-pink-400 transition-all group shadow-sm border-l-4 border-l-pink-400">
<div class="flex flex-col">
<span class="font-semibold text-slate-700 group-hover:text-pink-600 text-sm">云端 AI</span>
<span class="text-xs text-slate-500 mt-1 font-medium">大数据平台应用</span>
</div>
<span class="text-pink-600 font-mono text-sm font-bold bg-pink-100/50 px-2 py-1 rounded">> 200T</span>
</div>
</div>
<div class="flex flex-wrap gap-2 mt-auto pt-4 border-t border-slate-100">
<span class="text-xs px-3 py-1.5 rounded-lg bg-purple-50 text-purple-600 font-bold border border-purple-100">全场景分布</span>
<span class="text-xs px-3 py-1.5 rounded-lg bg-pink-50 text-pink-600 font-bold border border-pink-100">算力梯度清晰</span>
</div>
</div>
</div>
<!-- 开发工具 -->
<div class="grid md:grid-cols-2 gap-8 reveal">
<!-- FPGA开发板 -->
<a href="FPGA.html" class="glass-panel rounded-3xl p-6 flex items-center space-x-6 group border border-white hover:border-purple-200 transition-colors shadow-sm">
<div class="w-16 h-16 rounded-2xl bg-purple-100 flex items-center justify-center flex-shrink-0 group-hover:scale-110 group-hover:shadow-md transition-all border border-purple-200">
<i class="fa fa-th-large text-purple-600 text-2xl"></i>
</div>
<div class="flex-1">
<h4 class="text-xl font-bold text-slate-800 mb-2 group-hover:text-purple-700 transition-colors">FPGA开发板</h4>
<p class="text-slate-500 text-sm font-medium">Wing-FPGA-XCKU5P-EVB,支持评估</p>
</div>
<div class="w-10 h-10 rounded-full bg-white flex items-center justify-center shadow-sm text-slate-400 group-hover:text-purple-600 group-hover:bg-purple-50 transition-colors">
<i class="fa fa-arrow-right"></i>
</div>
</a>
<!-- WLink调试器 -->
<a href="wlink.html" class="glass-panel rounded-3xl p-6 flex items-center space-x-6 group border border-white hover:border-cyan-200 transition-colors shadow-sm">
<div class="w-16 h-16 rounded-2xl bg-cyan-100 flex items-center justify-center flex-shrink-0 group-hover:scale-110 group-hover:shadow-md transition-all border border-cyan-200">
<i class="fa fa-usb text-cyan-600 text-2xl"></i>
</div>
<div class="flex-1">
<h4 class="text-xl font-bold text-slate-800 mb-2 group-hover:text-cyan-700 transition-colors">WLink调试器</h4>
<p class="text-slate-500 text-sm font-medium">专业RISC-V调试工具,全系支持</p>
</div>
<div class="w-10 h-10 rounded-full bg-white flex items-center justify-center shadow-sm text-slate-400 group-hover:text-cyan-600 group-hover:bg-cyan-50 transition-colors">
<i class="fa fa-arrow-right"></i>
</div>
</a>
</div>
</div>
</section>
<!-- ============================================ -->
<!-- ArchitStudio 独立板块 -->
<!-- ============================================ -->
<section id="architstudio" class="py-24 relative overflow-hidden">
<!-- 轻量级背景色与光晕 -->
<div class="absolute inset-0 bg-gradient-to-br from-amber-50/50 to-orange-50/50 z-0"></div>
<div class="absolute top-1/2 left-1/4 w-[800px] h-[800px] bg-orange-200/20 rounded-full blur-[120px] -translate-y-1/2 -translate-x-1/2 pointer-events-none z-0"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="grid lg:grid-cols-2 gap-16 items-center">
<div class="reveal">
<div class="inline-flex items-center space-x-2 px-4 py-2 rounded-full glass-panel-light border border-orange-200 mb-6 shadow-sm">
<i class="fa fa-magic text-orange-500"></i>
<span class="text-sm font-bold text-orange-700">基于 RISCAL 的敏捷开发平台</span>
</div>
<h2 class="text-3xl sm:text-4xl lg:text-5xl font-extrabold text-slate-800 mb-6 drop-shadow-sm leading-tight">
国内最优秀的EDA处理器敏捷开发平台<br/><span class="text-orange-500">ArchitStudio</span>
</h2>
<p class="text-slate-600 text-lg leading-relaxed mb-8 font-medium">
基于“算法芯片化,场景架构化”理念,加速 DSA 设计与落地。让开发者摆脱底层繁复工作,一键生成全周期工具链与 SDK,重新定义定制处理器开发。
</p>
<div class="grid grid-cols-2 gap-6 mb-10">
<div class="glass-panel p-4 rounded-2xl flex items-start space-x-4 border border-white hover:border-orange-200 transition-colors shadow-sm">
<div class="w-12 h-12 rounded-xl bg-orange-100 flex items-center justify-center flex-shrink-0 shadow-sm border border-orange-200">
<i class="fa fa-bolt text-orange-500 text-lg"></i>
</div>
<div>
<h4 class="text-slate-800 font-bold mb-1 text-sm">10倍效率提升</h4>
<p class="text-slate-500 text-xs font-medium">大幅缩短产品上市周期</p>
</div>
</div>
<div class="glass-panel p-4 rounded-2xl flex items-start space-x-4 border border-white hover:border-orange-200 transition-colors shadow-sm">
<div class="w-12 h-12 rounded-xl bg-orange-100 flex items-center justify-center flex-shrink-0 shadow-sm border border-orange-200">
<i class="fa fa-puzzle-piece text-orange-500 text-lg"></i>
</div>
<div>
<h4 class="text-slate-800 font-bold mb-1 text-sm">软硬件协同</h4>
<p class="text-slate-500 text-xs font-medium">环境同步全自动生成</p>
</div>
</div>
<div class="glass-panel p-4 rounded-2xl flex items-start space-x-4 border border-white hover:border-orange-200 transition-colors shadow-sm">
<div class="w-12 h-12 rounded-xl bg-orange-100 flex items-center justify-center flex-shrink-0 shadow-sm border border-orange-200">
<i class="fa fa-check-circle text-orange-500 text-lg"></i>
</div>
<div>
<h4 class="text-slate-800 font-bold mb-1 text-sm">统一编程接口</h4>
<p class="text-slate-500 text-xs font-medium">类C语言降低定制门槛</p>
</div>
</div>
<div class="glass-panel p-4 rounded-2xl flex items-start space-x-4 border border-white hover:border-orange-200 transition-colors shadow-sm">
<div class="w-12 h-12 rounded-xl bg-orange-100 flex items-center justify-center flex-shrink-0 shadow-sm border border-orange-200">
<i class="fa fa-cogs text-orange-500 text-lg"></i>
</div>
<div>
<h4 class="text-slate-800 font-bold mb-1 text-sm">一键生成交付包</h4>
<p class="text-slate-500 text-xs font-medium">生成编译验证全环境</p>
</div>
</div>
</div>
<a href="architstudio-2.html" class="inline-flex items-center justify-center space-x-3 text-white bg-gradient-to-r from-orange-500 to-red-500 hover:from-orange-600 hover:to-red-600 transition-all px-8 py-4 rounded-xl text-lg font-bold w-max shadow-lg shadow-orange-500/20 hover:-translate-y-1">
<span>深入探索 ArchitStudio</span>
<i class="fa fa-arrow-right bg-white/20 p-2 rounded-lg text-sm"></i>
</a>
</div>
<!-- Graphic Side -->
<div class="relative reveal reveal-delay-2">
<div class="absolute inset-0 bg-gradient-to-br from-orange-300/20 to-red-300/20 rounded-[40px] blur-3xl"></div>
<div class="relative glass-panel rounded-[40px] border-2 border-white shadow-xl p-10 h-full flex flex-col justify-center min-h-[450px]">
<div class="absolute -right-6 -top-6 opacity-10 pointer-events-none">
<i class="fa fa-cogs text-9xl text-orange-500"></i>
</div>
<!-- Flow Diagram Idea from architstudio -->
<div class="relative z-10 flex flex-col items-center gap-8 mt-4">
<div class="bg-white/80 backdrop-blur-sm p-5 rounded-2xl border border-orange-200 shadow-md text-center w-full max-w-[240px] relative z-20">
<span class="text-orange-600 font-extrabold block mb-2 text-lg drop-shadow-sm">RISCAL 设计指令</span>
<span class="text-sm font-medium text-slate-500">统一软硬件高级描述</span>
</div>
<div class="flex space-x-20 relative z-10 my-2">
<!-- 连接线背景 -->
<div class="absolute top-1/2 left-1/2 w-40 h-px bg-slate-300 -translate-x-1/2 -translate-y-1/2 -z-10"></div>
<div class="absolute top-0 left-1/2 h-full w-px bg-slate-300 -translate-x-1/2 -z-10"></div>
<div class="w-10 h-10 rounded-full bg-white border border-slate-200 shadow-sm flex items-center justify-center z-20">
<i class="fa fa-arrow-down text-orange-400"></i>
</div>
<div class="w-10 h-10 rounded-full bg-white border border-slate-200 shadow-sm flex items-center justify-center z-20">
<i class="fa fa-arrow-down text-orange-400"></i>
</div>
</div>
<div class="flex justify-between gap-6 w-full relative z-20">
<div class="glass-panel-light p-6 rounded-2xl border-2 border-white shadow-md text-center w-1/2 hover:-translate-y-1 transition-transform">
<div class="w-12 h-12 mx-auto bg-blue-100 rounded-xl flex items-center justify-center mb-3 text-blue-600">
<i class="fa fa-code"></i>
</div>
<div class="text-blue-700 font-extrabold mb-2 text-lg">SDK 软件栈</div>
<p class="text-xs font-semibold text-slate-600 leading-relaxed">编译器 · 工具链<br>模拟器 · 调试器</p>
</div>
<div class="glass-panel-light p-6 rounded-2xl border-2 border-white shadow-md text-center w-1/2 hover:-translate-y-1 transition-transform">
<div class="w-12 h-12 mx-auto bg-indigo-100 rounded-xl flex items-center justify-center mb-3 text-indigo-600">
<i class="fa fa-microchip"></i>
</div>
<div class="text-indigo-700 font-extrabold mb-2 text-lg">HDK 硬件栈</div>
<p class="text-xs font-semibold text-slate-600 leading-relaxed">硬件 RTL · 仿真<br>一致性验证环境</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ============================================ -->
<!-- 智翼端侧AI 独立板块 -->
<!-- ============================================ -->
<section id="wingsemi-ai" class="py-24 relative overflow-hidden">
<!-- 背景 -->
<div class="absolute inset-0 bg-blue-50/30 z-0"></div>
<div class="absolute bottom-0 right-0 w-[600px] h-[600px] bg-blue-200/30 rounded-full blur-[100px] translate-y-1/3 pointer-events-none z-0"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="grid lg:grid-cols-2 gap-16 items-center">
<!-- Graphic Side -->
<div class="relative reveal order-2 lg:order-1">
<div class="absolute inset-0 bg-gradient-to-br from-blue-300/30 to-indigo-300/30 rounded-[40px] blur-3xl"></div>
<div class="relative glass-panel rounded-[40px] border-2 border-white shadow-xl p-8 lg:p-10 h-full">
<div class="mb-8 flex justify-between items-end border-b-2 border-slate-100 pb-5">
<div>
<h3 class="text-2xl font-extrabold text-slate-800 drop-shadow-sm">“智翼”系列 Roadmap</h3>
<p class="text-sm font-bold text-blue-600 mt-1">全场景覆盖端脑融合</p>
</div>
<div class="w-12 h-12 bg-blue-50 rounded-xl flex items-center justify-center text-blue-500 border border-blue-100">
<i class="fa fa-sitemap text-2xl"></i>
</div>
</div>
<div class="space-y-5 relative">
<!-- 连接线 -->
<div class="absolute left-6 top-6 bottom-6 w-1 bg-slate-200 rounded-full -z-10"></div>
<!-- Roadmap cards -->
<div class="glass-panel-light p-4 rounded-2xl border border-white hover:border-blue-300 hover:shadow-md transition-all flex items-center group relative bg-white/70">
<div class="w-12 h-12 bg-white rounded-full flex justify-center items-center font-bold text-slate-300 text-xl border-4 border-slate-100 shadow-sm z-10 mr-4 group-hover:border-blue-200 group-hover:text-blue-400 transition-all">1</div>
<div class="flex-1">
<h4 class="text-slate-800 font-bold text-lg group-hover:text-blue-600 transition-colors">轻翊 <span class="text-xs font-semibold text-slate-400 bg-slate-100 px-2 py-0.5 rounded ml-2">入门级</span></h4>
<p class="text-sm text-slate-500 font-medium">AI MCU / 目标识别</p>
</div>
<div class="text-sm font-bold text-emerald-600 bg-emerald-50 px-3 py-1.5 rounded-lg border border-emerald-100">0.1-0.5 T</div>
</div>
<div class="glass-panel-light p-4 rounded-2xl border border-white hover:border-blue-300 hover:shadow-md transition-all flex items-center group relative bg-white/70">
<div class="w-12 h-12 bg-white rounded-full flex justify-center items-center font-bold text-slate-300 text-xl border-4 border-slate-100 shadow-sm z-10 mr-4 group-hover:border-blue-300 group-hover:text-blue-500 transition-all">2</div>
<div class="flex-1">
<h4 class="text-slate-800 font-bold text-lg group-hover:text-blue-600 transition-colors">翔风 <span class="text-xs font-semibold text-slate-400 bg-slate-100 px-2 py-0.5 rounded ml-2">中端交互</span></h4>
<p class="text-sm text-slate-500 font-medium">语音/手势/人脸识别</p>
</div>
<div class="text-sm font-bold text-emerald-600 bg-emerald-50 px-3 py-1.5 rounded-lg border border-emerald-100">0.5-2 T</div>
</div>
<div class="glass-panel-light p-4 rounded-2xl border border-white hover:border-blue-300 hover:shadow-md transition-all flex items-center group relative bg-white/70">
<div class="w-12 h-12 bg-white rounded-full flex justify-center items-center font-bold text-slate-300 text-xl border-4 border-slate-100 shadow-sm z-10 mr-4 group-hover:border-indigo-300 group-hover:text-indigo-500 transition-all">3</div>
<div class="flex-1">
<h4 class="text-slate-800 font-bold text-lg group-hover:text-indigo-600 transition-colors">凌云 <span class="text-xs font-semibold text-slate-400 bg-slate-100 px-2 py-0.5 rounded ml-2">高端视觉</span></h4>
<p class="text-sm text-slate-500 font-medium">机器视觉 / 目标分类</p>
</div>
<div class="text-sm font-bold text-indigo-600 bg-indigo-50 px-3 py-1.5 rounded-lg border border-indigo-100">1-8 T</div>
</div>
<div class="glass-panel p-5 rounded-2xl border-2 border-primary shadow-lg flex items-center group relative overflow-hidden bg-gradient-to-r from-blue-50 to-indigo-50 hover:-translate-y-1 transition-all">
<div class="absolute right-0 top-0 h-full w-2 bg-gradient-to-b from-primary to-indigo-600"></div>
<div class="w-12 h-12 bg-gradient-to-br from-primary to-indigo-600 rounded-full flex justify-center items-center font-bold text-white text-xl shadow-md z-10 mr-4 border-2 border-white">4</div>
<div class="flex-1">
<h4 class="text-primary font-extrabold text-xl group-hover:text-indigo-600 transition-colors">御空 <span class="text-xs font-bold text-white bg-primary px-2 py-0.5 rounded shadow-sm ml-2">旗舰算力</span></h4>
<p class="text-sm text-slate-600 font-semibold mt-1">大模型(LLM/VLM)端侧部署</p>
</div>
<div class="text-sm font-extrabold text-primary bg-white px-3 py-2 rounded-xl border border-primary/20 shadow-sm">4-64 T</div>
</div>
</div>
</div>
</div>
<div class="reveal reveal-delay-2 order-1 lg:order-2">
<div class="inline-flex items-center space-x-2 px-4 py-2 rounded-full glass-panel-light border border-blue-200 mb-6 shadow-sm">
<i class="fa fa-cogs text-blue-500"></i>
<span class="text-sm font-bold text-blue-700">CPU+NPU融合解决方案</span>
</div>
<h2 class="text-3xl sm:text-4xl lg:text-5xl font-extrabold text-slate-800 mb-6 drop-shadow-sm leading-tight">
<span class="gradient-text">智翼端侧AI</span>生态体系
</h2>
<p class="text-slate-600 text-lg leading-relaxed mb-8 font-medium">
基于隼瞻 RISC-V 处理器 IP 和 ArchitStudio 平台,打造从硅前到硅后全周期可重构的端侧 AI 处理器集群方案。统一处理架构结合NPU阵列,实现高性能与高能效完美融合。
</p>
<div class="space-y-5 mb-10">
<div class="flex items-start glass-panel-light p-4 rounded-2xl border border-white shadow-sm">
<div class="w-10 h-10 bg-blue-100 rounded-xl flex items-center justify-center text-blue-600 mr-4 flex-shrink-0">
<i class="fa fa-cubes text-lg"></i>
</div>
<div>
<h4 class="text-slate-800 font-bold mb-1">Archit Fusion AI 架构</h4>
<p class="text-slate-500 text-sm font-medium">将复杂AI算法抽象为核心特征算子,极大提高硬件资源利用率。</p>
</div>
</div>
<div class="flex items-start glass-panel-light p-4 rounded-2xl border border-white shadow-sm">
<div class="w-10 h-10 bg-indigo-100 rounded-xl flex items-center justify-center text-indigo-600 mr-4 flex-shrink-0">
<i class="fa fa-wrench text-lg"></i>
</div>
<div>
<h4 class="text-slate-800 font-bold mb-1">全栈一体化工具</h4>
<p class="text-slate-500 text-sm font-medium">配套量化编译、一致性仿真、模型优化服务的 NPU “瑞士军刀”级软件栈。</p>
</div>
</div>
<div class="flex items-start glass-panel-light p-4 rounded-2xl border border-white shadow-sm">
<div class="w-10 h-10 bg-purple-100 rounded-xl flex items-center justify-center text-purple-600 mr-4 flex-shrink-0">
<i class="fa fa-globe text-lg"></i>
</div>
<div>
<h4 class="text-slate-800 font-bold mb-1">全场景无缝适应</h4>
<p class="text-slate-500 text-sm font-medium">灵活匹配从入门级 MCU 到旗舰大模型端侧部署的各个层级算力需求。</p>
</div>
</div>
</div>
<a href="ai_solution_Version2.html" class="inline-flex items-center justify-center space-x-3 text-white bg-gradient-to-r from-blue-500 to-indigo-600 hover:from-blue-600 hover:to-indigo-700 transition-all px-8 py-4 rounded-xl text-lg font-bold w-max shadow-lg shadow-blue-500/20 hover:-translate-y-1">
<span>探索端侧 AI 解决方案</span>
<i class="fa fa-arrow-right bg-white/20 p-2 rounded-lg text-sm"></i>
</a>
</div>
</div>
</div>
</section>
<!-- ============================================ -->
<!-- 应用领域 -->
<!-- ============================================ -->
<section id="technology" class="py-24 relative overflow-hidden">
<!-- 渐变背景叠加 -->
<div class="absolute inset-0 bg-slate-50 opacity-80 z-0"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<!-- 标题 -->
<div class="text-center mb-16 reveal">
<div class="inline-flex items-center space-x-2 px-4 py-2 rounded-full glass-panel border border-white mb-6 shadow-sm">
<i class="fa fa-globe text-primary"></i>
<span class="text-sm font-bold text-slate-700">业务全景视图</span>
</div>
<h2 class="text-3xl sm:text-4xl lg:text-5xl font-extrabold text-slate-800 mb-4 drop-shadow-sm">
赋能<span class="gradient-text">千行百业</span>
</h2>
<p class="text-slate-600 text-lg max-w-2xl mx-auto font-medium">
隼瞻科技的处理器IP广泛应用于人工智能、通信、工业、安全等多个前沿领域
</p>
</div>
<!-- 应用领域网格 -->
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-6 gap-6">
<div class="glass-panel bg-white/60 rounded-3xl p-6 text-center reveal reveal-delay-1 group border border-white hover:border-blue-300 hover:shadow-lg transition-all hover:-translate-y-2 cursor-pointer">
<div class="w-16 h-16 mx-auto rounded-2xl bg-blue-50 flex items-center justify-center mb-5 group-hover:scale-110 transition-transform shadow-inner border border-blue-100">
<i class="fa fa-android text-blue-500 text-3xl"></i>
</div>
<h4 class="text-slate-800 font-bold mb-2 group-hover:text-blue-600 transition-colors">人工智能</h4>
<p class="text-xs text-slate-500 font-semibold bg-slate-100/80 rounded-lg py-1 px-2 mx-auto inline-block">边缘AI / 具身智能</p>
</div>
<div class="glass-panel bg-white/60 rounded-3xl p-6 text-center reveal reveal-delay-1 group border border-white hover:border-green-300 hover:shadow-lg transition-all hover:-translate-y-2 cursor-pointer">
<div class="w-16 h-16 mx-auto rounded-2xl bg-green-50 flex items-center justify-center mb-5 group-hover:scale-110 transition-transform shadow-inner border border-green-100">
<i class="fa fa-wifi text-green-500 text-3xl"></i>
</div>
<h4 class="text-slate-800 font-bold mb-2 group-hover:text-green-600 transition-colors">通信连接</h4>
<p class="text-xs text-slate-500 font-semibold bg-slate-100/80 rounded-lg py-1 px-2 mx-auto inline-block">5G/6G / IoT</p>
</div>
<div class="glass-panel bg-white/60 rounded-3xl p-6 text-center reveal reveal-delay-2 group border border-white hover:border-orange-300 hover:shadow-lg transition-all hover:-translate-y-2 cursor-pointer">
<div class="w-16 h-16 mx-auto rounded-2xl bg-orange-50 flex items-center justify-center mb-5 group-hover:scale-110 transition-transform shadow-inner border border-orange-100">
<i class="fa fa-industry text-orange-500 text-3xl"></i>
</div>
<h4 class="text-slate-800 font-bold mb-2 group-hover:text-orange-600 transition-colors">工业控制</h4>
<p class="text-xs text-slate-500 font-semibold bg-slate-100/80 rounded-lg py-1 px-2 mx-auto inline-block">电机驱动 / PLC</p>
</div>
<div class="glass-panel bg-white/60 rounded-3xl p-6 text-center reveal reveal-delay-2 group border border-white hover:border-red-300 hover:shadow-lg transition-all hover:-translate-y-2 cursor-pointer">
<div class="w-16 h-16 mx-auto rounded-2xl bg-red-50 flex items-center justify-center mb-5 group-hover:scale-110 transition-transform shadow-inner border border-red-100">
<i class="fa fa-car text-red-500 text-3xl"></i>
</div>
<h4 class="text-slate-800 font-bold mb-2 group-hover:text-red-600 transition-colors">汽车电子</h4>
<p class="text-xs text-slate-500 font-semibold bg-slate-100/80 rounded-lg py-1 px-2 mx-auto inline-block">ADAS / 车载</p>
</div>
<div class="glass-panel bg-white/60 rounded-3xl p-6 text-center reveal reveal-delay-3 group border border-white hover:border-purple-300 hover:shadow-lg transition-all hover:-translate-y-2 cursor-pointer">
<div class="w-16 h-16 mx-auto rounded-2xl bg-purple-50 flex items-center justify-center mb-5 group-hover:scale-110 transition-transform shadow-inner border border-purple-100">
<i class="fa fa-shield text-purple-500 text-3xl"></i>
</div>
<h4 class="text-slate-800 font-bold mb-2 group-hover:text-purple-600 transition-colors">安全芯片</h4>
<p class="text-xs text-slate-500 font-semibold bg-slate-100/80 rounded-lg py-1 px-2 mx-auto inline-block">国密 / 认证</p>
</div>
<div class="glass-panel bg-white/60 rounded-3xl p-6 text-center reveal reveal-delay-3 group border border-white hover:border-cyan-300 hover:shadow-lg transition-all hover:-translate-y-2 cursor-pointer">
<div class="w-16 h-16 mx-auto rounded-2xl bg-cyan-50 flex items-center justify-center mb-5 group-hover:scale-110 transition-transform shadow-inner border border-cyan-100">
<i class="fa fa-home text-cyan-500 text-3xl"></i>
</div>
<h4 class="text-slate-800 font-bold mb-2 group-hover:text-cyan-600 transition-colors">消费电子</h4>
<p class="text-xs text-slate-500 font-semibold bg-slate-100/80 rounded-lg py-1 px-2 mx-auto inline-block">智能终端 / 穿戴</p>
</div>
</div>
</div>
</section>
<!-- ============================================ -->
<!-- 技术优势 -->
<!-- ============================================ -->
<section class="py-24 relative overflow-hidden">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<!-- 标题 -->
<div class="text-center mb-16 reveal">
<div class="inline-flex items-center space-x-2 px-4 py-2 rounded-full glass-panel border border-white mb-6 shadow-sm">
<i class="fa fa-star text-amber-500"></i>
<span class="text-sm font-bold text-slate-700">核心竞争力</span>
</div>
<h2 class="text-3xl sm:text-4xl lg:text-5xl font-extrabold text-slate-800 mb-4 drop-shadow-sm">
为什么选择<span class="gradient-text">隼瞻科技</span>
</h2>
</div>
<!-- 优势卡片 -->
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="glass-panel bg-white/70 rounded-3xl p-8 text-center reveal reveal-delay-1 shadow-md border border-white hover:shadow-xl hover:border-blue-200 transition-all">
<div class="w-20 h-20 mx-auto rounded-[2rem] bg-gradient-to-br from-blue-100 to-blue-50 flex items-center justify-center mb-6 shadow-sm border border-blue-200">
<i class="fa fa-tachometer text-blue-600 text-4xl"></i>
</div>
<h3 class="text-xl font-extrabold text-slate-800 mb-3">高性能低功耗</h3>
<p class="text-slate-600 text-sm font-medium leading-relaxed">先进的微架构设计,极致精简,实现性能与功耗的最优平衡比率</p>
</div>
<div class="glass-panel bg-white/70 rounded-3xl p-8 text-center reveal reveal-delay-2 shadow-md border border-white hover:shadow-xl hover:border-green-200 transition-all">
<div class="w-20 h-20 mx-auto rounded-[2rem] bg-gradient-to-br from-green-100 to-green-50 flex items-center justify-center mb-6 shadow-sm border border-green-200">
<i class="fa fa-sliders text-green-600 text-4xl"></i>
</div>
<h3 class="text-xl font-extrabold text-slate-800 mb-3">高度可配置</h3>
<p class="text-slate-600 text-sm font-medium leading-relaxed">提供丰富的参数化配置选项,随需应变,灵活满足差异化定制场景</p>
</div>
<div class="glass-panel bg-white/70 rounded-3xl p-8 text-center reveal reveal-delay-3 shadow-md border border-white hover:shadow-xl hover:border-purple-200 transition-all">
<div class="w-20 h-20 mx-auto rounded-[2rem] bg-gradient-to-br from-purple-100 to-purple-50 flex items-center justify-center mb-6 shadow-sm border border-purple-200">
<i class="fa fa-microchip text-purple-600 text-4xl"></i>
</div>
<h3 class="text-xl font-extrabold text-slate-800 mb-3">多款硅体验证</h3>
<p class="text-slate-600 text-sm font-medium leading-relaxed">多款架构产品经过量产流片和充分硅验证,确保设计的极致可靠性</p>
</div>
<div class="glass-panel bg-white/70 rounded-3xl p-8 text-center reveal reveal-delay-4 shadow-md border border-white hover:shadow-xl hover:border-orange-200 transition-all">
<div class="w-20 h-20 mx-auto rounded-[2rem] bg-gradient-to-br from-orange-100 to-orange-50 flex items-center justify-center mb-6 shadow-sm border border-orange-200">
<i class="fa fa-users text-orange-600 text-4xl"></i>
</div>
<h3 class="text-xl font-extrabold text-slate-800 mb-3">专家级支持服务</h3>
<p class="text-slate-600 text-sm font-medium leading-relaxed">汇聚业内资深专家团队,提供一对一的全程技术支持与本地化服务</p>
</div>
</div>
</div>
</section>
<!-- ============================================ -->
<!-- CTA区域 -->
<!-- ============================================ -->
<section id="contact" class="py-24 relative overflow-hidden">
<!-- 背景 -->
<div class="absolute inset-0 bg-gradient-to-br from-blue-100/50 via-indigo-50 to-purple-100/50 z-0"></div>
<div class="absolute inset-0 bg-[url('data:image/svg+xml,%3Csvg width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cg fill=\"%233b82f6\" fill-opacity=\"0.05\"%3E%3Cpath d=\"M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E')] opacity-70 z-0"></div>
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center relative z-10">
<div class="glass-panel p-12 rounded-[40px] border-2 border-white shadow-2xl reveal">
<div class="w-20 h-20 bg-gradient-to-br from-primary to-indigo-600 rounded-2xl flex items-center justify-center mx-auto mb-8 shadow-lg shadow-blue-500/30">
<i class="fa fa-paper-plane text-white text-3xl"></i>
</div>
<h2 class="text-3xl sm:text-4xl lg:text-5xl font-extrabold text-slate-800 mb-6 drop-shadow-sm">
准备好开启您的<span class="gradient-text">芯片创新之旅</span>了吗?
</h2>
<p class="text-slate-600 text-lg mb-10 max-w-2xl mx-auto font-medium">
联系我们,了解隼瞻科技如何帮助您加速定制芯的设计进程,在行业变革浪潮中占得先机。
</p>
<div class="flex flex-col sm:flex-row items-center justify-center gap-6">
<a href="mailto:contact@wingsemi.com" class="btn-primary px-10 py-4 rounded-2xl text-white font-bold text-lg flex items-center justify-center space-x-3 w-full sm:w-auto shadow-lg shadow-blue-500/30 hover:-translate-y-1 transition-all">
<i class="fa fa-envelope text-xl"></i>
<span>联系我们</span>
</a>
<a href="about.html" class="glass-panel px-10 py-4 rounded-2xl text-slate-700 font-bold text-lg flex items-center justify-center space-x-3 w-full sm:w-auto border border-white hover:bg-white transition-all shadow-sm hover:shadow-md hover:-translate-y-1">
<i class="fa fa-info-circle text-primary text-xl"></i>
<span>了解更多</span>
</a>
</div>
</div>
</div>
</section>
</div>
<!-- JavaScript -->
<script>
// ====== 星座背景效果 ======
class ConstellationBackground {
constructor() {
this.canvas = document.getElementById('constellation-canvas');
if(!this.canvas) return;
this.ctx = this.canvas.getContext('2d');
this.particles = [];
this.mouse = { x: null, y: null, radius: 150 };
this.particleCount = 100;
this.connectionDistance = 150;
this.mouseInfluenceRadius = 200;
this.init();
this.animate();
this.addEventListeners();
}
init() {
this.resize();
this.createParticles();
}
resize() {
const heroSection = document.getElementById('hero-section');
if(!heroSection) return;
this.canvas.width = heroSection.offsetWidth;
this.canvas.height = heroSection.offsetHeight;
}
createParticles() {
this.particles = [];
for (let i = 0; i < this.particleCount; i++) {
this.particles.push({
x: Math.random() * this.canvas.width,
y: Math.random() * this.canvas.height,
vx: (Math.random() - 0.5) * 0.5,
vy: (Math.random() - 0.5) * 0.5,
radius: Math.random() * 2 + 1.5,
baseRadius: Math.random() * 2 + 1.5,
color: this.getRandomColor(),
pulseSpeed: Math.random() * 0.02 + 0.01,
pulseOffset: Math.random() * Math.PI * 2
});
}
}
getRandomColor() {
const colors = [
'rgba(59, 130, 246, 0.6)', // 蓝色
'rgba(96, 165, 250, 0.6)', // 浅蓝色
'rgba(139, 92, 246, 0.5)', // 紫色
'rgba(147, 197, 253, 0.6)' // 淡蓝色
];
return colors[Math.floor(Math.random() * colors.length)];
}
addEventListeners() {
window.addEventListener('resize', () => {
this.resize();
this.createParticles();
});
const heroSection = document.getElementById('hero-section');
if(heroSection) {
heroSection.addEventListener('mousemove', (e) => {
const rect = this.canvas.getBoundingClientRect();
this.mouse.x = e.clientX - rect.left;
this.mouse.y = e.clientY - rect.top;
});
heroSection.addEventListener('mouseleave', () => {
this.mouse.x = null;
this.mouse.y = null;
});
}
}
drawParticle(particle, time) {
// 脉冲效果
const pulse = Math.sin(time * particle.pulseSpeed + particle.pulseOffset) * 0.5 + 0.5;
const currentRadius = particle.baseRadius + pulse * 1.5;
// 发光效果
const gradient = this.ctx.createRadialGradient(
particle.x, particle.y, 0,
particle.x, particle.y, currentRadius * 3
);
gradient.addColorStop(0, particle.color);
const softColor = particle.color.replace('0.6', '0.2').replace('0.5', '0.15');
gradient.addColorStop(0.5, softColor);
gradient.addColorStop(1, 'transparent');
this.ctx.beginPath();
this.ctx.arc(particle.x, particle.y, currentRadius * 3, 0, Math.PI * 2);
this.ctx.fillStyle = gradient;
this.ctx.fill();
// 核心点
this.ctx.beginPath();
this.ctx.arc(particle.x, particle.y, currentRadius, 0, Math.PI * 2);
this.ctx.fillStyle = particle.color;
this.ctx.fill();
}
drawConnections() {
for (let i = 0; i < this.particles.length; i++) {
for (let j = i + 1; j < this.particles.length; j++) {
const dx = this.particles[i].x - this.particles[j].x;
const dy = this.particles[i].y - this.particles[j].y;
const distance = Math.sqrt(dx * dx + dy * dy);
if (distance < this.connectionDistance) {
const opacity = (1 - distance / this.connectionDistance) * 0.25;
this.ctx.beginPath();
this.ctx.moveTo(this.particles[i].x, this.particles[i].y);
this.ctx.lineTo(this.particles[j].x, this.particles[j].y);
this.ctx.strokeStyle = `rgba(59, 130, 246, ${opacity})`;
this.ctx.lineWidth = 1;
this.ctx.stroke();
}
}
}
}
drawMouseConnections() {
if (this.mouse.x === null || this.mouse.y === null) return;
this.particles.forEach(particle => {
const dx = particle.x - this.mouse.x;
const dy = particle.y - this.mouse.y;
const distance = Math.sqrt(dx * dx + dy * dy);
if (distance < this.mouseInfluenceRadius) {
const opacity = (1 - distance / this.mouseInfluenceRadius) * 0.4;
// 绘制鼠标与粒子的连线
this.ctx.beginPath();
this.ctx.moveTo(this.mouse.x, this.mouse.y);
this.ctx.lineTo(particle.x, particle.y);
const gradient = this.ctx.createLinearGradient(
this.mouse.x, this.mouse.y,
particle.x, particle.y
);
gradient.addColorStop(0, `rgba(139, 92, 246, ${opacity})`);
gradient.addColorStop(1, `rgba(59, 130, 246, ${opacity * 0.5})`);
this.ctx.strokeStyle = gradient;
this.ctx.lineWidth = 1.5;
this.ctx.stroke();
}
});
// 鼠标位置的光晕
const mouseGlow = this.ctx.createRadialGradient(
this.mouse.x, this.mouse.y, 0,
this.mouse.x, this.mouse.y, 40
);
mouseGlow.addColorStop(0, 'rgba(139, 92, 246, 0.2)');
mouseGlow.addColorStop(0.5, 'rgba(59, 130, 246, 0.1)');
mouseGlow.addColorStop(1, 'transparent');
this.ctx.beginPath();
this.ctx.arc(this.mouse.x, this.mouse.y, 40, 0, Math.PI * 2);
this.ctx.fillStyle = mouseGlow;
this.ctx.fill();
}
updateParticles() {
this.particles.forEach(particle => {
// 基本移动
particle.x += particle.vx;
particle.y += particle.vy;
// 鼠标牵引效果
if (this.mouse.x !== null && this.mouse.y !== null) {
const dx = this.mouse.x - particle.x;
const dy = this.mouse.y - particle.y;
const distance = Math.sqrt(dx * dx + dy * dy);
if (distance < this.mouseInfluenceRadius) {
const force = (this.mouseInfluenceRadius - distance) / this.mouseInfluenceRadius;
const angle = Math.atan2(dy, dx);
// 牵引力
particle.vx += Math.cos(angle) * force * 0.02;
particle.vy += Math.sin(angle) * force * 0.02;
particle.vx += Math.cos(angle + Math.PI / 2) * force * 0.005;
particle.vy += Math.sin(angle + Math.PI / 2) * force * 0.005;
}
}
// 速度限制
const speed = Math.sqrt(particle.vx * particle.vx + particle.vy * particle.vy);
if (speed > 2) {
particle.vx = (particle.vx / speed) * 2;
particle.vy = (particle.vy / speed) * 2;
}
particle.vx *= 0.99;
particle.vy *= 0.99;
particle.vx += (Math.random() - 0.5) * 0.02;
particle.vy += (Math.random() - 0.5) * 0.02;
if (particle.x < -50) particle.x = this.canvas.width + 50;
if (particle.x > this.canvas.width + 50) particle.x = -50;
if (particle.y < -50) particle.y = this.canvas.height + 50;
if (particle.y > this.canvas.height + 50) particle.y = -50;
});
}
animate() {
const time = Date.now() * 0.001;
this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
this.drawConnections();
this.drawMouseConnections();
this.particles.forEach(particle => this.drawParticle(particle, time));
this.updateParticles();
requestAnimationFrame(() => this.animate());
}
}
// 原有粒子效果(漂浮)
function createParticles() {
const container = document.getElementById('particles');
if(!container) return;
const particleCount = 20;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.className = 'particle';
particle.style.left = Math.random() * 100 + '%';
particle.style.animationDelay = Math.random() * 15 + 's';
particle.style.animationDuration = (15 + Math.random() * 10) + 's';
container.appendChild(particle);
}
}
// 滚动显示动画
function handleScrollReveal() {
const reveals = document.querySelectorAll('.reveal');
const windowHeight = window.innerHeight;
reveals.forEach(reveal => {
const revealTop = reveal.getBoundingClientRect().top;
const revealPoint = 100;
if (revealTop < windowHeight - revealPoint) {
reveal.classList.add('visible');
}
});
}
// 数字计数动画
function animateCounters() {
const counters = document.querySelectorAll('.stat-number');
counters.forEach(counter => {
const target = counter.getAttribute('data-target');
const suffix = counter.getAttribute('data-suffix') || '';
const textOnly = counter.getAttribute('data-text');
if (textOnly) return;
if (target && !counter.classList.contains('counted')) {
const rect = counter.getBoundingClientRect();
if(rect.top < window.innerHeight && rect.bottom >= 0) {
counter.classList.add('counted');
let count = 0;
const targetNum = parseFloat(target);
const duration = 2000;
const startTime = Date.now();
const updateCount = () => {
const elapsed = Date.now() - startTime;
const progress = Math.min(elapsed / duration, 1);
const easeProgress = 1 - Math.pow(1 - progress, 4);
count = targetNum * easeProgress;
if (progress < 1) {
counter.textContent = Math.ceil(count) + suffix;
requestAnimationFrame(updateCount);
} else {
counter.textContent = targetNum + suffix;
}
};
updateCount();
}
}
});
}
// 平滑滚动
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if(targetId === '#') return;
const target = document.querySelector(targetId);
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// 初始化
document.addEventListener('DOMContentLoaded', () => {
new ConstellationBackground();
createParticles();
handleScrollReveal();
setTimeout(() => {
document.querySelectorAll('.reveal').forEach(el => {
if (el.getBoundingClientRect().top < window.innerHeight) {
el.classList.add('visible');
}
});
}, 100);
setTimeout(() => {
animateCounters();
}, 500);
});
window.addEventListener('scroll', () => {
handleScrollReveal();
animateCounters();
});
</script>
</body>
</html>