Files
official_network/src/views/ourPlan/aiSolutions.vue
张成 3f43eb15ca 1
2025-08-25 13:35:07 +08:00

172 lines
3.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>