wiki.css
1.1 KB
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
body{
padding-bottom: 1rem;
}
.Figure_title {
text-align: center;
margin-top: .43rem;
margin-bottom: .26rem;
}
.Figure_title p {
font-size: .14rem;
color: #A61010;
font-weight: 500;
margin-bottom: .07rem;
}
.Figure_title h2 {
font-size: .3rem;
color: #333;
font-weight: bold;
}
.Figure_list {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
padding: 0 .53rem;
}
.Figure_item {
width: 3rem;
height: 3.5rem;
box-sizing: border-box;
padding: .2rem .3rem;
padding-bottom: 0;
margin-bottom: .2rem;
background: rgba(255, 255, 255, 1);
box-shadow: 0px .01rem .06rem 0px rgba(102, 102, 102, 0.14);
border-radius: .1rem;
}
.Figure_item img {
display: block;
width: 2.4rem;
height: 2.7rem;
}
.Figure_item_text {
padding: .18rem 0;
text-align: center;
font-size: .24rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
.Article .Figure_item {
padding: 0;
}
.Article .Figure_item img {
width: 3rem;
border-radius: .1rem .1rem 0px 0px;
height: 1.7rem;
}