columnListBox.less 889 Bytes
@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 {
			break-inside: avoid;
			.item-box {
				&:last-child {
					margin-bottom: 0;
				}
			}
		}
		.right-box {
			break-inside: avoid;
			.item-box {
				&:first-child {
					/deep/ .item {
						.img-box {
							.img {
								height: 100%;
							}
						}
					}
				}
				&: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;
		}
	}
}