<template>
|
<div class="my-detail-page">
|
<assets-head :show-left="true" class="assetsHead" :back-func="goBack" :title="$t('空投')" />
|
<div class="my-detail-body">
|
<div class="my-detail-placeholder">
|
<div class="airdrop-title">{{ $t('airdropOfficialEcology') }}</div>
|
<div class="airdrop-title" style="font-size: 20px;padding: 16px 12px;">{{ $t('airdropActivityInProgress') }}</div>
|
<div class="airdrop-title" style="font-size: 16px;padding: 0 12px;">{{ $t('airdropPlatformDesc') }}</div>
|
</div>
|
<div class="airdrop-content">
|
{{ $t('airdropParticipateTip') }}
|
{{ $t('airdropAccumulated') }}
|
</div>
|
<div class="airdrop-txt">{{ $t('airdropInProgress') }}</div>
|
<div class="airdrop-tps">{{ $t('airdropMostPotential') }}</div>
|
<div class="airdrop-xb">{{ $t('airdropGiftRecord') }}</div>
|
<div class="airdrop-xb-icon">
|
<img class="ai-strategy-icon" src="@/assets/imgs/new/empty.png" alt="">
|
</div>
|
</div>
|
</div>
|
</template>
|
|
<script setup>
|
import { useRouter } from 'vue-router';
|
import AssetsHead from '@/components/Transform/assets-head/index.vue';
|
|
const router = useRouter();
|
const goBack = () => router.go(-1);
|
</script>
|
|
<style lang="scss" scoped>
|
.airdrop-xb-icon{
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
margin-top: 10px;
|
}
|
.ai-strategy-icon{
|
width: 220px;
|
height: 100%;
|
}
|
.airdrop-xb{
|
color:#fff;
|
font-size: 16px;
|
font-weight: 700;
|
margin-left: 18px;
|
margin-top: 30px;
|
}
|
.airdrop-tps{
|
text-align: center;
|
color: #737285;
|
font-size: 12px;
|
font-weight: 700;
|
}
|
.airdrop-txt{
|
padding-bottom: 5px;
|
font-size: 24px;
|
padding-top: 40px;
|
text-align: center;
|
color: #fff;
|
font-weight: 700;
|
}
|
.airdrop-content{
|
padding-top: 16px;
|
padding: 0 24px;
|
text-align: center;
|
background: linear-gradient(90deg, #bea3fa, #fbfbfb 46%, #adf6fc 71%, #9c9afb);
|
-webkit-background-clip: text;
|
color: transparent;
|
font-size: 12px;
|
font-weight: 700;
|
}
|
@import '@/assets/theme/index.scss';
|
.airdrop-title{
|
padding-top: 16px;
|
text-align: center;
|
background: linear-gradient(90deg, #bea3fa, #fbfbfb 46%, #adf6fc 71%, #9c9afb);
|
-webkit-background-clip: text;
|
color: transparent;
|
font-size: 23px;
|
font-weight: 700;
|
}
|
:deep(.van-nav-bar) {
|
background-color: #030221 !important;
|
}
|
|
.my-detail-page {
|
min-height: 100vh;
|
background-image: url('@/assets/imgs/new/airdrop-bg.jpg');
|
background-size: 100% 100%;
|
background-repeat: no-repeat;
|
}
|
|
.my-detail-body {
|
}
|
|
.my-detail-placeholder {
|
font-size: 2.2rem;
|
text-align: center;
|
margin-bottom: 260px;
|
@include themify() {
|
color: themed("text_color2");
|
}
|
}
|
</style>
|