banner.vue 733 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <div class="banner">
  3. <div class="container">
  4. <p>新闻中心</p>
  5. <span>NEWS INFORMATION</span>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'BannerView'
  12. }
  13. </script>
  14. <style scoped type="text/scss" lang="scss">
  15. .banner{
  16. margin-top:54px;
  17. margin-bottom:45px;
  18. background: url(/img/news/banner.jpg)no-repeat;
  19. height:430px;
  20. p{
  21. padding-top:170px;
  22. text-align: center;
  23. font-size: 48px;
  24. font-weight: bold;
  25. color:#fff;
  26. margin-bottom:45px;
  27. }
  28. span{
  29. display:block;
  30. border:1px solid #8c9ca2;
  31. width:280px;
  32. height:50px;
  33. line-height: 48px;
  34. text-align: center;
  35. margin: 0 auto;
  36. color:#fff;
  37. font-size: 20px;
  38. }
  39. }
  40. </style>