37 lines
607 B
Vue
37 lines
607 B
Vue
|
<script setup>
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="container">
|
||
|
<div class="content1">
|
||
|
报名
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.container{
|
||
|
width: 375px;
|
||
|
background-image: url("@/assets/images/hb.png");
|
||
|
background-size: cover;
|
||
|
height: 812px;
|
||
|
position: relative;
|
||
|
.content1{
|
||
|
position: absolute;
|
||
|
left: 50%;
|
||
|
transform: translateX(-50%);
|
||
|
bottom: 85px;
|
||
|
width: 218px;
|
||
|
height: 30px;
|
||
|
border-radius: 15px;
|
||
|
background: #2159C4;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
color: #fff;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|