centLogo.vue
724 Bytes
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
31
32
33
34
35
36
37
38
39
<template>
<div class="statusTop">
<div class="
">
<img src="static\imgs\pc\personal-logo.svg" alt="">
</div>
<p>请认真填写申请信息,以便我们为您提供更好的服务!</p>
</div>
</template>
<script>
export default {
name: 'centLogo'
}
</script>
<style lang="scss" scoped>
.statusTop {
// width: 350px;
width: 500px;
margin: 50px auto 40px auto;
.topLogo {
text-align: center;
width: 100%;
height: 60px;
background: url("../assets/images/personal-bc.webp") no-repeat bottom center;
.img {
width: 211px;
height: 410px;
}
}
p {
color: #FFEBC4;
font-size: 14px;
margin-top: 20px;
text-align: center;
}
}
</style>