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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* pages/myCertificate/myCertificate.wxss */
page{
width: 100%;
height: 100%;
}
.certificateItem{
margin-top: 10px;
width: 90%;
margin: 0 auto;
display: flex;
flex-direction:column;
justify-content : space-between;
align-items:center;
font-size: 14px;
border-bottom: 1px solid #F0F0F0;
}
.certificateItem>image{
width:100%;
}
.getRow{
margin-top: 10px;
width: 100%;
display: flex;
flex-direction:row;
justify-content : space-between;
align-items:center;
}
.getRow>text{
width:100%;
height:35px;
line-height: 35px;
text-align: left;
}
.bot_myCertificate{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5)
}
top_myCertificate{
width: 100%;
text-align: center;
font-size: 13px;
}
.con_bot_myCertificate{
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 90%;
height: 265px;
background: #fff;
border-radius: 15px 15px 0 0;
}
.con_bot_myCertificate>view{
display: flex;
align-items: center;
width: 80%;
height: 50px;
border-bottom: 1px solid #f0f0f0;
font-size: 15px;
margin: 0 auto;
}
.con_bot_myCertificate>view>text{
display: block;
width: 60px;
font-size: 14px;
}
input::-webkit-input-placeholder {
color: #e1e1e1;
}
input:-moz-placeholder {
color: #e1e1e1;
}
input::-moz-placeholder {
color: #e1e1e1;
}
input:-ms-input-placeholder {
color: #e1e1e1;
}
.con_bot_myCertificate>view>input{
flex: 1;
height: 50px;
border-radius: 5px;
box-sizing: border-box;
padding-left: 15px;
font-size: 12px;
}
.btnBot{
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 80%;
height: 25px;
display: flex;
justify-content: space-between;
}
.btnBot>view{
width: 45%;
height: 30px;
text-align: center;
line-height: 30px;
font-size: 14px;
border-radius: 15px;
color: #fff;
}