2026-04-20 14:06:02 +08:00
|
|
|
<template>
|
2026-04-20 14:28:13 +08:00
|
|
|
<div class="home-index">
|
2026-04-20 17:04:57 +08:00
|
|
|
<section-index />
|
|
|
|
|
<section-designers />
|
|
|
|
|
<section-design />
|
|
|
|
|
<section-digital-items1 />
|
|
|
|
|
<section-digital-items2 />
|
|
|
|
|
<section-footer />
|
2026-04-20 14:28:13 +08:00
|
|
|
</div>
|
2026-04-20 14:06:02 +08:00
|
|
|
</template>
|
2026-04-20 14:14:31 +08:00
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { computed } from 'vue'
|
2026-04-20 17:04:57 +08:00
|
|
|
import SectionIndex from './section-index.vue'
|
|
|
|
|
import SectionDesigners from './section-designers.vue'
|
|
|
|
|
import SectionDesign from './section-design.vue'
|
|
|
|
|
import SectionDigitalItems1 from './section-digital-items1.vue'
|
|
|
|
|
import SectionDigitalItems2 from './section-digital-items2.vue'
|
|
|
|
|
import SectionFooter from './section-footer.vue'
|
2026-04-20 14:14:31 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less">
|
|
|
|
|
.home-index {
|
2026-04-20 14:28:13 +08:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
> section {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
2026-04-20 17:04:57 +08:00
|
|
|
> section.bgw {
|
|
|
|
|
position: relative;
|
2026-04-20 14:28:13 +08:00
|
|
|
> .bg {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: auto;
|
2026-04-20 17:04:57 +08:00
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
> .content {
|
|
|
|
|
position: absolute;
|
2026-04-20 14:28:13 +08:00
|
|
|
}
|
|
|
|
|
}
|
2026-04-20 14:02:55 +08:00
|
|
|
}
|
2026-04-20 14:14:31 +08:00
|
|
|
</style>
|