.product {
	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;
}

.center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.con1box {
	position: relative;
}

.con1box .bg {
	position: relative;
	width: 100%;
	height: 100%;

}

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

}

.con1box .title {
	width: 359px;
	height: auto;
	display: block;
	margin: 0 auto;
	margin-top: 6.8%;
	margin-bottom: 5.2%;
}

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

.con1box .swiper-slide {
	text-align: center;
	font-size: 18px;
	/* height: 200px; */

	/* 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;
}

.con1box .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;
}

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

.con1box .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;
}

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

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

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

}

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

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

.con1box .line {
	padding-bottom: 8%;
}

.con1box .eatimg {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.con1box .eatimg img {
	width: 359px;
	height: auto;
	margin-left: 120px;
	margin-bottom: 70px;
}

.con1box .eatimg img:nth-child(1) {
	margin-left: 0px;
}

.con1box .eatimgtwo img {
	margin-bottom: 0px;
}

.bgwang {
	width: 100%;
	height: auto;
}

.con2box {
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, #FB0949 100%);
	/* opacity: 0.83; */
	position: relative;
}

.con2box .box {
	position: relative;
	width: 100%;
	height: 100%;

}

.con2box .title {
	width: 359px;
	height: auto;
	display: block;
	margin: 0 auto;
	margin-top: 6.8%;
	margin-bottom: 5.2%;
}

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

