@charset "utf-8";

/* CSS Document */

body {
	font-family: "苹方","PingFang SC","PingHei", "Arial","STHeitiSC-Light", "Myriad Set Pro", "Lucida Grande", "Helvetica","microsoft yahei","SimHei", "tahoma","Verdana", "sans-serif";
}
h2{font-family:"宋体";}
img {
	vertical-align: top;
}
a:hover {
	text-decoration: none;
}

/*****header*******/

.header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 10000;
	border-bottom: 1px solid transparent;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	/* background: #000; */
}

.pcWight {
	width: 1200px !important;
}

.headerBox {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}

.menu {
	/*overflow: hidden;*/
	width: 100%;
	margin: 0;
	position: relative;
	background-color: #ebeff2;
}

.menu ul li.fmenu {
	float: left;
	vertical-align: middle;
	line-height: 30px;
	font-size:0;
	letter-spacing: 0;
	margin-right: 34px;
	position: relative;
	text-transform: capitalize;
	/*width: 33%;*/
	padding: 30px 0;
}
.menu ul:last-child {
	float: right;
	text-align: right;
}
.menu ul li.fmenu:last-child {
	margin-right: 0;
}

.menu ul li.fmenu > a {
	color: #333;
	font-family:"宋体";
	font-size: 14px;
	letter-spacing: 0px;
	display: inline-block;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  vertical-align: middle;
}
.menu ul li.fmenu:nth-last-of-type(n+2) > a::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 140%;
	margin-left:-20%;
	height: 2px;
	background-color: #1e50ae;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	transform-origin: center;
}
.menu ul li.fmenu > a:hover,
.menu ul li.fmenu.active > a {
	color: #1e50ae;
}

.menu ul li.fmenu.active > a::after{
	webkit-transition:0;
    -moz-transition:0;
    -ms-transition:0;
    -o-transition:0;
    transition:0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
	}
.menu ul li.fmenu:nth-last-of-type(n+2) > a:hover::after,
.menu ul .active > a::after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.menu ul li.fmenu > a img {
	height: 16px;
	vertical-align: middle;
}
.menu ul li.fmenu > a img:nth-of-type(2) {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.menu ul > li.fmenu > ul.submenu{
	display:none; 
	}

.menu ul > li.fmenu:hover > ul.submenu {
	display:block;
	left:-20%;
	position: absolute;	
	z-index:12;
	background: #fff;
	white-space: nowrap;
    overflow-x: auto;
	margin-top:-2px;
	min-width:90px;
}
.menu ul > li.fmenu:hover > ul.submenu::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width:96px;
    margin-left: -10%;
    height: 2px;
    background-color: #1e50ae;
	}
/*.menu ul > li:hover > ul.submenu::before{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120%;
    margin-left: -10%;
    height: 2px;
    background-color: #1e50ae;
	}
.menu ul > li > ul.submenu li{
	display:inline-block;
	}
*/
.menu ul > li > ul.submenu li a {
	font-size:14px;
	display: block;
	line-height: 1.5em;
	padding:8px;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align:center;
}
.searchBox{
	 border: 1px solid #ddd;
    border-right: none;
    height: 26px;
    width: 152px;
	float:left;
	}
.search {
	width: 100%;
    height: 100%;
    border: none;
    background: 0 0;
    outline: 0;
    padding: 0 0 0 14px;
    float: left;
    color: #666;
    font-size: 14px;
	margin-top:4px;
	position: relative;
	margin-right: 30px;
}
/*.search::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	right: -15px;
	height: 100%;
	width: 1px;
	background-color: #fff;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
*/
.searchIconBox{
	float:left;
	background: rgb(2, 86, 138);
	width:75px;
    height: 26px;
	line-height:26px;
	text-align:center;}
.searchIconBox i.fa-search{
	font-size:18px;color:#fff;line-height:26px;
	cursor:pointer;}
/*.language {
	position: absolute;
	right: 0;
	top: 60px;
	z-index: 10000;
	width: 70px;
	background-color: #fff;
	padding: 5px 0;
	display: none;
	-moz-box-shadow:0px 0px 30px rgba(0,0,0,0.15);
	-webkit-box-shadow:0px 0px 30px rgba(0,0,0,0.15);
	box-shadow:0px 0px 30px rgba(0,0,0,0.15);
}
.language::after {
	content: '';
	position: absolute;
	top: -10px;
	right: 5px;
	border: 5px solid transparent;
	border-bottom: 5px solid #fff;
}
.language > a {
	font-size: 12px;
	text-align: center;
	line-height: 30px;
	color: #333;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.language > a:hover {
	background-color: #0064a8;
	color: #fff!important;
}
*/
.navWap {
	position: initial;
	/*height: 165px;*/
}
.navYuan {
	width: 280px;
	height: 280px;
	background: #FFFFFF;
	border: solid 10px #f6f8f9;
	border-radius: 50%;
	position: absolute;
	top: -115px;left: 50%;
	margin-left: -140px;
}
.logoBg {
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin-left: -82px;
	width: 164px;
	height: 164px;
	background-color: #434343;
	border-radius: 50%;
}
.logoBg:after {
	content: "";
	display: inline-block;
	position: absolute;
	left: -2px;
	top: 2px;
	z-index: -1;
	width: 168px;
	height: 168px;
	background-color: #d3d3d3;
	border-radius: 50%;
	border: 2px solid #fff;
}

