/* 效果展示 */
.effect-container {
	overflow: hidden;
}

.effect-content {
	max-width: 1200px;
	margin: 0 auto;
}

.effect-content .grid {
	display: grid;
	background-color: #dedede;
}

.effect-content .grid-item {
	perspective: 1000px;
}

.effect-content .grid-item .img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 1023px) {
	.effect-content {
		padding: 60px 10px 30px;
	}

	.effect-content .grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 13px;
		column-gap: 13px;
		padding: 16px;
		margin-top: 40px;
	}
}

@media screen and (max-width: 500px) {
	.effect-content .grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (min-width: 1024px) {
	.effect-content {
		padding: 210px 20px 70px;
	}

	.effect-content .column-header .title + .title {
		margin-top: 20px;
	}

	.effect-content .column-header .label {
		margin-top: 44px;
	}

	.effect-content .grid {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 13px;
		padding: 24px 20px;
		margin-top: 70px;
	}
}