/*首页头部导航*/

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	height: 80px;
	background: #fff;
	transition: 0.5s;
	padding: 0 3%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header.header_fixed {
	transform: translateY(-100%);
}

header .logo a {
	display: block;
	line-height: 80px;
	position: relative;
	z-index: 99;
}

header .logo a img {
	max-height: 67px;
}

header .rightDiv .menu {
	position: relative;
	height: 80px;
}

header .rightDiv .menu>ul {
	display: inline-block !important;
}

header .rightDiv .menu>ul>li {
	float: left;
	margin-right: 40px;
	position: relative;
}

header .rightDiv .menu>ul>li>a {
	line-height: 80px;
	text-align: center;
	display: block;
	position: relative;
	text-transform: capitalize;
}

header .rightDiv .menu>ul>li.on>a,
header .rightDiv .menu>ul>li:hover>a {
	color: #1f439b;
}

header .rightDiv .menu>ul>li::after {
	content: "";
	width: 0;
	height: 3px;
	background: #1f439b;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: .5s;
}

header .rightDiv .menu>ul>li.on::after,
header .rightDiv .menu>ul>li:hover::after {
	width: 100%;
	transition: .5s;
}

.menu>ul>li.has-sub {
	padding-right: 25px;
}

.menu>ul>li.has-sub::before,
header .language::before {
	content: '';
	width: 9px;
	height: 9px;
	border-bottom: 1px solid #484545;
	border-right: 1px solid #484545;
	position: absolute;
	right: 3px;
	top: 47%;
	transform: rotate(45deg) translateY(-50%);
	transition: all 0.5s;
}

.menu>ul>li.has-sub:hover::before,
.menu>ul>li.has-sub.on::before {
	border-color: #1f439b;
}

.menu>ul>li>ul {
	position: absolute;
	top: 90px;
	min-width: 100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9;
	font-size: 14px;
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease 0s;
	background: #fff;
	box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.1);
}

.menu ul li:hover>ul {
	opacity: 1;
	visibility: visible;
	top: 80px;
}

.menu ul ul li {
	border-bottom: 1px solid #f8f8f8;
}

.menu ul ul li:last-child {
	border-bottom: none;
}

.menu ul ul li a {
	display: block;
	white-space: nowrap;
	position: relative;
	min-width: 160px;
	line-height: 48px;
	padding: 0 10px;
	position: relative;
	text-align: center;
}

.menu ul ul li a:hover {
	background: #1f439b;
	color: #fff;
}

header .mbtn {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: url(../img/menu.svg) no-repeat center center;
	background-size: 18px auto;
	position: absolute;
	top: 0;
	right: 0;
	display: none;
}

header .mbtn:active {
	opacity: .8;
}

body.on-menu header .mbtn {
	background: url(../img/close.svg) no-repeat center center;
	background-size: 18px auto;
}

header .language {
	white-space: nowrap;
	font-size: 14px;
	margin-top: 22px;
	margin-right: 20px;
	text-align: center;
	transition: all 0.5s;
	line-height: 36px;
	min-width: 120px;
	background-color: #fff;
	position: relative;
}

header .language:hover {
	/* box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1); */
}

header .language a {
	display: block;
}

