first
This commit is contained in:
+203
-172
@@ -6,57 +6,87 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>产品详情 - 隼瞻科技</title>
|
||||
|
||||
<!-- Tailwind (kept, may be used for layout utilities) -->
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
|
||||
<!-- Font Awesome & Font -->
|
||||
<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&display=swap" rel="stylesheet">
|
||||
|
||||
<script>
|
||||
tailwind.config = {
|
||||
theme: {
|
||||
extend: {
|
||||
colors: { primary: '#3b82f6', secondary: '#2563eb', accent: '#60a5fa' },
|
||||
fontFamily: { inter: ['Inter', 'sans-serif'] }
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style type="text/tailwindcss">
|
||||
@layer utilities {
|
||||
.glass-panel {
|
||||
background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
|
||||
backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
|
||||
backdrop-filter: blur(16px);
|
||||
-webkit-backdrop-filter: blur(16px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.9);
|
||||
box-shadow: 0 8px 32px -4px rgba(59, 130, 246, 0.1);
|
||||
}
|
||||
.glass-panel-light {
|
||||
background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
|
||||
backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
|
||||
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);
|
||||
}
|
||||
.text-gradient {
|
||||
.gradient-text {
|
||||
background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
|
||||
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
.text-shadow {
|
||||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.product-feature-card {
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.product-feature-card:hover {
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
.section-active {
|
||||
color: #2563eb !important;
|
||||
border-bottom: 2px solid #2563eb !important;
|
||||
}
|
||||
.animate-fade-in {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
|
||||
}
|
||||
.animate-fade-in.visible {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
.hover-float {
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
.hover-float:hover {
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
.bg-grid {
|
||||
background-image: 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='%239C92AC' fill-opacity='0.15'%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") !important;
|
||||
}
|
||||
}
|
||||
|
||||
#sj-product-page { font-family: 'Inter', sans-serif; color: #1e293b; background-color: transparent !important; }
|
||||
#sj-product-page a { color: #3b82f6; transition: color 0.3s ease; }
|
||||
#sj-product-page a:hover { color: #2563eb; }
|
||||
.section-active { color: #2563eb !important; border-bottom: 2px solid #2563eb !important; }
|
||||
.hover-float { transition: transform 0.3s ease, box-shadow 0.3s ease; }
|
||||
.hover-float:hover { transform: translateY(-5px); box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1); }
|
||||
.animate-fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
|
||||
.animate-fade-in.visible { opacity: 1; transform: translateY(0); }
|
||||
|
||||
.bg-grid {
|
||||
background-image: 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") !important;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
tailwind.config = {
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: '#3b82f6',
|
||||
secondary: '#2563eb',
|
||||
accent: '#60a5fa',
|
||||
},
|
||||
fontFamily: {
|
||||
inter: ['Inter', 'sans-serif'],
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body class="bg-slate-50 text-slate-800 font-inter antialiased overflow-x-hidden w-full">
|
||||
|
||||
<body class="bg-slate-50 text-slate-800 font-inter antialiased">
|
||||
<!-- 固定在背景的全局毛玻璃淡蓝光晕 -->
|
||||
<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>
|
||||
@@ -66,110 +96,113 @@
|
||||
</div>
|
||||
|
||||
<!-- Wrapper with an ID so we can scope styles and avoid WP theme interference -->
|
||||
<div id="sj-product-page" class="relative z-10 w-full min-h-screen">
|
||||
<div id="sj-product-page" class="min-h-screen relative z-10">
|
||||
|
||||
<!-- 产品页面头部 -->
|
||||
<section class="pt-24 md:pt-32 pb-16 md:pb-24 bg-gradient-to-br gradient-animate"
|
||||
style="background: linear-gradient(135deg, rgba(248,250,252,0.95), rgba(239,246,255,1)); overflow:hidden;">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8">
|
||||
<section class="pt-24 md:pt-32 pb-16 md:pb-24 relative overflow-hidden">
|
||||
<div class="absolute top-0 left-1/2 -translate-x-1/2 w-[80%] h-64 bg-primary/10 blur-[120px] rounded-full pointer-events-none"></div>
|
||||
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8 relative z-10">
|
||||
<div class="max-w-4xl mx-auto text-center">
|
||||
<h1 class="text-[clamp(2rem,5vw,3.5rem)] font-bold text-slate-800 leading-tight text-shadow mb-6">
|
||||
<h1 class="text-[clamp(2rem,5vw,3.5rem)] font-extrabold text-slate-800 leading-tight drop-shadow-sm mb-6">
|
||||
通用处理器IP
|
||||
</h1>
|
||||
<div class="bg-primary-20 inline-block px-6 pt-4 rounded-full mb-6 animate-fade-in">
|
||||
<h2 class="text-xl font-semibold text-primary">Wing-M Series</h2>
|
||||
<div class="glass-panel-light inline-flex items-center space-x-2 px-6 py-2 rounded-full border border-blue-200 mb-6 shadow-sm animate-fade-in">
|
||||
<h2 class="text-xl font-bold text-blue-700">Wing-M Series</h2>
|
||||
</div>
|
||||
<h3 class="text-2xl md:text-3xl font-bold text-slate-800 mb-8">Wing-M050 Processor IP</h3>
|
||||
<p class="text-lg md:text-xl text-slate-600 mb-8 max-w-2xl mx-auto" style="line-height:1.6;">
|
||||
<h3 class="text-2xl md:text-3xl font-extrabold text-slate-800 mb-8 gradient-text inline-block">Wing-M050 Processor IP</h3>
|
||||
<p class="text-lg md:text-xl text-slate-600 font-medium mb-8 max-w-2xl mx-auto leading-relaxed">
|
||||
Wing-M050 是基于RISC-V架构的32位、单发射、2级流水的处理器,适用于极低功耗和极小面积的嵌入式应用
|
||||
</p>
|
||||
<div class="w-24 h-1 bg-primary mx-auto" style="background-color:var(--primary); height:4px;"></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 1. 架构 -->
|
||||
<section id="architecture" class="section-content py-16 bg-transparent text-slate-800" style="background-color:transparent;">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8">
|
||||
<section id="architecture" class="section-content py-16 relative">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8 relative z-10">
|
||||
<div class="max-w-4xl mx-auto mb-16">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-slate-800 text-center">架构</h2>
|
||||
<div class="w-24 h-1 bg-primary mx-auto mb-12" style="background-color:var(--primary); height:4px;">
|
||||
<h2 class="text-3xl md:text-4xl font-extrabold mb-6 text-slate-800 text-center drop-shadow-sm">架构</h2>
|
||||
<div class="w-24 h-1.5 bg-gradient-to-r from-blue-500 to-sky-400 mx-auto mb-12 rounded-full">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 架构大图 -->
|
||||
<div class="max-w-4xl mx-auto glass-panel text-slate-800 rounded-xl shadow-lg overflow-hidden animate-fade-in mb-12">
|
||||
<div class="p-6"
|
||||
style="background: linear-gradient(90deg, rgba(59,130,246,0.1) 0%, rgba(255,255,255,0.9) 100%); border-bottom: 1px solid rgba(59,130,246,0.1);">
|
||||
<h3 class="text-2xl font-bold text-slate-800 text-center">Wing-M050 处理器IP架构</h3>
|
||||
<div class="max-w-4xl mx-auto glass-panel rounded-3xl shadow-md border border-white hover:shadow-lg transition-shadow overflow-hidden animate-fade-in mb-12">
|
||||
<div class="p-6 bg-slate-50 border-b border-slate-200">
|
||||
<h3 class="text-2xl font-extrabold text-slate-800 text-center">Wing-M050 处理器IP架构</h3>
|
||||
</div>
|
||||
<div class="p-4">
|
||||
<div class="p-4 bg-white/50 backdrop-blur-sm">
|
||||
<img src="https://www.beiyuxing.live/wp-content/uploads/2025/10/whiteboard_exported_image-7.png"
|
||||
alt="Wing-M050 Processor IP架构图" class="w-full h-auto rounded-lg" />
|
||||
alt="Wing-M050 Processor IP架构图" class="w-full h-auto rounded-2xl" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 2. 产品参数 -->
|
||||
<section id="specifications" class="section-content py-16 bg-transparent text-slate-800" style="background-color:transparent;">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8">
|
||||
<section id="specifications" class="section-content py-16 relative">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8 relative z-10">
|
||||
<div class="max-w-4xl mx-auto mb-16">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-slate-800 text-center">产品参数</h2>
|
||||
<p class="text-slate-600 mb-6 text-center">
|
||||
<h2 class="text-3xl md:text-4xl font-extrabold mb-6 text-slate-800 text-center drop-shadow-sm">产品参数</h2>
|
||||
<p class="text-slate-600 font-medium mb-6 text-center">
|
||||
Wing-M050 Processor IP的详细技术参数,为您提供全面的产品信息
|
||||
</p>
|
||||
<div class="w-24 h-1 bg-primary mx-auto mb-12" style="background-color:var(--primary); height:4px;">
|
||||
<div class="w-24 h-1.5 bg-gradient-to-r from-blue-500 to-sky-400 mx-auto mb-12 rounded-full">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 rounded-xl shadow-md p-8 animate-fade-in">
|
||||
<h3 class="text-2xl font-bold mb-6 text-slate-800">性能基准测试</h3>
|
||||
<div class="glass-panel-light border border-white rounded-3xl shadow-sm p-8 animate-fade-in hover:shadow-md transition-shadow mb-8">
|
||||
<h3 class="text-2xl font-extrabold mb-6 text-slate-800 flex items-center">
|
||||
<div class="w-2 h-6 bg-blue-500 rounded-full mr-3"></div> 性能基准测试
|
||||
</h3>
|
||||
<div class="grid md:grid-cols-2 gap-6">
|
||||
<div class="space-y-4">
|
||||
<div class="flex justify-between pb-3 border-b border-gray-100">
|
||||
<span class="text-slate-500 text-2xl">Dhrystone</span>
|
||||
<span class="font-medium text-2xl" style="color: #4cd6b4;">0.95 (legal)</span>
|
||||
<div class="flex justify-between pb-3 border-b border-slate-200">
|
||||
<span class="text-slate-500 font-bold text-xl">Dhrystone</span>
|
||||
<span class="font-extrabold text-2xl text-emerald-500">0.95 (legal)</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="space-y-4">
|
||||
<div class="flex justify-between pb-3 border-b border-gray-100">
|
||||
<span class="text-slate-500 text-2xl">Coremark</span>
|
||||
<span class="font-medium text-2xl" style="color: #4cd6b4;">2.52</span>
|
||||
<div class="flex justify-between pb-3 border-b border-slate-200">
|
||||
<span class="text-slate-500 font-bold text-xl">Coremark</span>
|
||||
<span class="font-extrabold text-2xl text-emerald-500">2.52</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 rounded-xl shadow-md p-8 animate-fade-in">
|
||||
<h3 class="text-xl font-bold mb-6 text-slate-800">功能参数</h3>
|
||||
<div class="glass-panel-light border border-white rounded-3xl shadow-sm p-8 animate-fade-in hover:shadow-md transition-shadow">
|
||||
<h3 class="text-xl font-extrabold mb-6 text-slate-800 flex items-center">
|
||||
<div class="w-2 h-6 bg-sky-500 rounded-full mr-3"></div> 功能参数
|
||||
</h3>
|
||||
<div class="grid md:grid-cols-2 gap-6">
|
||||
<div class="space-y-4">
|
||||
<div class="flex justify-between pb-3 border-b border-gray-100">
|
||||
<span class="text-slate-500">ISA</span>
|
||||
<span class="font-medium text-slate-800">RV32E(M)B_zce_zicond_xwingc</span>
|
||||
<div class="flex justify-between pb-3 border-b border-slate-200 hover:bg-slate-50/50 transition-colors rounded-lg px-2 -mx-2">
|
||||
<span class="text-slate-500 font-bold">ISA</span>
|
||||
<span class="font-bold text-slate-700">RV32E(M)B_zce_xwingc</span>
|
||||
</div>
|
||||
<div class="flex justify-between pb-3 border-b border-gray-100">
|
||||
<span class="text-slate-500">Micro Arch</span>
|
||||
<span class="font-medium text-slate-800">2-stage,In-order one-issue</span>
|
||||
<div class="flex justify-between pb-3 border-b border-slate-200 hover:bg-slate-50/50 transition-colors rounded-lg px-2 -mx-2">
|
||||
<span class="text-slate-500 font-bold">Micro Arch</span>
|
||||
<span class="font-bold text-slate-700">2-stage,In-order</span>
|
||||
</div>
|
||||
<div class="flex justify-between">
|
||||
<span class="text-slate-500">Privilege Mode</span>
|
||||
<span class="font-medium text-slate-800">Machine Mode, User Mode (optional)</span>
|
||||
<div class="flex justify-between pb-1 hover:bg-slate-50/50 transition-colors rounded-lg px-2 -mx-2">
|
||||
<span class="text-slate-500 font-bold">Privilege Mode</span>
|
||||
<span class="font-bold text-slate-700 text-right">Machine Mode, User Mode</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="space-y-4">
|
||||
<div class="flex justify-between pb-3 border-b border-gray-100">
|
||||
<span class="text-slate-500">Ext. Interrupts</span>
|
||||
<span class="font-medium text-slate-800">Yes (Optional)</span>
|
||||
<div class="flex justify-between pb-3 border-b border-slate-200 hover:bg-slate-50/50 transition-colors rounded-lg px-2 -mx-2">
|
||||
<span class="text-slate-500 font-bold">Ext. Interrupts</span>
|
||||
<span class="font-bold text-slate-700">Yes (Optional)</span>
|
||||
</div>
|
||||
<div class="flex justify-between pb-3 border-b border-gray-100">
|
||||
<span class="text-slate-500">Debug</span>
|
||||
<span class="font-medium text-slate-800">cJTAG/JTAG</span>
|
||||
<div class="flex justify-between pb-3 border-b border-slate-200 hover:bg-slate-50/50 transition-colors rounded-lg px-2 -mx-2">
|
||||
<span class="text-slate-500 font-bold">Debug</span>
|
||||
<span class="font-bold text-slate-700">cJTAG/JTAG</span>
|
||||
</div>
|
||||
<div class="flex justify-between">
|
||||
<span class="text-slate-500">External Bus</span>
|
||||
<span class="font-medium text-slate-800">AHB</span>
|
||||
<div class="flex justify-between pb-1 hover:bg-slate-50/50 transition-colors rounded-lg px-2 -mx-2">
|
||||
<span class="text-slate-500 font-bold">External Bus</span>
|
||||
<span class="font-bold text-slate-700">AHB</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -178,94 +211,92 @@
|
||||
</section>
|
||||
|
||||
<!-- 3. 产品特点 -->
|
||||
<section id="features" class="section-content py-16 bg-transparent text-slate-800" style="background-color:transparent;">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8">
|
||||
<section id="features" class="section-content py-16 relative">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8 relative z-10">
|
||||
<div class="max-w-4xl mx-auto mb-16">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-slate-800 text-center">产品特点</h2>
|
||||
<div class="w-24 h-1 bg-primary mx-auto mb-12" style="background-color:var(--primary); height:4px;">
|
||||
<h2 class="text-3xl md:text-4xl font-extrabold mb-6 text-slate-800 text-center drop-shadow-sm">产品特点</h2>
|
||||
<div class="w-24 h-1.5 bg-gradient-to-r from-blue-500 to-sky-400 mx-auto mb-12 rounded-full">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="space-y-6 max-w-4xl mx-auto">
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm hover:shadow-md hover:-translate-y-1 transition-all animate-fade-in group">
|
||||
<div class="flex items-center">
|
||||
<div class="bg-primary-10 p-2 rounded-lg shrink-0">
|
||||
<i class="fa fa-check text-primary"></i>
|
||||
<div class="bg-blue-50 border border-blue-100 p-2 rounded-xl shrink-0 shadow-inner group-hover:bg-blue-100 transition-colors">
|
||||
<i class="fa fa-check text-blue-600"></i>
|
||||
</div>
|
||||
<div class="ml-4">
|
||||
<h4 class="text-xl font-bold text-slate-800">
|
||||
<h4 class="text-xl font-extrabold text-slate-800">
|
||||
支持RV32E(M)B_zce_zicond_xwingc指令集</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in" style="transition-delay: 0.1s">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm hover:shadow-md hover:-translate-y-1 transition-all animate-fade-in group" style="transition-delay: 0.1s">
|
||||
<div class="flex items-center">
|
||||
<div class="bg-primary-10 p-2 rounded-lg shrink-0">
|
||||
<i class="fa fa-check text-primary"></i>
|
||||
<div class="bg-blue-50 border border-blue-100 p-2 rounded-xl shrink-0 shadow-inner group-hover:bg-blue-100 transition-colors">
|
||||
<i class="fa fa-check text-blue-600"></i>
|
||||
</div>
|
||||
<div class="ml-4">
|
||||
<h4 class="text-xl font-bold text-slate-800">支持多样化的在线/离线调试手段,可快速定位并解决故障</h4>
|
||||
<h4 class="text-xl font-extrabold text-slate-800">支持多样化的在线/离线调试手段,可快速定位并解决故障</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in" style="transition-delay: 0.2s">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm hover:shadow-md hover:-translate-y-1 transition-all animate-fade-in group" style="transition-delay: 0.2s">
|
||||
<div class="flex items-center">
|
||||
<div class="bg-primary-10 p-2 rounded-lg shrink-0">
|
||||
<i class="fa fa-check text-primary"></i>
|
||||
<div class="bg-blue-50 border border-blue-100 p-2 rounded-xl shrink-0 shadow-inner group-hover:bg-blue-100 transition-colors">
|
||||
<i class="fa fa-check text-blue-600"></i>
|
||||
</div>
|
||||
<div class="ml-4">
|
||||
<h4 class="text-xl font-bold text-slate-800">
|
||||
<h4 class="text-xl font-extrabold text-slate-800">
|
||||
支持基于处理器自动化设计平台扩展领域专用指令集,可快速迭代专用处理器解决方案</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in" style="transition-delay: 0.3s">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm hover:shadow-md hover:-translate-y-1 transition-all animate-fade-in group" style="transition-delay: 0.3s">
|
||||
<div class="flex items-center">
|
||||
<div class="bg-primary-10 p-2 rounded-lg shrink-0">
|
||||
<i class="fa fa-check text-primary"></i>
|
||||
<div class="bg-blue-50 border border-blue-100 p-2 rounded-xl shrink-0 shadow-inner group-hover:bg-blue-100 transition-colors">
|
||||
<i class="fa fa-check text-blue-600"></i>
|
||||
</div>
|
||||
<div class="ml-4">
|
||||
<h4 class="text-xl font-bold text-slate-800">支持隼瞻科技自研中断实时性增强技术,提供优异的中断切换效率和中断处理实时性
|
||||
<h4 class="text-xl font-extrabold text-slate-800">支持隼瞻科技自研中断实时性增强技术,提供优异的中断切换效率和中断处理实时性
|
||||
</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in" style="transition-delay: 0.4s">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm hover:shadow-md hover:-translate-y-1 transition-all animate-fade-in group" style="transition-delay: 0.4s">
|
||||
<div class="flex items-center">
|
||||
<div class="bg-primary-10 p-2 rounded-lg shrink-0">
|
||||
<i class="fa fa-check text-primary"></i>
|
||||
<div class="bg-blue-50 border border-blue-100 p-2 rounded-xl shrink-0 shadow-inner group-hover:bg-blue-100 transition-colors">
|
||||
<i class="fa fa-check text-blue-600"></i>
|
||||
</div>
|
||||
<div class="ml-4">
|
||||
<h4 class="text-xl font-bold text-slate-800">支持隼瞻科技自研代码压缩技术,直击RISC-V基础架构代码膨胀问题
|
||||
<h4 class="text-xl font-extrabold text-slate-800">支持隼瞻科技自研代码压缩技术,直击RISC-V基础架构代码膨胀问题
|
||||
</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in" style="transition-delay: 0.5s">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm hover:shadow-md hover:-translate-y-1 transition-all animate-fade-in group" style="transition-delay: 0.5s">
|
||||
<div class="flex items-center">
|
||||
<div class="bg-primary-10 p-2 rounded-lg shrink-0">
|
||||
<i class="fa fa-check text-primary"></i>
|
||||
<div class="bg-blue-50 border border-blue-100 p-2 rounded-xl shrink-0 shadow-inner group-hover:bg-blue-100 transition-colors">
|
||||
<i class="fa fa-check text-blue-600"></i>
|
||||
</div>
|
||||
<div class="ml-4">
|
||||
<h4 class="text-xl font-bold text-slate-800">拥有超低功耗与极小面积,实现极优面效比与能效比</h4>
|
||||
<h4 class="text-xl font-extrabold text-slate-800">拥有超低功耗与极小面积,实现极优面效比与能效比</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in" style="transition-delay: 0.7s">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm hover:shadow-md hover:-translate-y-1 transition-all animate-fade-in group" style="transition-delay: 0.7s">
|
||||
<div class="flex items-center">
|
||||
<div class="bg-primary-10 p-2 rounded-lg shrink-0">
|
||||
<i class="fa fa-check text-primary"></i>
|
||||
<div class="bg-blue-50 border border-blue-100 p-2 rounded-xl shrink-0 shadow-inner group-hover:bg-blue-100 transition-colors">
|
||||
<i class="fa fa-check text-blue-600"></i>
|
||||
</div>
|
||||
<div class="ml-4">
|
||||
<h4 class="text-xl font-bold text-slate-800">满足车规ISO26262 ASIL-D要求</h4>
|
||||
<h4 class="text-xl font-extrabold text-slate-800">满足车规ISO26262 ASIL-D要求</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -274,35 +305,35 @@
|
||||
</section>
|
||||
|
||||
<!-- 4. 应用场景 -->
|
||||
<section id="applications" class="section-content py-16 bg-transparent text-slate-800" style="background-color:transparent;">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8">
|
||||
<section id="applications" class="section-content py-16 relative">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8 relative z-10">
|
||||
<div class="max-w-4xl mx-auto mb-16">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-slate-800 text-center">应用场景</h2>
|
||||
<p class="text-slate-600 mb-6 text-center">
|
||||
<h2 class="text-3xl md:text-4xl font-extrabold mb-6 text-slate-800 text-center drop-shadow-sm">应用场景</h2>
|
||||
<p class="text-slate-600 font-medium mb-6 text-center">
|
||||
Wing-M050处理器IP凭借其高性能、低功耗特性,广泛应用于以下领域
|
||||
</p>
|
||||
<div class="w-24 h-1 bg-primary mx-auto mb-12" style="background-color:var(--primary); height:4px;">
|
||||
<div class="w-24 h-1.5 bg-gradient-to-r from-blue-500 to-sky-400 mx-auto mb-12 rounded-full">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 应用场景标签 -->
|
||||
<div class="flex flex-wrap justify-center gap-4 max-w-3xl mx-auto mb-16">
|
||||
<span
|
||||
class="bg-primary-20 text-primary px-6 py-3 rounded-full text-lg font-medium animate-fade-in flex items-center gap-2">
|
||||
class="bg-blue-50 text-blue-600 border border-blue-100 px-6 py-3 rounded-full text-lg font-bold animate-fade-in flex items-center gap-2 shadow-sm hover:bg-blue-100 transition-colors">
|
||||
<i class="fa fa-wifi"></i> IoT
|
||||
</span>
|
||||
<span
|
||||
class="bg-primary-20 text-primary px-6 py-3 rounded-full text-lg font-medium animate-fade-in flex items-center gap-2"
|
||||
class="bg-blue-50 text-blue-600 border border-blue-100 px-6 py-3 rounded-full text-lg font-bold animate-fade-in flex items-center gap-2 shadow-sm hover:bg-blue-100 transition-colors"
|
||||
style="transition-delay: 0.1s">
|
||||
<i class="fa fa-connectdevelop"></i> 物联网
|
||||
</span>
|
||||
<span
|
||||
class="bg-primary-20 text-primary px-6 py-3 rounded-full text-lg font-medium animate-fade-in flex items-center gap-2"
|
||||
class="bg-blue-50 text-blue-600 border border-blue-100 px-6 py-3 rounded-full text-lg font-bold animate-fade-in flex items-center gap-2 shadow-sm hover:bg-blue-100 transition-colors"
|
||||
style="transition-delay: 0.2s">
|
||||
<i class="fa fa-mobile"></i> 消费电子
|
||||
</span>
|
||||
<span
|
||||
class="bg-primary-20 text-primary px-6 py-3 rounded-full text-lg font-medium animate-fade-in flex items-center gap-2"
|
||||
class="bg-blue-50 text-blue-600 border border-blue-100 px-6 py-3 rounded-full text-lg font-bold animate-fade-in flex items-center gap-2 shadow-sm hover:bg-blue-100 transition-colors"
|
||||
style="transition-delay: 0.3s">
|
||||
<i class="fa fa-microchip"></i> 系统伴核
|
||||
</span>
|
||||
@@ -310,56 +341,56 @@
|
||||
|
||||
<!-- 详细应用场景描述 -->
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-5xl mx-auto">
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm animate-fade-in hover:shadow-md transition-shadow group">
|
||||
<div class="flex items-start mb-4">
|
||||
<div class="w-12 h-12 bg-primary-10 rounded-full flex items-center justify-center mr-4">
|
||||
<i class="fa fa-wifi text-primary text-xl"></i>
|
||||
<div class="w-12 h-12 bg-blue-50 border border-blue-100 rounded-full flex items-center justify-center mr-4 group-hover:scale-110 transition-transform">
|
||||
<i class="fa fa-wifi text-blue-600 text-xl"></i>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="text-xl font-bold mb-2 text-slate-800">IoT设备</h4>
|
||||
<p class="text-slate-600">
|
||||
<h4 class="text-xl font-extrabold mb-2 text-slate-800">IoT设备</h4>
|
||||
<p class="text-slate-600 font-medium">
|
||||
为各类物联网终端提供高效可靠的计算能力,支持传感器数据采集、处理和传输,满足智能物联网设备的低功耗需求。
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in" style="transition-delay: 0.1s">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm animate-fade-in hover:shadow-md transition-shadow group" style="transition-delay: 0.1s">
|
||||
<div class="flex items-start mb-4">
|
||||
<div class="w-12 h-12 bg-primary-10 rounded-full flex items-center justify-center mr-4">
|
||||
<i class="fa fa-connectdevelop text-primary text-xl"></i>
|
||||
<div class="w-12 h-12 bg-blue-50 border border-blue-100 rounded-full flex items-center justify-center mr-4 group-hover:scale-110 transition-transform">
|
||||
<i class="fa fa-connectdevelop text-blue-600 text-xl"></i>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="text-xl font-bold mb-2 text-slate-800">物联网网关</h4>
|
||||
<p class="text-slate-600">
|
||||
<h4 class="text-xl font-extrabold mb-2 text-slate-800">物联网网关</h4>
|
||||
<p class="text-slate-600 font-medium">
|
||||
作为物联网网关的核心处理单元,负责设备管理、协议转换和数据分析,确保物联网系统的高效稳定运行。
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in" style="transition-delay: 0.2s">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm animate-fade-in hover:shadow-md transition-shadow group" style="transition-delay: 0.2s">
|
||||
<div class="flex items-start mb-4">
|
||||
<div class="w-12 h-12 bg-primary-10 rounded-full flex items-center justify-center mr-4">
|
||||
<i class="fa fa-mobile text-primary text-xl"></i>
|
||||
<div class="w-12 h-12 bg-blue-50 border border-blue-100 rounded-full flex items-center justify-center mr-4 group-hover:scale-110 transition-transform">
|
||||
<i class="fa fa-mobile text-blue-600 text-xl"></i>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="text-xl font-bold mb-2 text-slate-800">消费电子</h4>
|
||||
<p class="text-slate-600">
|
||||
<h4 class="text-xl font-extrabold mb-2 text-slate-800">消费电子</h4>
|
||||
<p class="text-slate-600 font-medium">
|
||||
广泛应用于智能家电、可穿戴设备、智能音箱等消费电子产品,提供卓越的用户体验和电池续航能力。
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 p-6 rounded-xl shadow-md animate-fade-in" style="transition-delay: 0.3s">
|
||||
<div class="glass-panel border border-white p-6 rounded-3xl shadow-sm animate-fade-in hover:shadow-md transition-shadow group" style="transition-delay: 0.3s">
|
||||
<div class="flex items-start mb-4">
|
||||
<div class="w-12 h-12 bg-primary-10 rounded-full flex items-center justify-center mr-4">
|
||||
<i class="fa fa-microchip text-primary text-xl"></i>
|
||||
<div class="w-12 h-12 bg-blue-50 border border-blue-100 rounded-full flex items-center justify-center mr-4 group-hover:scale-110 transition-transform">
|
||||
<i class="fa fa-microchip text-blue-600 text-xl"></i>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="text-xl font-bold mb-2 text-slate-800">系统伴核</h4>
|
||||
<p class="text-slate-600">
|
||||
<h4 class="text-xl font-extrabold mb-2 text-slate-800">系统伴核</h4>
|
||||
<p class="text-slate-600 font-medium">
|
||||
作为主处理器的辅助核心,负责系统管理、电源控制、安全监控等任务,提升整个系统的性能和可靠性。
|
||||
</p>
|
||||
</div>
|
||||
@@ -370,26 +401,26 @@
|
||||
</section>
|
||||
|
||||
<!-- 5. 交付包 -->
|
||||
<section id="documentation" class="section-content py-16 bg-transparent text-slate-800" style="background-color:transparent;">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8">
|
||||
<section id="documentation" class="section-content py-16 relative">
|
||||
<div class="container mx-auto px-4 md:px-6 lg:px-8 relative z-10">
|
||||
<div class="max-w-4xl mx-auto mb-16">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-slate-800 text-center">交付包</h2>
|
||||
<p class="text-slate-600 mb-6 text-center">
|
||||
<h2 class="text-3xl md:text-4xl font-extrabold mb-6 text-slate-800 text-center drop-shadow-sm">交付包</h2>
|
||||
<p class="text-slate-600 font-medium mb-6 text-center">
|
||||
隼瞻科技提供全面的技术文档,帮助客户快速了解和使用我们的产品
|
||||
</p>
|
||||
<div class="w-24 h-1 bg-primary mx-auto mb-12" style="background-color:var(--primary); height:4px;">
|
||||
<div class="w-24 h-1.5 bg-gradient-to-r from-blue-500 to-sky-400 mx-auto mb-12 rounded-full">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
|
||||
<div
|
||||
class="glass-panel text-slate-800 rounded-xl border border-slate-200 shadow-md hover:shadow-xl transition-all duration-300 overflow-hidden hover-float animate-fade-in">
|
||||
class="glass-panel-light border border-white rounded-3xl shadow-sm hover:shadow-xl transition-all duration-300 overflow-hidden hover-float animate-fade-in">
|
||||
<div class="p-6">
|
||||
<div class="w-12 h-12 bg-primary-10 rounded-lg flex items-center justify-center mb-4">
|
||||
<i class="fa fa-microchip text-primary text-xl"></i>
|
||||
<div class="w-12 h-12 bg-blue-50 border border-blue-100 rounded-xl flex items-center justify-center mb-4 shadow-sm">
|
||||
<i class="fa fa-microchip text-blue-600 text-xl"></i>
|
||||
</div>
|
||||
<h4 class="text-xl font-bold mb-3 text-slate-800">HDK</h4>
|
||||
<ul class="space-y-3 mb-6">
|
||||
<h4 class="text-xl font-extrabold mb-3 text-slate-800">HDK</h4>
|
||||
<ul class="space-y-3 mb-6 text-slate-600 font-medium">
|
||||
<li class="flex items-center text-sm">
|
||||
<i class="fa fa-file-pdf-o text-red-500 mr-2"></i>
|
||||
<span>Wing-M050 RTL代码</span>
|
||||
@@ -399,7 +430,7 @@
|
||||
<span>仿真验证环境</span>
|
||||
</li>
|
||||
<li class="flex items-center text-sm">
|
||||
<i class="fa fa-file-code-o text-green-500 mr-2"></i>
|
||||
<i class="fa fa-file-code-o text-emerald-500 mr-2"></i>
|
||||
<span>DC综合参考环境</span>
|
||||
</li>
|
||||
<li class="flex items-center text-sm">
|
||||
@@ -407,21 +438,21 @@
|
||||
<span>Formality形式验证参考环境</span>
|
||||
</li>
|
||||
<li class="flex items-center text-sm">
|
||||
<i class="fa fa-file-video-o text-orange-500 mr-2"></i>
|
||||
<i class="fa fa-file-video-o text-amber-500 mr-2"></i>
|
||||
<span>FPGA配置文件</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 rounded-xl border border-slate-200 shadow-md hover:shadow-xl transition-all duration-300 overflow-hidden hover-float animate-fade-in"
|
||||
<div class="glass-panel-light border border-white rounded-3xl shadow-sm hover:shadow-xl transition-all duration-300 overflow-hidden hover-float animate-fade-in"
|
||||
style="transition-delay: 0.2s">
|
||||
<div class="p-6">
|
||||
<div class="w-12 h-12 bg-primary-10 rounded-lg flex items-center justify-center mb-4">
|
||||
<i class="fa fa-sitemap text-primary text-xl"></i>
|
||||
<div class="w-12 h-12 bg-blue-50 border border-blue-100 rounded-xl flex items-center justify-center mb-4 shadow-sm">
|
||||
<i class="fa fa-sitemap text-blue-600 text-xl"></i>
|
||||
</div>
|
||||
<h4 class="text-xl font-bold mb-3 text-slate-800">SDK</h4>
|
||||
<ul class="space-y-3 mb-6">
|
||||
<h4 class="text-xl font-extrabold mb-3 text-slate-800">SDK</h4>
|
||||
<ul class="space-y-3 mb-6 text-slate-600 font-medium">
|
||||
<li class="flex items-center text-sm">
|
||||
<i class="fa fa-file-pdf-o text-red-500 mr-2"></i>
|
||||
<span>Wing IDE</span>
|
||||
@@ -431,7 +462,7 @@
|
||||
<span>编译工具链</span>
|
||||
</li>
|
||||
<li class="flex items-center text-sm">
|
||||
<i class="fa fa-file-code-o text-green-500 mr-2"></i>
|
||||
<i class="fa fa-file-code-o text-emerald-500 mr-2"></i>
|
||||
<span>调试器</span>
|
||||
</li>
|
||||
<li class="flex items-center text-sm">
|
||||
@@ -439,21 +470,21 @@
|
||||
<span>BSP</span>
|
||||
</li>
|
||||
<li class="flex items-center text-sm">
|
||||
<i class="fa fa-file-video-o text-orange-500 mr-2"></i>
|
||||
<i class="fa fa-file-video-o text-amber-500 mr-2"></i>
|
||||
<span>IA/CA 仿真器</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glass-panel text-slate-800 rounded-xl border border-slate-200 shadow-md hover:shadow-xl transition-all duration-300 overflow-hidden hover-float animate-fade-in"
|
||||
<div class="glass-panel-light border border-white rounded-3xl shadow-sm hover:shadow-xl transition-all duration-300 overflow-hidden hover-float animate-fade-in"
|
||||
style="transition-delay: 0.4s">
|
||||
<div class="p-6">
|
||||
<div class="w-12 h-12 bg-primary-10 rounded-lg flex items-center justify-center mb-4">
|
||||
<i class="fa fa-code text-primary text-xl"></i>
|
||||
<div class="w-12 h-12 bg-blue-50 border border-blue-100 rounded-xl flex items-center justify-center mb-4 shadow-sm">
|
||||
<i class="fa fa-code text-blue-600 text-xl"></i>
|
||||
</div>
|
||||
<h4 class="text-xl font-bold mb-3 text-slate-800">文档</h4>
|
||||
<ul class="space-y-3 mb-6">
|
||||
<h4 class="text-xl font-extrabold mb-3 text-slate-800">文档</h4>
|
||||
<ul class="space-y-3 mb-6 text-slate-600 font-medium">
|
||||
<li class="flex items-center text-sm">
|
||||
<i class="fa fa-file-pdf-o text-red-500 mr-2"></i>
|
||||
<span>Wing-M050 处理器技术文档</span>
|
||||
@@ -463,7 +494,7 @@
|
||||
<span>Wing-M050 处理器集成文档</span>
|
||||
</li>
|
||||
<li class="flex items-center text-sm">
|
||||
<i class="fa fa-file-code-o text-green-500 mr-2"></i>
|
||||
<i class="fa fa-file-code-o text-emerald-500 mr-2"></i>
|
||||
<span>Wing-M050 SDK手册</span>
|
||||
</li>
|
||||
</ul>
|
||||
@@ -478,9 +509,9 @@
|
||||
<!-- 咨询按钮 -->
|
||||
<div class="fixed bottom-12 right-12 z-50 popupbox">
|
||||
<button id="consult-button"
|
||||
class="bg-primary hover:bg-primary/90 text-slate-800 py-5 px-8 rounded-full shadow-xl transform transition-all duration-300 hover:scale-110 flex items-center gap-3 text-lg">
|
||||
class="bg-blue-600 hover:bg-blue-700 text-white py-5 px-8 rounded-full shadow-lg transform transition-all duration-300 hover:-translate-y-1 hover:shadow-xl flex items-center gap-3 text-lg font-extrabold">
|
||||
<i class="fa fa-comments-o text-2xl"></i>
|
||||
<span class="font-bold">立刻咨询</span>
|
||||
<span>立刻咨询</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user