You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
974 B
49 lines
974 B
<template>
|
|
<div class="recommend-container">
|
|
<div class="content">
|
|
<button class="start-btn">开始填写</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'RecommendIndex'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.recommend-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: calc(100vh - 60px);
|
|
background-image: url('../../assets/pictures/recommendbg.png');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.content {
|
|
text-align: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
.start-btn {
|
|
background-color: #E5579B;
|
|
color: white;
|
|
border: none;
|
|
padding: 12px 40px;
|
|
font-size: 18px;
|
|
border-radius: 25px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.start-btn:hover {
|
|
transform: scale(1.05);
|
|
background-color: #d94b8b;
|
|
}
|
|
</style> |