header .language .below {
	position: absolute;
	min-width: 100%;
	top: 36px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	background-color: #fff;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

header .language:hover .below {
	opacity: 1;
	visibility: visible;
}

header .language .below a:hover {
	color: #fff;
	background: #1f439b;
}

header .hotLine {
	height: 80px;
	display: flex;
	align-items: center;
	background: url(../img/hotline.png)left center no-repeat;
	padding-left: 47px;
	color: #1f439b;
	line-height: 1.4;

}

header .hotLine p {
	font-size: 14px;
}

header .hotLine strong {
	display: block;
	font-size: 18px;
	color:#e6357b;
}

/* banner */

.ui-homebanner {
	width: 100%;
	position: relative;
	margin-top: 80px;
}

.ui-homebanner .swiper-slide {
	overflow: hidden;
	position: relative;
}

.ui-homebanner .swiper-slide .img {
	width: 100%;
	display: block;
	height: 640px;
	background: none no-repeat center;
	background-size: cover;
	position: relative;
}


/* .ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets {
	position: absolute;
	bottom: 20px;
}

.ui-homebanner .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 100px;
	opacity: 1;
	transition: all 0.5s;
	margin: 0 6px;
}


.ui-homebanner .swiper-pagination-bullet-active {
	width: 40px;
}
 */
.ui-homebanner .swiper-button-next,
.ui-homebanner .swiper-button-prev,
.section3 .swiper-button-next,
.section3 .swiper-button-prev {
	width: 50px;
	height: 50px;
	margin-top: -25px;
}

.ui-homebanner .swiper-button-prev {
	left: 4%;
}

.ui-homebanner .swiper-button-next {
	right: 4%;
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next {
	right: 0;
	transform: rotate(180deg);
}

.swiper-button-next,
.swiper-button-prev {
	top: 50%;
	background-image: url(../img/arrow.png);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

/* 我们的服务项目 */
.title {
	margin-bottom: 30px;
}

.title p {
	color: #999;
}

.title strong {
	font-size: 36px;
}

.title span {
	color: #1f439b;
}

/* 产品展示 */
.section1 .tab {
	overflow-y: auto;
	white-space: nowrap;
}

.section1 .tab a {
	display: inline-block;
	border: 1px solid #CCCCCC;
	padding: 5px 22px;
	margin: 10px;
}

.section1 .tab a.on,
.section1 .tab a:hover {
	color: #fff;
	background: #1f439b;
	border: 1px solid #1f439b;
}

.section1 .row {
	margin: -5px -13px;
}

.section1 .row>div {
	padding: 5px 13px;
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
}

.section1 .row>div:nth-child(1),
.section1 .row>div:nth-child(2),
.section1 .row>div:nth-child(3),
.section1 .row>div:nth-child(4) {
	border-top: none;
}

.section1 .row>div:nth-child(4),
.section1 .row>div:nth-child(8) {
	border-right: none;
}

.section1 .row a {
	display: block;
	text-align: center;
	padding: 17px;
}

.section1 .row a:hover {
	transform: translateY(-5px);
	box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.19);
}

.section1 .row a .imgWrapper {
	padding: 44% 50%;
}

.section1 .row a p {
	padding: 15px 0 5px;
}

/* pages 翻页 */
.pages { width:100%; height:56px; line-height:56px; margin:0 auto; text-align:center; padding:10px; border-top: 0px double #f3f8fe; font-family:"黑体"; font-size:14px; color:#666; margin-top:60px;}
.pages a{ font-family:"黑体"; font-size:14px; color:#003399; text-decoration:none; padding:5px 10px; border:1px solid #dcdcdc;background:#fff; margin-right:6px;}
.pages a:hover{ color: #fff;background: #003399;border: 1px solid #003399;}
.pages span{font-family:"黑体"; font-size:14px; color:#666; text-decoration:none; padding:5px 10px; border:1px solid #dcdcdc;background:#fff; margin-right:6px; }
.pages strong{ color:#cc0000; font-weight:500;background:#fff;}


/* 关于我们 */
.section2 .title p {
	color: #fff;
	display: inline-block;
	margin-left: 26px;
}

.section2 .leftDiv {
	width: 46%;
}

.section2 .leftDiv a {
	display: inline-block;
	line-height: 40px;
	background: #FFFFFF;
	border-radius: 2px;
	padding: 0 32px;
	color: #1f439b;
	margin-top: 50px;
}

.section2 .leftDiv a:hover {
	color: #ff0000;
}

.section2 .rightDiv {
	max-width: 50%;
	position: relative;
}

.section2 .rightDiv::before {
	content: '';
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	opacity: 0.3;
	position: absolute;
	left: 10px;
	top: -10px;
}

.section2 .rightDiv img {
	position: relative;
}

/* 应用领域 */
.section3 .title,
.section3 .title p {
	color: #fff;
}

.section3 .swiper-container {
	width: 170%;
	left: -35%;
}

.section3 .swiper-slide {
	opacity: 0.7;
}

.section3 .swiper-slide-active {
	opacity: 1;
}

.section3 .swiper-slide a {
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 10px;
}


.section3 .swiper-slide a .imgDiv {
	width: 55%;
}

.section3 .swiper-slide a .text {
	width: 45%;
	padding: 0 40px;
}

.section3 .swiper-slide a .text h2 {
	font-size: 20px;
	margin-bottom: 20px;
}

.section3 .swiper-slide a .text p {
	font-size: 14px;
	color: #666;
}

.section3 .swiper-button-prev {
	left: 19.7%;
}

.section3 .swiper-button-next {
	right: 19.7%;
}

/* 新闻资讯 */
.section4 .swiper-container {
	padding-top: 10px;
}

.section4 .swiper-slide a {
	display: block;
}

.section4 .swiper-slide a:hover {
	transform: translateY(-10px);
	color: #1f439b;
}

.section4 .swiper-slide a h2 {
	font-size: 18px;
	margin-top: 25px;
}

.section4 .swiper-slide a p {
	margin: 12px 0 25px;
}

.section4 .swiper-slide a p,
.section4 .swiper-slide a span {
	color: #999999;
	font-size: 14px;
}

.section4 .swiper-button-next,
.section4 .swiper-button-prev {
	width: 36px;
	height: 36px;
	background-image: url(../img/arrow3.png);
	top: 37%;
}

.section4 .swiper-button-prev {
	left: -55px;
}

.section4 .swiper-button-next {
	right: -55px;
}

/*底部*/
footer .links {
	background: #F1F1F2;
	color: #666;
	font-size: 14px;
	padding: 14px 0;
}

footer .links span,
footer .links a {
	margin-right: 40px;
	padding: 10px 0;
	display: inline-block;
}

footer .links a:last-child {
	margin-right: 0;
}

footer {
	background: #1f439b;
	color: #b3cee4;
}

footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 50px 0 70px;

}

footer .logo img {
	max-height: 53px;
}

footer ul .li1 {
	width: 25.3%;
}

footer ul .li4 {
	width: 21.6%;
}

footer ul li p {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #fff;
}

footer ul li span,
footer ul li a {
	display: block;
	font-size: 14px;
	padding: 5px 0;

}

footer ul li a:hover {
	color: #fff;
}

footer ul .li4 .tel {
	padding-left: 30px;
	background: url(../img/tel.png)left 8px no-repeat;
}

footer ul .li4 .email {
	padding-left: 30px;
	background: url(../img/email.png)left 10px no-repeat;
}

footer ul .li4 .add {
	padding-left: 30px;
	background: url(../img/add.png)left 10px no-repeat;
}

footer ul .code img {
	max-width: 132px;
	margin-top: 20px;
}

footer .copyright {
	font-size: 12px;
	text-align: center;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .copyright a {
	display: inline-block;
	margin-left: 10px;
}

footer .copyright a img {
	max-width: 16px;
	transform: translateY(-1px);
	margin-right: 3px;
}

/*列表页*/
.ny-main {
	margin-top: 80px;
}

.ny-banner {
	position: relative;
}

.ny-banner .img {
	height: 360px;
}

.ny-banner .text {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	color: #fff;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}


.ny-main .breadcrumbs {
	font-size: 12px;
	color: #999;
	margin-top: 20px;
	margin-bottom: 50px;
}

.ny-main .main {
	padding-bottom: 60px;
}

/*页码*/

.pageNum {
	margin-top: 60px;
	text-align: center;
}

.pageNum span,
.pageNum a {
	display: inline-block;
	padding: 3px 11px;
	color: #000;
	margin: 5px;
	border: 1px solid #eee;
	border-radius: 2px;
	font-size: 14px;
}

.pageNum span,
.pageNum a:hover {
	background: #1f439b;
	color: #fff;
	border: 1px solid #1f439b;
}

/* 关于我们 */
.abDiv1 .text {
	width: 61%;
	line-height: 36px;
}

.abDiv1 .imgDiv {
	width: 37%;
}

.abDiv1 .imgDiv2 {
	width: 100%; 
}

.abDiv2 .tab {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.abDiv2 .tab::before {
	content: '';
	width: 100%;
	border: 1px dashed #DFDFDF;
	position: absolute;
	left: 0;
	top: 50%;
}

.abDiv2 .tab li {
	position: relative;
	padding: 15px;
	background-color: #fff;
	transition: all 0.5s;
	border-radius: 50%;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}

.abDiv2 .tab li.on {
	background-color: #1f439b;
}

.abDiv2 .tab li.on a {
	border: none;
}

.abDiv2 .tab li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 127px;
	height: 127px;
	background: #FFFFFF;
	border-radius: 50%;
	border: 2px dotted #eee;
}

.abDiv2 .tab img {
	max-width: 60px;
}

.abDiv2 .content {
	text-align: center;
}

.abDiv2 .content p {
	font-size: 30px;
	margin-bottom: 30px;
	margin-top: 45px;
}

.abDiv2 .content span {
	color: #666666;
	display: block;
	width: 100%;
	margin: 0 auto;
	max-width: 950px;
}
.abDiv2 .content span strong{
	color: #2a4ca0;
}

.abDiv3 a:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	color: #1f439b;
}

.abDiv3 .swiper-container {
	padding: 10px;
}

.abDiv3 a:hover h3 {
	font-weight: bold;
}

.abDiv3 h3 {
	font-size: 18px;
	font-weight: normal;
	padding: 20px;
}

/* 产品展示 */
.ny_left {
	width: 240px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.06);
}

.detail .ny_left p,
.level1 a p {
	color: #fff;
	background: #1f439b;
	font-size: 20px;
	font-weight: bold;
	padding: 19px 20px;
}

.level2 {
	padding: 14px 10px;
	font-size: 14px;
}

.level2 .level3 {
	display: none;
}

.level2 a {
	display: block;
}

.level2 {
	margin: -7px 0;
}

.level2>li {
	padding: 7px 0;
}

.level2>li>a {
	background: #F5F5F5;
	padding: 10px 20px;
	position: relative;
	padding-right: 40px;
}

.level2>li>a:hover {
	color: #1f439b;
}

.level2>li>a.on {
	color: #2C3E50;
	font-weight: bold;
}

.level2>li.has-sub>a::before {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -6px;
	transform: rotate(45deg);
	transition: all .5s;
}

.level2>li.has-sub>a.on::before {
	transform: rotate(-135deg);
	border-color: #2C3E50;
}

.level3 {
	padding: 0 10px;
}

.level3 a {
	padding: 8px;
	color: #666;
	font-size: 14px;
	border-bottom: 1px solid #eee;
}

.level3 li:last-child a {
	border-bottom: 0;
}

.level3 a:hover,
.level3 a.on {
	color: #1f439b;
}

.ny_right {
	width: calc(100% - 240px);
	padding-left: 4%;
}
.detail .ny_right h1 {
	font-size: 26px;
	color: #333;
	font-weight:bold;
}
.detail .ny_right .content {
	font-size: 16px;
	color: #333;
	line-height:32px;
}

.product .ny_right h1 {
	font-size: 24px;
	color: #2C3E50;
	font-weight:bold;
	text-align: center;
	position: relative;
	margin-bottom: 40px;
}

.product .ny_right h1::before {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #EEEEEE;
	position: absolute;
	left: 0;
	top: 50%;
}

.product .ny_right h1 span {
	position: relative;
	display: inline-block;
	padding: 0 23px;
	background-color: #fff;
}

.product .row a {
	display: block;
	padding: 10px;
	background: #F8F8F8;
	text-align: center;
	border: 1px solid #F8F8F8;
}

.product .row a:hover {
	background: #fff;
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
	transform: translateY(-10px);
}

.product .row a p {
	margin: 15px 0;
}

.product .row a span {
	display: inline-block;
	font-size: 12px;
	color: #1f439b;
	line-height: 26px;
	padding: 0 15px;
	border: 1px solid #1f439b;
	border-radius: 100px;
	margin-bottom: 15px;
	transition: all 0.3s;
}

.product .row a span:hover {
	background-color: #1f439b;
	color: #fff;
}

/* 产品详情 */
.proDetailDiv1 {
	border-bottom: 4px solid #1f439b;
	position: relative;
	z-index: 10;
}

.proDetailDiv1 .row {
	margin: 0;
}

.proDetailDiv1 .row>div {
	padding: 0;
}

.proDetailDiv1 .content {
	height: 100%;
	padding-bottom: 50px;
}

.proDetailDiv1 .row .leftDiv {
	padding-right: 70px;
}

.proDetailDiv1 .leftDiv .thumbs {
	margin-top: 15px;
}

.proDetailDiv1 .leftDiv .imgWrapper {
	padding: 44% 50%;
}

.proDetailDiv1 .thumbs .swiper-slide {
	border: 1px solid #eee;
}
.proDetailDiv1 .thumbs .swiper-slide-thumb-active {
	border: 2px solid #1f439b;
}

.proDetailDiv1 .swiper-button-next,
.proDetailDiv1 .swiper-button-prev {
	width: 27px;
	height: 50px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 2px;
	background-image: url(../img/arrow2.png);
	background-size: 11px;
	background-position: center;
	background-repeat: no-repeat;
}

.proDetailDiv1 .rightDiv {
	background: #F0F0F0;
	position: relative;
}

.proDetailDiv1 .rightDiv::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: #F0F0F0;
	position: absolute;
	left: 100%;
	top: 0;
}

.proDetailDiv1 .rightDiv .text {
	padding-left: 60px;
	padding-top: 20%;
}

.proDetailDiv1 .rightDiv h1 {
	font-size: 30px;
	margin-bottom: 30px;
	font-weight:bold;
}

.proDetailDiv1 .rightDiv ul li {
	overflow: hidden;
	border-bottom: 1px solid #ccc;
	font-size: 14px;
	padding: 15px 0;
}

.proDetailDiv1 .rightDiv ul li span {
	float: left;
	display: block;
	width: 90px;
}

.proDetailDiv1 .rightDiv ul li p {
	float: right;
	width: calc(100% - 100px);
}

.proDetailDiv1 .rightDiv .tel {
	font-size: 20px;	
	background: url(../img/pro-de-icon1.png)left center no-repeat;
	padding-left: 30px;
	margin-top: 90px;
	margin-bottom: 30px;
}

.proDetailDiv1 .rightDiv .tel span {
	color: #d83980;font-size: 28px;font-weight: bold;
}

.proDetailDiv1 .rightDiv .btnDiv a {
	display: inline-block;
	position: relative;
	padding: 11px 24px;
}

.proDetailDiv1 .rightDiv .btnDiv a.btn1 {
	color: #FFFFFF;
	font-weight: bold;
	background: #1f439b;
	margin-right: 15px;
}

.proDetailDiv1 .rightDiv .btnDiv a.btn1 span {
	background: url(../img/pro-de-icon2.png)left center no-repeat;
	padding-left: 23px;
}

.proDetailDiv1 .rightDiv .btnDiv a.btn2 {
	border: 1px solid #333333;
}

.proDetailDiv1 .rightDiv .btnDiv a.btn2 span {
	background: url(../img/pro-de-icon3.png)left center no-repeat;
	padding-left: 20px;
}

.proDetailDiv1 .rightDiv .btnDiv a .mask {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.13);
	background-color: #fff;
	top: 150%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}

.proDetailDiv1 .rightDiv .btnDiv a:hover .mask {
	top: 130%;
	opacity: 1;
	visibility: visible;
}

.proDetailDiv1 .rightDiv .btnDiv a .mask::before {
	content: '';
	width: 10px;
	height: 10px;
	background-color: #FFFFFF;
	position: absolute;
	left: 50%;
	margin-left: -5px;
	transform: rotate(45deg);
	top: -5px;
}

.proDetailDiv1 .rightDiv .btnDiv a .mask img {
	max-width: 132px;
}

.proDetail h4 {
	font-size: 30px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
	margin-bottom: 35px;
}

.proDetailDiv2 h4 {
	color: #1f439b;
}

.proDetailDiv2 .ny_right p {
	font-size: 16px;
	line-height: 2;
}

.proDetailDiv3 .swiper-slide a {
	background-color: #fff;
	padding: 15px;
}

.proDetailDiv3 h3 {
	font-size: 16px;
	font-weight: normal;
	padding: 20px 0;
	text-align: center;
}

.proDetailDiv3 .swiper-button-next,
.proDetailDiv3 .swiper-button-prev {
	top: 50%;
}

.proDetailDiv4 .row a {
	display: block;
	overflow: hidden;
	padding: 10px;
	background: #F8F8F8;
}

.proDetailDiv4 .row a:hover {
	background-color: #fff;
	color: #1f439b;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.proDetailDiv4 .row a .imgDiv {
	width: 31.5%;
}

.proDetailDiv4 .row a .text {
	width: 64%;
}

.proDetailDiv4 .row a .text span {
	font-size: 12px;
	color: #666;
	margin: 10px 0;
}

.proDetailDiv4 .row a .text small {
	font-size: 12px;
	color: #999;
}

/* 应用领域 */
.case .row a {
	display: block;
	border: 1px solid #EEEEEE;
	padding: 10px;
}

.case .row a:hover {
	color: #1f439b;
	box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.1);
	transform: translateY(-10px);
}

.case .row a .text {
	padding: 10px;
}

.case .row a p {
	font-size: 18px;
	position: relative;
	padding: 8px 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #ECEDEF;
}

.case .row a p::before {
	content: '';
	width: 0;
	height: 2px;
	background: #1f439b;
	position: absolute;
	left: 0;
	bottom: -1px;
	transition: all 0.3s;
}

.case .row a:hover p::before {
	width: 100px;
}

.case .row a span {
	color: #888;
	font-size: 14px;
	display: block;
}

/* 行业资讯 */
.news_menu .breadcrumbs {
	position: absolute;
	left: 0;
	margin: 0;
	top: 50%;
	transform: translateY(-50%);
}

.news_menu .breadcrumbs a:hover {
	color: #999;
}

.news_menu .breadcrumbs a {
	padding: 0;
	margin: 0;
}

.news_menu .breadcrumbs a:hover::before {
	width: 0;
}

.news_menu {
	text-align: center;
	padding: 0 5%;
	background: #F8F8F8;
}

.news_menu a {
	position: relative;
	display: inline-block;
	padding: 15px 0;
	margin: 0 30px;
}

.news_menu a:hover,
.news_menu a.on {
	color: #1f439b;
}

.news_menu a::before {
	content: '';
	width: 0;
	height: 1px;
	background-color: #1f439b;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: all 0.5s;
}

.news_menu a:hover::before,
.news_menu a.on::before {
	width: 100%;
}

.news ul li a {
	display: block;

}

.news ul li {
	padding: 12px 0;
	position: relative;
}

.news ul li::before {
	content: '';
	width: calc(100% + 40px);
	height: 100%;
	background: #F8F8F8;
	position: absolute;
	left: -20px;
	top: 0;
	z-index: -1;
	transition: all 0.5s;
	opacity: 0;
}

.news ul li:hover::before {
	opacity: 1;
}

.news ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news ul li a .imgDiv {
	width: 20%;
}

.news ul li a .text {
	width: 77%;
}

.news ul li a .text p {
	font-size: 18px;
	font-weight: bold;
}

.news ul li a .text span {
	color: #999;
	margin: 13px 0 20px;
	font-size: 14px;
}

.news ul li a .text small {
	color: #1f439b;
	font-size: 14px;
}

.news ul li a .text .leftDiv {
	width: 80%;
	max-width: calc(100% - 80px);
	padding-right: 40px;
}

.news ul li a .text .rightDiv {
	box-shadow: 0px 9px 36px 0px rgba(0, 0, 0, 0.04);
	width: 80px;
	overflow: hidden;
	border-radius: 4px;
}

.news ul li a .text .rightDiv h3 {
	color: #fff;
	font-size: 18px;
	background: #1f439b;
	line-height: 32px;
}

.news ul li a .text .rightDiv h4 {
	font-weight: normal;
	font-size: 16px;
	line-height: 32px;
}

/* 新闻详情 */
.detail .ny_right .upper {
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.detail .ny_right .upper strong {
	font-size: 30px;
}

.detail .ny_right .upper p {
	font-size: 14px;
	color: #999;
	margin-top: 5px;
}

.detail .ny_right .content p {
	padding: 10px 0;
	font-size: 16px;
}

.detail .ny_right .content img {
	margin: 20px 0;
}

.title2 {
	margin-top: 50px;
	border-bottom: 1px solid #EEEEEE;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.title2 p {
	position: relative;
	font-weight: bold;
	font-size: 24px;
	padding-left: 18px;
}

.title2 p::before {
	content: '';
	width: 3px;
	height: 20px;
	background: #1f439b;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}


.detail .news ul li a .text p {
	font-weight: normal;
}

.detail .news ul li a .text .leftDiv {
	padding-right: 0;
}

.detail .ny_right .below .row {
	margin: -8px;
}

.detail .ny_right .below .row>div {
	padding: 7px;
}

.detail .ny_right .below .row a {
	display: block;
	background: #F8F8F8;
	padding: 7px;
}

.detail .ny_right .below .row a .imgWrapper {
	padding: 44.4% 50%;
}

.detail .ny_right .below .row a p {
	font-size: 14px;
	text-align: center;
	margin: 10px 0;
}

/* 联系我们 */
.conDiv1 {
	padding: 60px 120px;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
	margin-bottom: 50px;
}

.conDiv1 .row {
	margin: -10px -40px;
}

.conDiv1 .row>div {
	padding: 10px 40px;
}

.conDiv1 .info li {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.conDiv1 .info img {
	max-width: 30px;
}

.conDiv1 .info p {
	width: calc(100% - 39px);
	padding-left: 5%;
}
.conDiv1 .info h2 {
	width: calc(100% - 39px); font-size:22px; font-weight:normal;
}

.conDiv1 .code img {
	max-width: 118px;
}

.conDiv1 .code p {
	color: #999999;font-size: 14px;
}

.conDiv1 form li {
	background: #F7F7F7;

	margin-bottom: 20px;
	font-size: 14px;
}

.conDiv1 form li:last-child {
	margin-bottom: 0;
}

.conDiv1 form input,
.conDiv1 form textarea,
.conDiv1 form button {
	display: block;
	width: 100%;
	border: none;
	background: none;
	padding: 12px 20px;
}

.conDiv1 form textarea {
	height: 182px;
}

.conDiv1 form button {
	background: #1f439b;
	color: #fff;
	font-size: 18px;
	line-height: 60px;
	padding: 0;
}

.conDiv1 form .verify {
	display: flex;
	align-items: center;
}

.conDiv1 form .verify input {
	width: 80%;
}

.conDiv1 form .verify a {
	display: block;
	width: 20%;
	font-size: 22px;
	text-align: center;
	line-height: 30px;
}

.contactus .map {
	padding: 25px;
	height: 515px;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

/* 我们的优势 */
.indexDiv3 .row {
	margin: 0 -27px;
}

.indexDiv3 .row>div {
	padding: 0 27px;
}

.indexDiv3 .row .content {
	box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.12);
	transition: all 0.5s;
	height: 100%;
}

.indexDiv3 .row .content:hover {
	transform: translateY(-10px);
	box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.19);
}

.indexDiv3 .row .content::before {
	content: '';
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.5s;
}

.indexDiv3 .row .content:hover::before {
	border: 1px solid #de4f8f;
}

.indexDiv3 .row .content .imgDiv11 {
	overflow: hidden;
	text-align: center;
}


.indexDiv3 .row .content .text {
	padding: 55px 46px 10px 46px; width:100%;
}

.indexDiv3 .row .content .text h2 {
	font-size: 18px; margin-bottom: 17px; color:#d83980;
}
.indexDiv3 .row .content .text .t1 {
	font-size: 18px;
	margin-bottom: 17px;
	text-align:left;
	font-weight:bold;
}
.indexDiv3 .row .content .text p {
	font-size: 16px;
	margin-bottom: 17px;
	text-align:left;
}
.indexDiv3 .row .content .text p>strong {
	font-size: 18px;
	margin-bottom: 17px;
	text-align:left;
	color:#1f439b;
}

.indexDiv3 .row .content .text .icon {
	width: 88px;
	height: 88px;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
}

.indexDiv3 .row .content .text .icon::before {
	content: '';
	width: 120%;
	height: 120%;
	background: #FFFFFF;
	opacity: 0.2;
	border-radius: 50%;
	position: absolute;
	left: -10%;
	top: -10%;
}


/* 返回顶部 */
a.backTop {
	position: fixed;
	right: 0;
	bottom: 10%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	z-index: 90;
}

a.backTop img {
	max-width: 30px;
	opacity: 0.6;
}

/* 手机端导航 */
.m-nav {
	display: none;
}

/*笔记本*/

@media all and (max-width:1280px) {
	header .rightDiv .menu>ul>li {
		margin-right: 20px;
	}

	header .language {
		min-width: 90px;
	}

	header .logo a img {
		max-height: 40px;
	}

	.ui-homebanner .swiper-slide .img {
		height: 460px;
	}

	.section3 .swiper-button-prev {
		left: 19%;
	}

	.section3 .swiper-button-next {
		right: 19%;
	}

	.section3 .swiper-slide a .text {
		padding: 10px 30px;
	}

	.conDiv1 {
		padding: 58px 40px;
	}
}

@media all and (max-width:1024px) {
	header .rightDiv .menu>ul>li {
		margin-right: 20px;
	}

	header .hotLine strong {
		font-size: 16px;
	}

	.abDiv2 .tab li a {
		width: 110px;
		height: 110px;
	}
}

@media all and (max-width:992px) {
	.menu ul {
		width: 100%;
		display: block;
		float: none;
	}

	.menu>ul>li>ul,
	.menu ul ul ul {
		position: relative;
		left: 0;
		right: auto;
		width: 100%;
		margin: 0;
		top: 0;
		border: 0;
		background: #fff;
		border-bottom: none;
		padding: 0;
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
		display: none;
	}

	.menu>ul>li.has-sub::before {
		right: 28px;
		top: 28px;
	}

	.menu ul li,
	.menu ul ul li,
	.menu ul li:hover>ul>li {
		width: 100%;
		height: auto;
		border-top: 1px solid rgba(0, 0, 0, .1)
	}

	.menu ul ul ul li a {
		padding-left: 40px
	}

	.menu .submenu-button {
		position: absolute;
		z-index: 10;
		right: 0;
		display: block;
		border-left: 1px solid rgba(0, 0, 0, .1);
		height: 60px;
		width: 60px;
		cursor: pointer
	}

	.menu .submenu-button::after {
		content: '';
		position: absolute;
		top: 21px;
		left: 26px;
		display: block;
		width: 2px;
		height: 12px;
		/* background: #fff; */
		z-index: 99
	}

	.menu .submenu-button::before {
		content: '';
		position: absolute;
		left: 21px;
		top: 26px;
		display: block;
		width: 12px;
		height: 2px;
		/* background: #fff; */
		z-index: 99
	}


	.menu .has-sub:hover>ul {
		left: 0;
		margin-left: 0;
		top: 0;
		transform: translateX(0);
	}

	.menu .submenu-button.submenu-opened:after {
		display: none
	}

	.menu li:hover>ul {
		left: auto;
		margin-left: auto;
	}

	header {
		height: 60px;
	}

	header .logo a {
		height: 60px;
		line-height: 60px;
		width: initial;
	}

	header .logo a img {
		max-height: 35px;
	}

	header .mbtn {
		display: block;
	}

	body.on-menu header .mbtn {
		z-index: 1;
	}

	header .rightDiv .menu {
		width: 100%;
		float: right;
		position: fixed;
		top: 60px;
		right: 0;
		width: 100%;
		height: 100%;
		padding-top: 0;
		background-color: #fff;
		transition: right 300ms;
		right: -100%;
		padding: 0;
		overflow-y: auto;
	}

	header .rightDiv .menu ul li {
		padding: 0;
		margin: 0;
		float: none;
		width: 100%;
	}

	header .rightDiv .menu ul li a {
		display: block;
		line-height: 60px;
		height: 60px;
		text-align: left;
		font-size: 16px;
		padding: 0 20px;
	}

	header .rightDiv .menu ul ul li a {
		padding: 0 40px;
	}

	body.on-menu header .rightDiv .menu {
		right: 0;
	}

	header .rightDiv .menu>ul>li::after {
		opacity: 0;
	}

	header .hotLine {
		margin-right: 20px;
	}

	.ui-homebanner {
		margin-top: 60px;
	}

	.ui-homebanner .swiper-slide .img {
		height: 340px;
	}

	.ui-homebanner .swiper-button-next,
	.ui-homebanner .swiper-button-prev,
	.section3 .swiper-button-next,
	.section3 .swiper-button-prev {
		width: 40px;
	}

	.section3 .swiper-slide a {
		display: block;
	}

	.section3 .swiper-slide a .imgDiv {
		width: 100%;
	}

	.section3 .swiper-slide a .text {
		width: 100%;
		padding: 10px 0;
	}

	.section3 .swiper-button-next {
		right: 18%;
	}

	.section3 .swiper-button-prev {
		left: 18%;
	}

	.section4 .swiper_wrapper {
		padding: 0 20px;
	}

	.section4 .swiper-button-prev {
		left: -30px;
	}

	.section4 .swiper-button-next {
		right: -30px;
	}

	.ny-banner .img {
		height: 290px;
		margin-top: 60px;
	}

	.ny-banner .text h2 {
		font-size: 30px;
	}

	.service .row a h2 {
		font-size: 15px;
		padding: 13px 10px;
	}

	.news ul li a .imgDiv {
		width: 30%;
	}

	.news ul li a .text {
		width: 66%;
	}

	.detail .ny_right .upper strong {
		font-size: 20px;
	}

	.conDiv1 .row {
		margin: -10px -15px;
	}

	.conDiv1 .row>div {
		padding: 10px 15px;
	}

	.ny-main {
		margin-top: 60px;
	}

	.abDiv2 .tab li {
		padding: 10px;
	}

	.abDiv2 .tab li a {
		width: 90px;
		height: 90px;
	}

	.abDiv2 .tab img {
		max-width: 45px;
	}

	.proDetailDiv1 .row .leftDiv {
		padding-right: 35px;
	}

	.proDetailDiv1 .rightDiv .text {
		padding-left: 30px;
	}

	.proDetailDiv1 .rightDiv h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.proDetailDiv1 .rightDiv .tel {
		margin-top: 40px;
	}

	.proDetailDiv1 .rightDiv .btnDiv a {
		padding: 10px 15px;
	}

}


/*手机端*/

@media (max-width:767px) {
	.ui-homebanner .swiper-slide .img {
		height: 270px;
	}

	.ui-homebanner .swiper-button-next,
	.ui-homebanner .swiper-button-prev,
	.section3 .swiper-button-next,
	.section3 .swiper-button-prev {
		width: 30px;
	}

	.title strong {
		font-size: 22px;
	}

	.section1 .tab a {
		font-size: 14px;
	}

	.section1 .tab a {
		display: inline-block;
		border: 1px solid #CCCCCC;
		padding: 5px 15px;
		margin: 6px;
	}

	.section1 .row>div {
		padding: 5px;
	}

	.section1 .row>div:nth-child(3),
	.section1 .row>div:nth-child(4) {
		border-top: 1px solid #eee;
	}

	.section1 .row a {
		padding: 10px;
		font-size: 14px;
	}

	.section2 .leftDiv {
		width: 100%;
		margin-bottom: 50px;
	}

	.section2 .leftDiv a {
		font-size: 14px;
		margin-top: 40px;
	}

	.section2 .rightDiv {
		max-width: 100%;
	}

	.section3 .swiper_wrapper {
		padding: 0 50px;
	}

	.section3 .swiper-button-prev {
		left: 10px;
	}

	.section3 .swiper-button-next {
		right: 10px;
	}

	.section3 .swiper-container {
		width: 100%;
		left: 0;
	}

	.section3 .swiper-slide a .text p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}

	.section3 .swiper-slide a .text h2 {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.section4 .swiper-button-next,
	.section4 .swiper-button-prev {
		width: 26px;
		height: 26px;
	}

	.section4 .swiper-slide a h2 {
		font-size: 16px;
		margin-top: 20px;
	}

	.section4 .swiper-button-prev {
		left: -10px;
	}

	.section4 .swiper-button-next {
		right: -10px;
	}

	footer ul {
		margin: 0 -10px;
	}

	footer ul li {
		width: 100%;
		margin-bottom: 20px;
		padding: 0 10px;
	}

	footer ul li.li1 {
		display: none;
	}

	footer ul li.li2,
	footer ul li.li3 {
		width: 100%;
		overflow: hidden;
	}

	footer ul li.li2 a,
	footer ul li.li3 a {
		width: 100%;
		width: 33.3%;
		float: left;
	}

	footer ul li.li4 {
		width: 100%;
	}

	footer ul li:last-child {
		margin-bottom: 0;
	}

	footer ul li p {
		font-size: 16px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	footer {
		padding-bottom: 60px;
	}

	/*内页*/
	.news .breadcrumbs {
		display: none;
	}

	.ny-main .breadcrumbs {
		font-size: 12px;
	}

	.ny-banner .img {
		height: 160px;
	}

	.ny-banner .text {
		font-size: 20px;
	}

	.pageNum {
		margin-top: 38px;
	}


	.ny-banner .text h2 {
		font-size: 22px;
	}

	.ny_left {
		width: 100%;
	}

	.ny_right {
		width: 100%;
		margin-top: 30px;
		padding-left: 0;
	}

	.ny_left>p {
		font-size: 20px;
	}

	.title2 p {
		font-size: 20px;
		padding-left: 18px;
	}

	.title2 p::before {
		height: 18px;
	}

	.title2 {
		padding-bottom: 12px;
		margin-bottom: 20px;
		margin-top: 30px;
	}

	.conDiv1 {
		padding: 32px 27px;
	}

	.conDiv1 .info img {
		max-width: 30px;
	}

	.contactus .map {
		padding: 15px;
		height: 320px;
	}

	.news ul li a .text {
		width: 70%;
		padding-left: 5%;
	}

	.news ul li a .imgDiv {
		width: 30%;
	}

	.news ul li a .text p {
		font-size: 16px;
	}

	.news ul li a .text span,
	.news ul li a .text small,
	.news ul li a .text .rightDiv {
		display: none;
	}

	.news ul li a .text .leftDiv {
		width: 100%;
		padding-right: 0;
		max-width: 100%;
	}

	.detail .ny_left p,
	.level1 a p {
		font-size: 20px;
		padding: 15px 20px;
		position: relative;
	}

	.level1 a p::before {
		content: '';
		width: 12px;
		height: 12px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: rotate(135deg);
		margin-top: -7px;
		transition: all 0.5s;
	}

	.level1 a.on p::before {
		transform: rotate(-45deg);
		margin-top: -2px;
	}

	.level2>li>a {
		margin-top: 5px;
	}

	.level1 .level2 {
		display: none;
	}

	.level2 {
		overflow: hidden;
	}

	.level2>li {
		width: 50%;
		float: left;
		padding: 0 2px;
	}

	.level2>li>a {
		padding: 10px 15px;

		padding-right: 30px;
		font-size: 14px;
	}

	.level2>li.has-sub>a::before {
		right: 15px;
	}

	.indexDiv1 .row a {
		font-size: 14px;
	}

	.service .row a .text p {
		margin: 12px 0 25px;
		-webkit-line-clamp: 2;
	}

	.detail .ny_right .below .row a span {
		display: none;
	}

	.detail .ny_right .below .row a p {
		display: -webkit-box;
		white-space: normal;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}

.detail .ny_right h1 {
	font-size: 18px;
	color: #333;
	font-weight:bold;
}
.detail .ny_right .content {
	font-size: 15px;
	color: #333;
	line-height:30px;
}

	.product .row a {
	padding: 0px;
	border: 0px solid #F8F8F8;
	}

	.product .row a img {
		width: 100%;
	}
	

	.abDiv1 .text {
		width: 100%;
		line-height: 28px;
		margin-bottom: 30px;
	}

	.abDiv1 .imgDiv {
		width: 100%;
	}

	.abDiv2 .tab li {
		width: 15%;
		padding: 1%;
	}

	.abDiv2 .tab li a {
		width: auto;
		height: auto;
		padding: 48% 48%;
		border: none;
	}

	.abDiv2 .tab li a img {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		max-width: 22px;
	}

	.abDiv2 .content p {
		font-size: 20px;
		margin-bottom: 12px;
		margin-top: 30px;
	}

	.abDiv2 .content span {
		font-size: 14px;
	}

	.title {
		margin-bottom: 25px;
	}

	.proDetailDiv1 .rightDiv .text {
		padding-top: 10%;
	}
	
	.proDetailDiv1 .rightDiv .tel {
		font-size: 15px;
	}
	.proDetailDiv1 .rightDiv .tel span {
		font-size: 21px;font-weight: bold;
	}
	.proDetailDiv1 .rightDiv::after {
		content: '';
		width: 100%;
		height: 100%;
		background-color: #F0F0F0;
		position: absolute;
		right: 100%;
		top: 0;
	}

	.proDetailDiv1 .rightDiv .text {
		padding-left: 0;
	}

	.proDetailDiv1 .row .leftDiv {
		padding-right: 0;
	}

	.proDetail h4 {
		font-size: 20px;
		padding-bottom: 17px;
		margin-bottom: 23px;
	}

	.proDetailDiv4 .row a .imgDiv {
		width: 42%;
	}

	.proDetailDiv4 .row a .text {
		width: 52%;
	}

	.proDetailDiv4 .row a .text p {
		white-space: normal;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		margin-bottom: 10px;
	}

	.proDetailDiv4 .row a .text span {
		display: none;
	}

	.m-nav {
		display: block;
		font-size: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		z-index: 998;
		background: #1f439b;
		height: 60px;
	}

	.m-nav li {
		float: left;
		width: 25%;
		text-align: center;
		padding: 0px 0 5px;
		position: relative;
	}

	.m-nav li a .img,
	.m-nav li .img {
		height: 35px;
		line-height: 35px;
	}

	.m-nav li a .img img,
	.m-nav li .img img {
		width: 17px;
		vertical-align: middle;
	}

	.m-nav li:nth-child(3) a .img img {
		width: 15px;
	}

	.m-nav li a,
	.m-nav li {
		color: #fff;
		font-size: 12px;
	}

	.m-nav li.active {
		background: #d83980;
	}

	.m-nav li .b-popup {
		display: none;
		box-shadow: 0 0 6px #666;
		position: absolute;
		bottom: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		margin: 0;
	}

	.m-nav li .b-popup dd {
		margin: 0;
	}

	.m-nav li .b-popup dd a {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		display: block;
		color: #333;
		letter-spacing: 1px;
		text-align: center;
		font-size: 14px;
		border-bottom: 1px solid #666;
		padding: 10px 5px;
	}

	.m-nav-blank {
		height: 55px;
		display: block;
	}

	a.backTop {
		width: 40px;
		height: 40px;
		border-radius: 4px;
	}

	a.backTop img {
		max-width: 20px;
	}
}
