|
@@ -1,6 +1,8 @@
|
|
|
<template>
|
|
|
<div class="cover" :style="{ backgroundImage: `url(${require('@/assets/images/guide/bg.jpg')})` }">
|
|
|
- <div class="btn" @click="handleEnter">进入预案</div>
|
|
|
+ <div class="btn" :style="{ backgroundImage: `url(${require('@/assets/images/guide/btn.png')})` }"
|
|
|
+ @click="handleEnter"></div>
|
|
|
+ <img class="title" :src="require('@/assets/images/guide/title.png')">
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup>
|
|
@@ -21,14 +23,24 @@ const handleEnter = () => {
|
|
|
z-index: 100000;
|
|
|
background-size: cover;
|
|
|
|
|
|
+ .title {
|
|
|
+ position: absolute;
|
|
|
+ top: 60px;
|
|
|
+ right: 60px;
|
|
|
+ }
|
|
|
+
|
|
|
.btn {
|
|
|
- background-color: rgba($color: #000000, $alpha: 0.8);
|
|
|
+ // background-color: rgba($color: #000000, $alpha: 0.8);
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: contain;
|
|
|
color: white;
|
|
|
font-size: 20px;
|
|
|
display: inline-flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
- padding: 20px 40px;
|
|
|
+ width: 250px;
|
|
|
+ height: 60px;
|
|
|
+ background-position: center center;
|
|
|
border-radius: 10px;
|
|
|
cursor: pointer;
|
|
|
left: 50%;
|