1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| .item {
| max-height: 200px;
| margin-right: 8px;
| margin-bottom: 8px;
| object-fit: contain;
| object-position: center;
| border-radius: 8px;
| cursor: pointer;
| }
|
| .item:nth-child(3n) {
| margin-right: 0;
| }
|
| .img-2 .item:nth-child(2n),
| .img-4 .item:nth-child(2n) {
| margin-right: 0;
| }
|
| .img-4 .item:nth-child(3n) {
| margin-right: 8px;
| }
|
|