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