@charset "utf-8";
/* -----------首页分割线----------start------ */
/* 跳转 */
.jump {
	border-radius: 100rem;
	font-size: 1.6rem;
}
.jump::after {
	content: '\e63f';
	font-family: 'iconfont' !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
}
/* 首页栏目标题 */
.indexTitle {
	text-align: center;
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}
.indexTitle > div {
	font-size: 3.8rem;
	color: #333;
	font-weight: bold;
	text-transform: capitalize;
}
.indexTitle > p {
	text-transform: uppercase;
	color: #d7d7d7;
	font-size: 2rem;
	padding-bottom: 1rem;
	line-height: 1;
	font-weight: bold;
}
/* 轮播 */
.indexBanner {
	width: 100%;
}
.indexBanner .home_banner .indexBannerBox {
	position: relative;
	overflow: hidden;
}
.indexBanner .home_banner .indexBannerBox > img {
	width: 100%;
	object-fit: contain;
	transform: scale(1.1);
}
.indexBanner .home_banner .indexBannerBox > .inner {
	position: absolute;
	z-index: 2;
	left: 5%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	row-gap: 4rem;
	width: 30%;
}
.indexBanner .home_banner .indexBannerBox > .inner > .bannerTitle {
	font-size: 5.4rem;
	color: var(--text-color-epic);
	font-weight: bold;
	transform: translateY(-50%);
	opacity: 0;
}
.indexBanner .home_banner .indexBannerBox > .inner > .bannerIntro {
	font-size: var(--font-size-base);
	line-height: var(--line-height-bouble);
	color: var(--text-color-epic);
	transform: scale(0.7);
	opacity: 0;
}
.indexBanner .home_banner .indexBannerBox > .inner > .jump {
	transform: translateY(50%);
}
.slideActive > img {
	transform: scale(1) !important;
	transition: var(--transition-large);
}
.slideActive > .inner > .bannerTitle {
	opacity: 1 !important;
	transform: translateY(0) !important;
	transition: var(--transition-large);
}
.slideActive > .inner > .bannerIntro {
	opacity: 1 !important;
	transform: scale(1) !important;
	transition: var(--transition-large);
}
.slideActive > .inner > .jump {
	transform: translateY(0) !important;
	transition: var(--transition-large);
}

.indexBanner .home_banner .buttonBox {
	bottom: 5%;
	position: absolute;
	right: 10%;
	z-index: 99;
	display: flex;
	column-gap: 3rem;
}
.indexBanner .home_banner .index_prev,
.indexBanner .home_banner .index_next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	background-color: var(--background-color-ordinary);
	color: var(--text-color-rare);
	border: 0.1rem solid var(--border-color-elite);
	/* opacity: 0.8; */
	background-image: none;
	cursor: pointer;
	border-radius: 50%;
	font-size: var(--font-size-oversize);
}
.indexBanner .home_banner .index_prev:hover,
.indexBanner .home_banner .index_next:hover {
	background-color: var(--primary-color);
	border-color: transparent;
	opacity: 1;
	color: var(--text-color-epic);
}
/* 关于我们 */
.introduceBox {
	width: 100%;
	background-color: #fff;
	padding-top: 5rem;
	padding-bottom: 5rem;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 0 0;
}
.introduceBox::after {
	position: absolute;
	content: '';
	width: calc(50% + 20rem);
	height: calc(100% - 10rem);
	display: block;
	background-color: #f8f8f8;
	right: 0;
	top: 5rem;
}

.introduceBox .indexTitle {
	text-align: left;
}
.introduce {
	column-gap: 5rem;
}

.introduce > .left {
	width: calc(50% - 5rem);
	overflow: hidden;
	position: relative;
	padding-top: 4rem;
	margin-top: 4rem;
}
.introduce > .left .introduce_banner img {
	object-fit: contain;
	border-radius: 1rem;
}
.introduce > .left .introduce_banner .buttonBox {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99;
	opacity: 0;
	width: 100%;
	justify-content: space-between;
}
.introduce > .left .introduce_banner:hover .buttonBox {
	opacity: 1;
}
.introduce > .left .introduce_banner img {
	width: 100%;
	object-fit: cover;
}
.introduce > .left::after {
	content: '';
	display: block;
	width: 20rem;
	height: 10rem;
	background-color: var(--primary-color);
	top: 0rem;
	left: 0;
	position: absolute;
}
.introduce > .right {
	row-gap: 1rem;
	width: 50%;
	z-index: 9;
	position: relative;
	top: -4rem;
}
.introduce > .right > .rightTitle {
	font-size: 3.8rem;
	color: #333;
	font-weight: bold;
}
.enVersion .introduce > .right > .rightTitle {
	font-size: 3rem !important;
}
.introduce > .right > .rightTitle > div::after {
	content: '';
	display: block;
	width: 6rem;
	height: 1px;
	background-color: var(--primary-color);
	margin-top: 0.5rem;
	margin: 1rem 0 0;
}

