@charset "utf-8";
/* 产品列表2 */
.lists_product_two {
	padding: 3rem 0;
	background-color: #f4f4f4;
}
.lists_product_two .product_classify {
	border: 1px solid #e8e8e8;
	border-radius: 0.5rem;
	overflow: hidden;
	width: 100%;
	background-color: #fff;
	box-sizing: border-box;
}
.lists_product_two .product_classify .classify_item {
	display: flex;
	border-bottom: 1px solid #e8e8e8;
}
.lists_product_two .product_classify .classify_item:last-of-type {
	border-bottom: none;
}
.lists_product_two .product_classify .classify_item > .one {
	width: 10rem;
	padding: 1rem;
	border-right: 1px solid #e8e8e8;
	align-items: self-start;
	box-sizing: border-box;
	flex-shrink: 0;
	text-align: center;
}
.lists_product_two .product_classify .classify_item > .two {
	display: flex;
	box-sizing: border-box;
	flex-wrap: wrap;
	flex: 1;
}
.lists_product_two .product_classify .classify_item > .two > a {
	width: calc(100% / 8);
	box-sizing: border-box;
	font-size: 1.6rem;
	overflow: hidden;
	cursor: pointer;
	height: 5rem;
	line-height: 5rem;
	padding: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lists_product_two .product_classify .classifyActive {
	color: var(--primary-color);
}
.lists_product_two .within {
	row-gap: 2rem;
	padding: 1rem;
	background: #fff;
}
.lists_product_two .list_screens {
	background-color: #fff;
	border: 1px solid #ddd;
}

.lists_product_two .list_screens ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.lists_product_two .list_screens ul > li {
	flex: 1;
	text-align: center;
	border-right: 1px solid #ddd;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;
}
.lists_product_two .list_screens ul > li:last-of-type {
	border-right: none;
}
.lists_product_two .list_screens ul > li:nth-child(2) {
	flex: 3;
}

.lists_product_two .list_screens .screen_title {
	background: #f3f5f7;
	border-bottom: 2px solid #000;
}
.lists_product_two .list_screens .screen_content {
	border-bottom: 1px solid #ddd;
	background-color: #fff;
}
.lists_product_two .list_screens .screen_title > li {
	font-size: 1.6rem;
	color: #6e6c6c;
	height: 6rem;
}
.lists_product_two .list_screens .screen_content > li {
	font-size: 1.4rem;
	color: #6e6c6c;
	height: 15rem;
	overflow: hidden;
}
.lists_product_two .list_screens .screen_content > li a {
	width: 100%;
	height: 100%;
	overflow: hidden;
	color: #6e6c6c;
}
.lists_product_two .list_screens .screen_content > li a:hover {
	color: var(--primary-color);
}
.lists_product_two .list_screens .screen_content > li a img {
	width: 100%;
	object-fit: contain;
	transition: 0.3s all ease;
}
.lists_product_two .list_screens .screen_content > li .navigation {
	text-align: center;
	transition: 0.3s all ease;
	display: block;
	width: 10rem;
	height: 3.3rem;
	line-height: 3.2rem;
	background-color: var(--primary-color);
	color: #fff;
	font-size: 1.4rem;
	border-radius: 0.2rem;
}
.lists_product_two .list_screens .screen_content > li .pdf {
	display: flex;
	column-gap: 0.5rem;
	align-items: center;
	justify-content: center;
}
.lists_product_two .list_screens .screen_content > li .pdf > img {
	width: 5rem;
	height: 5rem;
	object-fit: contain;
}
.lists_product_two .list_screens .screen_content > li .pdf > span {
	font-size: 1.4rem;
	color: #6e6c6c;
}

.lists_product_two .list_screens .screen_content > li:nth-child(2) {
	display: block;
	text-align: left;
	line-height: 2;
}
.lists_product_two .list_screens .screen_content:last-of-type {
	border-bottom: none;
}
.lists_product_two .list_screens .screen_content > li a:hover img {
	transform: scale(1.05);
}

/* 产品列表1 */
.lists_product_one {
	padding: 3rem 0;
	display: flex;
	flex-direction: column;
	row-gap: 3rem;
}
.lists_product_one .within {
	column-gap: 3rem;
	width: 100%;
}
.lists_product_one .product_nav {
	display: flex;
	flex-direction: column;
	width: 33rem;
}
.lists_product_one .product_nav > li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-bottom: 1px solid #ddd;
}
.lists_product_one .product_nav > li a {
	height: 6rem;
	display: flex;
	align-items: center;
	column-gap: 0.8rem;
	transition: 0.3s all ease;
}
.lists_product_one .product_nav > li a::before {
	content: '\e633';
	font-family: 'iconfont' !important;
	font-size: 2rem;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	width: 0;
	visibility: hidden;
	text-align: center;
	transition: 0.3s all ease;
	opacity: 0;
}

