/* 轮播图样式 */

.swiper {
	position: relative !important;
	width: 100%;
	/* height: 930px; */
	height: 100vh;
}

.swiper-slide {
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
}

.swiper-button-next {
	margin-right: 3%;
}

.swiper-button-prev {
	margin-left: 3%;
}

.swiper-pagination {
	margin-bottom: 30px;
}

.slide1-img {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 96%;
}

/* 轮播图上的文字样式 */
.slide-text {
	position: absolute;
	width: 45%;
	top: 180px;
	left: 8%;
	padding: 20px;
	text-align: left;
	color: var(--txt_white);
}

.slide-text h2 {
	font-weight: 600;
	font-size: 3.2rem;
	text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

.slide-text p:nth-of-type(1) {
	font-size: 1rem;
	font-weight: 500;
	animation-delay: 100ms !important;
}

.slide-text p:nth-of-type(2) {
	font-size: 1rem;
	line-height: 1.7rem;
	animation-delay: 300ms !important;
}

.decoration {
	padding-top: 18px;
	padding-bottom: 25px;
	display: flex;
	justify-content: space-between;
	width: 120px;
	animation-delay: 200ms !important;
}

.dec-left {
	flex: 30%;
	height: 2px;
	background-color: var(--secondary_color);
}

.dec-right {
	flex: 70%;
	height: 2px;
	background-color: var(--primary_color);
}

.rounded-rectangle {
	display: block;
	margin-top: 60px;
	width: 200px;
	height: 50px;
	border-radius: 25px;
	line-height: 46px;
	background-color: var(--secondary_color);
	text-align: center;
	font-size: 1rem;
	font-weight: 600;
	animation-delay: 400ms !important;
	color: var(--txt_white) !important;
}

.rounded-rectangle:hover {
	color: var(--txt_white) !important;
	font-size: 1.1rem;
}

.ele-animation {
	animation-duration: 1.5s !important;
}

.scale-img {
	animation: scale-img 10s;
	animation-fill-mode: forwards;
}

@keyframes scale-img {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.1);
	}
}

/* 产品中心 */
.vertical-line {
	position: relative;
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.vertical-line::after {
	content: "";
	display: block;
	width: 80px;
	height: 80px;
	position: absolute;
	top: 15%;
	right: 30px;
	background-color: var(--secondary_color);
	border-radius: 10px;
	animation: rect-tran 3s linear 2s infinite;
}

@keyframes rect-tran {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0px);
	}
}

.img-container {
	position: absolute;
	width: 90%;
	overflow: hidden;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	border-radius: 10px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.img-container img:nth-child(2),
.img-container img:nth-child(3),
.img-container img:nth-child(4) {
	display: none;
}

.products-items {
	position: relative;
	padding: 15px 40px 20px 50px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	transition: all 0.1s;
}

.products-items:hover {
	background-color: var(--primary_color);
}

.marg-a+.marg-a {
	display: block;
	margin-top: 1rem;
}

.products-items h2 {
	font-weight: 600;
}

.text-right {
	display: none;
}

.p1 {
	position: absolute;
	top: 35px;
	right: 45px;
	color: rgba(0, 0, 0, 0.3);
}

.products-items:hover h2,
.products-items:hover .p2 {
	color: var(--txt_white);
}

.products-items:hover .p1 {
	color: rgba(255, 255, 255, 0.2);
}

.p2 {
	margin-top: 20px;
	color: var(--p_color);
	font-size: 1rem;
	line-height: 1.7rem;
	margin-bottom: 0 !important;
}

.solid-circle {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: rgba(220, 220, 220, 1);
	transition: all 0.3s;
}

.products-items:hover .solid-circle {
	width: 26px;
	height: 26px;
	border-radius: 13px;
	padding-top: 2px;
	background-color: var(--primary_color);
}

.sc1 {
	top: 50%;
	left: -31px;
}

.products-items:hover .sc1 {
	left: -39px;
}

.sc2 {
	top: 50%;
	left: -31px;
}

.products-items:hover .sc2 {
	left: -39px;
}

.sc3 {
	top: 50%;
	left: -31px;
}

.products-items:hover .sc3 {
	left: -39px;
}

.sc4 {
	top: 50%;
	left: -31px;
}

.products-items:hover .sc4 {
	left: -39px;
}

.arrow-left {
	display: none;
	font-size: 0.1rem;
	color: var(--txt_white);
}

.products-items:hover .arrow-left {
	display: inline-block;
	color: var(--txt_white);
	font-size: 1rem;
}


/* 解决方案 */
.index-solu {
	background-color: var(--txt_white);
}

.solu-items {
	display: block;
	position: relative;
	margin-bottom: 30px;
}

.solu-items>div {
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	color: var(--txt_white);
	transition: all 0.3s;
}

.solu-items>div>img {
	display: block;
	width: 100%;
	transition: all 0.3s;
}

.solu-items>div>div {
	position: absolute;
	padding-top: 40%;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.3);
	text-align: center;
	transition: all 0.3s;
}

