﻿body {
	font-family: "Source Han Sans CN,system-ui,-apple-system,sans-serif";
	font-size: 14px;
	background: #f9f9f9;
	color: #1a1a1a;
	line-height: 32px;
}
input, select, textarea {
	font-family: "Source Han Sans CN,system-ui,-apple-system,sans-serif";
	font-size: 1em;
	;
}
.wrap {
	margin: 0 auto;
	max-width: 1440px;
	position: relative;
}
img, a {
	border: 0;
}
ul, li {
	list-style: none;
}
* {
	margin: 0;
	padding: 0;
}
.flt {
	float: left;
}
.frt {
	float: right;
}
.clear {
	clear: both;
}
.clear:after, .clear:before {
	content: '';
	clear: both;
	display: table;
}
img {
	max-width: 100%;
}
.img {
	overflow: hidden;
	position: relative;
}
*, *:after, *:before {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.textfull {
	overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.over {
	overflow: hidden;
}
.modal, .fp_modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000
}
.fp_modal {
	display: table;
}
.modal {
	transition: all 0s;
	-o-transition: all 0s;
	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	-ms-transition: all 0s;
	background: rgba(0,0,0,0.7);
}
.fp_modal .cell {
	display: table-cell;
	vertical-align: middle;
}
.modal_cont {
	max-width: 990px;
	margin: 0 auto;
	width: 90%;
	background: #fff;
	position: relative;
}
.modal_cont .close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	background: url(../images/close.png) no-repeat center center #ccc;
	border-radius: 100%;
	cursor: pointer;
}
.modal_cont .box {
	padding: 45px;
}
h3 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/*----------header----------*/
.header {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: none;
}

.head_tp {
	font-size: 14px;
}
.head_bm {
	padding-top: 0px;
	padding-bottom: 0px;
}
.head_tp .flt {
	padding-left: 10px;
}
.head_tp .frt {
	padding-right: 10px;
}
.head_bm .flt {
	padding-left: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.head_bm .frt {
	padding-right: 10px;
}

.logo {
	padding: 26px 0;
	display: flex;
}
.logo a {
	display: flex;
	align-items: center;
}
.logo img {
	width: auto;
	height: 66px;
}
.logo_text {
	margin-left: 30px;
	line-height: 50px;
	font-size: 20px;
	color: #1a1a1a;
}
.logo_text p {
	display: block;
	margin-top: 7px;
	height: 24px;
	line-height: 24px;
	font-size: 24px;
	color: #333;
}
.logo_text span {
	display: block;
	margin-top: 8px;
	height: 22px;
	line-height: 22px;
	font-size: 22px;
	font-weight: bold;
	color: #1b2f8a;
}

.top_tel {
	position: absolute;
	top: 0;
	right: 0;
	margin-left: auto;
	padding-left: 55px;
	background: url(/skin/images/toptel.png) left top no-repeat;
	background-size: auto 80px;
	background-position-y: 0px;
}
.top_tel p {
	display: block;
	height: 20px;
	line-height: 1;
	font-size: 18px;
	color: #1b2f8a;
	margin-top: 36px;
}
.top_tel b {
	display: block;
	height: 30px;
	line-height: 1;
    font-size: 28px;
    color: #1b2f8a;
}

.menu .logo {
	display: none;
}

/*导航*/
.menu {
	background: #1b2f8a;
}
.menu ul {
	padding: 0;
}
.menu ul li {
	position: relative;
	line-height: 40px;
	padding: 10px 0;
}

.menu ul li a {
	display: inline-block;
	position: relative;
	font-size: 16px;
	color: #fff;
}
.menu ul li.on a, .menu ul li a:hover {
	/* color: #fff */
}
.menu ul li.on a:after, .menu ul li a:hover:after {
	width: 100%;
}

.menu ul li .subnav {
    background: #fff;
    height: auto;
    overflow: hidden;
    position: absolute;
    top: 100%;
	right: 50%;
	transform: translateX(50%);
    width: 135%;
	max-width: 205px;
    z-index: 199;
	box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.1);
}
.menu .subnav {
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease 0s;
    transform: translate3d(0, 10px, 0);
    -moz-transform: translate3d(0, 10px, 0);
    -webkit-transform: translate3d(0, 10px, 0);
}
.menu ul li:hover .subnav{
	opacity: 1;
	visibility: visible;
}
.menu ul li .subnav a {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 50px;
    height: 50px;
    max-width: 100%;
    border-bottom: 1px solid #eee;
    background: #fff;
    text-align: center;
}
.menu ul li .subnav a:last-child {
	border-bottom:none;
}
.menu ul li .subnav a:hover {
	color: #1b2f8a;
	/* background: #0055A5; */
}

.header.fixed {
    background: rgb(255 255 255 / 80%);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6px);
}
.header.fixed .head {
	display: none;
}
.header .head {
	line-height: 42px;
	color: #868686;
	background-color: #f6f6f6;
}

 @media only screen and (min-width: 1001px) {
	.header.fixed > .head_bm > .logo {
		height: 0;
		padding: 0;
		z-index: 0;
		opacity: 0;
	}

	.header.fixed .menu {
		display: flex;
		padding: 0 30px;
		background-color: transparent;
	}
	.header.fixed .menu .logo {
		display: flex;
		max-width: 300px;
		margin: 0;
		padding: 0;
	}
	.header.fixed .menu .logo img {
		/* padding: 10px 0; */
		height: 50px;
	}

	.menu ul li:after {
		content:"";
		width:1px;
		height:60%;
		background-color:#00198a;
		position:absolute;
		right:0px;
		top: 50%;
		transform: translateY(-50%);
	}
	.menu ul li:last-child:after {
		display: none;
	}
	.header.fixed .menu ul {
		flex: 1;
		width: 100%;
		max-width: 1000px;
		margin: 0;
		margin-left: auto;
		padding: 0;
		transition: none;
	}
	.header.fixed .menu ul li:after {
		display: none;
	}
	.header.fixed .pc_menu ul li {
		padding: 10px 0;
	}
	.header.fixed .menu ul li a {
		line-height: 50px;
		color: #333;
	}
	
	.header.fixed .menu ul li .subnav a:hover {
		color: #1b2f8a;
	}
	.header.fixed .menu ul li .navna:after {
		background: #333;
	}
	
 }


.banner_owl {
	position: relative;
	overflow: hidden;
}

span.banner_cur {
	position: absolute;
	display: block;
	width: 50px;
	height: 80px;
	float: left;
	background-color: rgba(0,0,0,0.5);
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(../images/cur1.png);
	cursor: pointer;
	z-index: 102;
	transition: .2s;
}
span.prev {
	left:-50px;
	top: 50%;
	transform: translate(0, -50%);
}
span.next {
	right:-50px;
	top: 50%;
	transform: translate(0, -50%);
	float: right;
	background-image: url(../images/cur2.png);
}
.banner_owl:hover span.prev{
	left:80px;
}
.banner_owl:hover span.next{
	right:80px;
}
@media (max-width: 1280px) {
	span.prev {
		left: 5%
	}
	span.next {
		right: 5%
	}
}