.lists_product_one .product_nav > li .child {
	display: flex;
	flex-direction: column;
	background-color: #fafafa;
}
.lists_product_one .product_nav > li .child > li {
	border-top: 1px solid #ddd;
	justify-content: center;
}
.lists_product_one .product_nav > li .child > li > a {
	color: #666;
}

.activeclass::before,
.lists_product_one .product_nav > li > a:hover::before {
	width: 2rem !important;
	visibility: visible !important;
	opacity: 1 !important;
}
.lists_product_one .product_nav > li > a:hover {
	color: var(--primary-color);
}
.activeclass {
	color: var(--primary-color);
}

.lists_product_one .product_nav li .child > li > a:hover::before {
	width: 2rem !important;
	visibility: visible !important;
	opacity: 1 !important;
}
.lists_product_one .product_nav li .child > li > a:hover {
	color: var(--primary-color);
	background-color: #fff;
}

.lists_product_one .within .list_product_contact {
	width: calc(100% - 33rem - 3rem);
	/* width: 100%; */
}

/* 产品列表中心 */
/* -----------内页内容----------start------ */
.list_product {
	padding: 3rem 0;
}
.list_product .list_right {
	float: right;
	width: calc(100% - 33rem - 2%);
}
.list_top_w {
	width: 100%;
}
.list_top_w .title {
	font-size: 2.2rem;
	color: #343434;
	line-height: 5.2rem;
	background: #f4f4f4;
	padding-left: 1.6rem;
	margin-bottom: 2rem;
	border-left: 0.3rem solid var(--primary-color);
}
.list_top_w .title h2 {
	font-size: 2.2rem;
	font-weight: normal;
}
.list_product_contact {
	overflow: hidden;
	width: 100%;
	row-gap: 3rem;
}
.list_product_contact li {
	border-radius: 0.4rem;
}
.list_product_contact li a {
	border: 0.1rem solid #ebebeb;
}
.list_product_contact li * {
	transition: 0.3s all ease-in-out;
}
.list_product_contact li .nProductImg {
	overflow: hidden;
	aspect-ratio: 4/3;
	padding: 0.6rem;
	width: 100%;
}
.list_product_contact li .nProductImg img {
	width: 100%;
	object-fit: contain;
}
.list_product_contact li .textual {
	height: 5rem;
	align-items: center;
	display: flex;
	column-gap: 1rem;
	font-size: 2rem;
	background-color: #f5f5f5;
}
.list_product_contact li .textual > img {
	height: 100%;
	object-fit: contain;
}
.list_product_contact li .textual > div {
	text-align: center;
}
.list_product_contact li .textual > .btn {
	font-size: 1.6rem;
	color: #fff;
	aspect-ratio: 1/1;
	height: 100%;
	margin-left: auto;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}
.list_product_contact li:hover .nProductImg img {
	transform: scale(1.02);
	transition: opacity 0.8s, transform 0.3s cubic-bezier(0, 0, 0.44, 1.18);
}
.list_product_contact li:hover .textual {
	color: var(--primary-color);
}

