@charset "utf-8";
/* -----------首页分割线----------start------ */
/* 自定义轮播图的分页器 */
.my-bullet {
	width: 1.5rem;
	height: 1.5rem;
	display: inline-block;
	border-radius: 50%;
	background-color: var(--background-color-epic);
	cursor: pointer;
	margin: 0 0.4rem;
}
.my-bullet-active {
	background-color: var(--primary-color) !important;
}
/* 跳转 */
.jump {
	align-self: flex-start;
	padding: 1rem 0;
	color: var(--text-color-epic);
	text-align: center;
	font-size: var(--font-size-large);
	border-bottom: 1px solid #ff7900;
}
/* 轮播 */
.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-ordinary);
	padding: 9rem 0;
	display: flex;
	flex-direction: column;
	row-gap: 5rem;
}
.productBox > h3 {
	font-size: 4.8rem;
	text-align: center;
	color: #333;
}
.productBox .product {
	column-gap: 1%;
	row-gap: 3rem;
}
.productBox .product .item {
	background-color: var(--background-color-base);
	width: calc((100% - 3%) / 4);
	padding: 3rem;
	display: flex;
	flex-direction: column;
	row-gap: 3rem;
	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 > p {
	font-size: var(--font-size-extraLarge);
	text-align: center;
	color: var(--text-color-ordinary);
}
.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: url('/img/abstractsBg.jpg') 0 0 no-repeat;
	background-size: cover;
	background-color: var(--background-color-base);
	padding-top: 8rem;
	padding-bottom: 8rem;
}
.introduce {
	column-gap: 2%;
	row-gap: 4rem;
}

.introduce > .left {
	overflow: hidden;
	width: 49%;
	row-gap: 3rem;
}
.introduce > .left > h3 {
	color: var(--border-color-ordinary);
	font-size: 4.8rem;
	text-transform: capitalize;
}
.introduce > .left > .portray {
	color: var(--primary-color);
	font-size: var(--font-size-extraLarge);
}
.introduce > .left > .material {
	font-size: var(--font-size-medium);
	line-height: var(--line-height-bouble);
	color: var(--text-color-elite);
	text-indent: calc(var(--font-size-medium) * 2);
}

