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
<template>
</template>
<script>
// import {share} from "../util/imgUrl";
export default {
name: "share",
data(){
return{
// imgUrl:share,
num:0,
pNum:0,
watchLog:null,
user:null
}
},
mounted(){
this.initPage()
},
methods:{
}
}
</script>
<style scoped lang="less">
@import "../util/public";
.share{
background-size: 100% 100%;
.tips{
position: absolute;
top: 8 * @toVw;
height: 66 * @toVw;
z-index: 0;
right: 31 * @toVw;
}
.content{
width: 313 * @toVw;
height: 524 * @toVw;
background-size: 100% 100%;
position: relative;
z-index: 2;
margin:53 * @toVw auto 0 auto;
.head{
border-radius: 1000px;
width: 32 * @toVw;
position: absolute;
top: 257 * @toVw;
left: 40 * @toVw;
}
.name{
width:70px;
height:20px;
font-size:14px;
font-family:PingFang-SC-Bold;
font-weight:bold;
color:rgba(51,51,51,1);
line-height:20px;
position: absolute;
top: 257 * @toVw;
left: 84 * @toVw;
}
.day{
font-size:20px;
font-family:PingFang-SC-Medium;
font-weight:500;
color:rgba(51,51,51,1);
line-height:28px;
position: absolute;
top: 334 * @toVw;
right:243 * @toVw;
}
.num{
font-size:20px;
font-family:PingFang-SC-Medium;
font-weight:500;
color:rgba(51,51,51,1);
line-height:28px;
position: absolute;
top: 334 * @toVw;
right: 167 * @toVw;
}
.time{
font-size:20px;
font-family:PingFang-SC-Medium;
font-weight:500;
color:rgba(51,51,51,1);
line-height:28px;
position: absolute;
top: 334 * @toVw;
right: 63 * @toVw;
}
}
}
</style>