.logo {
	float: left;
	margin: 9px auto 0;
	width: 274px;
	position: relative;
}
.logo a img:last-child {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.logoText {
	display: block;
	margin: 12px auto 0;
	width: 83px;
}
.headerbg{
	background:#fff;}
.header.active {
	border-bottom: 1px solid #ccc;
	background-color: #fff;
}
.header.active .menu ul li.fmenu a {
	color: #333;
}
.header.active .menu ul li.fmenu a:hover,
.header.active .menu ul .active a{
	color: #0064a8;
}
.header.active .search::after {
	background-color: #333;
}
.header.active .menu ul li.fmenu a img:last-child {
	opacity: 1;
}
.header.active .logo a img:last-child {
	opacity: 1
}

/*****header*******/


/*****banner*******/

.banner {
	overflow: hidden;
	position: relative;
	margin-top:90px;
}
.banner .bg {
    width: 100%;
    display: none;
}
.banner .img {
	width: 100%;
	height: 100%;
	position: relative;
	text-align: center;
	color: #ffffff;
}
.banner .img h3 {
	font-size: 30px;
	margin-bottom: 25px;
}
.banner .img h2 {
	font-family:'微软雅黑';
	font-weight:600;
	font-size:60px;
	 letter-spacing:10px;
	 text-shadow: 2px 2px 2px #333;
}

.banner .img h5 {
	margin-top: 40px;
	font-size: 18px;
}
/*.bannerLeft,.bannerRight {
	width: 60px;
	height: 140px;
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-top: -70px;
	z-index: 2;
	cursor: pointer;
}
.bannerLeft {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: url(../images/banner_left.png) rgba(0,0,0,0.3) no-repeat center center;
	left: 0;
}
.bannerRight {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: url(../images/banner_right.png) rgba(0,0,0,0.3) no-repeat center center;
	right: 0;
}

.bannerLeft:hover {
	background: url(../images/banner_left.png) rgba(0,0,0,0.7) no-repeat center center;
}
.bannerRight:hover {
	background: url(../images/banner_right.png) rgba(0,0,0,0.7) no-repeat center center;
}*/
.b1{
	position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
width:100%;
margin-left:auto;
margin-right:auto;
text-align:center;
	}
.b1 p{
	font-family:'微软雅黑';
	font-size:2em;
	line-height:3em;
	letter-spacing:8px;}
.banner .bannerPagination {
	position: absolute;
	z-index: 9;
	left: 46%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 90px;
}
.bannerPagination .swiper-pagination-bullet,
.bannerPagination .swiper-pagination-bullet-active {
	opacity: 1;
	width: auto;
    height: auto;
	font-size: 16px;
	padding-left: 65px;
	position: relative;
	color: #ffffff;
	background-color: transparent;
}
.bannerPagination .swiper-pagination-bullet::after,
.bannerPagination .swiper-pagination-bullet::before {
	content: '';
	display: inline-block;
	position: absolute;
	width: 50px;
	height: 2px;
	background-color: #fff;
	top: 50%;
	left: 0;
	z-index: 1;
}
.bannerPagination .swiper-pagination-bullet::before {
	display: none;
	
}
.bannerPagination .swiper-pagination-bullet::after {
	background-color: #fff;
	z-index: 2;
	transform-origin: left;
	/*-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);*/
	height:1px;
}
.banner .bannerPagination .swiper-pagination-bullet {
	margin: 0 0 40px;
	
}


.bannerPagination .swiper-pagination-bullet-active::before {
	display: block;
	height:5px;
}
/*.bannerPagination .swiper-pagination-bullet-active::after {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition: all 5s linear;
	-moz-transition: all 5s linear;
	-ms-transition: all 5s linear;
	-o-transition: all 5s linear;
	transition: all 5s linear;
}*/
.bannerPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	color: #fff;
	
}
/*.mouse {
	position: absolute;
	bottom: 60px;
	left: 0;right: 0;
	margin: auto;
	text-align: center;
	z-index: 2;
}
.mouse > div {
	margin-bottom: 10px;
}
.mouse > img {
	animation: swing 1.5s infinite linear;
	-moz-animation: swing 1.5s infinite linear;
	-webkit-animation: swing 1.5s infinite linear;
	-o-animation: swing 1.5s infinite linear;
}*/
@keyframes swing {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(20px);
		opacity: 0;
	}
}

@-moz-keyframes swing {
	0% {
		-moz-transform: translateY(0);
		opacity: 1;
	}
	100% {
		-moz-transform: translateY(20px);
		opacity: 0;
	}
}

@-webkit-keyframes swing {
	0% {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(20px);
		opacity: 0;
	}
}

@-o-keyframes swing {
	0% {
		-o-transform: translateY(0);
		opacity: 1;
	}
	100% {
		-o-transform: translateY(20px);
		opacity: 0;
	}
}

