footerSection.vue 4.3 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/logoWhile1.png"
  11. width="142px"
  12. height="65px"
  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. <a href="https://beian.miit.gov.cn/">鄂ICP备2021020787号-1</a>
  61. </p>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </template>
  67. <script>
  68. export default {
  69. name: "footerSection"
  70. };
  71. </script>
  72. <style lang="less" scoped>
  73. .footerSection {
  74. overflow: hidden;
  75. margin: 0 auto;
  76. background: #262D45;
  77. }
  78. .footer-info {
  79. color: #cecece;
  80. background: #262D45;
  81. padding: 77px 0 35px;
  82. .width1200 {
  83. display: flex;
  84. flex-direction: row;
  85. justify-content: space-between;
  86. h2 {
  87. color: #fff;
  88. font-size: 14px;
  89. line-height: 31px;
  90. text-align: left;
  91. font-weight: 400;
  92. }
  93. .attention {
  94. display: flex;
  95. flex-direction: row;
  96. justify-content: space-around;
  97. .qrcode-item {
  98. display: inline-block;
  99. font-size: 0;
  100. padding-right: 34px;
  101. p {
  102. font-size: 12px;
  103. color: #cecece;
  104. padding: 8px 0;
  105. text-align: center;
  106. margin-top: 10px;
  107. }
  108. }
  109. }
  110. .friend-ship {
  111. display: flex;
  112. flex-direction: row;
  113. justify-content: flex-start;
  114. .line-wrap {
  115. margin-right: 20px;
  116. }
  117. .item-Wrap {
  118. display: flex;
  119. flex-direction: row;
  120. justify-content: flex-start;
  121. .friendship-item {
  122. a {
  123. font-size: 12px;
  124. color: #cecece;
  125. line-height: 37px;
  126. margin-right: 30px;
  127. display: inline-block;
  128. text-align: left;
  129. text-decoration: none;
  130. &:hover,
  131. &:after {
  132. color: #cecece;
  133. }
  134. }
  135. }
  136. }
  137. .hotLine {
  138. text-align: left;
  139. color: #cecece;
  140. margin-right: 30px;
  141. p {
  142. font-size: 16px;
  143. line-height: 37px;
  144. span {
  145. font-size: 12px;
  146. }
  147. }
  148. }
  149. }
  150. }
  151. }
  152. .footer-coptyright {
  153. border-top: 1px solid #585858;
  154. // background: url("../assets/images/footerBg.png") no-repeat center;
  155. // background-size: cover;
  156. height: 82px;
  157. p {
  158. text-align: center;
  159. font-size: 12px;
  160. color: #cecece;
  161. line-height: 20px;
  162. padding-top: 21px;
  163. a{
  164. color: #cecece;
  165. }
  166. }
  167. }
  168. </style>