@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: 2rem;
}
.indexTitle > div {
	font-size: 3.6rem;
	color: #000;
}
.indexTitle > div::after {
	content: '';
	display: block;
	width: 6rem;
	height: 1px;
	background-color: var(--primary-color);
	margin: 0 auto;
	margin-top: 0.5rem;
}
.indexTitle > p {
	font-size: 1.8rem;
	color: #333;
}

/* 轮播 */
.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);
}
/* 产品中心 */
.productBox {
	width: 100%;
	background-color: var(--background-color-base);
	padding: 6rem 0;
	display: flex;
	flex-direction: column;
	row-gap: 3rem;
}

.productBox .product {
	column-gap: 1%;
	row-gap: 3rem;
}
.productBox .product .item {
	background-color: var(--background-color-ordinary);
	width: calc((100% - 3%) / 4);
	padding: 1rem;
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	cursor: pointer;
	border-bottom: 0.3rem solid transparent;
	position: relative;
}
.productBox .product .item::after {
	position: absolute;
	width: 0;
	content: '';
	display: block;
	height: 0.3rem;
	background-color: var(--primary-color);
	bottom: 0;
	left: 0;
	transition: var(--transition-base);
}
.productBox .product .item .preview {
	aspect-ratio: 4/3;
	overflow: hidden;
}
.productBox .product .item .preview > img {
	width: 100%;
	transition: var(--transition-base);
	object-fit: contain;
}
.productBox .product > .item > .innerAlt {
	font-size: var(--font-size-extraLarge);
	text-align: center;
	color: var(--text-color-ordinary);
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}
.productBox .product > .item > .innerAlt > .title {
	padding: 1rem 0;
	font-size: 2.4rem;
	border-bottom: 1px solid #ddd;
}
.productBox .product > .item > .innerAlt > .text {
	font-size: 1.4rem;
	padding: 0;
	text-align: left;
	padding-top: 0.4rem;
	height: 5rem;
}
.productBox .product > .item > .innerAlt .innerButton {
	display: flex;
	column-gap: 4rem;
	padding-top: 0.4rem;
}
.productBox .product > .item > .innerAlt .innerButton > a:last-of-type {
	background-color: #5e5e5e;
}
.productBox .product .item:hover .preview > img {
	transform: scale(1.02);
}
.productBox .product .item:hover > p {
	color: var(--primary-color);
}
.productBox .product .item:hover:after {
	width: 100%;
}
/* 关于我们 */
.introduceBox {
	width: 100%;
	background-size: cover;
	background-color: var(--background-color-base);
	padding-top: 5rem;
	padding-bottom: 5rem;
}
.introduce {
	column-gap: 2%;
	row-gap: 2rem;
	padding-top: 4rem;
}
.introduce > .right {
	width: 48%;
	overflow: hidden;
	border-radius: 0.5rem;
}
.introduce > .right img {
	width: 100%;
	border-radius: 0.5rem;
	object-fit: cover;
}
.introduce > .left {
	overflow: hidden;
	width: 48%;
	row-gap: 2rem;
}
.introduce > .left > h3 {
	color: var(--border-color-ordinary);
	font-size: 4.2rem;
	text-transform: capitalize;
}
.introduce > .left > h3::after {
	content: '';
	display: block;
	width: 6rem;
	height: 1px;
	background-color: var(--primary-color);
	margin-top: 0.5rem;
}

.introduce > .left > .material {
	font-size: var(--font-size-medium);
	line-height: var(--line-height-bouble);
	color: var(--text-color-elite);
}
.introduce > .left > .classify {
	display: flex;
	border: 1px solid #ddd;
	width: 80%;
}
.introduce > .left > .classify > a {
	width: calc(100% / 4);
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 1rem;
	justify-content: center;
	aspect-ratio: 1/1;
	border-right: 1px solid #ddd;
}
.introduce > .left > .classify > a:last-of-type {
	border-right: none;
}
.introduce > .left > .classify > a::before {
	font-size: 4.8rem;
	line-height: 1;
}
.introduce > .left > .classify > .iconActive {
	color: var(--primary-color);
}
.introduce > .left > .classify > a:hover {
	color: var(--primary-color);
}
.introduce > .left > .customerButton {
	border-radius: 0.4rem;
	align-self: start;
}

/* 最新消息 */
.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;
}
.newsContent {
	overflow: hidden;
	column-gap: 2rem;
	height: 50rem;
	/* 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: 2/1;
	overflow: hidden;
}
.newsContent .one .poreview img {
	width: 100%;
	object-fit: contain;
	transition: var(--transition-medium);
}
.newsContent .one .latestTxet {
	padding: 2rem 1.4rem;
	display: flex;
	height: 100%;
	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);
	line-height: 1.5;
}
.newsContent .one:hover .poreview > img {
	transform: scale(1.02);
}
/* 服务支持 */
.serviceSupport {
	padding: 4rem 0;
}
.serviceSupport .serviceContainer {
	column-gap: 2rem;
}
.serviceSupport .serviceContainer .supportItem {
	width: calc((100% - 4rem) / 3);
	padding-top: 3rem;
}
.serviceSupport .serviceContainer .supportItem .poreview {
	aspect-ratio: 4/3;
	overflow: hidden;
}
.serviceSupport .serviceContainer .supportItem .poreview img {
	width: 100%;
	object-fit: contain;
	transition: var(--transition-medium);
}
.supportItem .literature {
	padding: 2rem;
	color: #333;
	position: relative;
}
.supportItem .literature i {
	position: absolute;
	display: flex;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background-color: var(--primary-color);
	right: 5rem;
	top: -2.5rem;
	color: #fff;
	font-size: 2.8rem;
	line-height: 1;
	align-items: center;
	justify-content: center;
}
.supportItem .literature .title {
	font-size: 2.4rem;
	font-weight: bold;
}
.supportItem .literature .text {
	font-size: 1.8rem;
}

.supportItem:hover .poreview img {
	transform: scale(1.02);
}
/* -----------首页分割线----------end------ */
