footer.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <template>
  2. <footer class="footer">
  3. <div class="container">
  4. <div class="footer-info">
  5. <div class="footer-left">
  6. <p>
  7. <a href="#">开放平台</a>
  8. <a href="#">法律条款</a>
  9. <a href="#">联系我们</a>
  10. <a href="#">关于我们</a>
  11. </p>
  12. <span>版权所有:深圳市优软科技有限公司 Copyright @ 2017 All Rights Reserved</span>
  13. </div>
  14. <div class="footer-right">
  15. <div class="r_text">
  16. <p>服务热线:</p>
  17. <span style="font-size: 24px;">0755-26994808</span>
  18. </div>
  19. <div class="r_app">
  20. <img src="/qrcode/uu.jpg">
  21. <p style="padding-top:15px;">APP 下载</p>
  22. </div>
  23. <div class="r_weixin">
  24. <img src="/qrcode/uas.jpg">
  25. <p style="padding-top:15px;">微信公众号</p>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. </footer>
  31. </template>
  32. <script>
  33. export default {
  34. name: 'FooterView'
  35. }
  36. </script>
  37. <style scoped>
  38. .footer{
  39. width:100%;
  40. background: #474443;
  41. padding-top:20px;
  42. }
  43. .container{
  44. padding:0;
  45. }
  46. .footer .footer-info{
  47. width:100%;
  48. height:153px;
  49. display: inline-flex;
  50. justify-content: space-between;
  51. align-items: center;
  52. padding-left:15px;
  53. padding-right:20px;
  54. }
  55. .footer .footer-info .footer-left{
  56. width:500px;
  57. color:#fff;
  58. }
  59. .footer .footer-info .footer-left p{
  60. margin-bottom:30px;
  61. }
  62. .footer .footer-info .footer-left p a{
  63. color:#fff;
  64. margin-right:25px;
  65. }
  66. .footer .footer-info .footer-left p a:hover{
  67. color:#5280e3;
  68. text-decoration: none;
  69. cursor:pointer;
  70. }
  71. .footer .footer-info .footer-left span{}
  72. .footer .footer-info .footer-right{
  73. width:450px;
  74. height: 153px;
  75. color:#fff;
  76. display: inline-flex;
  77. justify-content: flex-end;
  78. align-items: center;
  79. }
  80. .footer .footer-right .r_text{
  81. text-align: right;
  82. }
  83. .footer .footer-right .r_app{
  84. text-align: center;
  85. margin-left:50px;
  86. }
  87. .footer .footer-right .r_weixin{
  88. text-align: center;
  89. margin-left:40px;
  90. }
  91. </style>