123456789101112131415161718192021222324252627 |
- <template>
- <div class="banner">
- <div class="container">
- <p>园区介绍</p>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'BannerView'
- }
- </script>
- <style scoped type="text/scss" lang="scss">
- .banner{
- margin-top:54px;
- background: url(/img/banner/9.png)no-repeat;
- height:650px;
- p{
- padding-top:294px;
- text-align: center;
- font-size: 48px;
- color:#fff;
- }
- }
- </style>
|