.store {
	width: 100%;
	height: 100%;
	position: relative;
	overflow-x: hidden;
}

/* 首先定义一个动画，名为 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;
}

.bigbox {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(251, 9, 73, 0.44) 100%);
	/* opacity: 0.83; */
	/* background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FEA9BF 100%); */
}

.con1box {
	position: relative;
}

.con1box .box {
	position: relative;
}

.con1box .title {
	width: 458px;
	height: auto;
	display: block;
	margin: 0 auto;
	padding-top: 4.4%;
	padding-bottom: 7.7%;
}

.con1box .swiper-container {

	width: 80%;
	height: auto;

}

.con1box .swiper-wrapper {}

.con1box .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: transform 1.0s;
	-moz-transition: transform 1.0s;
	-ms-transition: transform 1.0s;
	-o-transition: transform 1.0s;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
}

.con1box .swiper-slide-active,
.swiper-slide-duplicate-active {
	-webkit-transform: scale(1);
	transform: scale(1);
}

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

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

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

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

.con1box .swiper-pagination {
	position: relative;
	margin-top: 7.7%;
}

.con1box .swiper-pagination-bullet {
	background: rgba(0, 0, 0, 0.3);
	margin-left: 24px;
	margin-right: 24px;
	width: 18px;
	height: 18px;
	opacity: 1;
	transition: opacity 0.3s;
}

.con1box .swiper-pagination-bullet:hover {
	background: #555555;
	opacity: 1;
}

.con1box .swiper-pagination-bullet-active {
	width: 20px;
	height: 20px;
	background: #E52048;
}

.con1box .logo {
	width: 448px;
	height: auto;
	margin: 0 auto;
	margin-top: 3.2%;
}

.con2box {
	position: relative;
}

.con2box .box {
	position: relative;
}

.con2box .title {
	width: 458px;
	height: auto;
	display: block;
	margin: 0 auto;
	padding-top: 4.6%;
	padding-bottom: 8.8%;
}

.con2box .swiper-container {

	width: 80%;
	height: auto;

}

.con2box .swiper-wrapper {}

.con2box .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: transform 1.0s;
	-moz-transition: transform 1.0s;
	-ms-transition: transform 1.0s;
	-o-transition: transform 1.0s;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
}

.con2box .swiper-slide-active,
.swiper-slide-duplicate-active {
	-webkit-transform: scale(1);
	transform: scale(1);
}

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

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

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

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

.con2box .swiper-pagination {
	position: relative;
	margin-top: 7.7%;
}

.con2box .swiper-pagination-bullet {
	background: rgba(0, 0, 0, 0.3);
	margin-left: 24px;
	margin-right: 24px;
	width: 18px;
	height: 18px;
	opacity: 1;
	transition: opacity 0.3s;
}

.con2box .swiper-pagination-bullet:hover {
	background: #555555;
	opacity: 1;
}

.con2box .swiper-pagination-bullet-active {
	width: 20px;
	height: 20px;
	background: #E52048;
}

.con2box .logo {
	width: 713px;
	height: auto;
	margin: 0 auto;
	margin-top: 4.7%;
}

@media screen and (max-width:1700px) {
	.con1box .title {
		width: 408px;
	}

	.con1box .logo {
		width: 408px;

	}

	.con2box .title {
		width: 408px;
	}

	.con2box .logo {
		width: 653px;
	}
}

@media screen and (max-width:1600px) {
	.con1box .title {
		width: 358px;
	}

	.con1box .logo {
		width: 358px;

	}

	.con2box .title {
		width: 358px;
	}

	.con2box .logo {
		width: 603px;
	}
}

@media screen and (max-width:1500px) {
	.con1box .title {
		width: 308px;
	}

	.con1box .logo {
		width: 308px;

	}

	.con2box .title {
		width: 308px;
	}

	.con2box .logo {
		width: 553px;
	}
}

@media screen and (max-width:1100px) {
	.con1box .title {
		width: 258px;
	}

	.con1box .swiper-button-prev {
		top: 49%;
		left: 2.2%;
	}

	.con1box .swiper-button-next {
		top: 49%;
		right: 2.2%;
	}

	.con1box .logo {
		width: 258px;

	}

	.con2box .title {
		width: 258px;
	}

	.con2box .swiper-button-prev {
		top: 34%;
		left: 2.2%;
	}

	.con2box .swiper-button-next {
		top: 34%;
		right: 2.2%;
	}

	.con2box .logo {
		width: 453px;
	}
}

@media screen and (max-width:900px) {
	.con1box .title {
		width: 208px;
	}


	.con1box .logo {
		width: 208px;

	}

	.con2box .title {
		width: 208px;
	}


	.con2box .logo {
		width: 403px;
	}
}

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

	.con2box .logo {
		width: 353px;
	}
}

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

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

	.con1box .swiper-button-next {
		height: 34px;
		width: 34px;
	}

	.con1box .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		margin-left: 8px;
		margin-right: 8px
	}

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

	.con2box .swiper-button-next {
		height: 34px;
		width: 34px;
	}

	.con2box .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		margin-left: 8px;
		margin-right: 8px
	}
}

@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 .title {
		width: 158px;
	}


	.con1box .logo {
		width: 158px;

	}

	.con1box .swiper-button-prev {
		top: 49%;
		left: 1.2%;
	}

	.con1box .swiper-button-next {
		top: 49%;
		right: 1.2%;
	}

	.con2box .title {
		width: 158px;
	}


	.con2box .logo {
		width: 303px;
	}

	.con2box .swiper-button-prev {
		top: 34%;
		left: 1.2%;
	}

	.con2box .swiper-button-next {
		top: 34%;
		right: 1.2%;
	}
}

@media screen and (max-width:400px) {
	.con2box .logo {
		width: 253px;
	}

	.con1box .swiper-button-prev {
		height: 20px;
		width: 20px;
		top: 53%;
	}

	.con1box .swiper-button-next {
		height: 20px;
		width: 20px;
		top: 53%;
	}

	.con2box .swiper-button-prev {
		height: 20px;
		width: 20px;
		top: 41%;
	}

	.con2box .swiper-button-next {
		height: 20px;
		width: 20px;
		top: 41%;
	}
}