@charset "utf-8";
/* ====================公共样式========================= */

/* 引入字体 */
@font-face {
	font-family: 'SY-B';
	src: url('../fonts/SourceHanSansCN-Bold.TTF'),
		url('../fonts/SourceHanSansCN-Bold.eot'),
		url('../fonts/SourceHanSansCN-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SourceHanSansCN-Bold.TTF') format('truetype'),
		url('../fonts/SourceHanSansCN-Bold.svg#svgFontName') format('svg');
}
@font-face {
	font-family: 'SY-E';
	src: url('../fonts/SourceHanSansCN-ExtraLightTTF'),
		url('../fonts/SourceHanSansCN-ExtraLighteot'),
		url('../fonts/SourceHanSansCN-ExtraLighteot?#iefix') format('embedded-opentype'),
		url('../fonts/SourceHanSansCN-ExtraLightTTF') format('truetype'),
		url('../fonts/SourceHanSansCN-ExtraLightsvg#svgFontName') format('svg');
}
@font-face {
	font-family: 'SY-H';
	src: url('../fonts/SourceHanSansCN-Heavy.TTF'),
		url('../fonts/SourceHanSansCN-Heavy.eot'),
		url('../fonts/SourceHanSansCN-Heavy.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SourceHanSansCN-Heavy.TTF') format('truetype'),
		url('../fonts/SourceHanSansCN-Heavy.svg#svgFontName') format('svg');
}
@font-face {
	font-family: 'SY-L';
	src: url('../fonts/SourceHanSansCN-Light.TTF'),
		url('../fonts/SourceHanSansCN-Light.eot'),
		url('../fonts/SourceHanSansCN-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SourceHanSansCN-Light.TTF') format('truetype'),
		url('../fonts/SourceHanSansCN-Light.svg#svgFontName') format('svg');
}
@font-face {
	font-family: 'SY-M';
	src: url('../fonts/SourceHanSansCN-Medium.TTF'),
		url('../fonts/SourceHanSansCN-Medium.eot'),
		url('../fonts/SourceHanSansCN-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SourceHanSansCN-Medium.TTF') format('truetype'),
		url('../fonts/SourceHanSansCN-Medium.svg#svgFontName') format('svg');
}
@font-face {
	font-family: 'SY-N';
	src: url('../fonts/SourceHanSansCN-Normal.TTF'),
		url('../fonts/SourceHanSansCN-Normal.eot'),
		url('../fonts/SourceHanSansCN-Normal.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SourceHanSansCN-Normal.TTF') format('truetype'),
		url('../fonts/SourceHanSansCN-Normal.svg#svgFontName') format('svg');
}
@font-face {
	font-family: 'SY-R';
	src: url('../fonts/SourceHanSansCN-Regular.TTF'),
		url('../fonts/SourceHanSansCN-Regular.eot'),
		url('../fonts/SourceHanSansCN-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SourceHanSansCN-Regular.TTF') format('truetype'),
		url('../fonts/SourceHanSansCN-Regular.svg#svgFontName') format('svg');
}


/*动画效果 所有属性获得过度*/
* {
	transition-property: all;
}

.com-img {
	overflow: hidden;
}

.com-img img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.com-img:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}


.fl {
	float: left;
}

.fr {
	float: right;
}

.show {
	display: block;
}

.hide {
	display: none;
}