.introduce > .right > .material {
	font-size: 1.8rem;
	line-height: 2;
	color: #454545;
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	z-index: 9;
}
.introduce > .right > .classify {
	display: flex;
	justify-content: space-between;
}
.introduce > .right > .classify > a {
	width: calc(100% / 4);
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 1rem;
	justify-content: center;
	font-size: 1.8rem;
	transition: var(--transition-base);
	position: relative;
}
.introduce > .right > .classify > a:last-of-type {
	border-right: none;
}
.introduce > .right > .classify > a::before {
	color: #999;
	font-size: 4.8rem;
	line-height: 1;
	width: 8rem;
	height: 8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #eaeaea;
	border-radius: 50%;
	box-shadow: -1px -1px 3px 0px #999;
}
.introduce > .right > .classify > a::after {
	content: '';
	position: absolute;
	display: block;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 80%;
	background-color: #eaeaea;
}
.introduce > .right > .classify > a:last-of-type::after {
	display: none;
}
.introduce > .right > .classify > .iconActive {
	color: var(--primary-color);
}
.introduce > .right > .classify > a:hover {
	color: var(--primary-color);
}
.introduce > .right > .classify > .iconActive::before {
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	box-shadow: -1px -1px 3px 0px var(--primary-color);
}
.introduce > .right > .classify > a:hover::before {
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	box-shadow: -1px -1px 3px 0px var(--primary-color);
}
.introduce > .right > .customerButton {
	width: 17rem;
	height: 5rem;
	font-size: 1.8rem;
	text-transform: uppercase;
	border-radius: 1rem;
}
/* 产品中心 */
.productBox {
	width: 100%;
	background-color: #f9f9f9;
	padding: 5rem 0;
	display: flex;
	flex-direction: column;
	row-gap: 3rem;
}
.product_pagination {
	display: flex;
	width: 100%;
	justify-content: center;
	box-sizing: border-box;
	column-gap: 3rem;
	flex-wrap: nowrap;
	flex-shrink: 0;
}
.product_pagination > span {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: calc((100% - 8rem * 3) / 9);
	text-align: center;
	border: 1px solid #bdbdbd;
	height: 100%;
	color: #bdbdbd;
	opacity: 1;
	font-size: 1.6rem;
	border-radius: 0;
	padding: 1rem 0;
	background-color: transparent;
}
.product_pagination .swiper-pagination-bullet-active,
.product_pagination > span:hover {
	background-color: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}

.product_banner {
	padding-top: 5rem !important;
	padding-bottom: 1rem !important;
}
.product_banner .ProductList {
	display: flex;
	column-gap: 1rem;
}
.product_banner .ProductList .content {
	width: calc((100% - 3rem) / 4);
	border: 1px #eee solid;
	border-radius: 0.4rem;
	box-shadow: 0px 2px 5px 3px #eee;
}

.product_banner .ProductList .content .imgBox {
	overflow: hidden;
	aspect-ratio: 5/4;
}
.product_banner .ProductList .content .imgBox > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-base);
}
.product_banner .ProductList .content .textual {
	padding: 2rem 1rem;
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}
.product_banner .ProductList .content .textual > div {
	font-size: 2rem;
}
.product_banner .ProductList .content .textual > p {
	font-size: 1.4rem;
	color: #666;
	line-height: 2;
}
.product_banner .ProductList .content:hover .imgBox > img {
	transform: scale(1.01);
}
.product_banner .ProductList .content:hover .textual > div {
	color: var(--primary-color);
}

/* 产品分类 */
.categoryBox {
	width: 100%;
	background-color: #f9f9f9;
	padding: 5rem 0;
	display: flex;
	flex-direction: column;
	row-gap: 3rem;
}
.category {
	column-gap: 2rem;
}
.category .item {
	width: calc((100% - 4rem) / 3);
	overflow: hidden;
	position: relative;
	aspect-ratio: 3/2;
}
.category .item > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* aspect-ratio: 3/2; */
}
.category .item .content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: linear-gradient(to right, var(--primary-color), transparent);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10% 5rem;
	color: #fff;
	row-gap: 1rem;
}
.category .item .content > p {
	font-size: 3rem;
}
.category .item .content .txt {
	width: 45%;
	line-height: 2;
}

