30 lines
1.4 KiB
Plaintext
30 lines
1.4 KiB
Plaintext
<template>
|
|
<view class="splash page-white" @click="enter">
|
|
<view class="splash-status"></view>
|
|
<view class="brand-area">
|
|
<BrandLogo />
|
|
<text class="tagline">智能评估 · 精准匹配</text>
|
|
<text class="slogan">让融资更简单</text>
|
|
</view>
|
|
<image class="splash-art" src="/static/images/shield.png" mode="aspectFit"></image>
|
|
<view class="launch-line"><view class="launch-dot"></view><text>开启智能融资新体验</text></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
import BrandLogo from '@/components/BrandLogo.uvue'
|
|
const enter = () => { uni.redirectTo({ url: '/pages/login/login' }) }
|
|
setTimeout(() => enter(), 1800)
|
|
</script>
|
|
|
|
<style>
|
|
.splash { min-height: 100vh; align-items: center; position: relative; overflow: hidden; }
|
|
.splash-status { height: var(--status-bar-height); }
|
|
.brand-area { align-items: center; margin-top: 220rpx; }
|
|
.tagline { margin-top: 18rpx; color: #32405a; font-size: 28rpx; font-weight: 600; }
|
|
.slogan { margin-top: 42rpx; color: #102557; font-size: 33rpx; font-weight: 800; }
|
|
.splash-art { width: 550rpx; height: 420rpx; margin-top: 35rpx; }
|
|
.launch-line { position: absolute; bottom: 82rpx; flex-direction: row; align-items: center; color: #9aa7ba; font-size: 22rpx; }
|
|
.launch-dot { width: 9rpx; height: 9rpx; border-radius: 50%; background-color: #2d8cff; margin-right: 12rpx; box-shadow: 0 0 18rpx rgba(45, 140, 255, .7); }
|
|
</style>
|