columnListBox.less
718 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
@charset "UTF-8";
.column-list-box {
.title-box {
& + .box {
margin-top: 30px;
}
}
.box {
// display: flex;
// flex-direction: row;
// justify-content: space-between;
// align-items: flex-start;
// flex-wrap: wrap;
column-count: 2;
column-width: 330px;
column-gap: 30px;
margin: 0 auto;
padding-bottom: 18px;
width: 690px;
.left-box {
.item-box {
&:last-child {
margin-bottom: 0;
}
}
}
.right-box {
.item-box {
&:last-child {
// margin-bottom: 0;
}
}
}
.item-box {
background-color: transparent;
margin-bottom: 30px;
width: 330px;
height: auto;
break-inside: avoid;
// border-radius: 30px;
overflow: hidden;
}
}
}