.home {
	width: 100%;
	height: 100%;
	position: relative;

}

.stage {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	pointer-events: none
}

/* 首先定义一个动画，名为 fadeIn */
@keyframes fadeInCon {
	from {
		/* 动画开始时 */
		opacity: 0;
		/* 透明度为0 */
	}

	to {
		/* 动画结束时 */
		opacity: 1;
		/* 透明度为1 */
	}
}

/* 然后应用动画到目标元素 */
.delayed-content {
	animation: fadeInCon 1s ease-out forwards;
	/* 动画名称，持续时间，缓动函数，填充模式 */
	animation-delay: 0.2s;
	/* 动画开始前的延迟时间 */
	opacity: 0;
	/* 默认透明度为0，确保在动画开始前内容不可见 */
}


.fade-in {
	opacity: 0;
	animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

.swiper .swiper-container {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 40px;
}

.swiper .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 8px;
	height: 14px;
	width: 14px;
	transition: opacity 0.3s;

}

.swiper .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet:hover {
	background: #FC0949;
	opacity: 1;
}

.swiper .swiper-pagination-bullet-active {
	background: #FFFFFF;
}

.swiper .swiper-button-next {
	height: 64px;
	width: 64px;
	right: 80px;
	background-image: url("../images/hone_r_btn.png");
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 1;
	transition: opacity 0.3s;
}

.swiper .swiper-button-next:hover {
	opacity: 0.6;
}

.swiper .swiper-button-prev {
	height: 64px;
	width: 64px;
	left: 80px;
	background-image: url('../images/home_l_btn.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-color: none;
	opacity: 1;
	transition: opacity 0.3s;
}

.swiper .swiper-button-prev:hover {
	opacity: 0.6;
}


.con1box {
	position: relative;
}

.con1box .bg {
	width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
}

.con1box .box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

}


.con1box .look {
	position: relative;
	z-index: 5;
	background: #FC0949;
	border-radius: 35px;
	border: 4px solid #FFFFFF;
	padding: 0.8% 1.4% 0.8% 2%;
	width: fit-content;
	display: flex;
	align-items: center;
	margin: 0 auto;
	margin-top: 31.3%;
	font-weight: 500;
	font-size: 22px;
	color: #FFFFFF;
	cursor: pointer;
	transition: border-color 1s;
	/* 设置过渡效果为1秒完成 */
}

.con1box .look:hover {
	border-color: #4caf50;
	/* 鼠标划过时的边框颜色 */
}

.con1box .more {
	width: 14px;
	height: auto;
	object-fit: cover;
	margin-left: 10px;
}

.con2box {
	position: relative;
}

.con2box .bg {
	width: 100%;
	height: auto;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
}

.con2box .box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
}


.con2box .pin {
	padding: 0 52px;
	overflow: hidden;
	margin-top: 21%;
}

.con2box .swiper-container {
	width: 100%;
	/* height: 756px; */
	margin: 0px auto;
}


.con3box {
	position: relative;
}

.con3box .bg {
	width: 100%;
	height: auto;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
}

.con3box .box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
}


.con3box .look {
	position: relative;
	z-index: 5;
	background: #FC0949;
	border-radius: 35px;
	border: 4px solid #FFFFFF;
	padding: 0.8% 1.4% 0.8% 2%;
	width: fit-content;
	display: flex;
	align-items: center;
	margin: 0 auto;
	margin-top: 55.6%;
	font-weight: 500;
	font-size: 22px;
	color: #FFFFFF;
	cursor: pointer;
	transition: border-color 1s;
	/* 设置过渡效果为1秒完成 */
}

.con3box .look:hover {
	border-color: #4caf50;
	/* 鼠标划过时的边框颜色 */
}

.con3box .more {
	width: 14px;
	height: auto;
	object-fit: cover;
	margin-left: 10px;
}

.con4box {
	position: relative;
}

.con4box .bg {
	width: 100%;
	height: auto;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
}

.con4box .box {
	position: absolute;
	top: 0;
	left: 6.8%;
	right: 0;
	bottom: 0;
	z-index: 5;
}


.con4box .look {
	position: relative;
	z-index: 5;
	background: #FC0949;
	border-radius: 35px;
	border: 4px solid #FFFFFF;
	padding: 0.8% 1.4% 0.8% 2%;
	width: fit-content;
	display: flex;
	align-items: center;
	margin-top: 33.1%;
	font-weight: 500;
	font-size: 22px;
	color: #FFFFFF;
	cursor: pointer;
	transition: border-color 1s;
	/* 设置过渡效果为1秒完成 */
}

.con4box .look:hover {
	border-color: #4caf50;
	/* 鼠标划过时的边框颜色 */
}

.con4box .more {
	width: 14px;
	height: auto;
	object-fit: cover;
	margin-left: 10px;
}

.con5box {
	position: relative;
	background: #FAFAFA;
	padding: 7.3% 9.3% 12.6% 9.3%;
}

.con5box .pin {
	width: 100%;
	height: auto;
}

@media screen and (max-width:1000px) {
	.con1box .look {
		font-size: 16px;
	}

	.con1box .more {
		width: 8px;
		margin-left: 5px;
	}

	.con3box .look {
		font-size: 16px;
	}

	.con3box .more {
		width: 8px;
		margin-left: 5px;
	}

	.con4box .look {
		font-size: 16px;
	}

	.con4box .more {
		width: 8px;
		margin-left: 5px;
	}

}

@media screen and (max-width:900px) {}

@media screen and (max-width:700px) {
	.con1box .look {
		font-size: 10px;
	}

	.con1box .more {
		width: 4px;
		margin-left: 5px;
	}

	.con3box .look {
		font-size: 10px;
	}

	.con3box .more {
		width: 4px;
		margin-left: 5px;
	}

	.con4box .look {
		font-size: 10px;
	}

	.con4box .more {
		width: 4px;
		margin-left: 5px;
	}
}

@media screen and (max-width:600px) {}

@media screen and (max-width:500px) {

	.swiper .swiper-container-horizontal>.swiper-pagination-bullets,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: 10px;
	}

	.swiper .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 8px;
		height: 7px;
		width: 7px;
	}

	.swiper .swiper-button-next {
		height: 34px;
		width: 34px;
		right: 20px;

	}

	.swiper .swiper-button-prev {
		height: 34px;
		width: 34px;
		left: 20px;
	}

	.con1box .look {
		font-size: 6px;
	}

	.con3box .look {
		font-size: 6px;
	}

	.con4box .look {
		font-size: 6px;
	}

}

@media screen and (max-width:390px) {}