1234567891011121314151617181920212223 |
- <template>
- <!-- 第一个广告位 -->
- <div id="banner1">
- <div class="inner">
- <img src="../../static/image/banner1.png" alt="">
- </div>
- </div>
- </template>
- <script>
- </script>
- <style lang="less" scoped>
- #banner1 {
- width: 100%;
- height: 90px;
- margin: 40px 0 40px;
- img{
- width: 1200px;
- height: 90px;
- }
- }
- </style>
|