.solu-items>div>div>i {
	font-size: 2.9rem;
	line-height: 5rem;
	transition: all 0.3s;
}

.solu-items>div>div>h3 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3rem;
}

.solu-items>div>div>p {
	font-size: 0.9rem;
}

.solu-items:hover>div>img {
	transform: scale(1.2)
}

.solu-items:hover>div>div {
	background-color: rgba(0, 0, 0, 0);
}

.solu-items:hover>div {
	transform: translateY(-20PX);
	box-shadow: 2PX 2PX 8PX rgba(0, 0, 0, 0.3);
}


/* 资质荣誉 */
.honour {
	position: relative;
}

.honour::after {
	content: '';
	width: 1470px;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -735px;
	background-color: rgba(0, 0, 0, 0.1);
}

/* 资质荣誉-左边 */
.honour-in {
	height: 430px;
	width: 90%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-content: space-between;
}

.honour-in>div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 45%;
	height: 45%;
	background-color: var(--txt_white);
	border-radius: 6px;
	text-align: center;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.honour-in h3 {
	font-size: 3rem;
	font-weight: 600;
	color: var(--primary_color);
}

.honour-in p {
	font-size: 1rem;
}

.honour-in h3 span {
	font-size: 1.6rem;
	font-weight: normal;
	vertical-align: bottom;
	color: var(--p_color1);
	transition: all 0.3s;
}

.honour-in>div:hover {
	background-color: var(--primary_color);
	color: var(--txt_white);

}

.honour-in>div:hover span,
.honour-in>div:hover h3 {
	color: var(--txt_white);
}


/* 资质荣誉-右边 */
#wrapper {
	width: 100%;
	/* margin: 24px auto; */
	position: relative;
}

#slider-wrap {
	width: 100%;
	height: 430px;
	position: relative;
	overflow: hidden;
	background-color: var(--txt_white);
	border-radius: 6px;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

#slider-wrap ul#slider {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
}

#slider-wrap ul#slider li {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin-top: 70px;
}

#slider-wrap ul#slider h3 {
	font-size: 1.1rem !important;
	line-height: 2rem;
	text-align: center;
	padding-top: 1.2rem;
}

#slider-wrap ul#slider li div img {
	height: 280px;
}

.img-2in1 img:nth-child(2) {
	margin-left: 10px;
}

#slider-wrap ul#slider li>div {
	position: absolute;

}

#slider-wrap ul#slider li>div h3 {
	font-size: 36px;
	text-transform: uppercase;
}

#slider-wrap ul#slider li>div span {
	font-family: Neucha, Arial, sans serif;
	font-size: 21px;
}

#slider-wrap ul#slider li i {
	text-align: center;
	line-height: 400px;
	display: block;
	width: 100%;
	font-size: 90px;
}