.banner .item {
	position: relative;
}
/*.banner .item .text {
	position: absolute;
	width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 101;
}
.banner .text .title {
	text-align: center;
}
.banner .text .title a {
	color: #fff;
	font-weight: bold;
	font-size: 36px;
	padding: 12px 16px;
	background-color: rgb(255 255 255 / 40%);
	border-radius: 10px;
}*/
.banner .item a.m {
	position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.banner .item .text {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slide-title {
	display: none;
}
.slide-title[name*="bannerlink"] {
	display: block;
}

/*.slide-title::before {
	content: attr(name);
	display: block;
    background-color: rgb(255 255 255 / 20%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
}*/

.btn-conteiner {
  display: flex;
  justify-content: center;
  --color-text: #ffffff;
  --color-background: #ff135a;
  --color-outline: #ff145b80;
  --color-shadow: #00000080;
}

.btn-content {
  display: flex;
  align-items: center;
  padding: 5px 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 30px;
  color: var(--color-text);
  background: var(--color-background);
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--color-background);
}

.btn-content:hover, .btn-content:focus {
  transition: 0.5s;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .btn-title {
	color: #fff;
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 6%;
}
  
/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-content #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.btn-content #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.btn-content #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: white;
  }
}

/* Button animations */
@-webkit-keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}
@media (max-width: 767px) {
	.banner .item a.m[name*="了解更多"] {
		display: block;
	}
	.btn-conteiner {
	  --color-background: rgba(255, 255, 255, 0.6);
	}
	.btn-content {
		height: 40px;
		padding: 0 20px;
		font-size: 18px;
	}
	.btn-content .btn-title {
		color: red;
	}
	.icon-arrow {
		margin-left: 0;
	}
	.icon-arrow svg {
		height: 30px;
	}
}


/**/
.banner .text .title span {
	color: #0160de
}
.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 0 10px;
	border: 2px solid #717171;
	background: none;
}
.owl-theme .owl-dots {
	margin-bottom: 60px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #0160de;
	border-color: #0160de;
	opacity: 1;
}
.banner .img1 {
	overflow: hidden;
}
.banner .img1 img {
	display: block;
	width: 100%
}
/*----------mainer----------*/
.backfff {
	background: #fff;
}
.nei_margin_t {
	
}
.nei_margin_b {
	margin-bottom: 40px;
}


.mainer {
	margin-top: 175px;
}
.neibanr {
	display: flex;
}

.t-60 {
	margin-bottom: -60px;
}

.page {
	padding: 0;
}
/*内页导航*/
.page_tit {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	margin-bottom: 0px;
	background: #fff;
	overflow: hidden;
}
.nei_mav {margin-bottom: 50px;}
.page_tit h3 {
	display: none;
	background: #1f1f1f;
	padding-right: 20px;
	font-size: 28px;
	font-weight: normal;
	color: #fff;
}
.page_tit h3 span {
	font-size: 14px;
	color: #9b9b9b;
	text-transform: uppercase;
	margin-left: 10px;
	display: inline-block;
}
.page_tit label {
	display: block;
	margin: 15px auto;
	width: 44px;
	height: 3px;
	background: #007eff
}
.page_tit p {
	color: #343434;
	font-size: 16px;
}
.page_tit .tag {
	max-width: 1440px;
	margin: 0 auto;
}
.page_tit .tag ul {
	padding: 0 10px;
}

.page_tit .tag ul li {
	display: table-cell;
}
.page_tit .tag ul li a {
	display: block;
	line-height: 60px;
	padding: 0 30px;
	color: #1a1a1a;
	font-size: 16px;
}
.page_tit .tag ul li a:hover, .page_tit .tag ul li.on a {
	background: #0055a5;
	color: #fff;
}
/**/
.page_about .text p {
	text-indent: 2em;
	font-size: 16px;
	line-height: 26px;
	color: #1a1a1a;
	margin-bottom: 18px;
}
.page_about .text p:last-child {margin-bottom: 0;}

.page_about .text {
	padding-right: 30px;
}

