footer.vue 664 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <div class="f-layout">
  3. <div>
  4. <span>{{footer.phoneK}}</span>
  5. <span>{{footer.phoneV}}</span>
  6. </div>
  7. <div>{{footer.copyRight}}</div>
  8. <a href="http://www.beian.miit.gov.cn">{{footer.banben}}</a>
  9. </div>
  10. </template>
  11. <script>
  12. import cn from '@/util/text/cn.js'
  13. let {footer} = cn
  14. export default {
  15. data () {
  16. return {
  17. footer
  18. }
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. .f-layout{
  24. text-align: center;
  25. width: 80%;
  26. margin: 0 auto;
  27. line-height: 2.5;
  28. border-top: 1px solid #ccc;
  29. padding: 60px 0;
  30. }
  31. .f-layout a{
  32. color: #000;
  33. }
  34. @media screen and (max-width: 380px) {
  35. .f-layout{
  36. font-size: 14px;
  37. }
  38. }
  39. </style>