AppBottom.vue 4.57 KB
<template>
  <div class="footAll">
    <div class="box" style="max-width: 90%">
      <el-row  align="middle" justify="space-between">
        <el-col :span="18">
          <div class="imgFlex">
            <div style="text-align: center;margin-right: 50px">
              <img @click="goUrl('https://www.facebook.com/share/1BDtH7xYaS/?mibextid=wwXIfr')" class="link-img" alt="" src="@/assets/images/bottom01.svg">
              <img @click="goUrl('https://www.instagram.com/lpt__official/')" class="link-img" alt="" src="@/assets/images/bottom02.svg">
<!--              <img class="link-img" alt="" src="@/assets/images/bottom03.svg">-->
              <img @click="goUrl('https://www.tiktok.com/@lpt.official')" class="link-img" alt="" src="@/assets/images/bottom04.svg">
              <img @click="goUrl('https://www.youtube.com/channel/UCNFV48KiGZLYcf8NQocM-iQ')" class="link-img" alt="" src="@/assets/images/bottom05.svg">
            </div>
            <div class="text-center copyright pd10">{{ languageLibrary[language].a }}
              <!--            <a href="https://beian.miit.gov.cn/" target="_blank">ICP备案号:苏ICP备2023054420号-2</a>-->
            </div>
          </div>
        </el-col>
        <el-col :span="6">
          <div>
            <img alt="" src="@/assets/pc/logo.png">
          </div>
        </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', 1)
const languageLibrary = [{
  a:'版权所有@ LONG POKER INC. ALL RIGHT RESERVED',
},{
  a:'COPYRIGHT @ LONG POKER INC. ALL RIGHT RESERVED',
},{
  a:'저작권 @ LONG POKER INC. All Rights Reserved.',
},{
  a:'著作権 © LONG POKER INC. All Rights Reserved.',
},{
  a:'Bản quyền thuộc về @ LONG POKER INC.-Giữ toàn bản quyền.',
}]

const goHelp = () => {
  router.push({
    path: `/news/list/20000100`,
    query: {
      kindName: language.value === 0 ? '操作指引' : 'Video Guide'
    }
  })
}
const goHelpZH = () => {
  // ElMessage.success('已下载文件')
  router.push({
    name: 'guide',
    query: {
      index: 8
    }
  })
}
const goAround = () => {
  //周边活动
  router.push({path: `/about/wuDao`, query: {activeIndex: '2'}})
}

const goUrl = (url) => {
  window.open(url, '_blank')
}

</script>

<style lang="scss" scoped>
.kf {
  width: 45px;
  margin: auto;
  height: auto;
  //animation: pop 2s infinite;
}

.fixed-right {
  position: fixed;
  right: 0;
  top: 65%;
  z-index: 9;
  
  .mlb {
    background: #fff;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 2px 8px #aaa;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    
    div {
      text-transform: uppercase;
    }
    
    div:first-child {
      border-bottom: 0.5px solid #eee;
      //padding: 0 0 10px;margin-bottom: 10px;
    }
    
    div:hover {
      .gradient-text {
        font-weight: bold;
      }
    }
  }
}


.footAll {
  //background: #E0E3E5;
  background: #1f2644;
  padding: 36px 0 5px;

  p {
    font-size: 14px;
    opacity: 0.88;
    color: #4C5359;
  }
  
  ul {
    list-style: none;
    
    li {
      line-height: 30px;
      font-size: 14px;
      opacity: 1;
      color: #fff;
      
      a {
        margin-left: 15px;
        
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
  
  img {
    height: 60px;
    margin-bottom: 20px;
  }
}

.copyright {
  font-size: 14px;
  //opacity: 0.88;
  color: #fff;
}

.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;
}
.link-img {
  width: 40px;
  height: 40px !important;
  margin-bottom: 0 !important;
  margin-right: 20px;
  display: inline-block;
}
.imgFlex {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  .forWei {
    display: none;
  }
  .footAll {
    padding: 10px 0;
    
    ul {
      li {
        font-size: 10px;
        line-height: 1.4;
      }
    }
    
    img {
      height: 36px;
      margin-bottom: 0;
    }
    
    p {
      font-size: 10px;
      line-height: 1.4;
    }
    
    .copyright {
      font-size: 10px;
      line-height: 1.4;
    }
  }

  .imgFlex {
    display: inline-block;
  }
}

.ffoot {
  display: inline-flex;
  
  img {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    top: 4px;
    margin-right: 4px;
  }
}
</style>