| 123456789101112131415161718192021222324252627 |
- <!--
- * @Author: LiZhiWei
- * @LastEditors: LiZhiWei
- * @LastEditTime: 2026-01-20 14:42:51
- * @Description:
- -->
- <template>
- <div class="landing">
- <section-hero />
- <section-solution />
- <section-ability />
- <section-cases />
- <section-partnership />
- <section-history />
- <section-cta />
- </div>
- </template>
- <script setup lang="ts"></script>
- <style scoped lang="scss">
- .landing {
- @apply lt-sm:pt-120px;
- color: var(--hj-text);
- background: var(--hj-bg);
- }
- </style>
|