123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <template>
- <div class="footer">
- <div class="inner">
- <div class="tips">
- <p>本站部分信息由相应民事主体自行提供,该信息内容的真实性、准确性和合法性应由该民事主体负责。三农资讯网对此不承担任何保证责任。</p>
- <p>本网部分转载文章、图片等无法联系到权利人,请相关权利人联系本网站索取稿酬。</p>
- </div>
- <div class="tipsList">
- <p>政讯通·全国三农调研中心行业百网成员站--全国三农信息一体化应用平台--中农兴业工程指定网站•农业百强网站</p>
- <p>北京中农兴业网络技术有限公司主办--三农资讯网 snzxwt.org 版权所有。</p>
- <p>
- <em></em>
- 京ICP备11020904号-14 京公网安备11010202007231号
- </p>
- <p>联系邮箱:qgsndy@163.com</p>
- <p>地址:第一办公区:北京市西城区敬胜胡同甲3号东侧;第二办公区:北京市东城区建国门内大街26号新闻大厦5层</p>
- <p>联系电话:010-80440269、010-69945235、010-56019387,监督电话:18516948318,违法和不良信息举报电话:010-57028685</p>
- </div>
- <!-- 图片列表 -->
- <ul class="logoList1">
- <li v-for="(item,index) in bottomImg":key=index class="left">
- <img :src="item" alt="">
- </li>
- </ul>
- </div>
- </div>
- </template>
- <script setup>
- let bottomImg=["/images/image50.png","/images/image51.png","/images/image52.png","/images/image53.png"]
- </script>
- <style lang="less" scoped>
- .footer {
- width: 100%;
- height: 400px;
- background-color: #40663b;
- overflow: hidden;
- .inner {
- width: 1200px;
- height: 100%;
- // 图片列表
- .logoList {
- height: 50px;
- margin-top: 43px;
- >li {
- width: 150px;
- height: 50px;
- margin-right: 25px;
- img {
- width: 150px;
- height: 50px;
- }
- }
- >li:nth-child(7) {
- margin-right: 0;
- }
- }
- .link,
- .service {
- width: 1200px;
- height: 26px;
- padding-left: 40px;
- box-sizing: border-box;
- >h5 {
- width: 48px;
- height: 18px;
- line-height: 18px;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: bold;
- font-size: 12px;
- color: #FFFFFF;
- text-align: center;
- font-style: normal;
- text-transform: none;
- }
- }
- //友情链接
- .link {
- margin-top: 47px;
- width: 1200px;
- border-bottom: 1px solid #fff;
- h5 {
- margin-right: 109px;
- }
- >ul>li {
- margin-right: 40px;
- }
- ul>li {
- float: left;
- >a {
- font-family: Source Han Sans, Source Han Sans;
- font-weight: 500;
- font-size: 12px;
- color: #FFFFFF;
- line-height: 18px;
- text-align: center;
- font-style: normal;
- text-transform: none;
- }
- }
- }
- //快捷服务
- .service {
- width: 1200px;
- margin-top: 8px;
- h5 {
- margin-right: 80px;
- }
- >p {
- >span {
- border-right: 1px solid #fff;
- >a {
- font-family: Source Han Sans, Source Han Sans;
- font-weight: 400;
- font-size: 12px;
- color: #FFFFFF;
- line-height: 18px;
- text-align: center;
- font-style: normal;
- text-transform: none;
- padding: 0 13px;
- }
- }
- >span:last-child {
- border: none;
- }
- }
- }
- p {
- font-family: Inter, Inter;
- font-weight: bold;
- font-size: 12px;
- color: #FFFFFF;
- line-height: 14px;
- text-align: center;
- font-style: normal;
- text-transform: none;
- >em {
- display: inline-block;
- width: 20px;
- height: 20px;
- background-image: url("../../static/images/beian 1.png");
- vertical-align: middle;
- }
- }
- .tips {
- width: 759px;
- height: 30px;
- margin: 70px auto 30px;
- }
- .tipsList {
- margin: 0 auto;
- width: 722px;
- height: 108px;
- }
- .logoList1 {
- width: 445px;
- height: 40px;
- margin: 70px auto 57px;
- >li {
- width: 96px;
- height: 40px;
- margin-right: 20px;
- >img {
- width: 96px;
- height: 40px;
- }
- }
- >li:last-child {
- margin-right: 0px;
- }
- }
- }
- }
- </style>
|