172 lines
3.8 KiB
Vue
172 lines
3.8 KiB
Vue
<template>
|
||
<div class="ai-solutions-page">
|
||
<ihead></ihead>
|
||
|
||
<!-- 页面横幅 -->
|
||
<div class="page-banner">
|
||
<div class="banner-content">
|
||
<div class="container">
|
||
<h1 class="banner-title">AI解决方案</h1>
|
||
<p class="banner-subtitle">智能驱动未来,AI赋能产业</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 主要内容 -->
|
||
<div class="main-content">
|
||
<div class="container">
|
||
<div class="content-section">
|
||
<h3 class="section-title">AI技术优势</h3>
|
||
<p class="section-text">
|
||
我们运用最前沿的人工智能技术,为企业提供智能化解决方案。通过机器学习、深度学习、自然语言处理等AI技术,帮助企业实现数字化转型,提升运营效率。
|
||
</p>
|
||
</div>
|
||
|
||
<div class="content-section">
|
||
<h3 class="section-title">核心AI服务</h3>
|
||
<div class="ai-services">
|
||
<div class="service-item">
|
||
<h4>智能数据分析</h4>
|
||
<p>利用AI算法分析海量数据,挖掘商业价值,为决策提供数据支撑。</p>
|
||
</div>
|
||
<div class="service-item">
|
||
<h4>智能客服系统</h4>
|
||
<p>基于NLP技术的智能客服,24/7全天候服务,提升客户体验。</p>
|
||
</div>
|
||
<div class="service-item">
|
||
<h4>预测性维护</h4>
|
||
<p>通过AI预测设备故障,实现预防性维护,降低维护成本。</p>
|
||
</div>
|
||
<div class="service-item">
|
||
<h4>智能图像识别</h4>
|
||
<p>计算机视觉技术,实现自动化检测、质量控制和安防监控。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="content-section">
|
||
<h3 class="section-title">应用场景</h3>
|
||
<p class="section-text">
|
||
AI解决方案广泛应用于制造业、金融、医疗、零售、物流等多个行业,帮助企业实现智能化升级,提升核心竞争力。
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<ifooter></ifooter>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import ihead from '@/components/ihead.vue'
|
||
import ifooter from '@/components/ifooter.vue'
|
||
|
||
export default {
|
||
name: 'aiSolutions',
|
||
components: {
|
||
ihead,
|
||
ifooter
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.ai-solutions-page {
|
||
min-height: 100vh;
|
||
background: #f8f9fa;
|
||
}
|
||
|
||
.page-banner {
|
||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
color: white;
|
||
padding: 80px 0;
|
||
text-align: center;
|
||
}
|
||
|
||
.banner-title {
|
||
font-size: 3rem;
|
||
font-weight: bold;
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
.banner-subtitle {
|
||
font-size: 1.2rem;
|
||
opacity: 0.9;
|
||
}
|
||
|
||
.main-content {
|
||
padding: 60px 0;
|
||
}
|
||
|
||
.container {
|
||
max-width: 1200px;
|
||
margin: 0 auto;
|
||
padding: 0 20px;
|
||
}
|
||
|
||
.content-section {
|
||
margin-bottom: 60px;
|
||
}
|
||
|
||
.section-title {
|
||
font-size: 2rem;
|
||
color: #2c3e50;
|
||
margin-bottom: 1.5rem;
|
||
text-align: center;
|
||
}
|
||
|
||
.section-text {
|
||
font-size: 1.1rem;
|
||
line-height: 1.8;
|
||
color: #555;
|
||
text-align: center;
|
||
max-width: 800px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.ai-services {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||
gap: 30px;
|
||
margin-top: 40px;
|
||
}
|
||
|
||
.service-item {
|
||
background: white;
|
||
padding: 30px;
|
||
border-radius: 10px;
|
||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
||
text-align: center;
|
||
transition: transform 0.3s ease;
|
||
}
|
||
|
||
.service-item:hover {
|
||
transform: translateY(-5px);
|
||
}
|
||
|
||
.service-item h4 {
|
||
color: #3498db;
|
||
font-size: 1.3rem;
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
.service-item p {
|
||
color: #666;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.banner-title {
|
||
font-size: 2rem;
|
||
}
|
||
|
||
.banner-subtitle {
|
||
font-size: 1rem;
|
||
}
|
||
|
||
.ai-services {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
</style>
|