AppBottom.vue 1.29 KB
<template>
  <div class="footAll">
    <div class="box" style="max-width: 90%">
      <el-row align="middle" justify="center">
        <el-col :span="14" align="center">
          页脚
        </el-col>
      </el-row>
    </div>
  </div>
</template>

<script setup>
import {useStorage} from "@vueuse/core/index";
import {useRouter} from "vue-router";
import {ElMessage} from "element-plus";
const router = useRouter()
const language = useStorage('language', 0)
</script>

<style lang="scss" scoped>
.footAll{background: #E0E3E5;;padding: 36px 0;
  p{      font-size: 14px;
    opacity: 0.88;
    color: #4C5359;}
  img{height: 80px;}
}
.gradient-text {font-family: FZJunHeiS-B-GB;
  font-weight: 600;
  font-size: 17px;
  background: linear-gradient(0deg, #8226FC 0%, #483BEB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 500px) {
  .forWei{display: none;}
    .footAll{padding:10px 0;
      //display: none;
      ul {
        li {
          font-size: 10px;line-height: 1.4;
        }
      }
      img{height: 60px;}
      p{font-size: 10px;line-height: 1.4;}
      .copyright{font-size: 10px;line-height: 1.4;}
    }
}
.ffoot{display: inline-flex;
  img{width: 20px;height: 20px;display: inline-block;position: relative;top: 4px;margin-right: 4px;}
}
</style>