2025-03-01 22:18:18 +08:00
|
|
|
<script lang="ts" setup>
|
2025-03-10 21:28:27 +08:00
|
|
|
import WelcomeContent from '@/views/welcome/components/welcome-content/index.vue';
|
|
|
|
import WelcomeFooter from '@/views/welcome/components/welcome-footer.vue';
|
2025-03-01 22:18:18 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2025-03-05 13:57:51 +08:00
|
|
|
<div class="welcome">
|
|
|
|
<welcome-content />
|
|
|
|
<welcome-footer />
|
2025-03-01 22:18:18 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2025-03-11 23:21:59 +08:00
|
|
|
<style lang="scss">
|
2025-03-13 18:39:39 +08:00
|
|
|
.welcome {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: url('@/assets/images/welcome/bg/bg-particle.png') no-repeat center;
|
|
|
|
background-size: cover;
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-around;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
i {
|
|
|
|
color: var(--color-primary-secondary);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 239px;
|
|
|
|
height: 34px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-03-01 22:18:18 +08:00
|
|
|
</style>
|