/*****banner*******/


/*****sec1*******/

.index_sec {
	width: 1200px;
	margin: 80px auto 60px;
	overflow: hidden;
}

.index_sec .more {
	display: block;
	text-align: center;
	width: 160px;
	line-height: 38px;
	font-size: 15px;
	color: #000;
	border: 1px solid #ccc;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.index_sec .more:hover {
	background-color: #0064a8;
	border: 1px solid #0064a8;
	color: #fff;
}


.headerTxt {
	text-align: center;
	color: #000000;
}
.headerTxt h2 {
	color:rgb(2,86,138);
	font:"宋体";
	font-size: 30px;
	margin-bottom: 15px;
	/* font-weight: 200; */
}
.headerTxt h4 {
	font-size: 16px;
	padding-bottom: 20px;
	position: relative;
	margin-bottom: 50px;
	color:rgb(128, 127, 127);
}
/*.headerTxt h4::after {
	content: '';
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 50px;
	height: 2px;
	margin-left: -25px;
	background-color: #000;
}*/
.headerTxt.fff {
	color: #fff;
}
.headerTxt.fff h4::after {
	background-color: #fff;
}
.headerTxt.left {
	text-align: left;
}
.headerTxt.left h4::after {
	margin-left: 0;
	left: 0;
}
.headerTxt .sline{
	width:30px;
	height:1px;
	display:block;
	margin:2px auto;
	background:rgb(2, 86, 138);}
