1
admin
2026-04-29 1febaf2c9b7c7cb7f208624c4c2e9d972cf8b265
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<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>