/* -----------产品内容页分割线----------start------ */
/* 产品内页 */
.view_product {
	padding-bottom: 2rem;
	display: flex;
	column-gap: 6rem;
	padding: 5rem 0;
	background-color: #fafafa;
	width: 100%;
}
.view_product .inner {
	background-color: #fff;
	padding: 5rem;
	border-radius: 1rem;
}
.view_product_top {
	padding-bottom: 3rem;
	column-gap: 3%;
	display: flex;
}
.show_left {
	width: 47%;
}
/*图片放大镜样式*/
.spec-preview {
	width: 100%;
}
.jqzoom {
	border: none;
	cursor: pointer;
	position: relative;
	padding: 0rem;
	margin: 0rem;
	display: block;
	width: 100%;
}
.jqzoom img {
	width: 100%;
	height: 100%;
	border: solid 0.1rem #d6d6d6;
	aspect-ratio: 5/3;
	object-fit: contain;
}
.jqZoomPup {
	z-index: 10;
	visibility: hidden;
	position: absolute;
	top: 0rem;
	left: 0rem;
	width: 2rem;
	height: 2rem;
	border: 0.1rem solid #aaa;
	background: rgb(255, 255, 255, 0.3);
	/* opacity: 0.5;
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5; */
	filter: alpha(Opacity=50);
	font-size: 3.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333 !important;
}
div.zoomdiv {
	z-index: 100;
	position: absolute;
	top: 0rem;
	left: 0rem;
	display: none;
	text-align: center;
	overflow: hidden;
	width: 100%;
	height: 30rem;
}

/*图片小图预览列表*/
.spec-scroll {
	margin-top: 0.5rem;
	display: flex;
}
.spec-scroll .prev,
.spec-scroll .next {
	border: 0.1rem solid #d6d6d6;

	width: 3rem;
	height: 12rem;
	cursor: pointer;
	text-decoration: none;
	align-items: center;
	display: flex;
	justify-content: center;
	font-size: 2rem;
}
.spec-scroll .prev:hover,
.spec-scroll .next:hover {
	color: #333;
}
.spec-scroll .items {
	position: relative;
	width: calc(100% - 3rem - 3rem);
	height: 12rem;
	overflow: hidden;
	border-top: 0.1rem solid #d6d6d6;
	border-bottom: 0.1rem solid #d6d6d6;
}
.spec-scroll .items ul {
	position: absolute;
	width: auto;
	height: 12rem;
	display: flex;
	/* column-gap: 3rem; */
}
.spec-scroll .items ul li {
	text-align: center;
	aspect-ratio: 1/1;
	border-left: 0.1rem solid #d6d6d6;
	border-right: 0.1rem solid #d6d6d6;
}
.spec-scroll .items ul li img {
	width: 100%;
	height: 100%;
	cursor: pointer;

	object-fit: contain;
}
.spec-scroll .items ul li img:hover {
	border-color: var(--primary-color);
}
.show_right {
	width: 50%;
}
.show_right .prodtitle {
	overflow: hidden;
	font-size: 3rem;
	color: #333;
	padding-bottom: 2rem;
	border-bottom: 1px solid #666;
}
.show_right .parameter {
	padding: 2rem 0;
	border-radius: 0.4rem;
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
}
.show_right .parameter li {
	line-height: var(--line-height-bouble);
	display: flex;
	/* align-items: center; */
	font-size: 1.6rem;
}
.show_right .parameter li > .name {
	color: #666;

	/* flex-shrink: 0; */
	text-transform: capitalize;
}
.show_right .parameter li > .name::after {
	content: ':';
	padding-left: 0.4rem;
	padding-right: 0.4rem;
	font-size: 1.6rem;
	font-weight: bold;
}
.show_right .parameter li > .text {
	color: #666;
}
.show_right .parameter li > a {
	color:#E2211C;
	border: 1px solid #E2211C;
	background-color: transparent;
	margin-left: 5px;
}
.show_right .parameter li > .d_contact {
	color: #666;
	line-height: var(--line-height-bouble);
	font-size: 1.6rem;
	min-height: 8rem;
}
.show_right .nProductTel {
	padding: 0 0.5rem;
	height: 5rem;
	line-height: 5rem;
	width: 100%;
	margin-top: 2rem;
}
.show_right a.nProductZx {
	display: block;
	text-align: center;
	font-size: 1.6rem;
	color: var(--text-color-epic);
	text-transform: uppercase;
	transition: all 0.35s ease;
	width: 20rem;
	border-radius: 0.5rem;
	background-color: #E2211C;
}