.tac {
	text-align: center;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.ttu {
	text-transform: uppercase;
}

.pd-40{
	padding: 0.4rem 0;
}

.pd-60{
	padding: 0.6rem 0;
}
.pd-100{
	padding: 1rem 0;
}

.trs3{
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/*字母转换为大写*/
.ofh {
	overflow: hidden;
}

.pst-rel {
	position: relative;
}

.pst-abs {
	position: absolute;
}

.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.f-dr {
	/*默认 主轴为水平方向，起点在左端*/
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

.f-dr-r {
	/*主轴为水平方向，起点在右端*/
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.f-dc {
	/*主轴为垂直方向，起点在上沿*/
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.f-dc-r {
	/*主轴为垂直方向，起点在下沿*/
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.f-as {
	/* 交叉轴的起点对齐 */
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.f-ac {
	/* 交叉轴的中点对齐 */
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.f-ae {
	/* 交叉轴的终点对齐 */
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.f-ab {
	/* 项目的第一行文字的基线对齐 */
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.f-ast {
	/* 交叉轴拉伸对齐 */
	-webkit-align-items: stretch;
	-moz-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.f-js {
	/* 左对齐 */
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.f-jc {
	/* 居中 */
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.f-je {
	/* 右对齐 */
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.f-jsb {
	/* 两端对齐，项目之间的间隔都相等 */
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.f-jsa { /* 每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍 */
	-webkit-box-pack: distribute;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.f-warp {
	/* 换行，第一行在上方 */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.f-warp-r {
	/* 换行，在第一行的下方 */
	-webkit-flex-wrap: wrap-reverse;
	-moz-flex-wrap: wrap-reverse;
	-ms-flex-wrap: wrap-reverse;
	-o-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}


.col-2 {
	width: 50%;
	float: left;
}

.col-3 {
	width: 33.333333%;
	float: left;
}

.col-4 {
	width: 25%;
	float: left;
}

.col-5 {
	width: 20%;
	float: left;
}

.col-6 {
	widows: 16.6666%;
	float: left;
}

.w14 {
	width: 1440px;
	max-width: 92%;
	margin: 0 auto;
}

.w16 {
	width: 1600px;
	max-width: 92%;
	margin: 0 auto;
}

.pc {
	display: block;
}

.mb {
	display: none;
}

/* .mt {
	margin-top: 84px;
} */

/* 头部 head*/
.zdHead {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 0.5rem;
	box-sizing: border-box;
	z-index: 99;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead_box {}

.zdHead_logo {
	transition: all 0.48s;
}

.zdHead_logo a {
	display: block;
}

.zdHead_logo img {
	max-width: 100%;
	height: 60px;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	-ms-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s;
}

.zdHead_logo_c {
	display: none;
}

.zdHead_nav li {
	position: relative;
	display: inline-block;
	padding: 0 0.32rem;
}

.zdHead_nav a {
	line-height: 68px;
	color: #fff;
	font-size: 18px;
	/* opacity: .8; */
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
	transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.zdHead_nav li.active a,
.zdHead_nav li:hover a,.zdHead.on .zdHead_nav li.active>a{
	color: #006db8;
}

.zdHead_nav li .sub {
	position: absolute;
	top: 38px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	background: #fff;
	border-radius: 6px;
	min-width: 189px;
	padding: 10px 0 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.48s;
	z-index: -1;
}

.zdHead_nav li:last-child .sub {
	left: auto;
	transform: translateX(0);
	right: 0;
}

.zdHead_nav li:hover .sub {
	opacity: 1;
	visibility: inherit;
	z-index: 999;
	top: 68px;
}

.zdHead_nav li .sub a {
	color: #333;
	display: block;
	opacity: 1;
	text-align: center;
	font-size: 16px !important;
	border-bottom: 1px solid #eee;
	line-height: 2;
	padding: 10px 0;
}

.zdHead_nav li .sub a:last-child {
	border-bottom: 0;
}

.zdHead_nav li .sub a:hover {
	color: #006db8;
}

.zdHead_nav a:hover {
	opacity: 1;
}

.zdHead.bg,
.zdHead.on {
	padding: 16px 0.5rem;
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}
.zdHead.pro_on{
	padding: 16px 0.5rem !important;
	background: #fff !important;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2) !important;
}

.zdHead.bg .zdHead_logo img,
.zdHead.on .zdHead_logo img,.zdHead.pro_on .zdHead_logo img{
	height: 50px;
}

.zdHead.bg .zdHead_logo_c,
.zdHead.on .zdHead_logo_c,.zdHead.pro_on .zdHead_logo_c {
	display: block;
}

.zdHead.bg .zdHead_logo_w,
.zdHead.on .zdHead_logo_w,.zdHead.pro_on .zdHead_logo_w{
	display: none;
}

.zdHead.bg .zdHead_nav a,
.zdHead.on .zdHead_nav a,.zdHead.pro_on .zdHead_nav a{
	color: #333;
	opacity: 1;
}

.zdHead.bg .zdHead_nav a:hover,
.zdHead.on .zdHead_nav a:hover {
	color: #006db8;
}

.zdHead.bg .zdHead_nav .hover,
.zdHead.on .zdHead_nav .hover {
	color: #006db8;
}

.zdHead .nav_r {
	margin-left: 0.3rem;
}

.zdHead .language {
	position: relative;
	text-align: center;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding-left: 0.18rem;
}

.zdHead .language::before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	left: 0;
	top: 0;
	margin-left: -0.5px;
	background-color: #fff;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .language>a {
	position: relative;
	color: #fff;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.zdHead .language>a:after {
	display: inline-block;
	margin-left: 5px;
	content: "\f0d7";
	font-size: 12px;
	font-family: 'fontawesome';
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .language.on>a:after {
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

.zdHead .language>a img {
	width: auto;
	height: 30px;
	margin-right: 0.1rem;
}

.zdHead .language div {
	display: none;
	position: absolute;
	z-index: 2;
	left: 5px;
	top: calc(100% + 20px);
	width: 100%;
	height: auto;
	background: rgba(0, 0, 0, .8);
	text-align: left;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.zdHead.on .language div {
	top: calc(100% + 35px);
}


.zdHead .language div a {
	display: block;
	font-size: 16px;
	padding: 10px 15px;
	color: rgba(255, 255, 255, .8);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	letter-spacing: 0.5px;
}

.zdHead .language div a:hover {
	background-color: #006db8;
	color: white;
}

.zdHead .search {
	position: relative;
	margin-right: 0.18rem;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .search a {
	display: block;
}

.zdHead .search a img {
	height: 28px;
}

#formsearh {
	position: absolute;
	z-index: 3;
	top: calc(100% + 20px);
	right: -20px;
	width: 320px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 2px;
	overflow: hidden;
	display: none;
	border: 1px solid #006db8;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.zdHead.on #formsearh {
	top: calc(100% + 36px);
}

#formsearh input[type="text"] {
	float: left;
	font-size: 16px;
	height: 42px;
	line-height: 42px;
	padding-left: 15px;
	width: 80%;
	border: none;
	background-color: transparent;
	color: #333;
	box-sizing: border-box;
	overflow: hidden;
}

#formsearh input::-webkit-input-placeholder,
#formsearh textarea::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .5);
	color: #333;
}

#formsearh button {
	float: right;
	width: 20%;
	height: 42px;
	border: none;
	background: url(../images/ico_search_w.png) no-repeat center center;
	background-size: auto 50%;
	color: #fff;
	border-left: 1px solid rgba(255, 255, 255, .2);
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
	background-color: #006db8;
}

.zdHead.on .language>a,.zdHead.pro_on .language>a{
	color: #333;
}

.zdHead.on .language::before,.zdHead.pro_on .language::before{
	background-color: #333;
}

.zdHead .nav_r img.black,
.zdHead.on .nav_r img,.zdHead.pro_on .nav_r img {
	display: none;
}

.zdHead.on .nav_r img.black,.zdHead.pro_on .nav_r img.black{
	display: block;
}

/* 手机导航按钮 s*/
.headMenu {
	position: relative;
	width: 22px;
	height: 20px;
	display: none;
	cursor: pointer;
	margin-top: 3px;
}

.headMenu span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #1d1d1d;
	position: absolute;
	left: 0;
	transition: width 0.3s ease 0s;
}

.headMenu .headMenu_span1 {
	width: 12px;
	top: 0;
}

.headMenu .headMenu_span2 {
	width: 20px;
	top: 6px;
}

.headMenu .headMenu_span3 {
	width: 16px;
	top: 13px;
}

.headMenu.click .headMenu_span1 {
	width: 20px;
	transform: rotate(-45deg) translateY(9px);
}

.headMenu.click .headMenu_span2 {
	opacity: 0;
}

.headMenu.click .headMenu_span3 {
	width: 20px;
	transform: rotate(45deg) translateY(-9px);
}

/* 手机导航按钮 s*/


/* 手机导航 s */
.mobile-inner-header-icon {
	color: #ffffff;
	background: #006db8;
	height: 60px;
	font-size: 24px;
	text-align: center;
	float: right;
	width: 60px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

.mobile-inner-header-icon span {
	position: absolute;
	left: calc((100% - 30px) / 2);
	top: calc((100% - 5px) / 2);
	width: 30px;
	height: 3px;
	background-color: #fff;
	transition-duration: 0.5s;
}

.mobile-inner-header-icon span:nth-child(1) {
	transform: translateY(10px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
	transform: translateY(-10px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(3) {
	width: 20px;
}

.mobile-inner-header-icon-click span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}

.mobile-inner-header-icon-out span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
}

.mobile-inner-nav{
	background: #006db8;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 55px;
	left: 0px;
	display: none ;
	overflow-y: auto;
	z-index: 2;
}

.active_mobile span:nth-child(3) {
	opacity: 0;
}

.active_mobile span:nth-child(1) {
	transform: rotate(45deg);
	width: 30px;
}

.active_mobile span:nth-child(2) {
	transform: rotate(-45deg);
	width: 30px;
}

.header-search{
	padding: 0 10px;
}
.header-search form{
	height: 40px;
	border-radius: 20px;
	border: 1px solid #e5e5e5;
	position: relative;
	width: 100%;
	margin: 0.3rem 0 0.2rem;
}
.header-search form input{
	font-size: 14px;
	color: #fff;
	height: 38px;
	line-height: 38px;
	padding: 0 0.2rem;
	box-shadow: none;
	-webkit-appearance: none;
	border-right: 0;
	background: none;
	width: 100%;
}
.header-search form input::placeholder{
	color: white;
	font-size: 14px;
}
.header-search form button{
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 38px;
	line-height: 38px;
	border: 0;
	background-color: transparent;
	color: white;
	font-size: 18px;
}

.subNavBox1 {
	width: 100%;
}
.subNav1 {
	display: block;
	width: 100%;
	border-bottom: 1px solid #077fd1;
	line-height: 50px;
	font-size: 18px;
	color: #555;
	padding: 0 15px;
	background: url(../images/jia1.png) no-repeat 96% center;
	color: #fff;
}
.subNav1 a{
	display: block;
	margin-right: 60px;
}


.currentDt1 {
	background: url(../images/jian1.png) no-repeat 96% center #0e649f;
}

.navContent1 {
	display: none;
	border-bottom: 1px solid #d6d6d6;
	padding: 10px 0;
	background: #0e649f;
	overflow: hidden;
}

.navContent1 li {
	line-height: 40px;
}

.navContent1 li a {
	display: block;
	font-size: 16px;
	color: #fff;
	padding-left: 40px;
}

.so-mobile-fl {
	width: 100%;
	padding: 10px 10px 10px 40px;
	font-size: 0;
}

.so-mobile-fl a{
	width: 50%;
	padding-right: 2%;
	display: inline-block;
	padding-bottom: 10px;
	color: #fff;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	/* padding: 10px 10px 10px 40px; */
}
.so-mobile-fl p{
	padding-bottom: 10px;
}
.so-mobile-fl p a{
	width: 100%;
	margin-bottom: 0;
}


.xg-mobile-bt {
	font-size: 16px;
	padding: 10px 20px;
}

.xg-mobile-bt a {
	color: #fff;
	position: relative;
	padding-left: 20px;
}

.xg-mobile-bt a:before {
	content: '';
	width: 15px;
	height: 15px;
	background: url(../images/m_anniu1.png) no-repeat center;
	position: absolute;
	left: 0;
	top: 2px;
	background-size: cover;
}

/* 手机导航 e */


/* 底部 */
.Footer-wrapper {
	background-color: #eeeeee;
	/* background-color: #2a2c1f; */
}

.Footer-container {
	padding: 0.6rem 0;
}

.Footer-container [class*="foot_item"] {
	/* float: left; */
}

.foot_item1 {
	width: 28%;
	margin-right: 2%;
}

.foot_item1 .foot_logo {
	margin-bottom: 0.35rem;
}

.foot_item1 .foot_logo img {
	/* height: 45px; */
	width: auto;
}

.foot_item1 p {
	padding: 10px 0;
	color: #727171;
	font-size: 16px;
	line-height: 1.2;
	display: flex;
	display: -webkit-flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
}

.foot_item1 p i {
	display: inline-block;
	width: 25px;
	text-align: center;
	margin-right: 0.10rem;
}

.foot_item1 p img {
	display: inline-block;
	width: auto;
}


.foot_item1 ul {
	font-size: 0;
	margin-top: 0.1rem;
}

.foot_item1 ul li {
	display: inline-block;
	max-width: 25%;
	text-align: center;
	padding-right: 0.1rem;
}

.foot_item1 ul li a {
	display: inline-block;
}

.foot_item1 ul li a i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	width: 45px;
	height: 45px;
	border-radius: 10px;
	border: 2px solid #006db8;
	color: #006db8;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.foot_item1 ul li a i:hover {
	background-color: #006db8;
	color: white;
}

/* .foot_item3 ul li a img {
	width: auto;
	max-width: 100%;
}
 */
.foot_item1 ul li a:hover {
	-webkit-animation: swing 1s ease;
	-o-animation: swing 1s ease;
	animation: swing 1s ease;
}

/* .foot_item1 .contact_us {
	display: inline-block;
	width: 190px;
	height: 40px;
	line-height: 40px;
	background-color: #006db8;
	border: 1px solid #006db8;
	color: white;
	text-align: center;
	font-size: 24px;
	border-radius: 8px;
	margin-top: 0.25rem;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.foot_item1 .contact_us:hover {
	background-color: white;
	color: #006db8;
} */


.foot_item2 {
	width: 50%;
}

.foot_item2 dl {
	max-width: calc(100% / 6);
}

.foot_item2 dl dt {
	margin-bottom: 0.28rem;
}

.foot_item2 dl dt a {
	font-size: 20px;
	/* color: #465351; */
	color: #000;
	font-family: "PT-B";
}

.foot_item2 dl dd {
	margin-bottom: 0.22rem;
	/* color: #696969; */
	color: #696969;
	opacity: 0.58;
}

.foot_item2 dl dd:last-child {
	margin-bottom: 0;
}

.foot_item2 dl dd a {
	font-size: 16px;
}

.foot_item2 dl dd:hover a,
.foot_item2 dl dt:hover a {
	color: #006db8;
}

.foot_item3 {
	width: 19%;
	margin-left: 1%;
}

.foot_item3 .wx{}
.foot_item3 .wx p{
	font-size: 16px;
	margin-top: 0.15rem;
	color: #696969;
}


.Copyright {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-top: 1px solid rgba(135, 135, 135, 0.3);
	padding: 18px 0 10px;
	color: #a0a0a0;
	color: #808080;;
	font-size: 16px;
}

.Copyright a:hover {
	color: #006db8;
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(40deg);
		transform: rotate(40deg)
	}

	40% {
		-webkit-transform: rotate(-20deg);
		transform: rotate(-20deg)
	}

	60% {
		-webkit-transform: rotate(10deg);
		transform: rotate(10deg)
	}

	80% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(40deg);
		-ms-transform: rotate(40deg);
		transform: rotate(40deg)
	}

	40% {
		-webkit-transform: rotate(-20deg);
		-ms-transform: rotate(-20deg);
		transform: rotate(-20deg)
	}

	60% {
		-webkit-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		transform: rotate(10deg)
	}

	80% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	100% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

.swing {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}





/* 中间+共用部分 */

/* banner */
.ind_banner .swiper-pagination-bullet,
.ind_mb_banner .swiper-pagination-bullet {
	opacity: 0.95;
	background-color: white;
}

.ind_banner .swiper-pagination-bullet-active,
.ind_mb_banner .swiper-pagination-bullet-active {
	background-color: #006db8;
}

.banner-list{
	position: relative;
	/* height: 100vh; */
}
.banner-list .swiper {
    height: 100%;
}
.banBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banBg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banTxt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    z-index: 99;
    width: 50%;
}


.banTxt .banTxt_en {
    color: #fff;
    display: block;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 64px;
    opacity: 0.1;
    line-height: 1;
    font-style: italic;

}

.banTxt .banTxt_cn {
    color: #fff;
    font-size: 58px;
    line-height: 1;
    margin-top: -18px;
    display: block;
    letter-spacing: 1px;
    margin-bottom: 48px;

}


.banTxt .banTxt_p {
    color: #fff;
    font-size: 18px;
    line-height: 2.1;
    max-width: 72%;
    margin-bottom: 108px;
    text-align: justify;

}

.zdMore {
    position: relative;
    margin-top: 68px;
}

.zdMore .more {
    position: relative;
    width: 238px;
    height: 58px;
    line-height: 58px;
    border-radius: 35px;
    padding: 0 48px;
    font-size: 15px;
    letter-spacing: 1px;
    box-sizing: border-box;
    background-color: #fff;
    color: #0082ff;
    text-transform: capitalize;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.zdMore.blue .more {
    background: #0082ff;
    color: #Fff;
    font-size: 18px;
}

.zdMore svg {
 width: 14px;
 height: 12px;
    vertical-align: middle;
    pointer-events: none;
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    -o-transition: .25s transform ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}


.banner .zdMore svg
{
    width: 18px;
    height: 18px;
    margin-left: 13%;
}
.banner .zdMore svg path
{
   stroke: none;
    fill:#0082ff;
}
.banner .zdMore .more:hover svg {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.banner .zdMore.blue svg path {
    fill: #fff;
}

.zdMore svg path {
    stroke: #0082ff;
    fill: none;
    -webkit-transition: stroke .25s ease-out;
    -o-transition: stroke .25s ease-out;
    transition: stroke .25s ease-out;
}

.zdMore span {
    content: "";
    width: 150px;
    height: 100%;
    position: absolute;
    top: -1;
    right: 0;
    background-color: #fff;
    border-radius: 35px;
    display: block;
    -webkit-transition: background-color .25s ease-out, -webkit-transform .25s ease-out;
    transition: background-color .25s ease-out, -webkit-transform .25s ease-out;
    -o-transition: .25s background-color ease-out, .25s transform ease-out;
    transition: background-color .25s ease-out, transform .25s ease-out;
    transition: background-color .25s ease-out, transform .25s ease-out, -webkit-transform .25s ease-out;
    z-index: -1;
    pointer-events: none;
}

.zdMore .more:hover svg {
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
}

.zdMore .more:hover span {
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
}



/* 公共banner */
.com_ban {
	position: relative;
	width: 100%;
	height: 68vh;
	-o-background-size: cover !important;
	background-size: cover !important;
}

.com_ban:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(37, 89, 159, 0.28);
	/* background: rgba(172, 206, 34, 0.2);
	background: rgba(0, 0, 0, 0.2); */
	/* background: rgba(37, 89, 159, 0.28); */
/* 	background: linear-gradient(top, rgb(0,0,0,.1) 20%, rgb(77, 129, 21,.12) 100%);
	background: -webkit-linear-gradient(top, rgb(0,0,0,.12) 20%, rgb(77, 129, 21,.18) 100%); */
}

.com_ban .txt {
	position: relative;
	text-align: left;
	width: 100%;
	height: 100%;
	color: #fff;
	padding: 100px 0 0;
}

.com_ban .txt h4 {
	position: relative;
	font-size: 46px;
	font-weight: 400;
}
.com_ban .txt h4::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: #006db8;
    margin: 12px 0;
}

.com_ban .txt p {
	font-size: 35px;
	text-transform: uppercase;
}

.com_ban .main-sroll {
	font-size: 14px;
	padding-left: 40px;
	position: relative;
	color: #fff;
	height: 28px;
	line-height: 28px;
	margin: 0.8rem 0 0.4rem;
}
.main-sroll:before {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	left: 12px;
	top: 9px;
	background-color: #006db8;
	border-radius: 50%;
	z-index: 5;
	-webkit-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
	-moz-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
	  -o-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
	     animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}


@-webkit-keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-5px);
	}
}

@-moz-keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		     transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		-moz-transform: translateY(-8px);
		     transform: translateY(-8px);
	}
}

@-o-keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		-o-transform: translateY(0);
		   transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		-o-transform: translateY(-8px);
		   transform: translateY(-8px);
	}
}

@keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		  -o-transform: translateY(0);
		     transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		-moz-transform: translateY(-8px);
		  -o-transform: translateY(-8px);
		     transform: translateY(-8px);
	}
}

.main-sroll:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 30px;
	border-radius: 50px;
	left: 5px;
	background-color: #fff;
	top: -4px;
	opacity: 0.5;
}


.com_ban .sub_nav {
	position: absolute;
	bottom: 0;
	left: 50%;
	background: rgba(255, 255, 255, 0.65);
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.com_ban .sub_nav li {
	position: relative;
	border-right: 1px solid rgba(255, 255, 255, 0.8);
	-webkit-flex-grow: 1;
	-moz-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
}

.com_ban .sub_nav li a{
	display: block;
	padding: 20px 0;
	font-size: 18px;
}
.com_ban .sub_nav li:hover a, .com_ban .sub_nav li.active a {
    color: #006db8;
}
.com_ban .sub_nav li:after {
    position: absolute;
    content: '';
    width: 0;
    height: 4px;
    top: 0;
    left: 0;
    background: #006db8;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}
.com_ban .sub_nav li:hover:after, .com_ban .sub_nav li.active:after {
    width: 100%;
}

/* 首页标题 */
.ind_tit {
	position: relative;
	text-align: center;
}
.ind_tit span{
	display: block;
	font-size: 32px;
	font-family: "SY-H";
	padding-bottom: 0.10rem;
	/* color: rgb(255,255,255,.3); */
	color: #ededed;
	text-transform: uppercase;
}
.ind_tit h3 {
	font-size: 42px;
	color: #006db8;
	font-family: "SY-H";
	text-transform: uppercase;
}

.ind_tit h3::after {
	content: "";
	display: block;
	width: 0.75rem;
	height: 2px;
	margin: 0.2rem auto;
	background-color: #4a4a4a;
}

.ind_tit p{
	font-size: 16px;
	line-height: 1.6;
	color: #686868;
	font-family: "SY-R";
}
/* 关于我们标题 */
.ab_tit{
	text-align: left;
	margin-bottom: 0.1rem;
}
.ab_tit h3{
	font-size: 32px;
	line-height: 1.3;
	color: #333;
	text-transform: capitalize;
}
/* 
.ab_tit h3::after {
	content: "";
	display: block;
	width: 45px;
	height: 2px;
	background-color: #006db8;
	margin: 0.1rem 0;
} */
.ab_tit p{
	font-size: 20px;
	line-height: 1.8;
	color: #666;
	text-transform: uppercase;
	font-family: "SY-L";
}
.ab_tit span{
	display: block;
	width: 60%;
	font-size: 18px;
	color: #666;
	margin-top: 15px;
	word-break: keep-all;
}



/* page start */
.com_page{
	padding: 0.4rem 0;
}

.com_page a {
	color: #a0a0a0;
	font-size: 13px;
	display: inline-block;
	border: 1px solid #a0a0a0;
	padding: 11px 13px;
	margin: 0 4px;
	letter-spacing: 0.5px;
	/* background-color: #f0f0f0; */
}

.com_page a:hover,
.com_page .page-num-current {
	background-color: #006db8;
	color: white;
	border: 1px solid #006db8;
}

.com_page p {
	display: inline-block;
	margin: 0 25px 0 16px;
}
/* page end */


/* 公共MORE */
.com_more {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 46px;
	border-radius: 23px;
	color: white;
	background-color: #006db8;
	border: 1px solid #006db8;
	text-align: center;
	font-size: 18px;
	text-transform: uppercase;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.com_more:hover {
	color: #006db8;
	background-color: white;
}

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {

	/* 1600 × (900/1024/1200) */
	.zdHead_nav li {
		padding: 0 0.28rem;
	}
}

@media all and (max-width:1599px) {

	/* 1440 × (900/1050) */
	.zdHead_nav li {
		padding: 0 0.2rem;
	}

	.zdHead .nav_r {
		margin-left: 0.2rem;
	}
}

@media all and (max-width:1439px) {

	/* 1360 × (768) */
	.zdHead_nav a {
		font-size: 20px;
	}
}

@media all and (max-width:1359px) {
	/* 1280 × (800/854/1024) */
}

@media all and (max-width:1279px) {

	/* 1152 × (864) */
	.zdHead_nav a {
		font-size: 16px;
	}
	
	.banTxt .banTxt_cn{
		font-size: 36px;
		margin-top: 0;
	}
	.banTxt .banTxt_p{
		font-size: 16px;
		max-width: 100%;
	}
}

@media all and (max-width:1151px) {
	/* 1024 × (600/768) */
	.head_r {
		display: none;
	}
	.headMenu{
		display: block;
	}
	.zdHead,.zdHead.pro_on{
		padding: 0 0 0 4% !important;
		background-color: white;
	}
	
	.banTxt{
		width: 92%;
		left: 4%;
		text-align: center;
	}
	.banTxt .banTxt_en{
		font-size: 36px;
	}
	.banTxt .banTxt_p{
		text-align: center;
	}
	.zdMore.blue .more{
		margin: 0 auto;
		font-size: 16px;
	}
	
	.zdHead_box{
		height: 60px;
	}
	.head_r{
		margin-right: 30px;
	}
	.zdHead_logo img,.zdHead.on .zdHead_logo img{
		height: 40px;
	}
	.zdHead_logo_c{
		display: block;
	}
	.zdHead_logo_w{
		display: none;
	}
	.zdHead .search a img{
		height: 20px;
	}
	.mt{
		margin-top: 60px;
	}
	
	.foot_item1{
		width: 70%;
	}
	.foot_item2{
		display: none;
	}
	.foot_item3{
		width: 30%;
	}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
	/* 平板设备 720 适配 */
	.pc {
		display: none;
	}
	
	.mb {
		display: block;
	}
	
	.ind_tit h3{
		font-size: 36px;
	}
	.ind_tit span{
		font-size: 28px;
		margin-bottom: 0.15rem;
	}
	.ind_ab .ab_l .ind_tit h3:after{
		margin-top: 0.3rem;
	}
	
	.com_ban{
		height: 60vh;
	}
	.com_ban .sub_nav{
		display: none;
	}
	.com_ban .txt{
		padding: 60px 0 0;
	}
	.com_ban .txt h4{
		font-size: 36px;
	}
	.com_ban .txt p{
		font-size: 24px;
	}
	
	.pd-40,.pd-60{
		padding: 0.8rem 0;
	}
	
	.foot_item1 .foot_logo img{
		margin: 0 auto;
	}
	.foot_item1 ul li{
		padding-right: 0.18rem;
	}
	.foot_item1 p,.foot_item1 ul{
		justify-content: center;
	}
}

@media all and (max-width:768px) {
	
	
	.banTxt .banTxt_cn{
		font-size: 0.42rem;
		line-height: 1.6;
		margin-bottom: 0.2rem;
	}
	.banTxt .banTxt_p{
		letter-spacing: 0;
		font-size: 15px;
		margin-bottom: 0.45rem;
	}
	.zdMore{
		margin-top: 0.4rem;
	}
	.zdMore.blue .more{
		width: 3.2rem;
		height: 0.8rem;
		line-height: 0.8rem;
		padding: 0;
		font-size: 14px;
	}
	.banner .zdMore svg{
		margin-left: 3px;
	}
	
	.Footer-container{
		flex-wrap: wrap;
	}
	.foot_item1{
		width: 100%;
		margin-right: 0;
	}
	.foot_item1 .foot_logo img{
		height: 50px;
	}
	.foot_item3{
		width: 100%;
		margin-top: 0.4rem;
	}
	.foot_item1 p{
		font-size: 14px;
	}
}

@media all and (max-width:640px) {
	/* 移动终端以上 360 适配 */
	.ind_tit h3{
		font-size: 32px;
	}
	.ind_tit span{
		font-size: 26px;
	}
	
	.Copyright{
		font-size: 14px;
		line-height: 1.6;
		text-align: center;
	}
	.Copyright .fl,.Copyright .fr{
		float: none;
		width: 100%;
	}
}

@media all and (max-width:480px) {
	.ind_tit p{
		font-size: 14px;
	}
}

@media all and (max-width:420px) {
	.ind_tit h3{
		font-size: 28px;
	}
	.ind_tit span{
		font-size: 22px;
	}
	
	.com_ban .txt h4{
		font-size: 30px;
	}
	.com_ban .txt p{
		font-size: 20px;
	}
	.com_ban .txt h4::after{
		width: 0.6rem;
		height: 2px;
		margin: 0.2rem 0;
	}
	.com_ban .main-sroll{
		margin-top: 1rem;
	}
}

@media all and (max-width:376px) {}
