1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div class="view-bottom">
- <div class="bqsy">版权所有:Copyright©2017-2037 版权所有 鄂州市红十字会</div>
- <div class="address">地址:湖北省鄂州市鄂城区滨湖南路60号7楼 浙ICP备17054590号-1</div>
- </div>
- </template>
- <script>
- </script>
- <style lang="scss" scoped>
- .view-bottom {
- // width: 1920px;
- height: 174px;
- margin: 0 auto;
- background: var(--m-color);
- font-size: 14px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- line-height: 1;
- div {
- width: 1202px;
- text-align: center;
- margin: 0 auto;
- }
- .bqsy {
- padding-top: 65px;
- margin-bottom: 16px;
- }
- }
- </style>
|