﻿/*类目*/
.menu{width:100%;margin-top:60px;margin-bottom:-10px;}
.menu ul{display:flex; justify-content: center}
.menu li a{position:relative;z-index:2;display: block;margin:0 5px 10px 5px;color:#191919;font-size:14px;border: 1px #e9e9e9 solid;overflow: hidden;padding: 10px;border-radius: 6px; background: #f7f7f7;}
.menu li a:after{ content: ""; position: absolute;left:0;bottom:0;z-index:-1;width:100%;height:100%; background: #fabe00;transition:transform .5s;transform: scale(0,1);transform-origin:right;}
.menu li:hover a,.menu li.active a{ color:#fff;border-color:#fabe00 }
.menu li:hover a:after,.menu li.active a:after{transform: scale(1);transform-origin:left;}



/*产品列表*/
.proList {
	padding: 40px 0 80px;
}

.proList ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.proList ul span{
	text-align: center;
	display: block;
	width: 100%;
}
.proList ul li {
	width: calc(100% / 4);
	padding: 0 15px;
	margin-top: 30px;
}

.proList ul li .pic {
	background: #f0f0f0;
	overflow: hidden;
	position: relative;
	width: 100%;
	padding-top: 75%;
}

.proList ul li .pic i {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: #0c439f;
	text-align: center;
	color: #fff;
	font-size: 18px;
	opacity: 0;
}

.proList ul li .pic img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: contain;
	mix-blend-mode: darken;
	transition: all 0.6s;
}

.proList ul li:hover .pic img {
	transform: scale(1.1);
}

.proList ul li .title h2 {
	padding: 10px;
	background: #ccc;
	font-size: 16px;
	font-family: "rajdhani-s";
	color: #172029;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}


.proList ul li:hover .pic i {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.proList ul li:hover .title h2 {
	color: #fff;
	background: #0c439f;
}

.pro-list.hidden {
	display: none;
}

.proList .more {
	display: block;
	width: 260px;
	margin: 50px auto 0;
	height: 55px;
	color: #172029;
	background: #0c439f;
	line-height: 55px;
	font-size: 18px;
	cursor: pointer;
	position: relative;
	z-index: 0;
	transition: all 0.4s;
}

.proList .more:before,
.proList .more:after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 0%;
	height: 50%;
	background: #172029;
	transition: all 0.4s;
}

.proList .more:before {
	left: 0;
	top: 0;
}

.proList .more:after {
	right: 0;
	bottom: 0;
}

.proList .more:hover {
	color: #0c439f;
}

.proList .more:hover:before,
.proList .more:hover:after {
	width: 100%;
}


/*产品详情*/

.proDes {
	padding: 70px 0;
}

.proDes .container {
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.proDes .left {
	width: 50%;
	padding-left: 6%;
	order: 2;
}

.proDes .left .title {
	padding-bottom: 20px;
	border-bottom: 1px solid #dbdbdb;
}

.proDes .left .title h2 {
	font-size: 42px;
	color: #172029;
	font-family: "oswald";
}

.proDes .left .title h4 {
	font-size: 18px;
	color: #999999;
	margin-top: 6px;
}

.proDes .left .title h4 span {
	color: #172029;
}

.proDes .left .describe {
	padding: 24px 0;
}

.proDes .left .describe span {
	color: #172029;
	font-family: "rajdhani-s";
	margin-bottom: 10px;
	display: block;
	font-size: 20px;
}

.proDes .left .describe p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}

.proDes .left .conInfo {
	padding: 24px 0;
	border-bottom: 1px solid #dbdbdb;
	margin-bottom: 30px;
}

.proDes .left .conInfo p {
	color: #999999;
	padding: 2px 0;
}

.proDes .left .conInfo p a {
	color: #172029;
	transition: all 0.2s;
}

.proDes .left .conInfo p a:hover {
	color: #0c439f;
	text-decoration: underline;
}

.proDes .left .conBtn {
	display: flex;
	align-items: center;
}

.proDes .left .conBtn a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0c439f;
	width: calc((100% - 2px) / 3);
	line-height: 55px;
	cursor: pointer;
}

.proDes .left .conBtn a:nth-child(2) {
	margin: 0 1px;
}

.proDes .left .conBtn a i {
	margin-right: 10px;
	color: #fff;
}

.proDes .left .conBtn a span {
	color: #fff;
	transform: translateY(2px);
}

.proDes .left .conBtn a:hover {
	background: #172029;
}

.proDes .left .conBtn a:hover i,
.proDes .left .conBtn a:hover span {
	color: #fff;
}

.proDes .left .share a {
	font-size: 20px;
	line-height: 20px;
	margin-left: 2px;
}

.proDes .right {
	width: 50%;
	display: flex;
	justify-content: space-between;
	height: fit-content;
	position: relative;
	overflow: hidden;
}

.proDes .right .swiper-slide img {
	display: block;
	width: 100%;
}

.proDes .big_pic_container {
	position: relative;
	overflow: hidden;
	width: calc(100% - 100px);
	margin: 0;
}

.proDes .big_pic_container ul li {
	background: #f0f0f0;
	overflow: hidden;
}

.proDes .big_pic_container ul li img.imagezoom {
	display: block;
	width: 100%;
	mix-blend-mode: darken;
	height: 500px;
	object-fit: contain;
}

.proDes .small_pic_container {
	width: 90px;
	overflow: hidden;
	height: 500px;
	margin: 0;
	position: relative;
}

.proDes .small_pic_container ul {
	display: flex;
	flex-direction: column;
}

.proDes .small_pic_container .swiper-slide {
	width: 100% !important;
	height: auto !important;
	transition: all 0.3s;
	border: 2px solid #ccc;
	opacity: 0.6;
	cursor: pointer;
}

.proDes .small_pic_container .swiper-slide-thumb-active {
	opacity: 1;
	border-color: #0c439f;
}

.proDes .right .swiper-button-prev,
.proDes .right .swiper-button-next {
	position: absolute;
	right: 0;
	width: 90px;
	z-index: 10;
	margin: 0;
	top: auto;
	bottom: auto;
	height: 40px;
	background: rgba(0, 0, 0, 0.5);
	transition: all 0.4s;
	opacity: 0;
	color: #fff;
}

.proDes .right .swiper-button-prev {
	top: -40px;
}

.proDes .right .swiper-button-next {
	bottom: -40px;
}

.proDes .right:hover .swiper-button-prev {
	top: 0;
	opacity: 1;
}

.proDes .right:hover .swiper-button-next {
	bottom: 0;
	opacity: 1;
}

.proDes .big_pic_container .swiper-pagination {
	width: auto;
	right: unset;
	left: unset;
	line-height: 1;
	display: none;
	bottom: 15px;
}
.proDes .big_pic_container .swiper-pagination span{
	margin: 0 10px;
	width: 10px;
	height: 10px;
	background: #172029;
}
.proDes .big_pic_container .swiper-pagination span.swiper-pagination-bullet-active{
	background: #0c439f;
}
.proDetails {
	padding: 60px 0;
	background: #F0F0F0;
}

.proDetails .detailsTitle {
	border-bottom: 1px solid #dbdbdb;
	display: flex;
}

.proDetails .detailsTitle h3 {
	font-size: 24px;
	font-family: "rajdhani-s";
	color: #172029;
	padding-bottom: 10px;
	position: relative;
}

.proDetails .detailsTitle h3:before {
	content: "";
	width: 100%;
	height: 1px;
	background: #172029;
	position: absolute;
	left: 0;
	bottom: -1px;
}

.proDetails .detailsContent {
	padding: 30px 0;
	border-bottom: 1px solid #dbdbdb;
}

.proDetails .detailsContent table{
	border-collapse: collapse;
	width:2000px;
	margin-bottom:20px;
}

.proDetails .detailsContent .firstRow td{
	font-family: 'rajdhani-s';
	color: #172029;
	text-align: center !important;
	font-size:16px;

}
.proDetails .detailsContent table td{
	text-align: center;
	white-space: nowrap;
	border: 1px solid #ddd;
	padding: 8px 10px 5px;
	font-size: 14px;
	background: #fff;
	color: #172029;
}
.proDetails .detailsContent table tr td:last-child{

	white-space: normal !important;
}


.proDetails .keyword {
	margin: 30px 0 50px;
}

.proDetails .keyword span {
	color: #172029;
}

.proDetails .backPro {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	background: #0c439f;
	line-height: 56px;
	margin: 40px auto 0px;
}

.proDetails .backPro i {
	color: #fff;
	font-size: 14px;
	margin-right: 8px;
}

.proDetails .backPro span {
	color: #fff;
	transform: translateY(1px);
	text-transform: uppercase;
}

.proDetails .backPro:hover i {
	margin-right: 16px;
}

.proInquiry {
	padding: 55px 0 80px;
	position: relative;
	z-index: 0;
	background: url(../images/hotNewsBg.jpg) no-repeat center;
	background-attachment: fixed;
	background-size: cover;
}

.proInquiry .title {
	font-size: 42px;
	font-family: "oswald";
	margin-bottom: 30px;
}

.proInquiry .inquiry span {
	color: #fff;
}

.proInquiry .inquiry input,
.proInquiry .inquiry textarea {
	border: none;
	background: #fff;
}

.proInquiry .inquiry dl dd {
	width: calc(100% / 3);
}

.proInquiry .inquiry dl dt {
	width: 240px;
}

.proInquiry .inquiry dl dt button:hover {
	background: #0c439f;
	letter-spacing: 2px;
	color: #172029;
}
/*行业应用列表*/
.applicationBox{
	padding: 40px 0 70px;
}
.application-list ul{
	display: flex;
	margin: 0px -10px;
	flex-wrap: wrap;
}
.application-list li{
	width: calc(100% / 3);
	padding: 0px 10px;
	margin-bottom: 20px;
}
.application-list li a{
	border: 1px solid #f0f0f0;
	transition: all 0.5s;
	background: #f5f5f5;
	padding: 20px;
	display: block;
}
.application-list li .pic{
	overflow: hidden;
}
.application-list li .pic img{
	transition: all 0.5s;
}
.application-list li a:hover .pic img{
	transform: scale(1.1,1.1);
}
.application-list li h3{
	color: #333;
	font-size: 16px;
	text-align: center;
	transition: all 0.4s;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 0 10px;
	margin-top: 16px;
	font-family: sy-n;
	line-height: 16px;
}

.application-list li a:hover h3{
	color: #0c439f;
}

/*新闻列表*/

.newsBox {
	padding: 40px 0 70px;
}

.news-list ul {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	margin: 0 -15px;
}

.news-list ul li {
	padding: 0 15px;
	width: calc(100% / 3);
	margin-top: 30px;
}

.news-list ul li a {
	display: block;
	height: 100%;
}

.news-list ul li a .pic {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-top: 56.25%;
}

.news-list ul li a .pic img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	transition: all 0.6s;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.news-list ul li a .date {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 12px 20px 9px;
	background: rgba(0, 0, 0, 0.5);
	transition: all 0.4s;
	color: #fff;
	font-size: 14px;
}

.news-list ul li a .content {
	padding: 20px;
	background: #f0f0f0;
	transition: all 0.4s;
}

.news-list ul li a .content h3 {
	font-size: 17px;
	color: #1a1a1a;
	font-family: roboto-m;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.news-list ul li a .content p {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	margin-top: 16px;
}

.news-list ul li:hover .date {
	background: rgba(235, 61, 0, 0.9);
}

.news-list ul li:hover a .pic img {
	transform: scale(1.1);
}

.news-list ul li:hover a .content {
	background: #FFFFFF;
	box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}

.news-list ul li:hover a .content h3 {
	color: #0c439f;
}


/*新闻详情*/

.newsDetails {
	padding: 60px 0 70px;
}

.news-xq .xq-title {
	font-size: 28px;
	font-family: "Roboto-m";
	color: #000;
}

.news-xq .xq-data {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0 20px;
}

.news-xq .xq-data li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 20px;
}

.news-xq .content {
	border-top: 1px solid #dbdbdb;
	padding-top: 20px;
}

.news-xq .content p {
	padding: 5px 0;
}

.news-xq .content img {
	max-width: 100%;
	width: 80%;
	margin: 0 auto;
}

.news-xq .xq-key {
	display: flex;
	align-items: center;
	padding: 20px 0;
}

.news-xq .xq-key span {
	padding-right: 4px;
	color: #0c439f;
	font-family: "Roboto-m";
}

.hot-news {
	padding: 65px 0 70px;
	border-top: 10px solid #f5f5f5;
}

.hotNews {
	margin: 40px -15px 0;
	padding-bottom: 50px !important;
}

.hot-news .title h3 {
	font-size: 36px;
	color: #000;
	font-family: 'hg';
	text-transform: capitalize;
	line-height: 1;
}

.hotNews ul li {
	padding: 0 15px;
}

.hotNews ul li a {
	display: block;
	height: 100%;
	background: #fff;
}

.hotNews ul li a .pic {
	width: 100%;
	overflow: hidden;
}

.hotNews ul li a .pic img {
	object-fit: cover;
	width: 100%;
	height: 260px;
	transition: all 0.6s;
}

.hotNews ul li a .content {
	padding: 20px;
	background: #f5f5f5;
	transition: all 0.4s;
}

.hotNews ul li a .content h3 {
	font-size: 17px;
	color: #1a1a1a;
	font-family: roboto-m;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hotNews ul li a .content p {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	margin: 10px 0 16px;
	display: none;
}

.hotNews ul li a .details {
	color: #666;
	margin-top: 15px;
	transition: all 0.4s;
}

.hotNews ul li a .details i {
	font-size: 14px;
	color: #0c439f;
	margin-right: 10px;
	transform: translateY(-1px);
}

.hotNews ul li:hover a {
	background: #0c439f;
	border-color: #0c439f;
}

.hotNews ul li:hover a .pic img {
	transform: scale(1.1);
}

.hotNews ul li:hover a .content {
	background: #fff;
	box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}

.hotNews ul li:hover a .content h3 {
	color: #0c439f;
}

.hotNews .swiper-pagination {
	bottom: 0;
	width: 150px !important;
}

.hotNews .swiper-pagination span {
	width: 10px;
	height: 10px;
	background: #999;
	margin: 0 10px;
	opacity: 0.8;
}

.hotNews .swiper-pagination span.swiper-pagination-bullet-active {
	background: #0c439f;
	opacity: 1;
}
/*关于我们*/

.ny-about{
	padding: 60px 0;
}
.ny-about .container{
	display: flex;
	justify-content: space-between;
}
.ny-about .img{
	width: 50%;
}
.ny-about .txt{
	width: 100%;
}
.ny-about .txt .t{
	text-align: center;
}
.ny-about .txt .t h2{
	line-height: 1em;
	font-size: 32px;
	font-family: 'sy-b';
	color: #000;
}
.ny-about .txt .t p{
	margin-top: 20px;
	font-size: 22px;
	color: #0c439f;
	font-family: 'sy-b';
}
.ny-about .txt .c{
	margin-top: 20px;
	color: #222;
}
.ny-about .txt .c p{
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.8em;
}

.ny-partner{
	padding: 100px 0px;
	background: url("../images/cooperateBg.jpg") no-repeat center;
	background-size: cover;
}
.ny-partner .tit{
	text-align: center;
}
.ny-partner .tit h2{
	font-size: 40px;
	font-family: 'sy-b';
	color: #fff;
	line-height: 1em;
}
.ny-partner .tit p{
	margin-top: 10px;
	line-height: 1em;
	color: #fff;
}
.ny-partner .ct{
	margin-top: 60px;
	position: relative;
}

.ny-partner .ct li a:after{ opacity:0; content:""; position:absolute;left:0;top:0;width:100%;height:100%;transform: translateY(-10px);background:#0c439f; transition: all 0.5s}
.ny-partner .ct li:hover a:after{opacity:0.8;transform: translateY(0px);}
.ny-partner .ct .txt{
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	margin: auto;
	height: fit-content;
	text-align: center;
	color: #fff;
	font-size: 18px;
	transform: translateY(10px);
	transition: all 0.5s;
}
.ny-partner .ct li:hover .txt{
	transform: translateY(0px);
	opacity: 1;
}

.ny-partner .spot{position:initial; margin-top:40px}

.ny-partner .spot span{opacity: 1;width:10px;height:10px; background: #fff; margin: 0 4px;}

.ny-partner .spot span.swiper-pagination-bullet-active{background: #0c439f;}


.wapdesgin{
	padding: 60px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.wapdesgin .txt{
	width: calc(100% - 500px);
}
.wapdesgin .txt .t{
	font-size: 36px;
	font-family: sy-b;
	color: #000;
}
.wapdesgin .txt .c{
	font-size: 20px;
	color: #222;
	margin-top: 25px;
}
.wapdesgin .txt .c p{
	margin-bottom: 10px;
	line-height: 1.8em;
}
.wapdesgin .img{
	width: 300px;
}
.wappro{
	background: #f8fafb;
	padding-top: 140px;
	padding-bottom: 50px;
}
.wappro .t{
	font-size: 36px;
	color: #000;
	font-family: sy-b;
	text-align: center;
}
.wappro .c{
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.wappro .c .img{
	width: calc(50% - 50px);
}
.wappro .c .txt{
	width: 50%;
}
.wappro .c .txt li{
	box-shadow: 0px 4px 10px 0px rgba(80,111,167,.2);
	border-radius: 10px 10px 10px 10px;
	margin-bottom: 10px;
	padding:20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.wappro .c .txt li img{
	margin-right: 25px;
}
.wappro .c .txt li p{
	font-size: 22px;
	color: #000;
	line-height: 1em;
	font-family: sy-b;
}
.wappro .c .txt li span{
	font-size: 16px;
	color: #333;
	margin-top: 10px;
	line-height: 1.5em;
	display: block;
}
.wapfunction{
	padding-top: 100px;
}
.wapfunction .t{
	font-size: 36px;
	color: #000;
	font-family: sy-b;
	text-align: center;
}
.wapfunction .c{
	margin-top: 20px;
}
.wapfunction .c ul{
	display: flex;
	flex-wrap: wrap;
}
.wapfunction .c li{
	width: calc(25% - 25px);
	margin-right: 25px;
	box-shadow: 0px 4px 10px 0px rgba(80,111,167,.2);
	margin-bottom: 25px;
	padding: 25px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.wapfunction .c li p{
	font-size: 20px;
	font-family: sy-b;
	color: #000;
}
.wapfunction .c li span{
	font-size: 16px;
	color: #666;
	margin-top: 10px;
}


/*联系我们*/

.ny-contant {
	display: flex;
	justify-content: space-between;
	padding: 70px 20px;
}

.ny-contant .conInfo {
	width: 460px;
}

.ny-contant .conInfo h4 {
	font-size: 28px;
	font-family: "Roboto-m";
	color: #000;
	line-height: 1;
	margin-bottom: 30px;
}

.ny-contant .conInfo ul li {
	display: flex;
	align-items: flex-start;
}

.ny-contant .conInfo ul li:nth-child(2) {
	padding: 30px 0;
	margin: 30px 0;
	border-top: 1px solid #dbdbdb;
	border-bottom: 1px solid #dbdbdb;
}


.ny-contant .conInfo ul li .mark {
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
}

.ny-contant .conInfo ul li .content {
	width: calc(100% - 40px);
	padding-left: 16px;
}

.ny-contant .conInfo ul li .content span {
	display: block;
	font-size: 17px;
	color: #000;
	line-height: 1.4;
	font-family: 'Roboto-m';
}

.ny-contant .conInfo ul li .content a {
	display: block;
	margin-top: 6px;
}

.ny-contant .conInfo ul li .content a:hover {
	color: #dd3d2f;
}

.ny-contant .conFeed {
	width: calc(100% - 560px);
	background: #FFFFFF;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
	padding: 50px;
	margin-top: -120px;
	position: relative;
}

.ny-contant .conFeed .title {
	margin-bottom: 10px;
}

.ny-contant .conFeed .title span {
	display: block;
	text-transform: uppercase;
	color: #fabe00;
	font-size: 15px;
}

.ny-contant .conFeed .title b {
	display: block;
	text-transform: capitalize;
	color: #000;
	font-size: 28px;
	font-family: 'hg';
}

.ny-contant .conFeed .inquiry input,
.ny-contant .conFeed .inquiry textarea {
	border: none;
	background: #e6eef3;
}

.ny-contant .conFeed .inquiry dl dt {
	width: 240px;
	margin: 20px auto 0;
}

.ny-contant .conFeed .inquiry dl dt button {
	line-height: 50px;
}

.map #mapContainer {
	width: 100%;
	height: 500px;
}


.searchPro {
	padding: 50px 0 80px;
}

.searchPro ul {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.searchPro ul li {
	width: 25%;
	padding: 0 10px;
	margin-top: 20px;
}

.searchPro ul li a {
	display: block;
	background: #f0f0f0;
}

.searchPro ul li .pic {
	overflow: hidden;
}

.searchPro ul li .pic img {
	mix-blend-mode: darken;
	object-position: center;
	width: 100%;
	transition: all 0.6s;
}

.searchPro ul li h3 {
	color: #1a1a1a;
	padding: 15px 20px;
	font-size: 17px;
	border-top: 1px solid #dbdbdb;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.searchPro ul li:hover .pic img {
	transform: scale(1.1);
}

.searchPro ul li:hover h3 {
	color: #fff;
	background: #0c439f;
	border-color: #0c439f;
}