index.wxss
1.65 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/**index.wxss**/
.xn-main{
background-color: #F8F8F8;
height: 100%;
font-size: 32rpx;
line-height: 1.6;
box-sizing: border-box;
display: -webkit-flex; /* Safari */
display: flex;
width: 100%;
flex-direction: column;
}
.member-top{
margin:1rem 1rem 0.5rem 1rem;
background: #fff;
}
.member-top .avatar{
width: 100%;
height: 6rem;
}
.member-top .member-info{
width: 100%;
height:2rem;
line-height: 2rem;
}
.member-top .member-info .name{
float: left;
height:2rem;
line-height: 2rem;
color: #333;
font-size: 16px;
padding:0 0.5rem;
}
.member-top .member-info .level{
overflow: hidden;
height:2rem;
line-height: 2rem;
color: #f90;
font-size: 16px;
padding:0 0.5rem;
text-align: right
}
.code-layout{
margin: 0 1rem 0.5rem;
background: #fff;
padding-top: 0rem;
padding-bottom: 2rem;
}
.code-layout .code-img{
display: block;
width: 500rpx;
height: 500rpx;
margin:0 auto 0.8rem;
}
.code-layout .code-info{
font-size: 18px;
text-align: center;
line-height:0.8rem;
}
.mumber-pop{
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: rgba(0,0,0,0.3);
z-index: 99999;
}
.mumber-pop .pop-layout{
margin:3rem 1rem;
background: #fff;
padding:2rem 2rem;
border-radius: 4px;
}
.mumber-pop .pop-layout .code-two{
display: block;
width: 500rpx;
height: 150rpx;
margin: auto;
}
.mumber-pop .pop-layout .code-img{
display: block;
width: 500rpx;
height: 500rpx;
margin:1rem auto 0.5rem;
}
.mumber-pop .pop-layout .code-info{
font-size: 18px;
text-align: center;
line-height:0.8rem;
}
.view_show{
display: block;
}
.view_hide{
display: none;
}