公司官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

817 lines
34 KiB

1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
  1. <script setup>
  2. import { ref, onMounted, computed } from 'vue';
  3. import { useRoute, useRouter } from 'vue-router';
  4. import PageHeader from '../../components/PageHeader.vue';
  5. import CaseItem from '../../components/cases/CaseItem.vue';
  6. import { useConfigStore } from '@/stores/config'
  7. const { configParams } = useConfigStore()
  8. // 路由实例
  9. const route = useRoute();
  10. const router = useRouter();
  11. // 获取案例ID
  12. const caseId = computed(() => Number(route.params.id));
  13. // 案例数据 (实际项目中可能从API获取)
  14. const casesList = ref([
  15. {
  16. id: 1,
  17. title: '企业资源管理系统',
  18. description: '为某制造企业开发的一套完整ERP系统,实现了生产、销售、库存等全流程管理',
  19. image: 'https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  20. category: '企业系统',
  21. client: '某制造业集团',
  22. completionDate: '2023年6月',
  23. services: ['系统架构设计', '数据库优化', '前端开发', '后端开发', '系统集成'],
  24. challenge: '客户面临的主要挑战是多个业务系统之间数据孤岛问题,导致信息流通不畅,管理效率低下。同时,随着业务规模扩大,原有系统已无法满足日益增长的业务需求。',
  25. solution: '我们为客户设计并实现了一套全面的企业资源管理系统,整合了生产、销售、采购、库存、财务等多个模块。系统采用微服务架构,确保了各模块之间的松耦合与高内聚,同时保证了系统的可扩展性和稳定性。我们还为客户定制了数据分析和决策支持功能,帮助管理层快速获取业务洞察。',
  26. results: '系统上线后,客户的运营效率提升了35%,信息处理时间缩短了60%,库存周转率提高了25%,大幅降低了运营成本。同时,实时的数据分析功能帮助客户更快速地响应市场变化,提升了企业的竞争力。',
  27. testimonial: '微隐软件工作室的团队展现了卓越的专业能力和服务态度。他们不仅理解我们的业务需求,还能提供创新的技术解决方案。新系统极大地提升了我们的运营效率,是我们数字化转型的重要一步。',
  28. testimonialAuthor: '张总 - 客户CIO',
  29. gallery: [
  30. 'https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  31. 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  32. 'https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'
  33. ],
  34. galleryContent: `
  35. <div class="project-showcase">
  36. <h3>系统架构概览</h3>
  37. <p>本项目采用了先进的微服务架构通过模块化设计实现了高可用性和可扩展性系统的核心组件包括</p>
  38. <ul>
  39. <li><strong>前端框架</strong>基于Vue.js构建的响应式界面支持多端适配</li>
  40. <li><strong>后端服务</strong>使用Spring Cloud微服务架构确保高可用性</li>
  41. <li><strong>数据存储</strong>结合MySQL和MongoDB的混合存储策略</li>
  42. <li><strong>消息队列</strong>采用Kafka实现系统间的异步通信</li>
  43. <li><strong>缓存层</strong>使用Redis优化查询性能和降低数据库压力</li>
  44. </ul>
  45. <div class="image-showcase">
  46. <img src="https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="系统架构图" />
  47. <p class="image-caption">系统整体架构示意图</p>
  48. </div>
  49. <h3>核心功能模块</h3>
  50. <p>系统包含多个紧密集成的功能模块覆盖企业运营的各个方面</p>
  51. <div class="feature-grid">
  52. <div class="feature-item">
  53. <h4>生产管理</h4>
  54. <p>实现从生产计划到执行的全流程管理支持生产排程物料需求计划生产进度跟踪等功能</p>
  55. </div>
  56. <div class="feature-item">
  57. <h4>库存管理</h4>
  58. <p>提供实时库存监控自动补货批次管理库位管理等功能优化库存水平并降低管理成本</p>
  59. </div>
  60. <div class="feature-item">
  61. <h4>销售管理</h4>
  62. <p>涵盖从询价报价到订单履行的完整销售流程支持多渠道销售和客户关系管理</p>
  63. </div>
  64. <div class="feature-item">
  65. <h4>财务管理</h4>
  66. <p>提供应收应付成本核算财务报表等功能实现财务数据与业务数据的无缝集成</p>
  67. </div>
  68. </div>
  69. <div class="image-showcase">
  70. <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="系统界面示例" />
  71. <p class="image-caption">系统主控制台界面</p>
  72. </div>
  73. <h3>数据可视化与分析</h3>
  74. <p>系统内置强大的数据分析和可视化功能帮助管理层快速洞察业务状况并做出决策</p>
  75. <ul>
  76. <li>多维度的销售分析报表支持按产品客户区域等维度分析</li>
  77. <li>生产效率和成本分析识别生产瓶颈和优化机会</li>
  78. <li>库存优化建议基于历史数据和预测算法</li>
  79. <li>财务绩效仪表盘展示关键财务指标和趋势</li>
  80. </ul>
  81. <div class="image-showcase">
  82. <img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="数据分析界面" />
  83. <p class="image-caption">系统数据分析仪表盘</p>
  84. </div>
  85. <h3>实施成果</h3>
  86. <p>该系统的成功实施为客户带来了显著的业务价值和竞争优势</p>
  87. <div class="results-grid">
  88. <div class="result-item">
  89. <div class="result-value">35%</div>
  90. <div class="result-label">运营效率提升</div>
  91. </div>
  92. <div class="result-item">
  93. <div class="result-value">60%</div>
  94. <div class="result-label">信息处理时间缩短</div>
  95. </div>
  96. <div class="result-item">
  97. <div class="result-value">25%</div>
  98. <div class="result-label">库存周转率提高</div>
  99. </div>
  100. <div class="result-item">
  101. <div class="result-value">40%</div>
  102. <div class="result-label">决策效率提升</div>
  103. </div>
  104. </div>
  105. <p class="conclusion">通过该系统的实施客户实现了业务流程的标准化和数字化为未来的智能制造转型奠定了坚实基础</p>
  106. </div>
  107. `
  108. },
  109. {
  110. id: 2,
  111. title: '电商平台重构',
  112. description: '帮助某电商企业重构其线上平台,提升用户体验和系统性能,实现销售额提升30%',
  113. image: 'https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  114. category: 'Web应用',
  115. client: '某知名电商企业',
  116. completionDate: '2023年9月',
  117. services: ['用户体验设计', '前端重构', '后端优化', '性能调优', '安全加固'],
  118. challenge: '客户的电商平台面临用户体验不佳、系统响应缓慢、移动端适配不足等问题,导致用户流失和转化率下降。同时,随着业务量增长,系统稳定性也面临挑战。',
  119. solution: '我们对客户的电商平台进行了全面重构,采用了现代化的前端框架和响应式设计,优化了用户界面和交互流程。在后端,我们重构了核心服务,引入了微服务架构和缓存机制,提升了系统性能和可扩展性。同时,我们还加强了系统的安全性,实现了全面的HTTPS和数据加密。',
  120. results: '重构后的平台页面加载速度提升了65%,用户停留时间增加了40%,转化率提高了25%,最终带来了30%的销售额增长。系统的稳定性也得到了显著提升,即使在促销高峰期也能保持良好的性能。',
  121. testimonial: '微隐软件工作室的团队展现了卓越的技术实力和创新思维。他们不仅解决了我们平台的技术问题,还从用户体验和业务角度提供了宝贵建议。重构后的平台获得了用户的一致好评,为我们带来了实质性的业务增长。',
  122. testimonialAuthor: '李总 - 客户产品总监',
  123. gallery: [
  124. 'https://images.unsplash.com/photo-1556740758-90de374c12ad?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  125. 'https://images.unsplash.com/photo-1556740772-1a741d976155?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  126. 'https://images.unsplash.com/photo-1556761175-129418cb2dfe?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'
  127. ]
  128. },
  129. {
  130. id: 3,
  131. title: '医疗服务APP',
  132. description: '为连锁医疗机构开发的患者服务APP,实现在线挂号、问诊和健康管理等功能',
  133. image: 'https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  134. category: '移动应用',
  135. client: '某连锁医疗机构',
  136. completionDate: '2023年12月',
  137. services: ['移动应用开发', 'UI/UX设计', '后端API开发', '数据安全', '系统集成'],
  138. challenge: '客户希望通过数字化手段提升患者服务体验,减少排队等待时间,同时提高医疗资源利用效率。传统的线下预约和就诊流程繁琐,患者满意度不高。',
  139. solution: '我们为客户开发了一款功能全面的医疗服务APP,支持在线挂号、远程问诊、检查报告查询、健康档案管理等功能。APP采用了直观的用户界面和流畅的交互设计,确保各年龄段用户都能轻松使用。在技术层面,我们实现了与医院HIS系统的无缝集成,并采用了严格的数据加密和隐私保护措施。',
  140. results: 'APP上线后,患者预约效率提升了80%,平均等待时间减少了65%,患者满意度提高了45%。同时,医生的工作效率也得到了提升,资源利用率增加了30%。APP已成为客户数字化医疗服务的核心平台。',
  141. testimonial: '微隐软件工作室深入理解了医疗行业的特殊需求,为我们打造了一款既专业又易用的医疗服务APP。他们在确保数据安全和系统稳定性方面表现出色,为我们的患者提供了便捷、高效的服务体验。',
  142. testimonialAuthor: '王院长 - 客户医疗总监',
  143. gallery: [
  144. 'https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  145. 'https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  146. 'https://images.unsplash.com/photo-1583324113626-70df0f4deaab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'
  147. ]
  148. },
  149. {
  150. id: 4,
  151. title: '金融数据可视化平台',
  152. description: '为金融机构开发的数据分析和可视化平台,帮助决策者快速洞察市场趋势',
  153. image: 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  154. category: 'Web应用',
  155. client: '某投资管理公司',
  156. completionDate: '2024年2月',
  157. services: ['数据分析', '可视化设计', '前端开发', 'API集成', '实时数据处理'],
  158. challenge: '客户需要一个能够整合多源金融数据,并提供直观、实时的可视化分析工具,帮助投资分析师和决策者快速识别市场趋势和投资机会。',
  159. solution: '我们为客户开发了一个功能强大的金融数据可视化平台,整合了市场数据、公司财报、宏观经济指标等多种数据源。平台提供了丰富的图表类型和分析工具,支持自定义仪表盘和报告。我们采用了高性能的前端渲染技术和实时数据处理架构,确保了大数据量下的流畅体验。',
  160. results: '平台上线后,客户的数据分析效率提升了70%,决策周期缩短了50%,投资组合表现超过了基准指数15%。平台的预测模型准确率达到了85%,为客户提供了显著的竞争优势。',
  161. testimonial: '微隐软件工作室交付的数据可视化平台超出了我们的预期。他们不仅具备出色的技术能力,还展现了对金融行业的深刻理解。平台直观的界面和强大的分析功能极大地提升了我们的决策效率和准确性。',
  162. testimonialAuthor: '赵总 - 客户投资总监',
  163. gallery: [
  164. 'https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  165. 'https://images.unsplash.com/photo-1590283603385-17ffb3a7f29f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  166. 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'
  167. ]
  168. },
  169. {
  170. id: 5,
  171. title: '智慧校园系统',
  172. description: '为教育机构打造的一体化校园管理系统,涵盖教学、行政、学生服务等多个模块',
  173. image: 'https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  174. category: '企业系统',
  175. client: '某知名高校',
  176. completionDate: '2023年8月',
  177. services: ['系统规划', '软件开发', '数据迁移', '用户培训', '持续支持'],
  178. challenge: '客户面临的挑战是多个独立系统并行运行,数据不一致,管理效率低下。学生和教职工需要在多个系统间切换,用户体验不佳。',
  179. solution: '我们为客户设计并实现了一套集成化的智慧校园系统,整合了教务管理、学生服务、行政办公、资源管理等多个模块。系统采用了统一的用户界面和数据标准,实现了单点登录和数据共享。我们还开发了移动端应用,方便师生随时随地访问系统功能。',
  180. results: '系统上线后,管理效率提升了50%,数据处理错误减少了80%,用户满意度提高了60%。系统的自助服务功能减轻了行政人员的工作负担,让他们能够专注于更有价值的任务。',
  181. testimonial: '微隐软件工作室的团队展现了卓越的项目管理和技术能力。他们深入理解了我们复杂的业务需求,并提供了一套既全面又易用的解决方案。新系统极大地改善了我们的管理效率和服务质量。',
  182. testimonialAuthor: '陈校长 - 客户负责人',
  183. gallery: [
  184. 'https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  185. 'https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  186. 'https://images.unsplash.com/photo-1577896851231-70ef18881754?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'
  187. ]
  188. },
  189. {
  190. id: 6,
  191. title: '品牌官网设计',
  192. description: '为高端品牌设计的响应式官方网站,展现品牌形象并提升用户转化率',
  193. image: 'https://images.unsplash.com/photo-1561070791-2526d30994b5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  194. category: 'UI/UX设计',
  195. client: '某高端消费品牌',
  196. completionDate: '2024年1月',
  197. services: ['品牌策略', 'UI/UX设计', '前端开发', 'CMS实现', 'SEO优化'],
  198. challenge: '客户的原有网站设计过时,无法有效展现品牌高端形象,且缺乏移动端适配,导致用户体验不佳和转化率低下。',
  199. solution: '我们为客户重新设计了品牌官网,采用了现代简约的设计风格,突出品牌的高端定位。网站采用了响应式设计,确保在各种设备上都能提供出色的用户体验。我们还优化了产品展示和购买流程,降低了用户转化的摩擦。在技术层面,我们实现了高性能的前端架构和易用的内容管理系统。',
  200. results: '新网站上线后,用户停留时间增加了45%,页面跳出率降低了30%,转化率提升了35%。网站的加载速度提高了60%,搜索引擎排名也有显著提升。客户的品牌形象得到了有效提升,线上销售额增长了40%。',
  201. testimonial: '微隐软件工作室的设计团队展现了卓越的创意和专业能力。他们不仅理解我们的品牌价值,还能将其完美地转化为视觉设计。新网站获得了客户和合作伙伴的一致好评,成为了我们品牌传播的重要窗口。',
  202. testimonialAuthor: '林总 - 客户市场总监',
  203. gallery: [
  204. 'https://images.unsplash.com/photo-1542744094-3a31f272c490?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  205. 'https://images.unsplash.com/photo-1542744173-8659239e9452?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80',
  206. 'https://images.unsplash.com/photo-1542744173-05336fcc7ad4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'
  207. ]
  208. }
  209. ]);
  210. // 当前案例
  211. const currentCase = computed(() => {
  212. return casesList.value[0] || null;
  213. });
  214. // 相关案例
  215. const relatedCases = computed(() => {
  216. if (!currentCase.value) return [];
  217. return casesList.value
  218. .filter(item =>
  219. item.id !== currentCase.value.id &&
  220. item.category === currentCase.value.category
  221. )
  222. .slice(0, 3);
  223. });
  224. // 返回案例列表
  225. const goBackToList = () => {
  226. router.push('/cases');
  227. };
  228. // 查看相关案例
  229. const viewRelatedCase = (id) => {
  230. router.push(`/cases/${id}`);
  231. };
  232. onMounted(() => {
  233. // 如果案例不存在,返回列表页
  234. if (!currentCase.value) {
  235. router.push('/cases');
  236. }
  237. // 滚动到顶部
  238. window.scrollTo({
  239. top: 0,
  240. behavior: 'smooth'
  241. });
  242. });
  243. </script>
  244. <template>
  245. <div v-if="currentCase" class="case-detail-page">
  246. <!-- 页面头部 -->
  247. <PageHeader :title="currentCase.title" :subtitle="currentCase.description" :backgroundImage="currentCase.image"
  248. height="70vh">
  249. <template #header-cta>
  250. <div class="header-cta" data-aos="fade-up" data-aos-delay="400">
  251. <button @click="goBackToList" class="btn-outline">
  252. <i class="fas fa-arrow-left"></i> 返回案例列表
  253. </button>
  254. </div>
  255. </template>
  256. </PageHeader>
  257. <!-- 案例概览 -->
  258. <section class="case-overview">
  259. <div class="container">
  260. <div class="overview-grid">
  261. <div class="overview-item" data-aos="fade-up">
  262. <h4>客户</h4>
  263. <p>{{ currentCase.client }}</p>
  264. </div>
  265. <div class="overview-item" data-aos="fade-up" data-aos-delay="100">
  266. <h4>类别</h4>
  267. <p>{{ currentCase.category }}</p>
  268. </div>
  269. <div class="overview-item" data-aos="fade-up" data-aos-delay="200">
  270. <h4>完成时间</h4>
  271. <p>{{ currentCase.completionDate }}</p>
  272. </div>
  273. <!-- <div class="overview-item" data-aos="fade-up" data-aos-delay="300">
  274. <h4>UI设计图</h4>
  275. <p><a href="https://www.figma.com/design/1234567890/1234567890?node-id=1234567890-1234567890" target="_blank">点击查看</a></p>
  276. </div> -->
  277. <!-- <div class="overview-item services" data-aos="fade-up" data-aos-delay="300">
  278. <h4>服务内容</h4>
  279. <div class="services-list">
  280. <span v-for="(service, index) in currentCase.services" :key="index" class="service-tag">
  281. {{ service }}
  282. </span>
  283. </div>
  284. </div> -->
  285. </div>
  286. </div>
  287. </section>
  288. <!-- 案例详情 -->
  289. <section class="case-content">
  290. <div class="container">
  291. <div class="content-grid">
  292. <div class="content-main">
  293. <div class="content-section" data-aos="fade-up">
  294. <h3>项目挑战</h3>
  295. <p>{{ currentCase.challenge }}</p>
  296. </div>
  297. <div class="content-section" data-aos="fade-up">
  298. <h3>解决方案</h3>
  299. <p>{{ currentCase.solution }}</p>
  300. </div>
  301. <div class="content-section" data-aos="fade-up">
  302. <h3>项目成果</h3>
  303. <p>{{ currentCase.results }}</p>
  304. </div>
  305. </div>
  306. <div class="content-sidebar">
  307. <div class="testimonial" data-aos="fade-left">
  308. <div class="quote-icon">
  309. <i class="fas fa-quote-left"></i>
  310. </div>
  311. <blockquote>
  312. {{ currentCase.testimonial }}
  313. </blockquote>
  314. <div class="testimonial-author-wrapper">
  315. <div class="testimonial-avatar">
  316. <i class="fas fa-user"></i>
  317. </div>
  318. <div class="testimonial-author">
  319. {{ currentCase.testimonialAuthor }}
  320. </div>
  321. </div>
  322. </div>
  323. </div>
  324. </div>
  325. </div>
  326. </section>
  327. <!-- 项目图库 -->
  328. <section class="case-gallery">
  329. <div class="container">
  330. <h2 class="section-title" data-aos="fade-up">项目展示</h2>
  331. <!-- 如果有富文本内容则显示富文本 -->
  332. <div class="rich-text-content" v-if="currentCase.galleryContent" data-aos="fade-up" v-html="currentCase.galleryContent"></div>
  333. <!-- 如果没有富文本内容则显示原有图库 -->
  334. <div class="gallery-grid" v-else>
  335. <div v-for="(image, index) in currentCase.gallery" :key="index" class="gallery-item"
  336. data-aos="fade-up" :data-aos-delay="index * 100">
  337. <img :src="image" :alt="`${currentCase.title} - 图片 ${index + 1}`">
  338. </div>
  339. </div>
  340. </div>
  341. </section>
  342. <!-- 相关案例 -->
  343. <section class="related-cases" v-if="relatedCases.length > 0">
  344. <div class="container">
  345. <h2 class="section-title" data-aos="fade-up">相关案例</h2>
  346. <div class="related-grid">
  347. <CaseItem
  348. v-for="caseItem in relatedCases"
  349. :key="caseItem.id"
  350. :item="caseItem"
  351. :showCategory="true"
  352. buttonType="button"
  353. @view-details="viewRelatedCase"
  354. />
  355. </div>
  356. </div>
  357. </section>
  358. <!-- CTA部分 -->
  359. <section class="cta-section" data-aos="fade-up">
  360. <div class="container">
  361. <div class="cta-content">
  362. <div class="cta-icon" data-aos="zoom-in" data-aos-delay="200">
  363. <i class="fas fa-lightbulb"></i>
  364. </div>
  365. <h2 data-aos="fade-up" data-aos-delay="300">有类似的项目需求</h2>
  366. <p data-aos="fade-up" data-aos-delay="400">我们的团队随时准备为您提供专业的技术支持和服务</p>
  367. <div class="cta-buttons" data-aos="fade-up" data-aos-delay="500">
  368. <a href="/contact" class="btn-primary">立即咨询 <i class="fas fa-arrow-right"></i></a>
  369. <button @click="goBackToList" class="btn-outline">浏览更多案例</button>
  370. </div>
  371. </div>
  372. </div>
  373. </section>
  374. </div>
  375. </template>
  376. <style lang="scss" scoped>
  377. /* 导入全局SCSS变量 */
  378. @use '../../assets/scss/main.scss' as *;
  379. @use "sass:color";
  380. /* 页面头部样式 */
  381. .header-cta {
  382. display: flex;
  383. justify-content: center;
  384. margin-top: 30px;
  385. }
  386. .btn-outline {
  387. display: inline-flex;
  388. align-items: center;
  389. gap: 8px;
  390. padding: 12px 25px;
  391. background: transparent;
  392. color: white;
  393. border: 2px solid white;
  394. border-radius: 30px;
  395. font-weight: 500;
  396. text-decoration: none;
  397. transition: all 0.3s ease;
  398. cursor: pointer;
  399. &:hover {
  400. background: rgba(255, 255, 255, 0.1);
  401. transform: translateY(-3px);
  402. }
  403. }
  404. /* 案例概览样式 */
  405. .case-overview {
  406. padding: 60px 0;
  407. background-color: $light-bg;
  408. }
  409. .overview-grid {
  410. display: grid;
  411. grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  412. gap: 30px;
  413. }
  414. .overview-item {
  415. h4 {
  416. font-size: 1.1rem;
  417. color: $text-color;
  418. margin-bottom: 10px;
  419. font-weight: 600;
  420. }
  421. p {
  422. color: $text-light;
  423. font-size: 1rem;
  424. }
  425. &.services {
  426. grid-column: 1 / -1;
  427. }
  428. }
  429. .services-list {
  430. display: flex;
  431. flex-wrap: wrap;
  432. gap: 10px;
  433. }
  434. .service-tag {
  435. display: inline-block;
  436. padding: 6px 15px;
  437. background: white;
  438. border-radius: 20px;
  439. font-size: 0.9rem;
  440. color: $text-color;
  441. box-shadow: $shadow-sm;
  442. }
  443. /* 案例内容样式 */
  444. .case-content {
  445. padding: 80px 0;
  446. background-color: white;
  447. }
  448. .content-grid {
  449. display: grid;
  450. grid-template-columns: 2fr 1fr;
  451. gap: 50px;
  452. @media (max-width: 768px) {
  453. grid-template-columns: 1fr;
  454. }
  455. }
  456. .content-section {
  457. margin-bottom: 40px;
  458. h3 {
  459. font-size: 1.8rem;
  460. color: $text-color;
  461. margin-bottom: 20px;
  462. position: relative;
  463. padding-bottom: 15px;
  464. &:after {
  465. content: '';
  466. position: absolute;
  467. bottom: 0;
  468. left: 0;
  469. width: 60px;
  470. height: 3px;
  471. background: $primary-color;
  472. }
  473. }
  474. p {
  475. color: $text-light;
  476. line-height: 1.8;
  477. font-size: 1.05rem;
  478. }
  479. }
  480. .testimonial {
  481. background: white;
  482. padding: 40px 30px 30px;
  483. border-radius: 12px;
  484. position: relative;
  485. box-shadow: $shadow-lg;
  486. border-left: 4px solid $primary-color;
  487. transition: transform 0.3s ease, box-shadow 0.3s ease;
  488. margin-top: 25px;
  489. @media (max-width: 768px) {
  490. padding: 35px 25px 25px;
  491. margin-top: 40px;
  492. }
  493. &:hover {
  494. transform: translateY(-5px);
  495. box-shadow: $shadow-xl;
  496. }
  497. blockquote {
  498. font-style: italic;
  499. line-height: 1.8;
  500. font-size: 1.1rem;
  501. color: $text-color;
  502. margin: 0 0 20px 0;
  503. position: relative;
  504. z-index: 1;
  505. @media (max-width: 768px) {
  506. font-size: 1rem;
  507. }
  508. }
  509. &::before {
  510. content: '"';
  511. position: absolute;
  512. top: 10px;
  513. right: 20px;
  514. font-size: 120px;
  515. color: rgba($primary-color, 0.05);
  516. font-family: serif;
  517. line-height: 1;
  518. z-index: 0;
  519. @media (max-width: 768px) {
  520. font-size: 100px;
  521. top: 5px;
  522. right: 15px;
  523. }
  524. }
  525. .testimonial-author-wrapper {
  526. margin-top: 15px;
  527. padding-top: 15px;
  528. border-top: 1px solid rgba($text-light, 0.1);
  529. position: relative;
  530. z-index: 1;
  531. display: flex;
  532. align-items: center;
  533. }
  534. .testimonial-avatar {
  535. width: 40px;
  536. height: 40px;
  537. border-radius: 50%;
  538. background-color: rgba($primary-color, 0.1);
  539. display: flex;
  540. align-items: center;
  541. justify-content: center;
  542. margin-right: 12px;
  543. i {
  544. color: $primary-color;
  545. font-size: 1.2rem;
  546. }
  547. }
  548. .testimonial-author {
  549. font-weight: 600;
  550. color: $primary-color;
  551. font-size: 1rem;
  552. line-height: 1.4;
  553. }
  554. }
  555. .quote-icon {
  556. position: absolute;
  557. top: -20px;
  558. left: 20px;
  559. width: 40px;
  560. height: 40px;
  561. background: $primary-color;
  562. border-radius: 50%;
  563. display: flex;
  564. align-items: center;
  565. justify-content: center;
  566. box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  567. i {
  568. color: white;
  569. font-size: 1.2rem;
  570. }
  571. }
  572. /* 相关案例样式 */
  573. .related-cases {
  574. padding: 80px 0;
  575. background-color: $light-bg;
  576. }
  577. .related-grid {
  578. display: grid;
  579. grid-template-columns: repeat(3, 1fr);
  580. gap: 30px;
  581. margin-top: 40px;
  582. @media (max-width: 992px) {
  583. grid-template-columns: repeat(2, 1fr);
  584. }
  585. @media (max-width: 768px) {
  586. grid-template-columns: 1fr;
  587. }
  588. }
  589. .section-title {
  590. text-align: center;
  591. margin-bottom: 50px;
  592. font-size: 2.2rem;
  593. color: $text-color;
  594. position: relative;
  595. padding-bottom: 15px;
  596. &:after {
  597. content: '';
  598. position: absolute;
  599. bottom: 0;
  600. left: 50%;
  601. transform: translateX(-50%);
  602. width: 80px;
  603. height: 3px;
  604. background: $primary-color;
  605. }
  606. }
  607. /* CTA部分样式 */
  608. .cta-section {
  609. background: linear-gradient(135deg, $primary-color, $secondary-color);
  610. background-size: 200% 200%;
  611. color: white;
  612. padding: 80px 0;
  613. text-align: center;
  614. margin-top: 40px;
  615. position: relative;
  616. overflow: hidden;
  617. box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  618. animation: gradientBG 15s ease infinite;
  619. }
  620. @keyframes gradientBG {
  621. 0% {
  622. background-position: 0% 50%;
  623. }
  624. 50% {
  625. background-position: 100% 50%;
  626. }
  627. 100% {
  628. background-position: 0% 50%;
  629. }
  630. }
  631. .cta-section::before {
  632. content: '';
  633. position: absolute;
  634. top: 0;
  635. left: 0;
  636. width: 100%;
  637. height: 100%;
  638. background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,213.3C1248,235,1344,213,1392,202.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
  639. background-size: cover;
  640. background-position: center;
  641. opacity: 0.1;
  642. z-index: 0;
  643. }
  644. .cta-content {
  645. position: relative;
  646. z-index: 1;
  647. }
  648. .cta-icon {
  649. margin-bottom: 25px;
  650. i {
  651. font-size: 3.5rem;
  652. color: #fff;
  653. background: rgba(255, 255, 255, 0.1);
  654. width: 100px;
  655. height: 100px;
  656. line-height: 100px;
  657. border-radius: 50%;
  658. display: inline-block;
  659. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  660. transition: all 0.3s ease;
  661. &:hover {
  662. transform: translateY(-5px) scale(1.05);
  663. box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  664. background: rgba(255, 255, 255, 0.2);
  665. }
  666. }
  667. }
  668. .cta-content h2 {
  669. font-size: 2.5rem;
  670. margin-bottom: 20px;
  671. font-weight: 700;
  672. text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  673. color: #fff;
  674. }
  675. .cta-content p {
  676. font-size: 1.2rem;
  677. opacity: 0.9;
  678. max-width: 600px;
  679. margin: 0 auto 30px;
  680. line-height: 1.6;
  681. }
  682. .cta-buttons {
  683. display: flex;
  684. justify-content: center;
  685. gap: 20px;
  686. margin-top: 30px;
  687. @media (max-width: 576px) {
  688. flex-direction: column;
  689. align-items: center;
  690. }
  691. .btn-primary {
  692. padding: 14px 32px;
  693. font-size: 1.1rem;
  694. font-weight: 600;
  695. background-color: #fff;
  696. color: $primary-color;
  697. border: none;
  698. border-radius: 30px;
  699. box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  700. transition: all 0.3s ease;
  701. display: inline-flex;
  702. align-items: center;
  703. text-decoration: none;
  704. i {
  705. margin-left: 8px;
  706. transition: transform 0.3s ease;
  707. }
  708. &:hover {
  709. transform: translateY(-3px);
  710. box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  711. i {
  712. transform: translateX(5px);
  713. }
  714. }
  715. }
  716. .btn-outline {
  717. background: transparent;
  718. color: white;
  719. border: 2px solid rgba(255, 255, 255, 0.6);
  720. padding: 14px 32px;
  721. font-size: 1.1rem;
  722. font-weight: 600;
  723. border-radius: 30px;
  724. transition: all 0.3s ease;
  725. &:hover {
  726. background: rgba(255, 255, 255, 0.1);
  727. border-color: white;
  728. transform: translateY(-3px);
  729. }
  730. }
  731. }
  732. </style>