.index_sec1Cont .list {
	width: calc(100% / 4 - 12px);
	margin-right: 16px;
	float: left;
	height: 450px;
	position: relative;
	top: 300px;
	opacity: 0;
}
.index_sec1Cont .list .content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	text-align: center;
}
.index_sec1Cont .list .content img {
	display: block;
	width: 50px;
	height: auto;
	margin: 0 auto 80px;
}
.index_sec1Cont .list:nth-of-type(3) .content img {
	width: auto;
	height:50px;
}
.index_sec1Cont .list .content h3 {
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 15px;
}
.index_sec1Cont .list .content h4 {
	font-size: 14px;
	color: #ffffff;
	line-height: 22px;
	padding: 0 10%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 66px;
}
.index_sec1Cont .list .content i {
	display: block;
	width: 14px;
	height: 14px;
	margin: 113px auto 13px;
	position: relative;
}
.index_sec1Cont .list .content i::after,
.index_sec1Cont .list .content i::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transform-origin: center;
}
.index_sec1Cont .list .content i::after {
	transform: rotate(90deg);
}
.index_sec1Cont .list .content span {
	font-size: 14px;
	line-height: 38px;
	width: 170px;
	display: block;
	margin: 100px auto 0;
	color: #fff;
	border: 1px solid #fff;
	display: none;
}
.index_sec1Cont .list .bg1,
.index_sec1Cont .list .bg2 {
	position: absolute;
	top: 0;left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.index_sec1Cont .list .bg1 {
	background-color: #0064a8;
	z-index: 3;
	opacity: 1;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.index_sec1Cont .list:nth-of-type(2n) {
	margin-top: 50px;
}
.index_sec1Cont .list:last-child {
	margin-right: 0;
}

.index_sec1Cont .list:hover .bg1,
.index_sec1Cont .list.active .bg1 {
	opacity: 0;
}
.index_sec1Cont .list:hover .content i,
.index_sec1Cont .list.active .content i {
	display: none;
}
.index_sec1Cont .list:hover .content span,
.index_sec1Cont .list.active .content span {
	display: block;
}

/*****sec1*******/

/*****sec2*******/

.index_sec2Cont .content{
	float:left;
	width:calc(100% / 4);
	text-align:center;}
.index_sec2Cont .content .centerBox{
	width:80%;
}

.index_sec2Cont .content:nth-of-type(2) .centerBox,.index_sec2Cont .content:nth-of-type(3) .centerBox{
	margin-left:auto;
	margin-right:auto;}
.index_sec2Cont .content:nth-of-type(4) .centerBox{
	margin-right:0;
	margin-left:auto;
	}
.index_sec2Cont .content .centerBox img{
	margin-top:40px;}
.index_sec2Cont .content .centerBox h3{
 color:rgb(2, 86, 138);
 font-weight:bold;
 font-size:18px;
 margin:30px auto;	
}
.index_sec2Cont .content .centerBox h4{
 font-size:15px;
 line-height:25px;	
}

/*****sec2*******/

/*****sec3*******/

.index_sec3 {
	width: 100% !important;
	padding: 150px 0;
	position: relative;
}

.index_sec3Cont {
	width: 1200px;
	margin: 0 auto;
}
.index_sec3Cont_l {
	width: 38%;
	margin-right: 7%;
	float: left;
	position: relative;
	right: 300px;
	opacity: 0;
}
.index_sec3 .headerTxt h2 {
	font-size:48px;
	font-weight: 200;
	margin-bottom: 25px;
	color:#fff;
	font-family:inherit;
}
.index_sec3 .headerTxt h4 {
	font-size:22px;
	padding-bottom: 30px;
	font-weight: 200;
	color:#fff;
}
.index_sec3 .index_sec3Cont_l h4::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 10px;
    height: 3px;
    width: 80px;
    background-color: #fff;
}
.index_sec3Cont_l p {
	font-size: 16px;
	line-height: 28px;
	color: #ffffff;
}
.index_sec3Cont_l a {
	font-size: 14px;
	color: #ffffff;
	line-height: 38px;
	text-align: center;
	width: 170px;
	display: inline-block;
	border: 1px solid #fff;
	position: absolute;
	left: 0;bottom: 0;
}
.index_sec3Cont_r {
	width: 55%;
	float: left;
	position: relative;
	left: 300px;
	opacity: 0;
}
.index_sec3Cont_r .list {
	height: 265px;
	float: left;
	width: calc(50% - 9px);
	margin-right: 18px;
	border: 1px solid #fff;
	padding: 6% 5%;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.index_sec3Cont_r .list .txt {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
}
.index_sec3Cont_r .list .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	opacity: 0;
}
.index_sec3Cont_r .list h4 {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 15px;
	line-height: 22px;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 22px;
}
.index_sec3Cont_r .list p::after {
	content: '';
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	height: 3px;
	width: 40px;
	background-color: #fff;
}
.index_sec3Cont_r .list p {
	font-size: 15px;
	color: #ffffff;
	line-height: 22px;
	padding-top: 15px;
	position: relative;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 81px;
	text-align: justify;
}
.index_sec3Cont_r .list img {
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	opacity: 0;
}
.index_sec3Cont_r .list:nth-of-type(2n) {
	margin-right: 0;
}
.index_sec3Cont_r .list:nth-last-of-type(n + 3) {
	margin-bottom: 18px;
}

.index_sec3Cont_r .list:hover {
	border-color: transparent;
}
.index_sec3Cont_r .list:hover .bg {
	opacity: 1;
}
.index_sec3Cont_r .list .txt span {
	font-size: 16px;
	line-height: 38px;
	width: 130px;
	display: block;
	margin: 30px auto 0 0;
	color: rbg(2,86,138);
	border: none;
	background:#fff;
	display: none;
	text-align:center;
}

.index_sec3Cont_r .list:hover .txt span {
	opacity: 1;
	display: block;
}


.index_sec3Bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.index_sec3Bg .list {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}
.index_sec3Bg .list.active {
	display: block;
}

/*****sec3*******/


/*****sec4*******/
.index_sec4 .index_sec4Cont_h{
	margin-bottom:60px;
	}
/*.index_sec4 .number {
	width: 1000px;
	margin: 0 auto 60px;
}
.index_sec4 .number li {
	text-align: center;
	font-size: 16px;
	color: #333333;
	width: 20%;
	float: left;
	position: relative;
}
.index_sec4 .number li:nth-last-of-type(n+2)::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: url(../images/line.png) center center;
}
.index_sec4 .number li > div {
	font-family: 'bebas';
	font-size: 40px;
	margin-bottom: 10px;
	color: #0064a8;
	letter-spacing: 1px;
}
*/
.index_sec4Cont > div {
	width: 48%;
	height: 300px;
	float: left;
}
.index_sec4Cont_l {
	margin-right: 4%;
}
.index_sec4Cont_rTop {
	margin-bottom: 30px;
}
.index_sec4Cont_rBot {
	height: 300px;
}
.index_sec4Cont_rTop .headerTxt h4 {
	margin-bottom: 10px;
	color:#000;
}
.index_sec4Cont_rTop .headerTxt h4::after{
	content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 40px;
    background-color: #000;
	}
.index_sec4Cont_rTop p {
	font-size: 14px;
	line-height: 24px;
	color: #000;
	text-align: justify;
	margin-bottom: 30px;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 164px;
}

.centerBox {
	display: table;
	width: 100%;
	height: 100%;
}
.centerBox .center {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
}

/*****sec4*******/




/*****sec5*******/

.index_sec5 {
	width: 100% !important;
	padding: 80px 0;
	margin-bottom: 0;
	
}
.index_sec5Cont {
	width: 1200px;
	margin: 0 auto;
	
	position: relative;
	background: rgba(242, 242, 242, 1);
	padding:30px 8%;
}

.index_sec5Cont .content{
	overflow: hidden;
	}
.index_sec5Cont .swiper-slide .img {
	width: 230px;
	height: 90px;
	margin: 0 auto;
}

.index_sec5ContLeft,.index_sec5ContRight {
	width: 47px;
	height: 47px;
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-top: -30px;
	z-index: 2;
	cursor: pointer;
	border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	text-align:center;
	display:block;
	
}
.index_sec5ContLeft
{background: url(../images/left.png) rgba(0,0,0,0.5)  no-repeat center center;
	left:10px;
}
.index_sec5ContRight{
background: url(../images/right.png) rgba(0,0,0,0.5)  no-repeat center center;
	right: 10px;
}
/*.index_sec5Cont:hover .index_sec5ContLeft {
	display:block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: url(../images/left.png) rgba(0,0,0,0.1)  no-repeat center center;
	left:10px;
	
}
.index_sec5Cont:hover .index_sec5ContRight {
	display:block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: url(../images/right.png) rgba(0,0,0,0.1)  no-repeat center center;
	right: 10px;
}

 .index_sec5Cont:hover .index_sec5ContLeft:hover{
	 display:block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: url(../images/left.png) rgba(0,0,0,0.9)  no-repeat center center;
}

.index_sec5Cont:hover .index_sec5ContRight:hover{
	display:block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: url(../images/right.png) rgba(0,0,0,0.9)  no-repeat center center;
}*/


/*.index_sec5ContPagination {
	margin-top: 60px;
	text-align: center;
}
.index_sec5ContPagination .swiper-pagination-bullet {
	width: 20px;
	height: 4px;
	background-color: #979797;
	opacity: 1;
	border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.index_sec5ContPagination .swiper-pagination-bullet-active {
	background-color: #0064a8;
	width: 40px;
}
*/

/*****sec5*******/

/*****sec6*******/

.index_sec6 .headerTxt{
	margin-top:180px;
	margin-bottom:60px;
	}
.index_sec6 .headerTxt h2{
	font-family:"宋体";
	font-weight:bolder;
    font-size: 35px;
	word-break: normal;
    white-space: pre-wrap;
	color:#fff;
	}
.index_sec6 .headerTxt .dia{
	height:19px;
	width:19px;
	margin-left:8px;
	margin-right:8px;
	}
.index_sec6 .headerTxt .line{
	margin-top:10px;
	margin-left:5%;
	width:10%;
	}
.index_sec6 .headerTxt .line:nth-of-type(1){
	margin-right:5%;
	margin-left:0;
	}
	
.index_sec6Cont {
	padding-bottom: 60px;
	overflow: hidden;
	background:#fff;
	
}


.index_sec6Cont .list {
	width: calc(100% / 3 - 34px);
	margin-right: 21px;
	margin-top:21px;
	float: left;
	overflow: hidden;
	position: relative;
	top: 300px;
	opacity: 0;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.index_sec6Cont .list:nth-of-type(1) {
	margin-left: 30px;
}
.index_sec6Cont .list:nth-of-type(3n) {
	margin-right: 30px;
}
.index_sec6Cont .list .img {
	height: 260px;
	width: 100%;
}
/*.index_sec6Cont .list .txt > span {
	float: left;
	width: 80px;
	height: 75px;
	margin-right: 20px;
	background-color: #f0f0f0;
	color: #333333;
	display: flex;
	justify-content: center;
	flex-direction: row;
	position: relative;
	-webkit-transition: margin-right 0.3s linear,color 0.3s linear 0.3s;
	-moz-transition: margin-right 0.3s linear,color 0.3s linear 0.3s;
	-ms-transition: margin-right 0.3s linear,color 0.3s linear 0.3s;
	-o-transition: margin-right 0.3s linear,color 0.3s linear 0.3s;
	transition: margin-right 0.3s linear,color 0.3s linear 0.3s;
}
.index_sec6Cont .list .txt > span::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: -100%;
	top: 0;
	background-color: #0064a8;
	display: inline-block;
	z-index: 2;
	-webkit-transition: all 0.3s linear 0.3s;
	-moz-transition: all 0.3s linear 0.3s;
	-ms-transition: all 0.3s linear 0.3s;
	-o-transition: all 0.3s linear 0.3s;
	transition: all 0.3s linear 0.3s;
}
.index_sec6Cont .active .txt > span {
	-webkit-transition: color 0.3s linear,margin-right 0.3s linear 0.3s;
	-moz-transition: color 0.3s linear,margin-right 0.3s linear 0.3s;
	-ms-transition: color 0.3s linear,margin-right 0.3s linear 0.3s;
	-o-transition: color 0.3s linear,margin-right 0.3s linear 0.3s;
	transition: color 0.3s linear,margin-right 0.3s linear 0.3s;
}
.index_sec6Cont .active .txt > span::before {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.index_sec6Cont .list .txt > span::after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 35px;
	height: 2px;
	background-color: #0064a8;
	top: 15px;
	right: -35px;
	transform-origin: left;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}
.index_sec6Cont .list .txt > span div {
	display: flex;
	justify-content: center;
	flex-direction: column;
	position: relative;
	z-index: 3;
}
.index_sec6Cont .list .txt > span h5 {
	font-size: 12px;
	margin-bottom: 10px;
}
.index_sec6Cont .list .txt > span h4 {
	font-size: 16px;
}*/

.index_sec6Cont .list .txt > div {
	float: left;
	width:100%;
	text-align:center;
}
.index_sec6Cont .list .txt > div h5 {
	font-size: 16px;
	color: #333;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 50px;
  height: 50px;
}
.index_sec6Cont .list .txt > div p {
	font-size: 12px;
	color: #808080;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 20px;
  height: 40px;
}

.index_sec6Cont .list:hover .txt > span {
	color: #fff;
	margin-right: 55px;
	-webkit-transition: color 0.3s linear,margin-right 0.3s linear 0.3s;
	-moz-transition: color 0.3s linear,margin-right 0.3s linear 0.3s;
	-ms-transition: color 0.3s linear,margin-right 0.3s linear 0.3s;
	-o-transition: color 0.3s linear,margin-right 0.3s linear 0.3s;
	transition: color 0.3s linear,margin-right 0.3s linear 0.3s;
}
.index_sec6Cont .list:hover .txt > span::before {
	left: 0;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.index_sec6Cont .list:hover .txt > span::after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s linear 0.3s;
	-moz-transition: all 0.3s linear 0.3s;
	-ms-transition: all 0.3s linear 0.3s;
	-o-transition: all 0.3s linear 0.3s;
	transition: all 0.3s linear 0.3s;
}

.index_sec6 .more {
	margin: 0 auto;
}
/*****sec6*******/



.youce {
	position: fixed;
	top: 50%;
	right: 0;
	width: 45px;
	margin-top: -77px;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.youce.active {
	opacity: 1;
	visibility: visible;
}
.youce .item {
	display: block;
	width: 45px;
	height: 45px;
	background-color: #0064a8;
	margin-bottom: 1px;
	position: relative;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.youce .item:last-child {
	margin-bottom: 0;
}
.youce .item span {
	position: absolute;
	line-height: 45px;
	display: inline-block;
	color: #fff;
	background-color: #0064a8;
	top: 0;
	border-left: 1px solid #333;
	z-index: -2;
	text-align: center;
	word-spacing: 4px;
}
.youce .item.phone span {
	right: -160px;
	width: 160px;
	/* font-family: 'bebas'; */
	font-size: 18px;
}
.youce .item.liuyan span {
	right: -70px;
	width: 70px;
	font-size: 16px;
}
.youce .item.phone:hover {
	-webkit-transform: translateX(-160px);
	-moz-transform: translateX(-160px);
	-ms-transform: translateX(-160px);
	-o-transform: translateX(-160px);
	transform: translateX(-160px);
}
.youce .item.liuyan:hover {
	-webkit-transform: translateX(-70px);
	-moz-transform: translateX(-70px);
	-ms-transform: translateX(-70px);
	-o-transform: translateX(-70px);
	transform: translateX(-70px);
}
.youce .item.liuyan {
	background: url(../images/item1.png) #0064a8 no-repeat center center;
}
.youce .item.phone {
	background: url(../images/phone.png) #0064a8 no-repeat center center;
}
.youce .item.gotop {
	background: url(../images/gotop.png) #0064a8 no-repeat center center;
}


/***footer***/

.footer {
	background: #31333f;
	width: 100%;
}
.footerCont {
	width: 1200px;
	margin: 0 auto;
	padding: 45px 0 30px;
}
.footerCont_l,.footerCont_r {
	float: left;
}
.footerCont_l {
	width: calc(100% - 400px);
	overflow: hidden;
	border-right: 1px solid #cbcbcb;
}
.footerCont_r {
	width: 400px;
}
.footerCont_r > ul {
	width: 350px;
	margin-left:30px;
}
.footerCont_l ul {
	float: left;
	vertical-align: top;
	width: calc(99% / 6);
	text-align:center;
}
.footerCont_l ul li h5 {
	font-size: 14px;
	color: #f0f0f0;
	margin-bottom: 20px;
	cursor: default;
}
.footerCont_l ul li a {
	font-size: 12px;
	line-height: 24px;
	color: #cacaca;
	display: inline-block;
}
.footerCont_l ul li a:hover {
	color: #fff;
}
.footerCont_r {
	display: flex;
	justify-content: left;
}

.footerCont_r h5 {
	font-size: 14px;
	color: #f0f0f0;
	margin-bottom: 10px;
	cursor: default;
}
.footerCont_r h4 {
	font-size: 28px;
	color: #fff;
	margin-bottom: 15px;
	/* font-weight: bold; */
	font-family: 'bebas';
}
.footerCont_r li {
	font-size: 12px;
	line-height: 24px;
	color: #f0f0f0;
	width: 100%;
}
.footerCont_r li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 8px;
	position: relative;
}
.footerCont_r li .weix .img {
	position: absolute;
	width: 90px;
	height: 90px;
	left: 50%;
	margin-left: -50px;
	top: -100px;
	display: none;
}
.footerCont_r li .weix .img::after {
	border: 5px solid transparent;
	border-top: 5px solid #fff;
	content: '';
	left: 50%;
	margin-left: -3px;
	bottom: -10px;
	position: absolute;
}
.footerCont_r li .weix:hover .img {
	display: block;
}

.footerBot {
	width: 1200px;
	margin: 0 auto;
	border-top: 1px solid #cbcbcb;
}

.copy {
	font-size: 12px;
	line-height: 50px;
	color: #cacaca;
	font-family: Arial, Helvetica, sans-serif;
}

.copy a {
	display: inline-block;
	position: relative;
	color: #cacaca;
	font-size: 12px;
	padding-right: 15px;
	margin-right: 15px;
}
.copy a::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 14px;
	margin-top: -7px;
	background-color: #cacaca;
}
.copy a:last-child::after {
	display: none;
}


.footercopy .col-lg-6 {
	padding: 0px;
}

.footercopy {
	margin-top: 0px;
}
#footer_gejia {
	line-height: 50px;
		float: right;
}
#footer_gejia a {
	color: #cacaca;
	font-size: 12px;
}


