.home-index {
	padding-bottom: 2px;
}

.home-index .home-title {
	font-size: 30px;
	text-align: center;
	padding: 50px 0;
}

.home-index .home-title .intro {
	font-size: 20px;
	text-align: center;
}

/* swiper */
.swiper-pagination {
	bottom: -6px !important;
}

.swiper-pagination-bullet {
	border-radius: 0;
	box-sizing: content-box;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 30px;
	height: 3px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background-color: #fff;
	background-clip: padding-box;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	opacity: .5;
	transition: opacity 0.6s ease;
}

.swiper-pagination-bullet-active {
	opacity: 1;
}

/* 轮播 */
.home-index #homeSwipe {
	width: 100%;
	height: 45vw;
}

.home-index #homeSwipe .swiper-slide img {
	width: 100%;
	height: 45vw;
	object-fit: cover;
}

/* 产品 */
.home-index .home-products {
	padding: 4px;
	display: flex;
	flex-wrap: wrap;
}

.home-index .home-products .item {
	margin: 4px;
	width: calc(50% - 8px);
	padding-top: calc(50% - 8px);
	position: relative;
}

.home-index .home-products .item .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 视频 */
.home-index #homeVideos {
	width: 100%;
	height: 27.8vw;
	margin-bottom: 10px;
}

.home-index #homeVideos .swiper-slide video,
.home-index #homeVideos .swiper-slide iframe {
	width: 100%;
	height: 27.8vw;
	object-fit: cover;
}

.home-index #homeVideos .swiper-slide.swiper-slide-active video {
	cursor: pointer;
}

.home-index .video-cover {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.8);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;

	transition: all 0.3s;
	opacity: 0;
	visibility: hidden;
}

.home-index .video-cover.active {
	opacity: 1;
	visibility: visible;
}

.home-index .video-cover .video-inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.home-index .video-cover .video-inner .icon {
	position: absolute;
	width: 35px;
	height: 35px;
	background: #fff;
	border-radius: 50%;
	top: 30px;
	right: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #222;
	cursor: pointer;
	z-index: 9;
	text-align: center;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.home-index .video-cover .video-inner .icon:hover {
	background: rgba(255, 255, 255, .5);
}

.home-index .video-cover .video-inner video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 关于VOC */
.home-index .brand-container-m {
	display: none;
}

.home-index .brand-container {
	display: flex;
	justify-content: center;
}

.home-index .brand-container .item {
	max-width: 455px;
	flex: 1;
	padding: 4px;
}

.home-index .brand-container .item .img {
	width: 100%;
}

/* 品牌服务 */
.home-index .service-container {
	padding: 0 8px 40px;
	width: 100%;
}

.home-index .service-container .swiper-slide {
	width: auto;
	margin: 4px;
}

.home-index .service-container .swiper-slide .item {
	width: calc(100vw / 3 - 8px);
	max-width: 455px;
}

.home-index .service-container .swiper-button-next,
.home-index .service-container .swiper-button-prev {
	--swiper-navigation-size: 24px;
	color: #333;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgb(244, 244, 244);
	/* border: 1px solid rgba(0, 0, 0, 0.1); */
	overflow: hidden;
	transition: all 0.3s;
}

.home-index .service-container .swiper-button-next:hover,
.home-index .service-container .swiper-button-prev:hover {
	background-color: #002fa5;
	color: #fff;
}

@media screen and (max-width: 767px) {
	.home-index .home-title {
		font-size: 20px;
		padding: 30px 0;
	}

	.home-index .home-title .intro {
		font-size: 14px;
	}

	.home-index .home-products .item {
		width: calc(100% - 8px);
		padding-top: calc(100% - 8px);
	}

	.home-index #homeVideos {
		height: 60vw;
	}

	.home-index #homeVideos .swiper-slide video {
		height: 60vw;
	}

	.home-index .video-cover .video-inner {
		width: 90%;
		height: auto;
	}

	.home-index .video-cover .video-inner .icon {
		top: -40px;
		right: 0;
	}

	/* 关于VOC */
	.home-index .brand-container-m {
		display: block;
	}

	.home-index .brand-container-m .item {
		width: 100%;
	}

	.home-index .brand-container {
		display: none;
	}

	/* 品牌服务 */
	.home-index .service-container .swiper-slide .item {
		width: 300px;
	}
}