فهرست منبع

feat(移动端首页): 添加技术架构说明区块

添加全景技术架构说明区块,包含标题和描述文本,展示产品技术层次与协同优势。
reaper 1 ماه پیش
والد
کامیت
868b21a730
2فایلهای تغییر یافته به همراه33 افزوده شده و 0 حذف شده
  1. 3 0
      app/components/mobile/home/Flowchart.vue
  2. 30 0
      app/pages/mobile/index.vue

+ 3 - 0
app/components/mobile/home/Flowchart.vue

@@ -0,0 +1,3 @@
+<template></template>
+<script setup></script>
+<style lang="scss" scoped></style>

+ 30 - 0
app/pages/mobile/index.vue

@@ -13,6 +13,10 @@
       </div>
     </section>
     <PlansSection class="mb-plans-section" />
+    <section class="mb-subtitle">
+      <h2>全景技术架构让技术成为增长引擎</h2>
+      <p>从基础设施、数据引擎、服务中台到业务应用,层层协同,将算力、数据与能力统一管理</p>
+    </section>
   </section>
 </template>
 
@@ -91,5 +95,31 @@ import PlansSection from '~/components/mobile/home/PlansSection.vue'
     margin-top: 18px;
     padding-bottom: 20px;
   }
+
+  .mb-subtitle {
+    margin-top: 32px;
+    display: flex;
+    flex-direction: column;
+    align-items: center;
+    gap: 12px;
+
+    h2 {
+      width: 216px;
+      color: #FFF;
+      text-align: center;
+      font-size: 24px;
+      font-weight: 400;
+      line-height: 36px;
+    }
+
+    p {
+      width: 322px;
+      color: rgba(255, 255, 255, 0.80);
+      text-align: center;
+      font-size: 12px;
+      font-weight: 400;
+      line-height: 16px;
+    }
+  }
 }
 </style>