style.less
809 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
.production-list {
background: #f7f7f7;
.adm-spin-loading {
--size: 60px;
margin: 300px auto 0;
}
&_list {
padding: 60px;
display: flex;
flex-wrap: wrap;
&-item {
width: 312px;
height: 312px;
color: #fff;
margin-right: 60px;
margin-bottom: 60px;
cursor: pointer;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
text-align: center;
flex-direction: column;
&:nth-child(5n) {
margin-right: 0;
}
&-img {
width: 60px;
height: 60px;
margin-bottom: 30px;
}
&-name {
font-size: 28px;
height: 80px;
line-height: 40px;
}
}
}
}