.wall-page {
	background: #fff;
	overflow-x: hidden;
}

.wall-page .wall-banner img {
	display: block;
	width: 100%;
}

.wall-page .wall-content {
	background: #fff;
}

.wall-page .wallDetail {
	display: inline-block;
	padding: 5vw 6vw;
	width: 100%;
}

.wall-page .wallDetail .item {
	display: inline-block;
	float: left;
	width: 27vw;
	height: auto;
	margin: 0 2vw 2vw 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: center;
}

.wall-page .wallDetail .item:nth-child(2n) {
	margin-right: 2vw;
}

.wall-page .wallDetail .item:nth-child(3n) {
	margin-right: 0;
}

.wall-page .wallDetail .item .img {
	display: block;
	width: 100%;
	height: 13vw;
	overflow: hidden;
}

.wall-page .wallDetail .item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.wall-page .wallDetail .item:hover img {
	transform: scale(1.08);
}

.wall-page .wallDetail .item .titles {
	display: block;
	color: #3e3e3e;
	font-size: 18px;
	line-height: 1;
	padding: 20px 0 10px;
}

.wall-page .wall-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.82);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.wall-page .wall-lightbox.active {
	opacity: 1;
	pointer-events: auto;
}

.wall-page .wall-lightbox .lightImg {
	position: relative;
	left: auto;
	top: auto;
	transform: none;
	background: #fff;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

.wall-page .wall-lightbox .lightImg img {
	display: block;
	width: auto;
	height: auto;
	max-width: min(100vw, 1200px);
	max-height: 90vh;
}

.wall-page .wall-lightbox .lightClose {
	position: absolute;
	top: 22px;
	right: 22px;
	z-index: 2;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 36px;
	line-height: 50px;
}

@media screen and (max-width: 900px) {
	.wall-page .wall-banner {
		margin-top: 0;
		padding-top: 55px;
	}

	.wall-page .wall-banner img {
		height: 180px;
		object-fit: cover;
	}

	.wall-page .wallDetail {
		padding: 5vw;
	}

	.wall-page .wallDetail .item,
	.wall-page .wallDetail .item:nth-child(2n),
	.wall-page .wallDetail .item:nth-child(3n) {
		display: block;
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 3vw;
	}

	.wall-page .wallDetail .item .img {
		width: 100%;
		height: auto;
	}

	.wall-page .wallDetail .item img {
		width: 100%;
		height: auto;
	}

	.wall-page .wallDetail .item .titles {
		font-size: 18px;
		padding-top: 12px;
	}

	.wall-page .wall-lightbox .lightImg img {
		max-width: 100vw;
		max-height: 82vh;
	}
}