/***footer***/

@media(max-width:1280px) {	
	.index_sec,
	.footerCont,
	.footerBot,
	.index_sec5Cont,
	.index_sec3Cont {
		width: 90%;
	}
    .headerBox{
		width:98%;}
	.banner .img h2 {
		font-size: 40px;
	}
    
	.index_sec1Cont .list {
		height: 400px;
	}
	.index_sec1Cont .list .content i {
    margin: 63px auto 13px;
	}
	.index_sec1Cont .list .content span {
		margin: 50px auto 0;
	}

	.index_sec3Cont_r .list {
		height: 240px;
	}
	.index_sec5Cont .swiper-slide .img {
		width: 210px;
	}
	/*.index_sec4 .number {
		width: 880px;
		margin: 0 auto 60px;
	}*/
}
@media(max-width:1200px) {
	.menu ul li.fmenu {
		margin-right: 24px;
	}
	
	}
@media(max-width:1100px) {
	.menu ul li.fmenu {
		margin-right: 20px;
	}
	.index_sec5Cont .swiper-slide .img {
		width: 180px;
	}
	.searchBox{
		width:110px;
		}
	.searchIconBox{
		width:47px;
		}
	.index_sec6Cont .list {
    width: calc(100% / 2 - 41px);
	}
	.index_sec6Cont .list:nth-of-type(2) {
		margin-right:30px;
	}
	.index_sec6Cont .list:nth-of-type(3) {
		display: none;
	}
}


