File: /home/www/ 2025/material.html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>启舟教您如何科学选材</title>
<script src="https://cdn.tailwindcss.com/3.3.3"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<script src="https://cdn.jsdelivr.net/npm/vue@3.2.47/dist/vue.global.min.js"></script>
<style>
body {
font-family: "PingFang SC", "Microsoft YaHei", "Lantinghei SC", "HarmonyOS Sans SC", "MiSans", sans-serif;
scroll-behavior: smooth;
}
.hero-section {
background: linear-gradient(135deg, #165DFF 0%, #0B42AB 100%);
position: relative;
overflow: hidden;
}
.hero-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('https://img.alicdn.com/imgextra/i3/O1CN01XPGaD31cwcc5WQBM2_!!6000000003665-0-tps-3840-2160.jpg');
background-size: cover;
background-position: center;
opacity: 0.2;
z-index: 0;
}
.hero-section > div {
position: relative;
z-index: 1;
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.btn-hover {
transition: all 0.3s ease;
}
.btn-hover:hover {
transform: scale(1.05);
box-shadow: 0 10px 15px -3px rgba(255, 125, 0, 0.3);
}
.nav-scrolled {
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.fade-enter-active, .fade-leave-active {
transition: opacity 0.5s ease;
}
.fade-enter-from, .fade-leave-to {
opacity: 0;
}
.scroll-indicator {
animation: bounce 2s infinite;
}
/* 修改导航栏默认样式 */
nav {
background-color: transparent;
}
/* Logo文字颜色 */
nav .text-xl.font-bold {
color: white;
}
/* 导航链接颜色 */
nav .md\:flex a {
color: white;
}
nav .md\:flex a:hover {
color: rgba(255, 255, 255, 0.8);
}
/* 移动端菜单按钮 */
nav button.md\:hidden {
color: white;
}
/* 滚动后的导航栏样式 */
.nav-scrolled .text-xl.font-bold {
color: #165DFF;
}
.nav-scrolled .md\:flex a {
color: #333;
}
.nav-scrolled .md\:flex a:hover {
color: #165DFF;
}
.nav-scrolled button.md\:hidden {
color: #333;
}
/* 移动端菜单链接颜色 */
nav .md\:hidden a {
color: #333;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-10px);
}
60% {
transform: translateY(-5px);
}
}
</style>
</head>
<body>
<div id="app">
<!-- 导航栏 -->
<nav class="fixed w-full z-50 transition-all duration-300" :class="{'nav-scrolled': isScrolled}">
<div class="container mx-auto px-4 py-3">
<div class="flex items-center justify-between">
<div class="text-xl font-bold text-blue-800">
<i class="fas fa-cubes mr-2"></i>启舟选材
</div>
<div class="hidden md:flex space-x-8">
<a v-for="(item, index) in navItems" :key="index"
href="#"
@click.prevent="scrollToSection(item.id)"
class="text-gray-700 hover:text-blue-800 font-medium transition-colors">
{{ item.text }}
</a>
</div>
<button @click="toggleMobileMenu" class="md:hidden text-gray-700 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
<!-- 移动端菜单 -->
<div v-if="mobileMenuOpen" class="md:hidden mt-4 bg-white rounded-lg shadow-lg p-4">
<a v-for="(item, index) in navItems" :key="index"
href="#"
@click.prevent="scrollToSection(item.id)"
class="block py-2 px-4 text-gray-700 hover:bg-blue-50 hover:text-blue-800 rounded-md transition-colors">
{{ item.text }}
</a>
</div>
</div>
</nav>
<!-- 英雄区 -->
<section id="home" class="hero-section min-h-screen flex items-center justify-center text-white pt-20">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6">
科学选材,为您的项目保驾护航
</h1>
<p class="text-xl md:text-2xl mb-8 opacity-90">
系统化选材流程 | 精准性能匹配 | 全生命周期优化
</p>
<p class="max-w-3xl mx-auto text-lg mb-12 opacity-80">
在工业制造领域,材料选择直接关系到产品性能、安全性和成本控制。科学选材需要综合考量力学性能、环境适应性、工艺特性及经济可持续性,启舟供应链为您提供专业的选材指导方案。
</p>
<button @click="scrollToSection('process')" class="bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-8 rounded-full btn-hover">
选材流程
</button>
<div class="mt-20 scroll-indicator">
<i class="fas fa-chevron-down text-2xl opacity-70"></i>
</div>
</div>
</section>
<!-- 选材流程区 -->
<section id="process" class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-16 text-gray-800">
<i class="fas fa-project-diagram mr-3 text-blue-600"></i>选材流程
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- 流程1 -->
<div class="bg-white rounded-xl shadow-lg p-6 card-hover">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 text-2xl font-bold mb-4">
1
</div>
<h3 class="text-xl font-bold mb-4 text-gray-800">明确使用需求</h3>
<h4 class="font-semibold mb-2 text-blue-700">力学性能匹配</h4>
<p class="text-gray-600 mb-4">
根据构件受力类型(拉/压/弯/冲击)确定关键指标:
</p>
<ul class="text-gray-600 mb-4 space-y-2">
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>静载荷场景</strong>:重点考察屈服强度(ReL)、抗拉强度(Rm)及塑性(断后伸长率A)</li>
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>动载荷或低温环境</strong>:需验证冲击韧性(KV2),如风电法兰要求-50℃冲击功≥60J</li>
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>疲劳工况</strong>:需进行高频循环试验(>10⁷次)</li>
</ul>
<h4 class="font-semibold mb-2 text-blue-700">环境适配性</h4>
<ul class="text-gray-600 space-y-2">
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>腐蚀环境</strong>:选择不锈钢(如304/316L)或耐候钢,通过介质PH值、温度建立选材模型</li>
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>温度极限</strong>:高温选耐热钢(如15CrMo),低温环境需保证冷脆转变温度达标</li>
</ul>
</div>
<!-- 流程2 -->
<div class="bg-white rounded-xl shadow-lg p-6 card-hover">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 text-2xl font-bold mb-4">
2
</div>
<h3 class="text-xl font-bold mb-4 text-gray-800">评估材料性能</h3>
<h4 class="font-semibold mb-2 text-blue-700">核心性能检测</h4>
<ul class="text-gray-600 mb-4 space-y-2">
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>力学测试</strong>:拉伸试验(GB/T 228.1)测强度,冲击试验(GB/T 229)验韧性,硬度试验(HBW/HRC)评耐磨性</li>
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>成分分析</strong>:光谱检测C、Si、Mn等主元素及微合金元素(V、Nb),控制有害元素(P≤0.030%,S≤0.025%)</li>
<li class="text-sm italic text-gray-500">注:压力容器用钢要求更严格</li>
</ul>
<h4 class="font-semibold mb-2 text-blue-700">工艺性能验证</h4>
<ul class="text-gray-600 space-y-2">
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>焊接性</strong>:通过碳当量(Ceq)预判,海工钢要求Ceq<0.45%</li>
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>成型性</strong>:冷弯试验(GB/T 232)验证180°弯曲无裂纹</li>
</ul>
</div>
<!-- 流程3 -->
<div class="bg-white rounded-xl shadow-lg p-6 card-hover">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 text-2xl font-bold mb-4">
3
</div>
<h3 class="text-xl font-bold mb-4 text-gray-800">经济性与可持续性平衡</h3>
<h4 class="font-semibold mb-2 text-blue-700">成本优化策略</h4>
<ul class="text-gray-600 mb-4 space-y-2">
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>材质替代</strong>:非强腐蚀环境以碳钢(20#,¥5000-6000/吨)替代合金钢(42CrMo,¥8000+/吨),可降本25%以上</li>
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>轻量化设计</strong>:通过有限元分析减薄壁厚(如±0.08mm公差),减少原料用量18%</li>
</ul>
<h4 class="font-semibold mb-2 text-blue-700">全生命周期评估</h4>
<ul class="text-gray-600 space-y-2">
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> 优先选用可回收材料(如再生不锈钢),降低资源消耗</li>
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> 核算能源消耗:焦炭炼钢的CO₂排放量显著高于电炉工艺,优选绿电生产方案</li>
</ul>
</div>
<!-- 流程4 -->
<div class="bg-white rounded-xl shadow-lg p-6 card-hover">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 text-2xl font-bold mb-4">
4
</div>
<h3 class="text-xl font-bold mb-4 text-gray-800">样品验证与批量管控</h3>
<h4 class="font-semibold mb-2 text-blue-700">小试阶段</h4>
<ul class="text-gray-600 mb-4 space-y-2">
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>取样检测</strong>:按GB/T 2975规范取样,验证成分、力学性能及金相组织(晶粒度、夹杂物)</li>
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>工艺适配性</strong>:模拟实际加工(焊接/锻压),评估微观结构变化</li>
</ul>
<h4 class="font-semibold mb-2 text-blue-700">批量验收</h4>
<ul class="text-gray-600 space-y-2">
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>核查质量证明书</strong>:比对炉号、规格与标准(如GB/T 1499.2)</li>
<li><i class="fas fa-check-circle text-blue-500 mr-2"></i> <strong>现场检测</strong>:游标卡尺测尺寸偏差,见证取样送检(每60吨一组)</li>
</ul>
</div>
</div>
</div>
</section>
<!-- 性能参数区 -->
<section id="parameters" class="py-20 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-16 text-gray-800">
<i class="fas fa-chart-bar mr-3 text-blue-600"></i>性能参数对比
</h2>
<div class="overflow-x-auto">
<table class="min-w-full bg-white rounded-lg overflow-hidden shadow-lg">
<thead class="bg-blue-600 text-white">
<tr>
<th class="py-3 px-4 text-left">构件类型</th>
<th class="py-3 px-4 text-left">核心指标</th>
<th class="py-3 px-4 text-left">推荐检测方法</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200">
<tr>
<td class="py-4 px-4">承重结构梁</td>
<td class="py-4 px-4">屈服强度、弯曲性能</td>
<td class="py-4 px-4">拉伸试验+冷弯试验</td>
</tr>
<tr class="bg-gray-50">
<td class="py-4 px-4">冲击部件(齿轮轴)</td>
<td class="py-4 px-4">冲击韧性、疲劳强度</td>
<td class="py-4 px-4">夏比V型缺口试验+高频疲劳测试</td>
</tr>
<tr>
<td class="py-4 px-4">腐蚀环境管道</td>
<td class="py-4 px-4">耐蚀性、焊接接头性能</td>
<td class="py-4 px-4">盐雾试验+HAZ显微分析</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- 应用案例区 -->
<section id="cases" class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-16 text-gray-800">
<i class="fas fa-building mr-3 text-blue-600"></i>应用案例
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- 案例1 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden card-hover">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-wind text-6xl text-blue-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-4 text-gray-800">案例一:风电法兰选材方案</h3>
<div class="mb-4">
<h4 class="font-semibold text-blue-700 mb-2">挑战</h4>
<p class="text-gray-600">-50℃低温环境下承受交变载荷</p>
</div>
<div class="mb-4">
<h4 class="font-semibold text-blue-700 mb-2">解决方案</h4>
<p class="text-gray-600">选用Q355ND低温韧性钢,通过-40℃冲击功≥34J验证,配合法兰锻后正火处理</p>
</div>
<div>
<h4 class="font-semibold text-blue-700 mb-2">成效</h4>
<p class="text-gray-600">疲劳寿命提升至10⁸次循环,成本较进口材料降低30%</p>
</div>
</div>
</div>
<!-- 案例2 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden card-hover">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-industry text-6xl text-blue-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-4 text-gray-800">案例二:化工储罐防腐选材</h3>
<div class="mb-4">
<h4 class="font-semibold text-blue-700 mb-2">挑战</h4>
<p class="text-gray-600">30%浓度硫酸介质腐蚀</p>
</div>
<div class="mb-4">
<h4 class="font-semibold text-blue-700 mb-2">解决方案</h4>
<p class="text-gray-600">采用316L不锈钢,添加Mo元素(2-3%)增强耐点蚀性能</p>
</div>
<div>
<h4 class="font-semibold text-blue-700 mb-2">成效</h4>
<p class="text-gray-600">使用寿命延长至15年,年维护成本降低80%</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- 常见问题区 -->
<section id="faq" class="py-20 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-16 text-gray-800">
<i class="fas fa-question-circle mr-3 text-blue-600"></i>常见问题
</h2>
<div class="max-w-3xl mx-auto space-y-4">
<!-- Q1 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button @click="toggleFAQ(0)" class="w-full flex justify-between items-center p-4 bg-gray-50 hover:bg-gray-100 transition-colors">
<h3 class="text-lg font-semibold text-left text-gray-800">
Q1: 如何快速判断材料是否适合低温环境?
</h3>
<i class="fas" :class="{'fa-chevron-down': !activeFAQ[0], 'fa-chevron-up': activeFAQ[0]}"></i>
</button>
<transition name="fade">
<div v-if="activeFAQ[0]" class="p-4 bg-white">
<p class="text-gray-600">
重点关注材料的低温冲击韧性值(KV2)和冷脆转变温度,建议选择-40℃冲击功≥34J的低温专用钢(如Q355ND、09MnNiDR等)。
</p>
</div>
</transition>
</div>
<!-- Q2 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button @click="toggleFAQ(1)" class="w-full flex justify-between items-center p-4 bg-gray-50 hover:bg-gray-100 transition-colors">
<h3 class="text-lg font-semibold text-left text-gray-800">
Q2: 焊接性能与材料成分有什么关系?
</h3>
<i class="fas" :class="{'fa-chevron-down': !activeFAQ[1], 'fa-chevron-up': activeFAQ[1]}"></i>
</button>
<transition name="fade">
<div v-if="activeFAQ[1]" class="p-4 bg-white">
<p class="text-gray-600">
主要与碳当量(Ceq)相关,公式为Ceq=C+Mn/6+(Cr+Mo+V)/5+(Ni+Cu)/15,一般要求Ceq<0.45%以保证良好焊接性,高合金钢建议采用低氢焊接工艺。
</p>
</div>
</transition>
</div>
<!-- Q3 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button @click="toggleFAQ(2)" class="w-full flex justify-between items-center p-4 bg-gray-50 hover:bg-gray-100 transition-colors">
<h3 class="text-lg font-semibold text-left text-gray-800">
Q3: 如何在保证性能的前提下降低材料成本?
</h3>
<i class="fas" :class="{'fa-chevron-down': !activeFAQ[2], 'fa-chevron-up': activeFAQ[2]}"></i>
</button>
<transition name="fade">
<div v-if="activeFAQ[2]" class="p-4 bg-white">
<p class="text-gray-600">
可通过三种途径:1)材质替代(如Q355B替代45#钢用于非关键结构);2)优化规格(精确计算受力后减薄壁厚);3)采用国产认证材料替代进口材料。
</p>
</div>
</transition>
</div>
</div>
</div>
</section>
<!-- 联系我们区 -->
<section id="contact" class="py-20 bg-blue-600 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-8">
需要专业的选材指导?
</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">
我们的材料专家团队随时为您提供专业咨询和定制化解决方案
</p>
<a href="https://cqqizhou.com/contacts/" class="inline-block bg-orange-500 hover:bg-orange-600 text-white font-bold py-4 px-12 rounded-full btn-hover text-lg">
立即咨询选材专家
</a>
</div>
</section>
<!-- 页脚 -->
<footer class="bg-blue-800 text-white py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<!-- 已删除返回顶部按钮 -->
</div>
<div class="mt-8 pt-4 border-t border-blue-700 text-center text-sm text-blue-300">
<p>版权所有Copyright ©<span id="currentYear"></span> 重庆启舟供应链管理有限公司</p>
</div>
</div>
</footer>
</div>
<script>document.getElementById('currentYear').textContent = new Date().getFullYear();</script>
<script>
const { createApp, ref, onMounted } = Vue;
createApp({
setup() {
const isScrolled = ref(false);
const mobileMenuOpen = ref(false);
const activeFAQ = ref([false, false, false]);
const currentYear = ref(new Date().getFullYear());
const navItems = [
{ id: 'home', text: '首页' },
{ id: 'process', text: '选材流程' },
{ id: 'parameters', text: '性能参数' },
{ id: 'cases', text: '应用案例' },
{ id: 'faq', text: '常见问题' },
{ id: 'contact', text: '联系我们' }
];
const toggleMobileMenu = () => {
mobileMenuOpen.value = !mobileMenuOpen.value;
};
const toggleFAQ = (index) => {
activeFAQ.value[index] = !activeFAQ.value[index];
};
const scrollToSection = (id) => {
const element = document.getElementById(id);
if (element) {
window.scrollTo({
top: element.offsetTop - 80,
behavior: 'smooth'
});
mobileMenuOpen.value = false;
}
};
const scrollToTop = () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
};
// 已删除scrollToTop方法定义
onMounted(() => {
window.addEventListener('scroll', () => {
isScrolled.value = window.scrollY > 50;
});
});
return {
isScrolled,
mobileMenuOpen,
activeFAQ,
currentYear,
navItems,
toggleMobileMenu,
toggleFAQ,
scrollToSection,
// 已移除scrollToTop引用
};
}
}).mount('#app');
</script>
</body>
</html>