PageBottom.vue 665 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div class="view-bottom">
  3. <div class="bqsy">版权所有:Copyright©2017-2037  版权所有 鄂州市红十字会</div>
  4. <div class="address">地址:湖北省鄂州市鄂城区滨湖南路60号7楼 浙ICP备17054590号-1</div>
  5. </div>
  6. </template>
  7. <script>
  8. </script>
  9. <style lang="scss" scoped>
  10. .view-bottom {
  11. // width: 1920px;
  12. height: 174px;
  13. margin: 0 auto;
  14. background: var(--m-color);
  15. font-size: 14px;
  16. font-family: PingFang SC;
  17. font-weight: bold;
  18. color: #FFFFFF;
  19. line-height: 1;
  20. div {
  21. width: 1202px;
  22. text-align: center;
  23. margin: 0 auto;
  24. }
  25. .bqsy {
  26. padding-top: 65px;
  27. margin-bottom: 16px;
  28. }
  29. }
  30. </style>