123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div class="banner">
- <div class="container">
- <p>新闻中心</p>
- <span>NEWS INFORMATION</span>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'BannerView'
- }
- </script>
- <style scoped type="text/scss" lang="scss">
- .banner{
- margin-top:54px;
- margin-bottom:45px;
- background: url(/img/news/banner.jpg)no-repeat;
- height:430px;
- p{
- padding-top:170px;
- text-align: center;
- font-size: 48px;
- font-weight: bold;
- color:#fff;
- margin-bottom:45px;
- }
- span{
- display:block;
- border:1px solid #8c9ca2;
- width:280px;
- height:50px;
- line-height: 48px;
- text-align: center;
- margin: 0 auto;
- color:#fff;
- font-size: 20px;
- }
- }
- </style>
|