/**/
.page_about .text .btn {
	display: flex;
	justify-content: space-around;
	max-width: 430px;
	margin: 0 auto;
    margin-top: 50px;
}
.btn .more {
	display: inline-block;
	width: 180px;
	line-height: 38px;
	color: #fff;
	text-align: center;
	cursor: pointer;
}
.btn .about_video {background-color: #df002c;}
.btn .aboutdw {background-color: #333333;}

.btn .about_video .iconfont { position: relative; padding-right: 25px}
.btn .about_video .iconfont {
    background: url(/skin/images/about_video.png) no-repeat center;
    background-size: 15px;
}

.btn .aboutdw .iconfont { position: relative; padding-left: 5px}
.btn .aboutdw .iconfont:before {
  content: "→";
}

 @media only screen and (min-width: 1200px) {
	/* .page_about .text .btn {display:none;} */
 }

ul:after {
	content: '';
	display: block;
	clear: both;
}

/**/

.Fourservice {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 40px;
}
.Fourservice .service {
    background: url(../images/img_service_title.png) no-repeat center bottom;
    height: 93px;
}
.Fourservice p {
    width: 105px;
    margin: 0 auto;
	text-align: center;
    border-bottom: 1px solid #000;
    font-weight: bold;
    padding-bottom: 15px;
	font-size: 26px;
	line-height: 1;
}


.pro_list ul li .img h3 {position: relative;}
.pro_list ul li .img h3:after{
            content: "";
            width: 0;
            height: 1px;
            background: #000;
            position: absolute;
            top: 100%;
            right: 100%;
            transition: all 0.7s;
}
.pro_list ul li .img h3:hover:after{left: 0%;right: 0%;width: 100%;}

.pro_list ul li img {
	display: block;
	width: 100%;
    height: auto;
}
.pro_list ul li {
	width: 18.4%;
	float: left;
	margin-right: 2%;
}
.pro_list ul li:nth-child(5n) {
    margin-right: 0;
}
.pro_list ul li a {
	display: block;
	position: relative;
}
.pro_list ul {
	padding: 0 10px;
	padding-bottom: 40px;
}
.pro_list ul li .text img {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.pro_list ul li a:hover .text img {
	opacity: 1;
}

.pro_list ul li a .text:after{
	content: "";
	width: 0;
	height: 1px;
	background: #000;
	position: absolute;
	top: 100%;
	right: 100%;
	transition: all 0.7s;
}
.pro_list ul li a .text:hover:after{ left: 0%; right: 0%; width: 100%;}




.pro_list ul li .box {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
}
.pro_list ul li .btn {
	margin: 0 auto;
	padding: 0 38px;
	line-height: 30px;
	border: 1px solid rgba(255,255,255,.2);
	display: inline-block;
	border-radius: 1px;
	margin-top: 20px;
}
.pro_list ul li .text h3 {
	font-weight: bold;
	line-height: 1;
	font-size: 20px;
	padding-top: 20px;
	padding-bottom: 10px;
}
.pro_list ul li p {
	padding-top: 10px;
	font-size: 15px;
	line-height: 1.5;
}

.page_about {
	padding: 20px 0 50px;
	/*background: url(../images/bg1.jpg) no-repeat center center;
	background-attachment: fixed;
	position: relative;*/
}
.page_about .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #eeeeee;
	/*opacity: .7*/
}
.page_about .img1 {
	position: relative;
	z-index: 1;
	width: 55%;
	max-width: 630px;
	cursor: pointer;
}
.page_about img {
	display: block;
}
.indexabout .icon-shipin {
	display: block;
    width: 88px;
    height: 88px;
    background: url(/skin/images/playvideo.png) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    opacity: 0.8;

	display: none;
}
.indexabout .aboutdw_boxr_gdvideo:hover .icon-shipin {opacity: 1;}



.vid-icon {
    display: inline-block;
    padding: 0;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    position: relative;
}
.vid-icon i {
    cursor: pointer;
    display: flex;
    height: 100%;
    font-size: 24px;
    background: #326ce4;
    background: linear-gradient(to right, #00f2f2, #0035ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vid-icon i:before {
    margin: auto;
}
.vid-icon i:after {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  border-radius: 50%;
  box-shadow: 0 0 rgba(255, 255, 255, 0.1),0 0 0 15px rgba(255, 255, 255, 0.1),0 0 0 30px rgba(255, 255, 255, 0.1);
  animation: ripple-wave1 1s linear infinite;
  animation-play-state: running;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-animation: ripple-wave1 1s linear infinite;
}
@keyframes ripple-wave1{
  to {
      box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.1),0 0 0 30px rgba(255, 255, 255, 0.1),0 0 0 45px rgba(255, 255, 255, 0.02);
  }
}


.page_about .img1 .box {
	position: absolute;
	top: -20px;
	right: -20px;
	bottom: -20px;
	background: #1f7ce6;
	left: 60%;
	z-index: -1;
}
.page_tit.on {
	border-bottom: 0
}
.page_tit.on h3 {
	background: none;
}
.news {
	max-width: 1440px;
	margin: 0 auto;
}
.news .wow_list {
	margin: 0 10px;
}
.news_list ul li {
	width: 100%;
}
.news_list ul li a {
	display: block;
}
.news_list a {
	color: #9b9b9b;
}
.news_list h3 {
	font-size: 18px;
	font-weight: normal;
	color: #1a1a1a;
}
.news_list label {
	display: block;
	margin: 10px 0;
	width: 34px;
	height: 1px;
	background: #363636
}
.news_list ul li:hover .d_tit {color: #0055A5}
.news_list .d_text {
	margin-top: 15px;
}
.news_list .text {
	overflow: hidden;
	position: relative;
}
.news-left:hover {
	transform: translateY(-10px)
}
/**/
.product_number {
    width: 90%;
}
.page_num {
	max-width: 1420px;
    margin: 0 auto;
	box-shadow: 0 2px 20px rgba(0,0,0,0.1);
	z-index: 10;
	position: relative;
	top: -50px;
	background: #fff;
	border-radius: 5px;
}
.page_num ul {
	padding: 35px 0;
	overflow: hidden;
}
.page_num li {
	width: 20%;
	float: left;
	text-align: center;
	margin-left: -1px;
	border-right: 1px solid #bcbcbc;
	color: #999;
	padding: 0 5px;
}
.page_num li:nth-child(5n) {
    border-right: none;
}
.page_num li h3 {
	font-weight: normal;
	font-size: 36px;
	display: inline-block;
	color: #1a1a1a;
}
.page_num li h3 p {
	float: right;
	margin-left: 3px;
	font-size: 16px;
	line-height: 16px;
	font-weight: 400;
}


.link_list ul li {
	width: calc((100%)/ 6);
	float: left;
}
.link_list ul li a {
	display: block;
	margin: 5px;
	border: 1px solid #edf0f3;
	text-align: center;
	line-height: 100px;
}
.link_list ul li a img {
	vertical-align: middle;
}
.link_list ul {
	margin: 0 10px;
}
.full {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 1001;
}
.full li a {
	display: block;
	width: 52px;
	height: 52px;
	margin-bottom: 1px;
	position: relative;
	background: rgba(0,0,0,0.5);
	z-index: 1;
}
.full li a:hover span, .full li a:hover label {
	background-color: #0160de !important;
}
.full li:last-child a {
	border-bottom: 0;
}
.full li a span {
	display: block;
	width: 52px;
	height: 52px;
	position: relative;
	z-index: 100;
	background-position: center center;
	background-repeat: no-repeat;
}
.full li:nth-child(2) a, .full li:nth-child(1) a {
	z-index: 2;
}
.full li a label {
	display: block;
	width: 150px;
	white-space: nowrap;
	padding: 0 20px;
	position: absolute;
	line-height: 52px;
	color: #fff;
	z-index: -1;
	background: #000;
	bottom: 0;
	left: 100%;
	box-sizing: inherit;
	max-width: 300%;
}
.full li a:hover label {
	left: -150px;
}
.full li a .lbl_img {
	width: 140px;
	height: 140px;
	padding: 10px;
	line-height: normal;
}
.full li a span.span1 {
	background-image: url(../images/full1.png);
}
.full li a span.span2 {
	background-image: url(../images/full2.png);
}
.full li a span.span3 {
	background-image: url(../images/full3.png);
}
.full li a span.span4 {
	background-image: url(../images/full4.png);
}
.page_tit.bg_000 h3 {
	background: #1a1a1a
}
/*----------footer----------*/
.footer {
	background: #f2f2f2;
}
.contact h3 {
	font-size: 18px;
	font-weight: normal;
	padding-top: 25px;
	margin-bottom: 5px;
	color: #1a1a1a;

}
.address {
	padding-bottom: 10px;
	margin-bottom: 30px;
	border-bottom: 1px solid #262626;
}
.address span {
	display: inline-block;
	margin-right: 50px;
	color: #1a1a1a;
}

.address .share {
	float: right;
}
.address .share li {
	display: inline-block;
	margin-left: 10px;
}
.address .share a {
	display: block;
	width: 36px;
	height: 36px;
	background: #2a2a2a;
	border-radius: 100%;
	line-height: 36px;
	text-align: center;
}
.address .share a:hover {
	background: #000
}
.address .share img {
	vertical-align: middle;
	margin-bottom: 3px;
}

/**/
.footer .contact {padding: 0 10px;overflow: hidden;}

.footer .links {
	padding-top: 30px;
	padding-bottom: 10px;
    font-size: 14px;
    border-bottom: 1px solid #e2e2e2;
    color: #999;
}
.footer .links a {
	display: inline-block;
	margin-right: 8px;
	color: #999;
}
.footer .links a:hover {
	color: #0055A5;
}


.footerbox {
	display: flex;
    justify-content: space-between;
    overflow: hidden;
    margin: 30px 0;
}
.footerbox .botnav {
	display: flex;
}
.footerbox .botnav .item {
	margin-right: 80px;
}
.footerbox .botnav li:last-child {margin-right: 0}

.footerbox .botnav .item a {
	display: block;
	color: #666;
	font-size: 16px;
}
.footerbox .botnav .item a:hover {
	color: #0055A5;
}
.footerbox .botnav .item .drop {
	margin-top: 10px;
}
.footerbox .botnav .item .drop a {
	font-size: 14px;
	line-height: 26px;
}


.footerbox .bewm {
	width: auto;
	float: right;
}
.footerbox .bewm li {
	display: block;
	float: left;
	margin-left: 20px;
}

.footerbox .bewm li:first-child {
	margin-left: 0;
}
.footerbox .bewm .img {
	display: block;
	width: 100px;
}
.footerbox .bewm .scan {
	text-align: center;
	color: #666;
}

.footerbox .telMain {
	display: block;
	height: fit-content;
	float: left;
	border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    padding: 0 5rem;
    color: #666;
}
.footerbox .telMain .tit {font-size: 16px;margin-bottom: 10px;}
.footerbox .telMain .zx {padding-left:22px;font-size:14px;background:url("/skin/images/footer_tel.png") no-repeat left center;background-size:16px;}
.footerbox .telMain .tel {color: #172e8e;font-size: 20px;font-weight: bold;}

/**/
.div_input {
	line-height: 38px;
	padding: 0 15px;
	background: #2a2a2a
}
.div_input input {
	width: 100%;
	border: 0;
	background: none;
	color: #fff;
}
.contact .list_lt {
	float: left;
	width: 38.5%;
	margin-bottom: 30px;
}
.contact .list_lt li {
	margin-bottom: 10px;
}
.contact .list_rt {
	float: right;
	width: 58.5%;
}
.div_input textarea {
	height: 134px;
	padding: 10px 0;
	width: 100%;
	display: block;
	border: 0;
	background: none;
	resize: none;
	color: #fff;
}
.copyright a {
	color: #999
}
.copyright {
	line-height: 30px;
	padding: 15px 0;
	text-align: center;
	border-top: 1px solid #e2e2e2;
	color: #999;
}
.copyright p {
	line-height: 1.5;
	margin-bottom: 5px;
}
.copyright a:last-child {
	margin-left: 10px;
	padding-left: 11px;
	border-left: 1px solid #e2e2e2;
}
.copyright a img {
	height: 18px;
	vertical-align: text-bottom;
  padding-right: 2px;
}

.pagesize {
	margin-top: 30px;
	text-align: center;
	padding: 30px 0;
}
.pagesize a {
	background-repeat: no-repeat;
	background-position: center center;
	display: inline-block;
	line-height: 36px;
	background-color: #282828;
	color: #9b9b9b;
	height: 36px;
	vertical-align: middle;
	min-width: 16px;
	padding: 0 10px;
	margin: 5px;
}
.pagesize a:hover, .pagesize a.on {
	background-color: #126ace;
	color: #fff;
}
.pagesize a.prev {
	background-image: url(../images/cur5.png);
}
.pagesize a.next {
	background-image: url(../images/cur6.png);
}
.pagesize a.prev:hover {
	background-image: url(../images/cur1.png);
}
.pagesize a.next:hover {
	background-image: url(../images/cur2.png);
}

.pro_details {
	background: #fff;
	padding: 0 100px 50px 100px;
	margin-bottom: 50px;
}
.pro_details .tit {
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #cccccc;
	margin-bottom: 30px;
	padding-bottom: 40px;
}
.pro_details .tit h3 {
	font-size: 28px;
	line-height: 1.6;
	font-weight: normal;
	white-space: normal;
    padding: 50px 0 20px;
}
.news_return {
	text-align: center;
    padding-bottom: 30px;
}
.news_return a {
	display: inline-block;
    background: #0055A5;
    padding: 5px 30px;
    color: #FFF;
    font-size: 14px;
}
.pro_details .pageTurning {
    padding: 13px 0px;
}
.pro_details .pageTurning .prevs {
	float: left;
    width: 47.5%;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.pro_details .pageTurning .nexts {
	float: right;
    width: 47.5%;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.pro_details .pageTurning .nexts a {
	overflow: hidden;
	text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news_time {
	font-size: 14px;
	color: #999;
}
.pro_details .tit label {
	display: inline-block;
	line-height: 26px;
	padding: 0 10px;
	border-radius: 1px;
	background: #363636;
	font-size: 14px;
	margin-left: 20px;
	vertical-align: middle;
}
.pro_details .text p {
	margin-top: 20px;
	color: #1a1a1a;
	line-height: 1.8;
	font-size: 16px;
	text-indent: 2em;
}
.pro_details .text p img {
	width: 100%;
	max-width: 700px;
	display: block;
	margin: 0 auto
}
.pro_details .text p br {
	display: none;
}
.pro_details .text p img+br+span {
	display: block;
	max-width: 800px;
    margin: 0 auto;
    text-indent: initial;
    text-align: center;
	font-size: 14px;
    line-height: 1.5;
    padding-top: 0.5em;
    color: #888 !important;
}
.pro_details .text {
	margin-bottom: 50px;
}
.about {
	padding:30px 20px;
}
.about .item .text {
	display: table;
}
.about .item {
	/*margin-top: 30px;*/
}
.about .item:last-child {
	border-bottom: 0;
}
.about .item:after {
	content: '';
	display: block;
	clear: both;
}
.about .item .img {
	width: 49%;
}
.about .item h3 {
	font-size: 22px;
	font-weight: normal;
	color: #000;
	margin-bottom: 30px;
	font-weight: bold;
    z-index: 2;
    position: absolute;
}
.about .item h4 {
	font-weight: bold;
    color: #e8e8e8;
    font-size: 34px;
    line-height: 28px;
    z-index: 1;
    margin-top: 16px;
}
.about .d_text p {
	color: black;
	font-size: 16px;
	text-indent: 2em;
	line-height: 28px;
	padding-top: 18px;
}
/*wenhua*/
.Fourwenhua { margin-top: 60px;}
.Fourwenhua .text h3 {
	margin-bottom: auto;
    position: inherit;
	font-size: 28px;
    line-height: 28px;
}
.Fourwenhua .text span { 
	display: block;
	width: 20px;
	margin-top: 20px;
	border-bottom: solid 3px #0055A5;}
.Fourwenhua ul {
	display: flex;
	margin-top: 40px;
}
.Fourwenhua ul li {
    width: 25%;
    float: left;
	text-align: center;
	padding: 0 10px;
}
.Fourwenhua ul li .title {
	max-width: 300px;
    margin: 0 auto;
	color: #fff;
    border-radius: 4px;
}

.Fourwenhua ul li:nth-child(1) .title {background-color: #2463b9; }
.Fourwenhua ul li:nth-child(2) .title {background-color: #139ea6; }
.Fourwenhua ul li:nth-child(3) .title {background-color: #6aa35b; }
.Fourwenhua ul li:nth-child(4) .title {background-color: #fe7e6d; }

.Fourwenhua ul li h2 {
    font-size: 22px;
	line-height: 2;
}
.Fourwenhua ul li h5 {
    font-size: 14px;
	line-height: 2;
	font-weight: normal;
}
.Fourwenhua ul li .img {
	display: block !important;
	width: 100% !important;
    margin: 35px 0 25px;
}
.Fourwenhua ul li .img img {
	max-width: 100px;
}
.Fourwenhua ul li p {
    font-size: 18px;
	line-height: 1.5;
	color: #1a1a1a;
	font-weight: bold;
}
.Fourwenhua .linian {
	text-align: center;
	background: #fff;
	margin-top: 50px;

}
.Fourwenhua .linian .bg {
	max-width: 400px;
	margin: 0 auto;
}
.Fourwenhua .linian dl {
	position: absolute;
    width: 100%;
    padding-top: 100px;
}
.Fourwenhua .linian dl dt {
	width: 50%;
	float: left;
	box-sizing: border-box;
}
.Fourwenhua .linian dl dt h1 {
	font-size: 20px;
	font-weight: bold;
}
.Fourwenhua .linian dl dt h1:after {
    content: "";
    position: absolute;
    display: block;
    width: auto;
    height: 2px;
    border-right: 316px solid #0055A5;
    right: 50%;
    top: 65%;
}
.Fourwenhua .linian dl dt p {
	font-size: 16px;
	line-height: 1.5;
}



/**/

.about2 li {
	padding: 20px 0;
	color: #666;
}
.about2 ul li span {
	display: block;
	float: left;
	margin-right: 30px;
	font-size: 22px;
	color: #fff;
	padding-right: 72px;
	position: relative;
}
.about2 ul li span:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	right: 0;
	width: 42px;
	background: #333;
	height: 1px;
}
.about2 ul li .text {
	overflow: hidden;
}
.ry_list {
/*	padding: 30px 0;*/
}
.ry_list ul {
	margin: 0;
}
.ry_list ul li {
	width: 25%;
	float: left;
}
.ry_list ul li .box {
	margin: 0 15px 20px 15px;
	box-shadow: 0px 3px 6px rgba(0,0,0,.2);
}
.ry_list ul li .box .img {
	border: 1px solid #e1e1e1;
}
.ry_list ul li .box .img img {
	display: block;
}
.ry_list ul li .box p {
	line-height: 60px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	font-size: 18px;
	padding: 0 10px;
}
.zp_p_list {
	line-height: 28px;
	color: #4c4c4c;
    margin-bottom: 50px;
}
.zp_p_list a {
	color: #be9a78;
}
.bold {
	font-weight: bold;
}
.zp_p_list .list {
	color: #4c4c4c;
}
.zp_p_list li.on.wow {
	box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.zp_p_list .list h3 {
	font-size: 20px;
	font-weight: normal;
	color: #000;
	margin-bottom: 5px;
	line-height: 40px;
}
.zp_p_list .text > ul > li {
	list-style: decimal;
	margin-left: 20px;
}
.zp_p_list .box {
	padding: 0 20px;
}
.zp_p_list .box .list {
	padding: 20px 0;
}
.zp_p_list .text h4 {
	font-size: 18px;
	color: #fff;
	font-weight: normal;
	margin-bottom: 10px;
}
.zp_p_list .title {
	cursor: pointer;
	line-height: 54px;
	background: url(../images/a2.png) no-repeat 98% center;
	background-size: 16px;
	padding: 0 20px;
}
.Recruitmentlist {
	padding: 0 10px;
}
.zp_p_list .zp_list > ul > li {
	border-bottom: 1px solid #dbdbdb;
}
.zp_p_list .title span {
	display: inline-block;
	margin-right: 4%;
	min-width: 70px;
}
.zp_p_list .title span.span1 {
	min-width: 230px;
	font-size: 22px;
	color: #4e4e4e;
	margin-right: 10%;
}
.zp_p_list .box {
	display: none;
	transition: all 0s;
	-o-transition: all 0s;
	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	-ms-transition: all 0s;
}
.zp_p_list .on .title, .zp_p_list li:hover .title {
	background-color: #f2f2f2;
	background: url(../images/a1.png) no-repeat 98% center #f2f2f2;
	background-size: 16px;
}
.zp_p_list li.on, .zp_p_list li:hover {
	background: #fafafa
}
.zp_p_list .on .title .span1, .zp_p_list li:hover .title .span1 {
	color: #000;
}
.map {
	margin-bottom: 20px;
}
.news li {
	margin-top: 50px;
	position: relative;
}
.news li:after {
	content: '';
	;
	display: block;
	clear: both;
}
.news li .img {
	width: 410px;
	float: left;
	margin-right: 45px;
}
.news li .img img {
	display: block;
}
.news li .text {
	position: relative;
	overflow: hidden;
	padding-right: 135px;
	color: #666;
}
.news li:before {
	position: absolute;
	width: 10%;
	left: 0;
	top: 0;
	bottom: 0;
	background: #e6e6e6;
	opacity: 0;
	content: '';
}
.news li:hover:before {
	opacity: 1;
	width: 100%;
}
.news li .d_text {
	margin-top: 10px;
	height: 64px;
	overflow: hidden;
}
.news li:hover .btn {
	background-color: #0055A5;
}
.news li .btn {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 88px;
	border: 1px solid #363636;
	background-image: url(../images/cur6.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.news li .text h3 {
	margin-top: 20px;
	font-size: 18px;
	color: #1a1a1a;
	font-weight: normal;
}
.news li .text label {
	display: block;
	margin: 10px 0;
	width: 35px;
	background: #343434;
	height: 1px;
}
/*----------custom----------*/
.center {
	text-align: center;
}
.pro_list ul li .text1 h3 {
	text-align: center;
	font-size: 18px;
	color: #fff;
	font-weight: normal;
	margin-top: 10px;
}
/*contact*/
.wqpcontactUs {
	margin-top: 30px;
	margin-bottom: 30px;
}
.wrap .contactUs {
	margin-left: 10px;
	margin-right: 10px;
}
.contactUs {
    background: #fff;
    padding: 30px 40px 30px 40px;
}
.contactUs .divider {
	width: 100%;
    height: 0;
    border: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid #E9E9E9;
	margin: 20px 0;
}
.contactUs .contact h1 {
	font-size: 24px;
}
.contactUs .contact h2 {
	font-size: 16px;
	padding-top: 30px;
    padding-bottom: 20px;
}
.contactUs .cityItem {
	font-size: 16px;
}

.Branchsch ul li {
	width: 50%;
	float: left;
	border-bottom: 1px solid #E9E9E9;
	padding: 30px 0 20px;
}
.Branchsch ul li:nth-of-type(even) .cityItem {
    border-left: 1px solid #E9E9E9;
    padding-left: 20px;
}
.Branchsch ul li h4 {
	font-size: 16px;
    padding-bottom: 10px;
}

.inedx-tit {
	box-shadow: none;
    background: none;
}
.inedx-tit h1 {
	font-size: 26px;
    margin: 0 0 30px 0px;
    font-weight: bold;
}
.inedx-tit h1 span {
	font-size: 14px;
    color: #9b9b9b;
    text-transform: uppercase;
    margin-left: 10px;
    font-weight: normal;
}

/**/
.indexabout .inedx-tit h1 { margin: 0 0 18px 0px; }

.indexnew_nr {
	margin: 0 10px;
	overflow: hidden;
	position: relative;
}
.indexnew_nr .inedx-tit {
	display: inline-block;
    width: 100%;
}
.indexnew_nr .inedx-tit h1 {
	float: left;
}
.indexnew_nr .inedx-tit .wnewsNav {
	float: right
}


 @media only screen and (min-width: 1001px) and (max-width: 1440px) {
 	.head_bm .pc_menu {
	    /* position: absolute; */
	    /* padding-left: 300px; */
	    overflow: hidden;
	    left: 0;
	    right: 0;
	}

	.footerbox .telMain {
		padding: 0 3.5rem;
	}

}
 @media only screen and (max-width: 1440px) {
	.header .logo {
		padding-left: 10px;
	}
	.top_tel {
		right: 10px;
	}
	.menu ul {
		margin: 0 -20px;
		display: flex;
    	justify-content: right;
	}
	.menu ul li {
		/* padding: 20px 0; */
	}
	 
	.about .item .img {
		margin-right: 20px;
	}
	.about .d_text p {
		font-size: 15px;
		line-height: 24px;
		padding-top: 14px;
	}
	.about .item .img {
		display: block;
		width: 48%;
		margin-right: 0;
	}
}
 @media only screen and (max-width: 1280px) {
	.news-right li:last-child {display: none;}
}
 @media only screen and (max-width: 1200px) {
 	/*
	.head_bm .frt {
	    padding-right: 0;
	    position: absolute;
	    padding-left: 300px;
	    overflow: hidden;
	    left: 0;
	    right: 0;
	}
	*/
	.menu ul {
		margin: 0;
		display: flex;
		justify-content: space-between;
	}
	.menu ul li .subnav {
	    left: -30%;
	    width: 160%;
	}

	.about .item .img {
		display: none;
	}
	 
	.Fourservice {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.page_about .img1 {display: none;}
	.page_about .text {padding-right: 0}

	.news-right li:nth-child(12) {display: none;}

	.footerbox .botnav .item {
		margin-right: 2em;
	}
	.footerbox .telMain {
		padding: 0 1.5rem;
	}
}
 @media only screen and (min-width: 1001px) {
	.menu ul li .navna:after {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		width: 0;
		right: 0;
		margin: 0 auto;
		height: 3px;
		background: #fff;
	}
	.pc_menu ul {
		display: flex;
	}
	.pc_menu ul li {
		text-align: center;
		width: 100%
	}
 }
 @media only screen and (max-width: 1000px) {
 	.about {
		padding: 15px 10px;
	}
	.t-60 {
		margin-bottom: -40px;
	}
	.head {
		display: none;
	}
	.head_bm {
	    padding-top: 10px;
	    padding-bottom: 10px;
	}
	.menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: #fff;
		margin-top: 0
	}
	.menu ul {
		padding-top: 75px;
		display: block;
	}
	.menu ul li {
		float: none;
		display: block;
		border-bottom: 1px solid #d9d9d9;
		padding: 0;
		margin: 0 35px;
	}
	.menu ul li a {
		color: #999;
		line-height: inherit;
		font-size: 16px;
		padding: 0 20px;
		display: block;
	}
	.menu ul li a:after {
		display: none;
	}
	.menu ul li .subnav {display: none;}

	.header .logo {
		position: relative;
		z-index: 1001;
		line-height: 60px;
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 10px;
		display: inline-block
	}
	.logo img {
		height: 40px;
	}
	.menu .logo {
		display: none;
	}
	.header .logo .logo_text,
	.header .logo .top_tel {
		display: none;
	}
	.menu_wrap {
		position: absolute;
        top: 15px;
        width: 30px;
        height: 30px;
        background: url(../images/menu.png) no-repeat center center #0055A5;
        background-size: 20px auto;
        right: 10px;
	}
	.h_menu .menu_wrap {
		background: url(../images/menu-1.png) no-repeat center center #0055A5;
		background-size: 20px auto;
	}
	.h_menu .menu {
		left: 0;
	}
	.header {
		line-height: 60px;
		height: 60px;
	}
	.header.fixed {
		background: #fff;
	}
	.header.h_menu .menu ul {
		background: #fff;
		height: 100vh;
	}
	.header.fixed .pc_menu ul li {
		padding: 0;
	}
	.mainer {
		margin-top: 60px;
	}
	.head_bm .frt {
	    padding-right: 0;
	}
	.menu ul {
		margin: 0 -35px;
	}
	.address span {
		margin-right: 30px;
	}
	.pro_list ul {
		margin: 0 auto;
		padding-bottom: 0;
	}
	.page_about .img1 {
		width: 50%;
		margin-right: 30px;
	}
	.page_about .text {
		padding-right: 0;
	}
	.page_tit {
		margin-bottom: 30px;
	}
	.inedx-tit {margin-bottom: 0}

	.page_about .text p {
		margin-bottom: 30px;
	}
	.news_list ul li a {
		/*margin: 5px;*/
	}
	.news_list ul {
		margin: 0
	}
	.link_list ul li a {
		margin: 5px;
	}
	.link_list ul {
		margin: 0
	}
	.pro_list ul li {
		width: 19.2%;
		margin-right: 1%;
	}
	.pro_list ul li .text h3 {
		font-size: 16px;
		padding-top: 18px;
		padding-bottom: 10px;
	}
	.page_about {
		padding: 0 0 30px;
	}
	.address .share {
		float: none;
		margin-top: 5px;
	}
	.full {
		display: none;
	}
	.page {
		/*padding: 30px 0;*/
	}
	.page_num li p {
		margin: 0 auto;
		line-height: 25px;
	}
	.address .share li {
		margin-left: 0;
		margin-right: 10px;
	}
	 
	.ry_list ul li {
		width: 33.3333%;
		float: left;
	}

	.zp_p_list .title span.span1 {
		min-width: 200px;
		font-size: 18px;
		margin-right: 4%;
	}
	.zp_p_list .title span.span2 {
		min-width: 50px;
	}
	.zp_p_list .title span {
		margin-right: 30px;
	}


	.pro_details {
		padding: 0 20px 30px 20px;
		margin-bottom: 30px;
	}
	.pro_details .tit h3 {font-size: 22px}

	.footerbox .botnav .item { margin-right: 20px;}
	.footerbox .telMain { padding: 0 2rem;display: none;}
}
 @media only screen and (max-width: 800px) {
	.menu ul li {
		margin: 0 20px;
	}
	.menu ul {
		margin: 0 -20px;
	}
	.news li .img {
		width: 300px;
	}
	.news li .text h3 {
		margin-top: 10px;
	}
	.news li {
		margin-top: 20px;
	}
	.news li .img {
		margin-right: 20px;
	}

	.footerbox { display: flex; justify-content: space-around;}
	.footerbox .botnav li:last-child {display: none;}
	.footerbox .botnav {display: none;}
	.footerbox .telMain {display: block;border: none;padding: 0;}
	.copyright {padding: 15px 12px;}
}
 @media only screen and (max-width: 750px) {
 	.indexabout .inedx-tit h1 { margin: 0 0 14px 0px; }

	.banner .text .title {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.banner_cur {
		/*display: none;*/
	}
	.owl-theme .owl-dots {
		margin-bottom: 5px;
	}
	.page_tit .tag {
		float: none;
		padding: 0;
		text-align: center;
	}
	.page_tit h3 {
		font-size: 18px;
		text-align: center;
		margin: 0 auto;
		padding: 0 10px;
	}
	.page_about .img1 {
		width: auto;
		float: none;
		margin: 0 auto;
		/*margin-bottom: 15px;
		margin-right: 20px;*/
	}
	.page_tit {
		text-align: center;
		height: auto;
		border-bottom: 0;
		margin-bottom: 25px;
	}
	.page_about .text {
		padding-right: 0
	}
	.page_about .text p {
		text-align: justify;
		margin-bottom: 10px;
		font-size: 14px;
		line-height: 22px;
	}
	.news_list ul li {
		width: 50%;
	}
	 
	 
	 
	.page_num ul {
		padding: 15px 0;
	}
	.page_num li {
		width: 50%;
		padding: 10px;
		margin-bottom: 10px;
	}
	.page_num li:nth-child(2n) {
		border-right: none;
	}
	 
	.zp_p_list .title span.span1 {
		min-width: 230px;
		font-size: 18px;
		margin-right: 0;
		display: block;
		line-height: initial;
		padding: 15px 0 10px 0;
	}
	.zp_p_list .title span.span2 {
		min-width: 30px;
	}
	.zp_p_list .title span {
		margin-right: 30px;
	}
	 .Fourwenhua { margin-top: 30px;}
	 .Fourwenhua .text h3 { font-size: 22px; line-height: 22px;}
	 .Fourwenhua .text span { margin-top: 10px;}
	 .Fourwenhua ul li .img { margin: 10px 0;}
	 .Fourwenhua ul { display: block; margin-top: 20px;}
	 .Fourwenhua ul li { width: 49%; padding: 0; margin-right: 2%; margin-bottom: 30px;}
	 .Fourwenhua ul li:nth-child(2n) {margin-right: 0;}
	 .Fourwenhua ul li:nth-child(4n) {margin-bottom: 0;}

	.ry_list ul li {
		width: 50%;
	}
	.ry_list ul li .box .img img {
		display: block;
		width: 100%;
	}
	.ry_list ul li .box p {
		line-height: 30px;
		font-size: 14px;
		padding: 0 5px;
	}
	 
	.pro_list ul li {
		width: 48%;
		margin-right: 4%;
		margin-bottom: 25px;
	}
	.pro_list ul li:nth-child(2n) {
		margin-right: 0;
	}
	.pro_list ul li .text h3 {
		font-size: 16px;
		padding-top: 18px;
		padding-bottom: 10px;
	}
		.page_tit .tag ul li a {
		display: block;
		line-height: 50px;
		padding: 0 20px;
		color: #1a1a1a;
		font-size: 16px;
	}
	.pro_details .pageTurning { padding: 0; display: inline-block;}
	.pro_details .pageTurning .prevs {width: 100%;line-height: 2}
	.pro_details .pageTurning .nexts {width: 100%;line-height: 2}

/*联系我们*/
	.contactUs { padding: 20px;}
	.contactUs .contact h1 { font-size: 22px;}
	.contactUs .contact h2 { font-size: 16px; padding-top: 20px; padding-bottom: 10px;}
	.Branchsch ul li {
		width: 100%;
		border-bottom: 1px solid #E9E9E9;
		padding: 15px 0;
	}
	.Branchsch ul li:nth-of-type(even) .cityItem {
		border-left: 0;
		padding-left: 0;
	}
	
	.neibanr {
		height: 160px;
	    width: 100%;
	    position: relative;
	    overflow: hidden;
		}
	.neibanr img {
		display: block;
	    width: auto;
	    max-width: none;
	    height: 100%;
	    position: absolute;
	    top: 0;
	    left: 50%;
	    transform: translateX(-50%);
	    user-select: none;
	}


}
 @media only screen and (max-width: 550px) {
 	.Fourwenhua ul li {
	    width: 100%;
	    margin-right: 0%;
	    margin-bottom: 30px;
	}
	.Fourwenhua ul li .img {
		margin: 15px 0 !important;
	}
	.Fourwenhua ul li p {font-size: 14px}

	.Fourservice .service {
		background: url(../images/img_service_title.png) no-repeat center bottom;
		height: 65px;
		background-size: 300px;
	}
	.Fourservice p {
		width: 80px;
		padding-bottom: 13px;
		font-size: 20px;
	}

	.pro_list ul li {
		width: 100%;
	}
	 
	.page_num ul {
		padding: 15px 15%;
	}
	.page_num li {
		width: 100%;
		margin-bottom: 10px;
		border-right: none;
		border-bottom: 1px solid #bcbcbc;
	}
	.page_num li:nth-child(5n) {
		border-bottom: none;
		margin-bottom: 0;
	}
	.page_num li h3 {
		font-size: 26px;
		line-height: 1;
	}
	.page_num li h3 p {
		line-height: 20px;
	}
	.page_num li p {
    	line-height: 1;
	}
	 
	 
	 
	.link_list ul li {
		width: 50%;
	}
	.contact .list_rt, .contact .list_lt {
		width: 100%;
		float: none;
		margin-bottom: 10px;
	}
	.div_input textarea {height: 100px;}
	.about .item .img {
		margin: 0
	}
	.about .item .text {
		width: 100%;
		display: inline-block;
	}
	.about .item h3 {
		font-size: 20px;
	}
	.about .item h4 {
		font-size: 26px;
	}
	.about .item .d_text {
		margin-top: 0!important;;
	}
	.about .d_text p {
		font-size: 14px;
		line-height: 1.6;
		padding-top: 10px;
	}
	.about .item {
		/*padding: 15px 0;*/
	}
	.about2 ul li span {
		padding-right: 0;
		margin-right: 15px;
	}
	.about2 li {
		padding: 5px 0;
	}
	.about2 ul li span:after {
		display: none;
	}
	.zp_p_list .title span {
		margin-right: 10px;
	}
	.zp_p_list .title {
		line-height: 30px;
		padding: 10px;
	}
	.zp_p_list .box {
		padding: 0 10px;
	}
	.ry_list ul li {
		width: 50%;
	}
	.ry_list ul li .box {
		margin: 5px;
	}
	.ry_list ul {
		margin: 0
	}
	.news li {
		margin-top: 20px;
		background: #ffffff;
	}
	.news li .btn {
		display: none;
	}
	.news li .img {
		width: 100%;
		margin: 0 auto;
		float: none;
	}
	.news li .text {
		padding-right: 0;
		padding: 15px 10px;
	}
	.news li .text h3 {
		margin-top: 0;
		font-size: 16px;
		line-height: 1.6;
		white-space: normal;
	}
	.news li .text label {
		display: block;
		margin: 10px 0 3px;
	}
	.news li .d_text {
		margin-top: 0;
		height: auto;
		line-height: 1.6;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.pro_details .tit {
		line-height: 40px;
		padding-bottom: 5px;
	}
	.pro_details .tit label {
		margin-left: 10px;
	}
	.pro_details .tit h3 {
		font-size: 25px;
		white-space: normal;
	}
	.page_tit .tag ul li {
		margin-left: -5px;
		padding: 0
	}

	.pro_details {
		padding: 0 20px 10px 20px;
		margin-bottom: 30px;
	}
	.pro_details .tit h3 {font-size: 18px;padding: 20px 0 10px;}

	.footer {background: #42454b;}
	.footer .links,.footerbox .bewm {display: none;}
	.footerbox {margin: 12px 0 0;}
	.footerbox .telMain {line-height: 24px}
	.footerbox .telMain .tit {display: none;}
	.footerbox .telMain .zx {text-align: center; background: none; padding: 0;color: #d8d8d8;}
	.footerbox .telMain .tel {font-size: 16px;font-weight: normal;color: #00a7ff}
	.copyright {border-top: none;padding: 8px 15px 8px 15px;}
	.copyright a {display: block;line-height: 20px}
	.copyright a:last-child {
		margin-left: 0;
    padding-left: 0;
    border-left: none
  }

}

.pagebar {margin-bottom: 40px;padding:30px 0 0 0; overflow:hidden}
.pagebar .pagination {
  display: flex;
  justify-content: center;
}
.pagination a {
  color: #9b9b9b;
  font-size: 12px;
  padding: 1px 12px;
  margin: 0 2px;
  border-radius: 3px;
  border: 1px solid #ccc;
  height: 32px;
  line-height: 32px;
}
.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}
.pagination a:hover {
  color: #fff; background:#0055A5;

}
.pagination a.page-num-current {
  color: #fff;
  background: #0055A5;

}
.text-secondary{ text-align:center; padding:20px 0}
.ry_list a{ color:#1a1a1a}

/**/
.indexabout {
	padding: 0 10px;
}

/**/
.indexnew {
	background: #fff;
	padding-top: 50px;
    padding-bottom: 60px;
	overflow: hidden;
}
.wnewsNav li {
	display: inline-block;
	text-align: center;
	padding: 0 2px;
	position: relative;
}
.wnewsNav .on a {
	background: #0055A5;
	color: #FFFFFF;
}
.wnewsNav li a {
	display: block;
	font-size: 16px;
	padding: 0 15px;
	line-height: 30px;
	border-radius: 0.25rem;
}
.wnewsNav li a:hover {
	background: #0055A5;
	color: #FFFFFF;
}
.news-left {
	width: 47%;
	float: left;
	background: #f9f9f9;
}
.news-left a {
	margin: 30px;
}

.news-left img {
	width: 100%;
}
.news-left h3 {
	white-space: normal;
	line-height: 1.6;
	margin-top: 11px;
}
.news-left .d_text p {
	white-space: normal;
	line-height: 1.8;
	font-size: 15px;
	color: #666;
}
.news-right {
	width: 50%;
	float: right;
	background: #fff;
}
.news-right li {
	border-bottom: 1px solid #f3f3f3;
	padding: 0;
    line-height: 37px;	
}
.news-right li:hover .p_tit { color: #0055A5; }

.news_list .news-right .text {
	display: flex;
	flex-wrap: nowrap;
}

.news_list .text .sort {
    color: #1a1a1a;
	display: none;
}
.news_list .text .p_tit {
		width: calc(100% - 180px);
    font-size: 16px;
    overflow: hidden;
}
.news-right li p {
	margin-left: auto;
}

/**/
.imdexproj {
	padding-top: 50px;
    padding-bottom: 60px;
}
.imdexproj h1 {
	text-align: center;
}

.indexpnr {
	background: #fff;
	padding-top: 50px;
    padding-bottom: 60px;
}
.indexpnr h1 {
	text-align: center;
}
 @media only screen and (max-width: 1000px) {
	.inedx-tit h1 {
		font-size: 22px;
		margin: 0;
	}
	.indexnew {
		padding-top: 25px;
		padding-bottom: 35px;
	}
	.indexabout .img1 {
		display: none;
	}
	.news_list h3 {
		font-size: 16px;
	}
	.news-right li p {
		text-overflow: ellipsis;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.news-left {display: none;}
	.news-right { width: 100%;}
	.news-left a {
		margin: 20px;
	}
}

 @media only screen and (max-width: 750px) {
 	.wnewsNav li a { padding: 0 8px;}
	.indexnew_nr {
		margin: 0 10px;
		display: block;
	}
	.indexnew_nr .inedx-tit h1 {
		float: none;
		text-align: center;
	}
	.indexnew_nr .inedx-tit .wnewsNav {
		float: none;
		text-align: center;
	}
	.inedx-tit {
		margin-bottom: 0;
	}
	.inedx-tit h1 {
		font-size: 20px;
		margin: 0 0 10px 0px;
	}
	.inedx-tit h1 span {
    	font-size: 12px;
	}
	.indexnew {
		padding-top: 25px;
		padding-bottom: 15px;
	}
	.indexnew_nr .inedx-tit {margin-bottom: 10px}
	.news-left {
		display: none;
	}
	.news-right {
		width: 100%;
	}
	.news-right li {
		width: 100% !important;
	    line-height: 32px;
	}
	.news_list .text .p_tit {
		font-size: 14px;
		width: 100%;
		flex: 1;
	}
	.news-right li p {display: none;}

	.imdexproj {
		padding-top: 25px;
		padding-bottom: 20px;
	}
	.indexpnr {
		padding-top: 25px;
		padding-bottom: 20px;
	}

	.Fourwenhua ul li h2 {font-size: 16px;line-height: 1;padding-top: 10px;}
}


/*首页通告*/
.tc{width: 90%;height: auto;border-radius: 10px;position:fixed;top:0;right:0;left:0;bottom:0;margin:auto;background: #fff;display: table;box-shadow: 0 0 20px 5px rgb(0 0 0 / 50%);}
.tc1{line-height: 38px;font-size: 30px;font-weight: bold;text-align: center;color: #FF0000;padding-top: 30px;}
.mp{padding: 10px;}
.mp p{font-size: 16px;}
.mp p a:hover {color: red}
.redbox{width: 100%;margin-bottom: 20px;}
.buttonred{text-align: center;}
.btn1{background: #FF0000;color: #fff;line-height: 1;padding: 8px 12px;font-size: 16px;border-radius: 4px;border: none;outline:none;}
.xs{display: none;}
.cox {position: fixed;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.2);display: none;top: 0;right: 0;bottom: 0;left: 0;overflow: hidden;outline: 0;-webkit-overflow-scrolling: touch;background-color: rgb(0, 0, 0);filter: alpha(opacity=60);background-color: rgba(0, 0, 0, 0.6);z-index: 9999;}

@media (min-width: 640px) {
.tc{width: 620px;height: 400px;border-radius: 10px;position:fixed;top:0;right:0;left:0;bottom:0;margin:auto;background: #fff;}
.mp p{font-size: 20px;}
}

@media (min-width: 767px){
.tc{width: 650px;height: 400px;border-radius: 10px;position:fixed;top:0;right:0;left:0;bottom:0;margin:auto;background: #fff;}
.btn1{padding: 8px 16px;}
}

@media (min-width: 1024px){
.tc{width: 650px;height: 400px;border-radius: 10px;position:fixed;top:0;right:0;left:0;bottom:0;margin:auto;background: #fff;}
.redbox{height: 50px;}
.buttonred{width: auto;height: 50px;line-height: 50px;font-weight: 600;}
.btn1{width: 130px;height: 50px;border-radius: 10px;font-size: 18px;padding: 0;}

.page_num {top: -36px;}

}

.mp .file{width: 50%;float: left;}


@media (min-width: 768px) {
	.m-banner {display: none;}
}

.project .cont {
	padding-top: 30px;
}

@media (max-width: 767px) {
	.pc-banner {display: none;}
	.page_num {top:-30px;}
	span.prev, .banner_owl:hover span.prev {left: 0}
	span.next, .banner_owl:hover span.next {right: 0}


	span.banner_cur {
		width: 30px;
		height: 50px;
		border-radius: 3px;
		background-color: rgba(0,0,0,0.3);
	}
}