banner.vue 426 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="banner">
  3. <div class="container">
  4. <p>园区介绍</p>
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'BannerView'
  11. }
  12. </script>
  13. <style scoped type="text/scss" lang="scss">
  14. .banner{
  15. margin-top:54px;
  16. background: url(/img/banner/9.png)no-repeat;
  17. height:650px;
  18. p{
  19. padding-top:294px;
  20. text-align: center;
  21. font-size: 48px;
  22. color:#fff;
  23. }
  24. }
  25. </style>