.con2box .swiper-slide {
	text-align: center;
	font-size: 18px;
	/* height: 200px; */

	/* 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;
}

.con2box .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;
}

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

.con2box .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;
}

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

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

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

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

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

.con2box .line {
	padding-bottom: 8%;
}

.con2box .eatimg {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.con2box .eatimg img {
	width: 359px;
	height: auto;
	margin-left: 120px;
	margin-bottom: 70px;
}

.con2box .eatimg img:nth-child(1) {
	margin-left: 0px;
}

.con2box .eatimgtwo img {
	margin-bottom: 0px;
}

.con2box .logo {
	width: 632px;
	height: auto;
	margin: 0 auto;
	display: block;
	padding-bottom: 3%;
}

.con3box {
	position: relative;
}

.con3box .bg {
	position: relative;
	width: 100%;
	height: 100%;

}

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

}

.con3box .title {
	width: 359px;
	height: auto;
	display: block;
	margin: 0 auto;
	margin-top: 6.8%;
	margin-bottom: 5.2%;
}

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

.con3box .swiper-slide {
	text-align: center;
	font-size: 18px;
	/* height: 200px; */

	/* 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;
}

.con3box .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;
}

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

.con3box .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;
}

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

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

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

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

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

.con3box .line {
	padding-bottom: 9%;
}

.con3box .eatimg {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.con3box .eatimg img {
	width: 359px;
	height: auto;
	margin-left: 120px;
	margin-bottom: 70px;
}

.con3box .eatimg img:nth-child(1) {
	margin-left: 0px;
}

.con3box .eatimgtwo img {
	margin-bottom: 0px;
}

.con4box {
	position: relative;
}

.con4box .bg {
	position: relative;
	width: 100%;
	height: 100%;

}

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

}

.con4box .title {
	width: 359px;
	height: auto;
	display: block;
	margin: 0 auto;
	margin-top: 6.8%;
	margin-bottom: 5.2%;
}

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

.con4box .swiper-slide {
	text-align: center;
	font-size: 18px;
	/* height: 200px; */

	/* 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;
}

.con4box .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;
}

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

.con4box .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;
}

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

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

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

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

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

.con4box .line {
	padding-bottom: 10%;
}

.con4box .eatimg {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.con4box .eatimg img {
	width: 307px;
	height: auto;
	margin-left: 30px;
	margin-bottom: 80px;
}

.con4box .eatimg img:nth-child(1) {
	margin-left: 0px;
}

.con4box .eatimgtwo img {
	margin-bottom: 0px;
}

.con4box .logo {
	width: 593px;
	height: auto;
	margin: 0 auto;
	display: block;
	padding-bottom: 3%;
}

@media screen and (max-width:1900px) {
	.con1box .eatimg img {
		width: 330px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .eatimg img {
		width: 330px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 532px;
	}

	.con3box .eatimg img {
		width: 330px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con4box .eatimg img {
		width: 270px;
	}

	.con4box .logo {
		width: 493px;
	}
}

@media screen and (max-width:1800px) {
	.con1box .eatimg img {
		width: 310px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .eatimg img {
		width: 310px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 532px;
	}

	.con3box .eatimg img {
		width: 310px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con4box .eatimg img {
		width: 270px;
	}

	.con4box .logo {
		width: 493px;
	}
}

@media screen and (max-width:1720px) {
	.con1box .eatimg img {
		width: 280px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .eatimg img {
		width: 280px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 432px;
	}

	.con3box .eatimg img {
		width: 280px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con4box .eatimg img {
		width: 230px;
	}

	.con4box .logo {
		width: 393px;
	}
}

@media screen and (max-width:1580px) {
	.con1box .eatimg img {
		width: 250px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .eatimg img {
		width: 250px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 402px;
	}

	.con3box .eatimg img {
		width: 250px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con4box .eatimg img {
		width: 220px;
	}

	.con4box .logo {
		width: 393px;
	}
}

@media screen and (max-width:1430px) {
	.con1box .eatimg img {
		width: 220px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .eatimg img {
		width: 220px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 402px;
	}

	.con3box .eatimg img {
		width: 220px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con4box .eatimg img {
		width: 200px;
	}

	.con4box .logo {
		width: 393px;
	}
}

@media screen and (max-width:1280px) {
	.con1box .title {
		width: 300px
	}

	.con1box .eatimg img {
		width: 200px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .title {
		width: 300px
	}

	.con2box .eatimg img {
		width: 200px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 302px;
	}

	.con3box .title {
		width: 300px
	}

	.con3box .eatimg img {
		width: 200px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con4box .title {
		width: 300px
	}

	.con4box .eatimg img {
		width: 180px;
	}

	.con4box .logo {
		width: 303px;
	}
}

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

	.con1box .eatimg img {
		width: 180px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .title {
		width: 280px
	}

	.con2box .eatimg img {
		width: 180px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 302px;
	}

	.con3box .title {
		width: 280px
	}

	.con3box .eatimg img {
		width: 180px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con4box .title {
		width: 280px
	}

	.con4box .eatimg img {
		width: 160px;
	}

	.con4box .logo {
		width: 303px;
	}
}

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

	.con1box .eatimg img {
		width: 150px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .title {
		width: 280px
	}

	.con2box .eatimg img {
		width: 150px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 302px;
	}

	.con3box .title {
		width: 280px
	}

	.con3box .eatimg img {
		width: 150px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con4box .title {
		width: 280px
	}

	.con4box .eatimg img {
		width: 130px;
	}

	.con4box .logo {
		width: 303px;
	}
}

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

	.con1box .eatimg img {
		width: 110px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

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

	.con2box .title {
		width: 240px
	}

	.con2box .eatimg img {
		width: 110px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 252px;
	}

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

	.con3box .title {
		width: 240px
	}

	.con3box .eatimg img {
		width: 110px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

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

	.con4box .title {
		width: 240px
	}

	.con4box .eatimg img {
		width: 85px;
	}

	.con4box .logo {
		width: 253px;
	}

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

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

	.con1box .eatimg img {
		width: 105px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con1box .swiper-button-next {
		right: 30px;
	}

	.con1box .swiper-button-prev {
		left: 30px;
	}

	.con2box .title {
		width: 240px
	}

	.con2box .eatimg img {
		width: 105px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 252px;
	}

	.con2box .swiper-button-next {
		right: 30px;
	}

	.con2box .swiper-button-prev {
		left: 30px;
	}

	.con3box .title {
		width: 240px
	}

	.con3box .eatimg img {
		width: 105px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con3box .swiper-button-next {
		right: 30px;
	}

	.con3box .swiper-button-prev {
		left: 30px;
	}

	.con4box .title {
		width: 240px
	}

	.con4box .eatimg img {
		width: 80px;
	}

	.con4box .logo {
		width: 253px;
	}

	.con4box .swiper-button-next {
		right: 30px;
	}

	.con4box .swiper-button-prev {
		left: 30px;
	}
}

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

	.con1box .eatimg img {
		width: 85px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .title {
		width: 200px
	}

	.con2box .eatimg img {
		width: 85px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 202px;
	}

	.con3box .title {
		width: 200px
	}

	.con3box .eatimg img {
		width: 85px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con4box .title {
		width: 200px
	}

	.con4box .eatimg img {
		width: 60px;
	}

	.con4box .logo {
		width: 203px;
	}

}

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

	.con1box .eatimg img {
		width: 65px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .title {
		width: 160px
	}

	.con2box .eatimg img {
		width: 65px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con2box .logo {
		width: 202px;
	}

	.con3box .title {
		width: 160px
	}

	.con3box .eatimg img {
		width: 65px;
		margin-left: 50px;
		margin-bottom: 50px;
	}

	.con4box .title {
		width: 160px
	}

	.con4box .eatimg img {
		width: 40px;
	}

	.con4box .logo {
		width: 203px;
	}

}

@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 .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 8px;
		height: 7px;
		width: 7px;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.con1box .title {
		width: 100px;
	}

	.con1box .eatimg img {
		width: 55px;
		margin-left: 30px;
		margin-bottom: 30px;
	}

	.con2box .title {
		width: 100px
	}

	.con2box .eatimg img {
		width: 55px;
		margin-left: 30px;
		margin-bottom: 30px;
	}

	.con2box .logo {
		width: 102px;
	}

	.con3box .title {
		width: 100px
	}

	.con3box .eatimg img {
		width: 55px;
		margin-left: 30px;
		margin-bottom: 30px;
	}

	.con4box .title {
		width: 130px
	}

	.con4box .eatimg img {
		width: 35px;
		margin-bottom: 20px;
	}

	.con4box .logo {
		width: 103px;
	}

}

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

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

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

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

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

	.con1box .title {
		width: 130px;
	}

	.con1box .eatimg img {
		width: 45px;
		margin-left: 20px;
		margin-bottom: 20px;
	}

	.con2box .title {
		width: 130px
	}

	.con2box .eatimg img {
		width: 45px;
		margin-left: 20px;
		margin-bottom: 20px;
	}

	.con2box .logo {
		width: 102px;
	}

	.con3box .title {
		width: 130px
	}

	.con3box .eatimg img {
		width: 45px;
		margin-left: 20px;
		margin-bottom: 20px;
	}

	.con4box .title {
		width: 130px
	}

	.con4box .eatimg img {
		width: 35px;
		margin-left: 8px;
		margin-bottom: 8px;
	}

	.con4box .logo {
		width: 103px;
	}
}