AppBottom2.vue 2.22 KB
<template>
  <div class="footAll forPc">
    <div class="box" style="max-width: 90%">
      <el-row style="align-items: center;">
        <el-col :lg="7" :md="24">
          <router-link to="/">
            <img class="mb20" src="@/assets/v1/logo_foot.png">
          </router-link>
        </el-col>
        <el-col :lg="11" :md="12" :xs="24">
          <ul>
            <li>
              <router-link to="/about">中国跆拳道协会版权所有</router-link>
            </li>
            <li>
              <a target="_blank" href="https://beian.miit.gov.cn/">ICP备案号:京ICP备2022009428号-1</a>
              <a class="ffoot" target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010102004192">
                <img src="@/assets/v1/beian.png">
                京公网安备 11010102004192号</a>
            </li>
            <li>网上传播视听节目许可证 编号:0105094  |  发证机关:国家广播电影电视总局</li>
            <li>客服及报障电话:4008102008</li>
            <li>客服及报障邮箱:secretary@chinacta.org.cn</li>
          </ul>
        </el-col>
        <el-col :lg="6" :md="12" :xs="24">
          <ul>
            <li>联系协会
            </li>
            <li>秘书处联系电话/传真:010-67115251
            </li>
            <li>会员部联系电话/传真:010-87188971
            </li>
            <li>单位地址:北京市东城区幸福大街37号六零八文创园20号楼一、二、三层
            </li>
            <li>邮编:100061</li>
            <li>监督举报电话:010-67125331 / 邮箱:ctajdjb@chinacta.org.cn</li>
          </ul>
        </el-col>
      </el-row>
    </div>
  </div>
</template>

<script setup>
</script>

<style lang="scss" scoped>
.footAll{background: #E0E3E5;;padding: 36px 0;
  ul{list-style: none;
    li{line-height: 30px;
      font-size: 14px;
      opacity: 0.88;
      color: #4C5359;
      a{margin-right: 15px;
        &:hover{text-decoration: underline;}
      }
    }
  }
  img{height: 80px;}
}
@media (max-width: 500px) {
  .forWei{display: none;}
}
.ffoot{display: inline-flex;
  img{width: 20px;height: 20px;display: inline-block;position: relative;top: 4px;margin-right: 4px;}
}
</style>