<template>
<div class="advertising flex-center">
广告位招租
</div>
</template>
<script>
export default {
name: "advertising"
}
</script>
<style>
#app .top {
display: none;
}
.advertising {
background: linear-gradient(359deg, #3dbf51 0%, #47d1a9 100%);
width: 100%;
height: 100%;
position: fixed;
font-size: 10rem;
font-weight: bold;
color: #ffffff;
line-height: 10rem;
}
</style>