@media(max-width:1000px) {
	.menu ul li.fmenu {
		margin-right: 14px;
	}
	.logo{
		width:218px;
	}
	.banner .img h3 {
		font-size: 26px;
		margin-bottom: 15px;
	}
	.banner .img h2 {
    font-size: 36px;
	}

	.banner .img h5 {
    margin-top: 40px;
    font-size: 16px;
	}
	/*.index_sec4 .number {
		width: 100%;
	}*/
    .banner {
      height: auto!important;
    }
    .banner .bg {
       display:block;
    }
}

@media(max-width:900px) {
	
	.logo{
		width:180px;
		margin-top:20px;
		}
	.menu ul li.fmenu {
		margin-right: 10px;
	}
	.searchBox{
		width:90px;
		}
	.searchIconBox{
		width:30px;}
	.index_sec1Cont .list {
		height: 320px;
	}
	.index_sec1Cont .list .content img {
		margin: 10px auto 30px;
	}
	.index_sec1Cont .list .content h3 {
		margin-bottom: 10px;
	}
	.index_sec1Cont .list .content span {
		width: 140px;
	}
}

@media(max-width:800px) {
	.menu ul li.fmenu {
		margin-right:4px;
	}
}

@media(max-width:767px) {
	.banner .img h2 {
    font-size: 32px;
	line-height:1em;
	letter-spacing:4px;	
	}
		.b1 p{
	font-size:1.5em;
	line-height:1em;
	letter-spacing:3px;}
		.index_sec2Cont .content .centerBox h3{
			font-size:15px;
			margin-bottom:20px;}
			.index_sec2Cont .content .centerBox{width:90%;}
	.navbar-nav {
		width: 100%;
		margin-left: 0px;
		text-transform: uppercase;
	}
	.navbar-nav li {
		text-align: center;
		border-bottom: 1px dotted #e5e5e5;
		line-height: 40px;
	}
	.navbar-nav li a {
		color: #666;
		font-size: 13px;
	}
	.navbar-nav li a:hover {
		color: #0752a4;
	}
	.copy{line-height:20px;padding-top:10px;}
	.copy h4,.copy h5{diplay:inline-block;}
.copy h4{line-height:30px;}
.copy h4{line-height:40px;}


  .footerBot {
    border-top: none;
  }
	.headerbg {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		z-index: 999999;
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}
	.logo_boxlist {
		float: left;
    width: 110px;
    margin-top: 11px;
		position: relative;
	}
	.logo_boxlist img {
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}
	.logo_boxlist img:last-child {
		position: absolute;
		opacity: 0;
		top: 0;
		left: 0;
	}
	.navbar-toggle {
		margin-top: 10px;
	}
	.navbar-toggle .icon-bar {
		background-color: #fff;
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}
	.navbar-collapse {
		border-top: 1px solid #e5e5e5;
	}
	.headerbg.active {
		background-color: #fff;
		-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	}
	.headerbg.active .navbar-toggle .icon-bar {
		background-color: #000;
	}
	.headerbg.active .logo_boxlist img {
		opacity: 0;
	}
	.headerbg.active .logo_boxlist img:last-child {
		opacity: 1
	}
    .banner{margin-top:52px;}

	.index_sec {
		width: 95%;
		margin: 30px auto 50px;
	}
	.headerTxt h2 {
    font-size: 22px;
    margin-bottom: 5px;
	}
	.headerTxt h4 {
    font-size: 14px;
    padding-bottom: 15px;
    margin-bottom: 30px;
	}
	.headerTxt.left {
		text-align: center;
	}
	.headerTxt.left h4::after {
		left: 50%;
		width:100px;
		margin-left:-50px;
	}

	.index_sec1Cont .list {
		width: calc(100% / 2 - 3px);
		margin-right: 6px;
		margin-bottom: 6px;
		height: 250px;
	}
	.index_sec1Cont .list:nth-of-type(2n) {
		margin-right: 0;
		margin-top: 0;
	}
	.index_sec1Cont .list .content img {
		width:auto;
        height:35px;
		margin-bottom: 25px;
	}
	.index_sec1Cont .list .content h3 {
		font-size: 16px;
	}
	.index_sec1Cont .list .content h4 {
		font-size: 12px;
		line-height: 20px;
		height: 40px;
		-webkit-line-clamp: 2;
	}
	.index_sec1Cont .list .content span {
		width: 100px;
		line-height: 30px;
		font-size: 12px;
		margin: 35px auto 0;
	}
	.index_sec3Cont .index_sec3Cont_r .list:hover span {
		width: 100px;
		line-height: 30px;
		font-size: 12px;
		margin: 3px auto 0 0;
	}
	.index_sec1Cont .list .content i {
    margin: 48px auto 13px;
	}
    .index_sec2Cont .content {
		width: calc(100% / 2);
		height:340px;
	}	
	.index_sec2Cont .content:nth-of-type(2n+0) .centerBox{
		margin-right:0;
		margin-left:auto;
	}
	.index_sec2Cont .content:nth-of-type(2n+1) .centerBox{
		margin-left:0;
		margin-right:auto;
	}
	
	.index_sec3 {
		padding: 30px 0 50px;
	}
	.index_sec3Cont_l,
	.index_sec3Cont_r {
		margin-right: 0;
		width: 100%;
	}
	.index_sec3 .headerTxt h2 {
    font-size: 22px;
    margin-bottom: 10px;
	}
	.index_sec3 .headerTxt h4 {
		font-size: 14px;
		padding-bottom: 15px;
	}
	.index_sec3Cont_l {
		margin-bottom: 25px;
		height: auto !important;
	}
	.index_sec3Cont_l p {
		font-size: 13px;
		line-height: 22px;
	}
	.index_sec3Cont_r > a {
    color: #ffffff;
    text-align: center;
    display: block;
    border: 1px solid #fff;
    position: relative;
    font-size: 14px;
    line-height: 35px;
    width: 120px;
    margin: 25px auto 0;
	}
	.index_sec3Cont_r .list {
		width: calc(50% - 3px);
		margin-right: 6px;
		padding: 3%;
		height: 160px;
	}
	.index_sec3Cont_r .list:nth-of-type(2n) {
    margin-right: 0;
	}
	.index_sec3Cont_r .list:nth-last-of-type(n + 3) {
    margin-bottom: 6px;
	}
	.index_sec3Cont_r .list h4 {
		font-size: 17px;
		margin-bottom: 15px;
	}
	.index_sec3Cont_r .list p {
		font-size: 13px;
		height:77px;
	}

	/*.index_sec4 .number {
		margin-bottom: 35px;
	}*/
	.index_sec4 .number li {
		font-size: 14px;
		margin-bottom: 6px;
	}
	.index_sec4 .number li > div {
    font-size: 32px;
    margin-bottom: 5px;
	}
	.index_sec4 .number li:nth-of-type(1),
	.index_sec4 .number li:nth-of-type(2) {
		width: 50%;
	}
	.index_sec4 .number li:nth-of-type(n + 3) {
		width: calc(100% / 3);
	}
	.index_sec4 .number li:nth-of-type(2)::after {
		display: none;
	}
	.index_sec4Cont_l {
		display: none;
	}
	.index_sec4Cont > div {
		width: 100%;
		height: auto;
	}
	.index_sec4Cont_rTop {
		height: 300px;
	}
	.index_sec4Cont_rTop p {
		margin-bottom: 20px;
	}

	.index_sec .more {
		font-size: 14px;
		line-height: 35px;
		width: 120px;
    margin: 15px auto 0;
	}
	.index_sec4Cont_rBot {
		height: 200px;
		margin-bottom: 20px;
	}

	.index_sec6Cont .list .img {
		display: none;
	}
	.index_sec6Cont .list:first-child .img {
		display: block;
	}
	.index_sec6Cont .list {
		width: calc(100% - 60px);
		margin-left:30px;
	}
	.index_sec6Cont .list:nth-of-type(3) {
    display: block;
	}
	.index_sec6Cont .list .txt > div {
    width:100%;
	}
	.index_sec6Cont .list .txt > span::after {
		display: none;
	}
	.index_sec6Cont .list .txt > span,
	.index_sec6Cont .list:hover .txt > span {
		margin-right: 10px;
	}

	.index_sec5 {
		margin-bottom: 0;
		padding: 30px 0 50px;
	}
	.index_sec5Cont .swiper-slide .img {
		width: 100%;
	}
	.index_sec5ContPagination {
    margin-top: 30px;
	}
}
