gaoluyang
20 小时以前 91af6caf5a797bcc912e9a22656c97775bd4a198
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<template>
  <div class="splash-container">
        <span class="title">科技 便捷生活</span>
  </div>
</template>
 
<script setup>
// 无需逻辑
</script>
 
<style scoped>
.splash-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #E6F3FF 0%, #FFFFFF 100%);
}
.splash-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
}
.title {
    font-weight: 400;
    font-size: 48px;
    color: #000000;
}
</style>