body {
	background-color: #eaeaea;
	overflow: hidden;
}

.container {
	width: 1200px;
	height: 600px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #f5f5f5;
	padding: 50px;
	box-shadow: 0 30px 50px #dbdbdb;
}

.slide {
	width: max-content;
	margin-top: 50px;
}

.item {
	width: 200px;
	height: 300px;
	background-position: 50%, 50%;
	display: inline-block;
	background-size: cover;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 20px;
	box-shadow: 0 30px 50px #505050;
	transition: 1s;
}

.item:nth-child(1),
.item:nth-child(2) {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateY(0);
	border-radius: 0;
	box-shadow: none;
}

.item:nth-child(2) .content {
	display: block;
}

.item:nth-child(3) {
	left: calc(50%);
}

.item:nth-child(4) {
	left: calc(50% + 220px);
}

.item:nth-child(5) {
	left: calc(50% + 440px);
}

.item:nth-child(6) {
	left: calc(50% + 660px);
	opacity: 0;
}

.item .content {
	width: 300px;
	position: absolute;
	left: 100px;
	top: 50%;
	transform: translateY(-50%);
	font-family: system-ui;
	color: #eeeeee;
	display: none;
}

.item .name {
	font-size: 40px;
	font-weight: bold;
	opacity: 0;
	animation: showcontent 1s ease-in-out 1 forwards;
}

.item .des {
	margin: 20px 0;
	opacity: 0;
	animation: showcontent 1s ease-in-out .3s 1 forwards;
}

.item button {
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	opacity: 0;
	animation: showcontent 1s ease-in-out .6s 1 forwards;
	transition: .5s;
}

.item button:hover {
	background-color: #cccccc;
}

@keyframes showcontent {
	from {
		opacity: 0;
		transform: translateY(100px);
		filter: blur(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

.group_button {
	width: 100%;
	position: absolute;
	bottom: 50px;
	margin-left: -50px;
	text-align: center;
}

.fun_button {
	display: inline-block;
	width: 100px;
	height: 50px;
	line-height: 50px;
	color: gray;
	background-color: #eaeaea;
	font-size: 25px;
	font-weight: bold;
	margin: 0 25px;
	cursor: pointer;
	user-select: none;
	transition: all .5s;
}

.fun_button:hover {
	background-color: #cccccc;
}

.fun_button:nth-child(1) {
	transform: skew(30deg);
}

.fun_button:nth-child(1)>div {
	transform: skew(-30deg);
}

.fun_button:nth-child(2) {
	transform: skew(-30deg);
}

.fun_button:nth-child(2)>div {
	transform: skew(30deg);
}