.introduce > .left > a {
	font-size: var(--font-size-medium);
	color: var(--text-color-epic);
	width: 17rem;
	height: 5rem;
	border-radius: 1rem;
	background-color: var(--primary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 1rem;
	position: relative;
	overflow: hidden;
}

.introduce > .left > a i {
	border-radius: 50%;
	border: 1px solid var(--border-color-epic);
	font-size: var(--font-size-medium);
	width: calc(var(--font-size-medium) * 1.5);
	height: calc(var(--font-size-medium) * 1.5);
	display: flex;
	justify-content: center;
	align-items: center;
}

.introduce > .left > a::before {
	content: '';
	position: absolute;
	display: block;
	transition: all 0.6s;
	width: 100%;
	height: 0;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	padding-top: 100%;
	transform: translateX(-50%) translateY(-50%);
}
@keyframes style1 {
	0% {
		background: rgba(0, 0, 0, 0.25);
		transform: translateX(-50%) translateY(-50%) scale(0);
	}
	100% {
		background: 0 0;
		transform: translateX(-50%) translateY(-50%) scale(1);
	}
}
.introduce > .left > a:hover::before {
	animation: style1 1s;
	z-index: 1;
}

.introduce > .right {
	width: 49%;
	overflow: hidden;
	border-radius: 2rem;
}
.introduce > .right img {
	width: 100%;
	border-radius: 2rem;
	object-fit: cover;
}

.statistics {
	margin-top: 3rem;
	border: 1px solid var(--border-color-elite);
}

.statistics .count {
	width: calc(100% / 5);
	padding: 3rem;
	row-gap: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-right: 1px solid var(--border-color-elite);
}
.statistics .count img {
	width: 8rem;
	object-fit: contain;
}
.statistics .count:last-of-type {
	border-right: none;
}
.statistics .count .num,
.statistics .count .prefix {
	font-size: 4.8rem;
	font-weight: bold;
}
.statistics .count .suffix {
	font-size: var(--font-size-medium);
}
.statistics .count > p span {
	color: var(--primary-color);
}
.statistics .count > p {
	font-size: var(--font-size-base);
	color: var(--text-color-ordinary);
}
.statistics .count:hover {
	background-color: var(--primary-color);
}
.statistics .count:hover > img {
	filter: invert(50%) grayscale(100%) brightness(100);
}
.statistics .count:hover > p {
	color: var(--text-color-epic);
}
.statistics .count:hover p span {
	color: var(--text-color-epic);
}

/* 解决方案 */
.solutionBox {
	width: 100%;
	background: url('/img/solutionBg.jpg') 0 0 no-repeat;
	padding: 8rem 0;
	display: flex;
	flex-direction: column;
	row-gap: 5rem;
	justify-content: space-between;
}

.solutionBox > h3 {
	font-size: 4.8rem;
	text-align: center;
	color: #333;
}
.solution .solution_pagination {
	position: static;
	margin-top: 2rem;
}
.solution .solutionCon {
	position: relative;
	display: block;
}
.solution .solutionCon > img {
	width: 100%;
	object-fit: contain;
}
.solution .solutionCon .literature {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 2rem;
	color: var(--text-color-epic);
	font-size: var(--font-size-oversize);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 0;
	background-color: rgb(0, 0, 0, 0.5);
	opacity: 0;
}

.solution .solutionCon:hover .literature {
	height: 100%;
	opacity: 1;
	transition: var(--transition-base);
}

/* 最新消息 */
.newBox {
	background-color: var(--background-color-base);
	padding-top: 5rem;
	padding-bottom: 5rem;
	overflow: hidden;
}
.news {
	row-gap: 5rem;
}

.news > h3 {
	font-size: 4.8rem;
	text-align: center;
	color: #333;
}
.newsContent {
	column-gap: 3%;
}
.newsContent .left {
	position: relative;
	width: calc((100% - 3%) / 2);
	overflow: hidden;
}
.newsContent .left > img {
	width: 100%;
	object-fit: contain;
	transition: var(--transition-medium);
}
.newsContent .left .latestTxet {
	position: absolute;
	padding: 2rem;
	left: 0%;
	bottom: 0%;
	display: flex;
	flex-direction: column;
	color: var(--text-color-epic);
	row-gap: 2rem;
	background-color: rgb(13, 37, 101, 0.45);
}
.newsContent .left .latestTxet > .title {
	font-size: var(--font-size-large);
}
.newsContent .left .latestTxet > .depict {
	font-size: var(--font-size-base);
	line-height: 1.5;
}
.newsContent .left .latestTxet > span {
	font-size: var(--font-size-base);
}
.newsContent .left .latestTxet > span::before {
	padding-right: 0.4rem;
}
.newsContent .right {
	width: calc((100% - 3%) / 2);
	display: flex;
	flex-direction: column;
	row-gap: 3rem;
	justify-content: space-between;
}
.newsContent .right .box {
	height: 15rem;
	background-color: var(--background-color-base);
	display: flex;
	border-radius: var(--border-radius-base);
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border-color-elite);
}
.newsContent .right .box .imgBox {
	overflow: hidden;
	width: 20rem;
}
.newsContent .right .box .imgBox img {
	width: 100%;
	object-fit: contain;
	transition: var(--transition-medium);
	border-radius: var(--border-radius-base);
}
.newsContent .right .box > .literature {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	row-gap: 1rem;
	padding: 0 2rem;
	width: calc(100% - 20rem);
}
.newsContent .right .box > .literature > .title {
	font-size: var(--font-size-large);
	color: var(--text-color-ordinary);
}
.newsContent .right .box > .literature > .depict {
	font-size: var(--font-size-base);
	color: var(--text-color-rare);
	line-height: 2;
}
.newsContent .right .box > .literature > span {
	color: var(--text-color-legend);
	font-size: var(--font-size-base);
}
.newsContent .right .box > .literature > span::before {
	color: var(--text-color-legend);
	padding-right: 0.4rem;
}
.newsContent .left:hover > img {
	transform: scale(1.05);
}
.newsContent .right .box:hover .imgBox > img {
	transform: scale(1.05);
}
.newsContent .right .box:hover > .literature > .title {
	color: var(--primary-color);
}
/* -----------首页分割线----------end------ */
