index.vue 505 B

123456789101112131415161718192021222324252627
  1. <!--
  2. * @Author: LiZhiWei
  3. * @LastEditors: LiZhiWei
  4. * @LastEditTime: 2026-01-20 14:42:51
  5. * @Description:
  6. -->
  7. <template>
  8. <div class="landing">
  9. <section-hero />
  10. <section-solution />
  11. <section-ability />
  12. <section-cases />
  13. <section-partnership />
  14. <section-history />
  15. <section-cta />
  16. </div>
  17. </template>
  18. <script setup lang="ts"></script>
  19. <style scoped lang="scss">
  20. .landing {
  21. @apply lt-sm:pt-120px;
  22. color: var(--hj-text);
  23. background: var(--hj-bg);
  24. }
  25. </style>