/*btns*/
.btns {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 50%;
	margin-top: -25px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	/* background: rgba(0, 0, 0, 0.1); */
	z-index: 100;
	border-radius: 20px;


	-webkit-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-ms-user-select: none;

	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	transition: all 0.1s ease;
}

.btns:hover {
	background: rgba(0, 0, 0, 0.1);
}

#next {
	right: 15px;
}

#previous {
	left: 15px;
}

/* #slider-wrap.active #next {
	right: 0px;
}

#slider-wrap.active #previous {
	left: 0px;
} */


/*bar*/
/* #pagination-wrap {
	min-width: 20px;
	margin-top: 450px;
	margin-left: auto;
	margin-right: auto;
	height: 15px;
	position: relative;
	text-align: center;
}


#pagination-wrap ul {
	width: 100%;
}

#pagination-wrap ul li {
	margin: 0 4px;
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--primary_color);
	opacity: 0.5;
	position: relative;
	top: 0;


}

#pagination-wrap ul li.active {
	width: 12px;
	height: 12px;
	top: 3px;
	opacity: 1;
	box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 0px;
} */

/*ANIMATION*/
#slider-wrap ul,
#pagination-wrap ul li {
	-webkit-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
	-moz-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
	-o-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
	-ms-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
	transition: all 0.3s cubic-bezier(1, .01, .32, 1);
}

/* 合作客户 */
.hzkh-bg {
	/* background-color: #fff; */
	background-image: url(/images/hzkh-bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	/* border-top: 1px solid rgba(0, 0, 0, 0.1); */
}

.customer-logo>div>div {
	background-color: #fff;
	border-radius: 4px;
	/* padding: 10px; */
	/* height: 74px; */
	margin: 0 auto;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	transition: all 0.3s;
	overflow: hidden;
}

.customer-logo>div>div:hover {
	transform: translateY(-10px);
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* 新闻中心 */
.news {
	background-color: #fff;
}

.news-container {
	background-color: var(--boxbg);
	padding-bottom: 45px;
	transition: all 0.5s;
}

.news-container:hover {
	box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
	transform: translateY(-20px);
}

.news-img {
	overflow: hidden;
	height: 300px;
}

.news-img img {
	/* height: 100%; */
	transition: all 0.5s;
}

.news-container:hover .news-img img {
	transform: scale(1.1);
}

.news-txt {
	padding-left: 40px;
	padding-right: 40px;
}

.news-date {
	display: flex;
	justify-content: space-between;
	/* align-content: center; */
	align-items: center;
	padding-top: 35px;
	padding-bottom: 10px;
}

.news-date>div:nth-child(1) {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.news-date>div>div:nth-child(1) {
	color: var(--primary_color);
	font-size: 3.5rem;
	font-weight: 600;
}

.news-date>div>div:nth-child(2) {
	margin-left: 10px;
}

.news-date>div:nth-child(2) {
	width: 90px;
	height: 1px;
	background-color: var(--p_color1);
}

.news-date>div>div>span {
	display: block;
	color: var(--p_color1);
	font-size: 1.1rem;
	font-weight: 600;
}

.news-txt p {
	font-size: 0.9rem;
	line-height: 1.5rem;
	margin-top: 20px;
	color: var(--p_color);
	/* 以下四行用于多行文本末尾显示省略号，仅对webkit内核浏览器有效 */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

@media screen and (min-width:1400px) {
	.slide1-img {
		height: 100%;
	}

	.slide-text {
		width: 35%;
		top: 250px;
	}

	.slide-text h2 {
		font-size: 3.8rem;
	}

	.vertical-line::after {
		top: 30px;
	}

	.text-right {
		display: block;
	}

	#slider-wrap,
	.honour-in {
		height: 500px;
	}

	#pagination-wrap {
		margin-top: 490px;
	}

	#slider-wrap ul#slider li div img {
		height: 340px;
	}
}