style.less
855 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
.production-management-box {
background: #315381;
}
.production-management {
.adm-spin-loading {
--size: 60px;
margin: 300px auto 0;
}
&_list {
padding: 70px;
display: flex;
flex-wrap: wrap;
&-item {
font-size: 28px;
width: 300px;
height: 380px;
margin-right: 70px;
margin-bottom: 70px;
cursor: pointer;
border-radius: 30px;
padding: 30px;
box-sizing: border-box;
text-align: center;
background: url("./bg.png") center center no-repeat;
background-size: cover;
overflow: hidden;
&:nth-child(5n) {
margin-right: 0;
}
&_icon {
width: 120px;
height: 120px;
margin-top: 40px;
margin-bottom: 48px;
}
&_name {
line-height: 33px;
color: #fff;
}
}
}
}