<template>
|
<div class="privacy-policy">
|
<headers :mess="loginWay" />
|
<div class="top_box">
|
<div class="top_box_img">
|
<img class="top_box_left" src="../../assets/img/img_log_home.png"/>
|
</div>
|
<div class="top_box_right">{{$t('top_s')}}</div>
|
</div>
|
<div class="bot_box">
|
<div class="bot_box_img">
|
<img class="bot_box_img_img" src="../../assets/img/duanxin.png"/>
|
</div>
|
<div class="bot_box_txt">
|
<div class="bot_box_txt_top">{{$t('hj16')}}</div>
|
<div class="bot_box_txt_bottom">zhuq0911@gmail.com</div>
|
</div>
|
</div>
|
<div class="bot_box" @click="gotoservice()">
|
<div class="bot_box_img">
|
<img class="bot_box_img_img" style="width: 50px;height: 50px;" src="../../assets/img/phone.png"/>
|
</div>
|
<div class="bot_box_txt">
|
<div class="bot_box_txt_top">Telegram</div>
|
<div class="bot_box_txt_bottom">{{$t('tips_sb')}}</div>
|
</div>
|
</div>
|
<div style="margin-bottom: 150px;"></div>
|
</div>
|
</template>
|
|
<script>
|
import headers from "../login/components/header.vue";
|
export default {
|
data() {
|
return {
|
loginWay:this.$t('zc'),
|
policyContent: ''
|
|
};
|
},
|
components: {
|
headers
|
},
|
mounted() {
|
this.loadPolicy();
|
},
|
methods: {
|
loadPolicy() {
|
// 假设你有一个方法来加载隐私政策内容
|
this.policyContent = '';
|
},
|
gotoservice(){
|
// this.$router.push('/service')
|
window.location.href = 'https://t.me/FidelitySecuritiesGrou'
|
}
|
}
|
};
|
</script>
|
|
<style scoped>
|
.bot_box_txt_top{
|
font-weight: 600;
|
font-size: 24px;
|
margin-bottom: 15px;
|
}
|
.bot_box_txt{
|
display: flex;
|
justify-content: center;
|
flex-direction: column;
|
margin-left: 20px;
|
}
|
.bot_box_img_img{
|
width: 80px;
|
height: 80px;
|
}
|
.bot_box_img{
|
width: 80px;
|
height: 80px;
|
}
|
.bot_box{
|
width: 94%;
|
margin-left: 3%;
|
background-color: #fff;
|
margin-top: 30px;
|
border-radius: 20px;
|
display: flex;
|
/* justify-content: center; */
|
align-items: center;
|
padding: 20px 20px;
|
}
|
.top_box_img{
|
width: 100%;
|
display: flex;
|
justify-content: center;
|
}
|
.top_box_right{
|
margin-top: 20px;
|
font-size: 26px;
|
font-weight: 600;
|
padding: 0 15px;
|
line-height: 30px;
|
padding-bottom: 30px;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
}
|
.top_box{
|
width: 94%;
|
margin-left: 3%;
|
background-color: #fff;
|
border-radius: 20px;
|
margin-top: 70px;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
flex-direction: column;
|
}
|
.top_box_left{
|
width: 150px;
|
height: 150px;
|
margin-top: -75px;
|
border-radius: 100px;
|
}
|
.text{
|
font-size: 24px;
|
line-height: 24px;
|
margin-bottom: 20px;
|
font-weight: 600;
|
}
|
.privacy-policy {
|
max-width: 960px;
|
margin: 0 auto;
|
padding: 20px;
|
}
|
</style>
|