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
/* pages/mine/mine.wxss */
page{
width: 100%;
height: 100%;
background: #EFF3F6;
}
.headerMine{
width: 100%;
height: 100px;
background-image: linear-gradient(top, #3d8bf0,#70bff9);
background-image: -ms-linear-gradient(top, #3d8bf0,#70bff9);
background-image: -webkit-linear-gradient(top, #3d8bf0,#70bff9);
background-image: -moz-linear-gradient(top, #3d8bf0,#70bff9);
position: relative;
}
.topMine{
position: absolute;
bottom: -50px;
left: 0;
right: 0;
margin: auto;
width: 90%;
height: 100px;
display: flex;
justify-content: space-between;
align-items: center;
background: #fff;
border-radius: 10px;
}
.topMine>view{
display: flex;
align-items: center;
font-size: 14px;
margin-left: 15px;
}
.topMine>view>image{
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 10px;
}
.topMine>image{
width: 20px;
height: 20px;
margin-right: 15px;
}
.mineList{
width:90%;
margin: 80px auto 0;
background: #fff;
border-radius: 15px;
box-sizing: border-box;
padding: 10px 0;
}
.con_mineList{
width: 100%;
height: 50px;
display: flex;
align-items: center;
flex-wrap: wrap;
}
.con_mineList>text{
display: block;
width: 90%;
height: 1px;
background: #f6f6f6;
margin: 0 auto;
}
.con_mineList>image{
width: 25px;
height: 25px;
border-radius: 50%;
margin: 0 10px;
}
.con_mineList>view{
flex: 1;
height: 40px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
}
.con_mineList>view>image{
width: 10px;
height: 10px;
margin-right: 15px;
}