footer.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <template>
  2. <div class="bottom-foot">
  3. <div class="foot-content">
  4. <div class="foot-content-in">
  5. <div class="foot-left">
  6. <h3>联系我们</h3>
  7. <div class="contact">
  8. <ul class="line">
  9. <li>
  10. <span><i class="iconfont icon-weixin1"></i>客服微信:</span>
  11. <span>fx66kefu</span>
  12. </li>
  13. <li>
  14. <span><i class="iconfont icon-hotphone"></i>热线电话:</span>
  15. <span>+86-173 5471 8363</span>
  16. </li>
  17. </ul>
  18. <ul class="line">
  19. <!-- <li>
  20. <span><i class="iconfont icon-weixin1"></i>微信咨询:</span>
  21. <span>公众号在线客服</span>
  22. </li> -->
  23. <!-- <li>
  24. <span><i class="iconfont icon-tubiao01"></i>客服邮箱:</span>
  25. <span>support@licai.cn</span>
  26. </li> -->
  27. </ul>
  28. </div>
  29. <p>©2017杭州本链科技有限公司 All Rights Reserved <span>浙ICP备07503793</span><span>市场有风险&nbsp;投资需谨慎</span></p>
  30. </div>
  31. <div class="foot-right">
  32. <h3>手机应用</h3>
  33. <div>
  34. <div class="rightan">
  35. <img src="../assets/img/andriod.png" height="110" width="109" alt="">
  36. <p>安卓APP下载</p>
  37. </div>
  38. <div class="rightios">
  39. <img src="../assets/img/ios.png" height="107" width="107" alt="">
  40. <p>IOSAPP下载</p>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. </template>
  48. <style>
  49. .bottom-foot{
  50. height: 300px;
  51. background-color: #073571;
  52. color: #fff;
  53. .foot-content{
  54. text-align: left;
  55. width: 1200px;
  56. margin: 0 auto;
  57. &-in{
  58. width: 1200px;
  59. margin: 0 auto;
  60. padding-top: 46px;
  61. display: flex;
  62. justify-content: space-between;
  63. h3{
  64. font-size: 18px;
  65. font-weight: bold;
  66. line-height: 1;
  67. margin-bottom: 35px;
  68. }
  69. .foot-right{
  70. .rightios{
  71. float: right;
  72. margin: 2px 20px 0 0;
  73. p{
  74. text-align: center;
  75. }
  76. }
  77. .rightan{
  78. float: right;
  79. p{
  80. text-align: center;
  81. }
  82. }
  83. }
  84. .foot-left{
  85. p{
  86. font-size: 14px;
  87. margin-top: 30px;
  88. span{
  89. margin-left: 40px;
  90. }
  91. }
  92. }
  93. .contact{
  94. .line:first-child{
  95. margin-bottom: 20px;
  96. }
  97. .line{
  98. display: flex;
  99. font-size: 14px;
  100. li{
  101. width: 244px;
  102. }
  103. i{
  104. font-style: normal;
  105. margin-right: 10px;
  106. font-size: 18px;
  107. }
  108. }
  109. }
  110. }
  111. }
  112. }
  113. </style>