footerSection.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <template>
  2. <div>
  3. <div class="footerSection">
  4. <div class="footer-info">
  5. <div class="width1200">
  6. <div class="attention">
  7. <div class="qrcode">
  8. <div class="qrcode-item"
  9. style="padding-right:50px">
  10. <img src="../assets/images/logoWhile.png"
  11. width="136px"
  12. height="40px"
  13. alt="">
  14. </div>
  15. </div>
  16. <div class="qrcode">
  17. <div class="qrcode-item">
  18. <img src="../assets/images/public-code.jpg"
  19. width="74px"
  20. height="74px"
  21. alt />
  22. <p>微信订阅号</p>
  23. </div>
  24. </div>
  25. <div class="qrcode">
  26. <div class="qrcode-item">
  27. <img src="../assets/images/download.png"
  28. width="74px"
  29. height="74px"
  30. alt />
  31. <p>下载地址</p>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="friend-ship">
  36. <div class="hotLine">
  37. <h2>咨询热线</h2>
  38. <p>400 - 8851569<span>(周一至周五 09:00~21:00)</span></p>
  39. </div>
  40. <div class="line-wrap">
  41. <h2>友情链接</h2>
  42. <div class="item-Wrap">
  43. <div class="friendship-item">
  44. <a target="view_window"
  45. href="http://www.chnmusic.org/">中国音乐家协会</a>
  46. </div>
  47. <div class="friendship-item">
  48. <a target="view_window"
  49. href="https://www.cnorch.com/leaderInfo/list?leaderType=2">中国音协管乐学会低音铜管专业委员会</a>
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. <div class="footer-coptyright">
  57. <div class="width1200">
  58. <p>
  59. Copyright © 2020 武汉市景明云乐网络科技有限公司
  60. <br /> All Rights Reserved. 鄂ICP备20013567号-1
  61. </p>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. </template>
  68. <script>
  69. export default {
  70. name: "footerSection"
  71. };
  72. </script>
  73. <style lang="less" scoped>
  74. .footerSection {
  75. overflow: hidden;
  76. margin: 0 auto;
  77. background: #39393b;
  78. }
  79. .footer-info {
  80. color: #cecece;
  81. background: #39393b;
  82. padding: 77px 0 35px;
  83. .width1200 {
  84. display: flex;
  85. flex-direction: row;
  86. justify-content: space-between;
  87. h2 {
  88. color: #fff;
  89. font-size: 14px;
  90. line-height: 31px;
  91. text-align: left;
  92. font-weight: 400;
  93. }
  94. .attention {
  95. display: flex;
  96. flex-direction: row;
  97. justify-content: space-around;
  98. .qrcode-item {
  99. display: inline-block;
  100. font-size: 0;
  101. padding-right: 34px;
  102. p {
  103. font-size: 12px;
  104. color: #cecece;
  105. padding: 8px 0;
  106. text-align: center;
  107. margin-top: 10px;
  108. }
  109. }
  110. }
  111. .friend-ship {
  112. display: flex;
  113. flex-direction: row;
  114. justify-content: flex-start;
  115. .line-wrap {
  116. margin-right: 20px;
  117. }
  118. .item-Wrap {
  119. display: flex;
  120. flex-direction: row;
  121. justify-content: flex-start;
  122. .friendship-item {
  123. a {
  124. font-size: 12px;
  125. color: #cecece;
  126. line-height: 37px;
  127. margin-right: 30px;
  128. display: inline-block;
  129. text-align: left;
  130. text-decoration: none;
  131. &:hover,
  132. &:after {
  133. color: #cecece;
  134. }
  135. }
  136. }
  137. }
  138. .hotLine {
  139. text-align: left;
  140. color: #cecece;
  141. margin-right: 30px;
  142. p {
  143. font-size: 16px;
  144. line-height: 37px;
  145. span {
  146. font-size: 12px;
  147. }
  148. }
  149. }
  150. }
  151. }
  152. }
  153. .footer-coptyright {
  154. border-top: 1px solid #585858;
  155. // background: url("../assets/images/footerBg.png") no-repeat center;
  156. // background-size: cover;
  157. height: 82px;
  158. p {
  159. text-align: center;
  160. font-size: 12px;
  161. color: #cecece;
  162. line-height: 20px;
  163. padding-top: 21px;
  164. }
  165. }
  166. </style>