/* 产品内容 */
.view_product_bottom {
	width: 100%;
	margin-bottom: 3rem;
	row-gap: 3rem;
}
#tabs {
	border: none;
}
#tabs .ui-tabs-nav {
	padding: 0;
	border: none;
	border-bottom: 1px solid #ddd;
	background-color: #fff;
}
#tabs .ui-state-active {
	background-color: var(--primary-color) !important;
	border: 1px solid var(--primary-color) !important;
}
#tabs .ui-widget-content {
	background: #f5f5f5;
}
#tabs .ui-widget-content ul,
#tabs .ui-widget-content ol {
	padding: initial;
	padding-inline-start: 40px;
	list-style: decimal;
}
#tabs .ui-widget-content li {
	list-style: inherit !important;
}
.view_product_correlation {
	align-items: center;
	column-gap: 2%;
	box-sizing: border-box;
	display: flex;
}
.view_product_correlation > .box {
	width: calc((100% - 6%) / 4);
	background-color: #fff;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	justify-content: space-between;
	row-gap: 1.5rem;
	cursor: pointer;
}
.view_product_correlation > .box .relateImgBox {
	aspect-ratio: 4/3;
	overflow: hidden;
}

.view_product_correlation > .box .relateImgBox > img {
	width: 100%;
	object-fit: contain;
	height: 100%;
	transition: all 0.3s ease;
}
.view_product_correlation > .box .text {
	background-color: #f9fafc;
	padding: 1rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	row-gap: 0.8rem;
}
.view_product_correlation > .box .text > p {
	line-height: 1.5;
	font-size: 1.6rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.view_product_correlation > .box .text > a {
	color: var(--primary-color);
}
.view_product_correlation > .box .relateImgBox:hover > img {
	transform: scale(1.03);
}
/* 标题 */
/* .information .info_title {
	text-align: left;
	margin-bottom: 2rem;
	padding-bottom: 0.4rem;
	border-bottom: #ddd 0.1rem solid;
}
.information .detailed {
	display: inline-block;
	text-decoration: none;
	padding: 1rem 3rem;
	font-size: 1.6rem;
	background: #9f9f9f;
	color: var(--text-color-epic);

	cursor: pointer;
}
.currentDetailed {
	color: var(--text-color-epic);
	background: var(--primary-color) !important	;
} */
/* 内容 */
/* .info_contact {
	padding: 2.5rem 1.5rem 1.5rem;
	font-size: 1.4rem;
	background: #f5f5f5;
	min-height: 20rem;
	border-radius: 0.4rem;
	display: none;
}
.info_contact td,
.info_contact th {
	padding: 1rem 2rem;
	color: #333;
	font-size: 1.6rem;
	line-height: 1.5;
}
.infoShow {
	display: block;
}
*/
/* 产品中心1 */
/* .view_product_one .view_product_top .show_left .gallery-top {
}
*/
.view_product_one .view_product_top .show_left .gallery-top {
	width: 100%;
}
.view_product_one .view_product_top .show_left .gallery-top .fullScreen {
	color: var(--primary-color);
	top: 1rem;
	right: 1rem;
	position: absolute;
	font-size: 3.2rem;
	line-height: 1;
	z-index: 99;
}

.view_product_one .view_product_top .show_left .gallery-thumbs {
	margin-top: 3rem;
	border: 1px solid #eee;
}
.view_product_one .view_product_top .show_left .gallery-top .buttonBox,
.view_product_one .view_product_top .show_left .gallery-thumbs .buttonBox {
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	justify-content: space-between;
	padding: 0 1rem;
	opacity: 0;
	pointer-events: none;
}
/* .view_product_one .view_product_top .show_left .gallery-top:hover .fullScreen {
	color: var(--primary-color);
} */
.view_product_one .view_product_top .show_left .gallery-top:hover .buttonBox,
.view_product_one .view_product_top .show_left .gallery-thumbs:hover .buttonBox {
	opacity: 1;
}
.view_product_one .view_product_top .show_left .gallery-top .thumbnail,
.view_product_one .view_product_top .show_left .gallery-thumbs .thumbnail {
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4/3;
	border: 1px solid #eee;
}
.view_product_one .view_product_top .show_left .gallery-thumbs .thumbnail {
	border-top: transparent;
	border-bottom: transparent;
}

.view_product_one .view_product_top .show_left .gallery-top .thumbnail img,
.view_product_one .view_product_top .show_left .gallery-thumbs .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.view_product_one .view_product_top .show_left .gallery-top:hover .carousel_button_horizontal,
.view_product_one .view_product_top .show_left .gallery-thumbs:hover .carousel_button_vertical {
	opacity: 1;
}
