banner.vue 367 B

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