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
/* pages/inviteCircleMember/inviteCircleMember.wxss */
.inviteMember{
width: 90%;
margin:5px auto 0;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
font-size: 14px;
}
.inviteMember .title{
margin-top:10px;
width: 100%;
height:40px;
line-height:40px;
}
.inviteMember .frontImage{
width: 100%;
}
.inviteMember .frontImage>image{
width: 100%;
}
.inviteMember .comment{
width: 100%;
display: flex;
align-items: center;
font-size: 14px;
margin-top: 10px;
margin-bottom: 20px;
}
.inviteMember .bottuonRow{
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.acceptButton{
width: 40%;
height: 40px;
line-height: 40px;
font-size: 14px;
background: #0D76ED;
text-align: center;
color: #fff;
border-radius: 5px;
}
.refuseButton{
width: 40%;
height: 40px;
line-height: 40px;
font-size: 14px;
background: #919191;
text-align: center;
color: #fff;
border-radius: 5px;
}