home.vue
1.39 KB
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
<template>
<div>
<index-Ch />
</div>
</template>
<script setup>
import IndexCh from '/src/viewsPc/index'
import {useStorage} from "@vueuse/core/index";
import {ref} from "vue";
import {getCurrentInstance} from "@vue/runtime-core";
import {useRouter} from "vue-router";
const {proxy} = getCurrentInstance()
const router = useRouter()
const language = useStorage('language', 1)
</script>
<style lang="scss" scoped>
.poCode {
position: fixed;
right: 0;
top: 40%;
background: #fff;
padding: 10px 0 0;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 8px #aaa;
z-index: 99;
}
.operation {
position: fixed;
right: 0;
top: 500px;
color: #fff;
cursor: pointer;
background: #fff;
border-radius: 10px 0 0 10px;
box-shadow: 0 2px 8px #aaa;
padding: 10px 8px;
text-align: center;
img {
margin: 0 auto;
}
.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 screen and (max-width: 768px) {
:deep(.zn-Box .zn-btn) {
margin-top: 10px;
font-size: 14px
}
:deep(.bgbg) {
padding: 3% 5% 0 !important;
h1 {
font-size: 22px;
margin: 20px 0 0;
}
}
.fixed_gg {
transform: scale(0.7);
transform-origin: right;
}
}
</style>