.categoryBox .customerButton {
	width: 17rem;
	height: 5rem;
	font-size: 1.8rem;
	text-transform: uppercase;
	border-radius: 0.4rem;
	background-color: #f5f5f5;
	color: #999;
	border: 1px solid #ddd;
	margin: 0 auto;
}
.categoryBox .customerButton:hover {
	background-color: var(--primary-color);
	color: #fff;
}
/* 最新消息 */
.newBox {
	background-color: var(--background-color-ordinary);
	padding-top: 5rem;
	padding-bottom: 5rem;
	overflow: hidden;
}
.news {
	row-gap: 5rem;
}

.news > h3 {
	font-size: 4.8rem;
	text-align: center;
	color: #333;
}
.newsType {
	display: flex;
	width: 100%;
	justify-content: center;
	box-sizing: border-box;
	column-gap: 3rem;
	flex-wrap: nowrap;
	flex-shrink: 0;
}
.newsType > a {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: calc((100% - 8rem * 3) / 9);
	text-align: center;
	border: 1px solid #bdbdbd;
	height: 100%;
	color: #bdbdbd;
	opacity: 1;
	font-size: 1.6rem;
	border-radius: 0;
	padding: 1rem 0;
	background-color: transparent;
}
.newsType a:first-of-type,
.newsType a:hover {
	background-color: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}

.newsContent {
	overflow: hidden;
	column-gap: 2rem;
	height: 62rem;
	/* row-gap: 2rem; */
	justify-content: space-between;
}
.newsContent .one {
	width: calc(30% - 2rem);
	/* height: 50rem; */
	display: flex;
	flex-direction: column;
}
.newsContent .one .poreview {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
}
.newsContent .one .poreview img {
	width: 100%;
	object-fit: contain;
	transition: var(--transition-medium);
}
.newsContent .one .latestTxet {
	padding: 2rem 1.4rem;
	display: flex;
	flex-direction: column;
	color: var(--text-color-rare);
	row-gap: 2rem;
	background-color: #fff;
}
.newsContent .one .latestTxet > span {
	font-size: var(--font-size-base);
}
.newsContent .one .latestTxet > .title {
	font-size: var(--font-size-large);
	font-weight: bold;
	color: #000;
}
.newsContent .one .latestTxet > .depict {
	font-size: var(--font-size-base);
	line-height: 2;
	-webkit-line-clamp: 3;
}
.newsContent .one .latestTxet > span::before {
	padding-right: 0.4rem;
}
.newsContent .one .latestTxet > .jump {
	align-self: start;
	margin-top: 1.2rem;
}

.newsContent .literature {
	width: calc(40% - 2rem);
	height: calc(100% / 3 - 0.5rem);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #fff;
	padding: 1.4rem;
	row-gap: 1rem;
	overflow: hidden;
}
.newsContent .literature > .title {
	font-size: var(--font-size-large);
	font-weight: bold;
	color: var(--text-color-ordinary);
}
.newsContent .literature > .depict {
	font-size: var(--font-size-base);
	color: var(--text-color-rare);
	-webkit-line-clamp: 3;
	line-height: 2;
}
.newsContent .one:hover .poreview > img {
	transform: scale(1.02);
}
/* 在线留言 */
.guestbookBox {
	background-repeat: no-repeat;
	background-size: cover;
}
.guestbook {
	padding-top: 5rem;
	padding-bottom: 5rem;
}
.guestbook .information {
	width: 50%;
	column-gap: 3rem;
	row-gap: 3rem;
}
.guestbook .information .column {
	display: flex;
	width: calc((100% - 3rem) / 2);
	align-items: center;
	column-gap: 1rem;
}
.guestbook .information .column::before {
	font-size: 2.8rem;
	flex-shrink: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	width: 4.6rem;
	height: 4.6rem;
	line-height: 4.6rem;
	text-align: center;
	color: #fff;
}
.guestbook .information .column div {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.guestbook .information .column div p:first-of-type {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--text-color-base);
}
.guestbook .information .column div p:last-of-type {
	font-size: 1.4rem;
	color: #666;
}

.guestbook .customerButton {
	align-self: center;
	border-radius: 0.4rem;
}

/* -----------首页分割线----------end------ */
