Foot.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <div class="footer">
  3. <div class="inner">
  4. <div class="tips">
  5. <p>本站部分信息由相应民事主体自行提供,该信息内容的真实性、准确性和合法性应由该民事主体负责。三农资讯网对此不承担任何保证责任。</p>
  6. <p>本网部分转载文章、图片等无法联系到权利人,请相关权利人联系本网站索取稿酬。</p>
  7. </div>
  8. <div class="tipsList">
  9. <p>政讯通·全国三农调研中心行业百网成员站--全国三农信息一体化应用平台--中农兴业工程指定网站•农业百强网站</p>
  10. <p>北京中农兴业网络技术有限公司主办--三农资讯网 snzxwt.org 版权所有。</p>
  11. <p>
  12. <em></em>
  13. 京ICP备11020904号-14 京公网安备11010202007231号
  14. </p>
  15. <p>联系邮箱:qgsndy@163.com</p>
  16. <p>地址:第一办公区:北京市西城区敬胜胡同甲3号东侧;第二办公区:北京市东城区建国门内大街26号新闻大厦5层</p>
  17. <p>联系电话:010-80440269、010-69945235、010-56019387,监督电话:18516948318,违法和不良信息举报电话:010-57028685</p>
  18. </div>
  19. <!-- 图片列表 -->
  20. <ul class="logoList1">
  21. <li v-for="(item,index) in bottomImg":key=index class="left">
  22. <img :src="item" alt="">
  23. </li>
  24. </ul>
  25. </div>
  26. </div>
  27. </template>
  28. <script setup>
  29. let bottomImg=["/images/image50.png","/images/image51.png","/images/image52.png","/images/image53.png"]
  30. </script>
  31. <style lang="less" scoped>
  32. .footer {
  33. width: 100%;
  34. height: 400px;
  35. background-color: #40663b;
  36. overflow: hidden;
  37. .inner {
  38. width: 1200px;
  39. height: 100%;
  40. // 图片列表
  41. .logoList {
  42. height: 50px;
  43. margin-top: 43px;
  44. >li {
  45. width: 150px;
  46. height: 50px;
  47. margin-right: 25px;
  48. img {
  49. width: 150px;
  50. height: 50px;
  51. }
  52. }
  53. >li:nth-child(7) {
  54. margin-right: 0;
  55. }
  56. }
  57. .link,
  58. .service {
  59. width: 1200px;
  60. height: 26px;
  61. padding-left: 40px;
  62. box-sizing: border-box;
  63. >h5 {
  64. width: 48px;
  65. height: 18px;
  66. line-height: 18px;
  67. font-family: Source Han Sans, Source Han Sans;
  68. font-weight: bold;
  69. font-size: 12px;
  70. color: #FFFFFF;
  71. text-align: center;
  72. font-style: normal;
  73. text-transform: none;
  74. }
  75. }
  76. //友情链接
  77. .link {
  78. margin-top: 47px;
  79. width: 1200px;
  80. border-bottom: 1px solid #fff;
  81. h5 {
  82. margin-right: 109px;
  83. }
  84. >ul>li {
  85. margin-right: 40px;
  86. }
  87. ul>li {
  88. float: left;
  89. >a {
  90. font-family: Source Han Sans, Source Han Sans;
  91. font-weight: 500;
  92. font-size: 12px;
  93. color: #FFFFFF;
  94. line-height: 18px;
  95. text-align: center;
  96. font-style: normal;
  97. text-transform: none;
  98. }
  99. }
  100. }
  101. //快捷服务
  102. .service {
  103. width: 1200px;
  104. margin-top: 8px;
  105. h5 {
  106. margin-right: 80px;
  107. }
  108. >p {
  109. >span {
  110. border-right: 1px solid #fff;
  111. >a {
  112. font-family: Source Han Sans, Source Han Sans;
  113. font-weight: 400;
  114. font-size: 12px;
  115. color: #FFFFFF;
  116. line-height: 18px;
  117. text-align: center;
  118. font-style: normal;
  119. text-transform: none;
  120. padding: 0 13px;
  121. }
  122. }
  123. >span:last-child {
  124. border: none;
  125. }
  126. }
  127. }
  128. p {
  129. font-family: Inter, Inter;
  130. font-weight: bold;
  131. font-size: 12px;
  132. color: #FFFFFF;
  133. line-height: 14px;
  134. text-align: center;
  135. font-style: normal;
  136. text-transform: none;
  137. >em {
  138. display: inline-block;
  139. width: 20px;
  140. height: 20px;
  141. background-image: url("../../static/images/beian 1.png");
  142. vertical-align: middle;
  143. }
  144. }
  145. .tips {
  146. width: 759px;
  147. height: 30px;
  148. margin: 70px auto 30px;
  149. }
  150. .tipsList {
  151. margin: 0 auto;
  152. width: 722px;
  153. height: 108px;
  154. }
  155. .logoList1 {
  156. width: 445px;
  157. height: 40px;
  158. margin: 70px auto 57px;
  159. >li {
  160. width: 96px;
  161. height: 40px;
  162. margin-right: 20px;
  163. >img {
  164. width: 96px;
  165. height: 40px;
  166. }
  167. }
  168. >li:last-child {
  169. margin-right: 0px;
  170. }
  171. }
  172. }
  173. }
  174. </style>