index.wxss
997 Bytes
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
.mine {
position: absolute;
width: 100vw;
min-height: 40vh;
background-size: 100% 100%;
padding: 140px 5vw 0;
box-sizing: border-box;
}
.title {
display: flex;
}
.pic {
width: 60px;
height: 60px;
border-radius: 60px;
}
.title_box {
margin-left: 20px;
display: flex;
align-content: space-between;
flex-wrap: wrap;
padding: 4px 0;
box-sizing: border-box;
}
.title_name {
font-size: 18px;
font-weight: bold;
}
.grey_title {
width: 100%;
font-size: 14px;
color: #999;
}
.flex_card {
display: flex;
justify-content: space-between;
padding: 20px 50px;
box-sizing: border-box;
box-shadow: 1px 1px 1px 1px rgb(224, 224, 224);
margin: 40px 0;
background-color: #fff;
border-radius: 20px;
}
.card_item {
text-align: center;
}
.card_pic {
width: 30px;
height: 30px;
}
.item_font {
margin-top: 10px;
color:#5A6694
}
.grey_line {
width: 1px ;
height: 60px;
background-color: #999;
}