footer.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <template>
  2. <div class="footer">
  3. <div class="top">
  4. <div>
  5. <h4>联系我们</h4>
  6. <span>CONTACT US</span>
  7. </div>
  8. <div class="tit1">
  9. <div class="weixin">
  10. <img :src="img1" alt="微信二维码">
  11. <p>官方微信</p>
  12. </div>
  13. <div class="contact">
  14. <p class="text-muted">{{webSite}}</p>
  15. <p class="text-muted">电话:{{tel}}</p>
  16. <p class="text-muted">合作邮箱:{{email}}</p>
  17. <p class="text-muted">地址:{{address}}</p>
  18. </div>
  19. </div>
  20. </div>
  21. <div class="bottom">
  22. <h4>Copyright @ 芝麻开花科技有限公司 保留所有权利 京ICP备13040720号-8</h4>
  23. </div>
  24. </div>
  25. </template>
  26. <script>
  27. import img1 from "./img/weixin.png";
  28. export default {
  29. name: 'HomeFooter',
  30. data(){
  31. return{
  32. img1:img1,
  33. webSite:"网址:http://www.zhimakahua.com",
  34. tel:"400-0018-318",
  35. email:"123456789@163.com",
  36. address:"陕西省西安市曲江新区雁塔南路1201号金辉环球中心B座1209室"
  37. }
  38. }
  39. }
  40. </script>
  41. <style scoped>
  42. *{
  43. margin: 0px;
  44. padding: 0px;
  45. text-align: left;
  46. }
  47. .footer{
  48. width: 100%;
  49. height: 480px;
  50. background: #F6F6F6;
  51. color: aliceblue;
  52. padding-top: 112px;
  53. padding-left: 120px;
  54. }
  55. .footer .top{
  56. color: black;
  57. }
  58. .footer .top div h4{
  59. font-family: PingFangSC-Regular;
  60. font-size: 28px;
  61. color: #4A4A4A;
  62. letter-spacing: 0;
  63. }
  64. .footer .top div span{
  65. font-family: PingFangSC-Regular;
  66. font-size: 18px;
  67. color: #999999;
  68. letter-spacing: 0.2px;
  69. height: 22px;
  70. width: 140px;
  71. }
  72. .footer .top .tit1{
  73. width: 95%;
  74. display: flex;
  75. flex-direction: row;
  76. height: 233px;
  77. border-top: 1px solid #E4E4E4;
  78. border-bottom: 1px solid #E4E4E4;
  79. padding-top: 30px;
  80. }
  81. .footer .top .tit1 .contact{
  82. height: 140px;
  83. padding-left:40px;
  84. display: flex;
  85. flex-direction: column;
  86. flex: 1;
  87. }
  88. .footer .top .tit1 div p{
  89. font-family: PingFangSC-Regular;
  90. font-size: 16px;
  91. color: #999999;
  92. letter-spacing: 0;
  93. height: 80px;
  94. }
  95. .footer .top .tit1 .weixin{
  96. float: left;
  97. width: 118px;
  98. display: flex;
  99. flex-direction: column;
  100. }
  101. .footer .top .tit1 .weixin img{
  102. width: 118px;
  103. height: 118px;
  104. }
  105. .footer .top .tit1 .weixin p{
  106. font-family: PingFangSC-Regular;
  107. font-size: 18px;
  108. color: #999999;
  109. letter-spacing: 0;
  110. line-height: 22px;
  111. text-align: center;
  112. }
  113. .footer .top .tit1 .weixin img{
  114. float: left;
  115. width: 118px;
  116. height: 118px;
  117. }
  118. .footer .top h4{
  119. color: black;
  120. }
  121. .footer .bottom{
  122. height: 81px;
  123. display: flex;
  124. align-items: center;
  125. color: black;
  126. }
  127. .footer .bottom h4{
  128. font-size: 16px;
  129. color: #999999;
  130. }
  131. @media screen and (max-width:1100px){
  132. .footer{
  133. width: 100%;
  134. height: 480px;
  135. background: #F6F6F6;
  136. color: aliceblue;
  137. padding-top: 62px;
  138. padding-left: 60px;
  139. }
  140. .footer .top{
  141. color: black;
  142. }
  143. .footer .top div h4{
  144. font-family: PingFangSC-Regular;
  145. font-size: 32px;
  146. color: #4A4A4A;
  147. letter-spacing: 0;
  148. }
  149. .footer .top div span{
  150. font-family: PingFangSC-Regular;
  151. font-size: 20px;
  152. color: #999999;
  153. letter-spacing: 0.2px;
  154. height: 22px;
  155. width: 140px;
  156. }
  157. .footer .top .tit1{
  158. width: 95%;
  159. display: flex;
  160. flex-direction: row;
  161. height: 233px;
  162. border-top: 1px solid #E4E4E4;
  163. border-bottom: 1px solid #E4E4E4;
  164. padding-top: 30px;
  165. }
  166. .footer .top .tit1 .contact{
  167. height: 160px;
  168. padding-left:40px;
  169. display: flex;
  170. flex-direction: column;
  171. flex: 1;
  172. }
  173. .footer .top .tit1 div p{
  174. font-family: PingFangSC-Regular;
  175. font-size: 26px;
  176. color: #999999;
  177. letter-spacing: 0;
  178. height: 80px;
  179. }
  180. .footer .top .tit1 .weixin{
  181. float: left;
  182. width: 138px;
  183. display: flex;
  184. flex-direction: column;
  185. }
  186. .footer .top .tit1 .weixin img{
  187. width: 138px!important;
  188. height: 138px!important;
  189. }
  190. .footer .top .tit1 .weixin p{
  191. font-family: PingFangSC-Regular;
  192. font-size: 30px;
  193. color: #999999;
  194. letter-spacing: 0;
  195. line-height: 22px;
  196. text-align: center;
  197. padding-top: 20px;
  198. }
  199. .footer .top h4{
  200. color: black;
  201. }
  202. .footer .bottom{
  203. height: 81px;
  204. display: flex;
  205. align-items: center;
  206. color: black;
  207. }
  208. .footer .bottom h4{
  209. font-size: 26px;
  210. color: #999999;
  211. }
  212. }
  213. </style>