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
/* pages/myCertificate/myCertificate.wxss */
.certificateItem{
margin-top: 10px;
width: 90%;
margin: 0 auto;
display: flex;
flex-direction:column;
justify-content : space-between;
align-items:center;
text-align: center;
font-size: 14px;
}
.certificateItem>view{
position: relative;
width: 100%;
}
.certificateItem>view>image{
width:100%;
}
.certificateItem>view>text{
display: block;
position: absolute;
bottom: 3px;
left: 0;
width:100%;
height:35px;
line-height: 35px;
text-align: right;
background: rgba(0,0,0,0.5);
color: #fff;
font-size: 14px;
box-sizing: border-box;
padding-right: 20px;
}