index.vue 722 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <el-row class="copyright">
  3. <span class="copyright__text">联系方式:0531-58236368</span>
  4. <span class="copyright__text">邮箱:zcyl@zcylian.com</span>
  5. <span class="copyright__text">Copyright© 招采云链(山东)信息服务有限公司版权所有|ICP备案证书号:鲁ICP备2021012978号</span>
  6. </el-row>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'Copyright'
  11. }
  12. </script>
  13. <style lang="scss">
  14. .copyright{
  15. margin-top: 57px;
  16. margin-bottom: 25px;
  17. text-align: center;
  18. }
  19. .copyright__text{
  20. margin-right: 25px;
  21. font-size: 14px;
  22. color: #999999;
  23. &:nth-last-child(1){
  24. margin-right: 0;
  25. }
  26. }
  27. </style>