@charset "utf-8";

/* *******************
Reset Css
Author: Corey 
QQ: 735701122
version:1.0 <2020.07.07>
********************** */
body {
	background-color: #fff;
	-webkit-touch-callout: none;
	/* -webkit-user-select: none; 禁止复制*/
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	overflow-x: hidden;
}

body,
button,
input,
pre,
select,
textarea {
	font-size: 14px;
	font-family: 'Microsoft YaHei', 'Arial';
}

* {
	box-sizing: border-box;
}

*::before,
*::after {
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

a,
article,
aside,
b,
audio,
body,
canvas,
em,
caption,
div,
footer,
header,
html,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
iframe,
img,
mark,
nav,
object,
section,
span,
summary,
table,
tbody,
td,
tfoot,
thead,
tr,
video,
dd,
dl,
dt,
i,
label,
legend,
li,
ol,
p,
ul {
	margin: 0;
	padding: 0;
}

/*clearfix*/
.clearfix {
	*zoom: 1
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: ""
}

.clearfix:after {
	clear: both
}

table {
	border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

ol,
ul,
li {
	list-style: none;
}

a,
a:active {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

img {
	border: 0;
	vertical-align: middle;
}

/*动画效果 所有属性获得过度*/
* {
	transition-property: all;
}

.btn {
	display: inline-block;
	white-space: nowrap;
	cursor: pointer;
	background: #fff;
	border: 1px solid #dcdfe6;
	color: #606266;
	-webkit-appearance: none;
	text-align: center;
	outline: none;
	margin: 0;
	transition: .1s;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	padding: 12px 20px;
	font-size: 14px;
	border-radius: 4px;
}

.btn:hover {
	background-color: #FEDE3B;
	border-color: #FEDE3B;
	color: #fff;
}

textarea.text {
	display: block;
	padding: 0px;
	width: 100%;
	border: 0px;
	background: none;
	margin: 0px;
	resize: none;
}

a {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.com-img img {
	transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0s;
	-webkit-transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0s;
	-moz-transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0s;
	-o-transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0s;
}

.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);
}

/*图片去色处理，IE兼容较差*/
.photo-gray img {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
}

.photo-gray img:hover {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
	filter: gray;
}

.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;
}

.ofH {
	overflow: hidden;
}

/* CSS Document */
.contain {
	max-width: 1400px;
	margin: 0 auto;
}

/* Map edit */
.bd_weixin_popup,
.bd_weixin_popup * {
	box-sizing: content-box !important;
}

#dituContent img {
	max-width: none;
}

/*限制行数 -- 一行*/
.line1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.line2 {
	height: 50px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-moz-line-clamp: 2;
	-o-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.line3 {
	height: 75px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-moz-line-clamp: 3;
	-o-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* 指定文字禁止复制 */
.noSelect {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}

/*分页*/
.pages {
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.pages a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #eee;
	margin: 0px 3px;
	color: #333;
	vertical-align: middle;
}

.pages a.on,
.pages a:hover {
	background: #666;
	color: #fff;
	border-color: #666;
}

.pages a:first-child span,
.pages a:last-child span {
	font-size: 24px;
}

/* 子元素文字居中 */
.vertical-center {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*阴影效果*/
.box-shadow {
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}

.box-shadow:hover {
	-webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	-webkit-transform: translate3d(0, -5px, 0);
	transform: translate3d(0, -5px, 0)
}

/*伪类标题效果*/
.pub-wl-tit {
	position: relative;
}

.pub-wl-tit:after {
	content: "";
	position: absolute;
	left: 0%;
	bottom: 0px;
	width: 0px;
	height: 1px;
	background: #000;
	transition: all 0.4s;
	left: 50%;
}

.pub-wl-tit:hover:after {
	width: 100%;
	left: 0px;
}

/* 背景图片滑动拉升效果 */
.bg-pic {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	text-align: center;
	transform: matrix(1.1, 0, 0, 1.1, 0, 0);
	-webkit-transition: all 0.4s ease 1.2s;
	-moz-transition: all 0.4s ease 1.2s;
	-ms-transition: all 0.4s ease 1.2s;
	-o-transition: all 0.4s ease 1.2s;
	transition: all 0.4s ease 1.2s;
	object-fit: cover;
}

.bg-pic.active {
	transition-delay: 0.4s !important;
	transform: matrix(1.0, 0, 0, 1.0, 0, 0);
	-webkit-transition: all 5.0s ease;
	-moz-transition: all 5.0s ease;
	-ms-transition: all 5.0s ease;
	-o-transition: all 5.0s ease;
	transition: all 5.0s ease;
}

/*btn效果*/
.show-more {
	width: 132px;
	height: 42px;
	line-height: 40px;
	display: block;
	color: #016fbe;
	text-align: center;
	border: 1px solid #016fbe;
	position: relative;
	border-radius: 30px;
}

.show-more span {
	position: relative;
	z-index: 3;
}

.show-more {
	overflow: hidden;
}

.show-more:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #016fbe;
	position: absolute;
	top: 0px;
	left: -100%;
}

.show-more:hover {
	color: #fff;
	border-color: #016fbe !important;
}

.show-more:hover:after {
	left: 0px;
}

.show-more:after,
.show-more {
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.show-more i {
	position: relative;
	top: 2px;
	font-size: 18px;
	z-index: 3;
	transition: all 0.5s;
}

.show-more:hover i {
	color: #fff;
}

/* 小圆点扩散效果 */
@keyframes ani-warn {
	0% {
		transform: scale(0);
		opacity: 0.0;
	}

	25% {
		transform: scale(0);
		opacity: 0.1;
	}

	50% {
		transform: scale(0.1);
		opacity: 0.3;
	}

	75% {
		transform: scale(0.5);
		opacity: 0.5;
	}

	100% {
		transform: scale(1);
		opacity: 0.0;
	}
}

@-webkit-keyframes ani-warn {
	0% {
		-webkit-transform: scale(0);
		opacity: 0.0;
	}

	25% {
		-webkit-transform: scale(0);
		opacity: 0.1;
	}

	50% {
		-webkit-transform: scale(0.1);
		opacity: 0.3;
	}

	75% {
		-webkit-transform: scale(0.5);
		opacity: 0.5;
	}

	100% {
		-webkit-transform: scale(1);
		opacity: 0.0;
	}
}

.ani-spread {
	position: relative;
	width: 40px;
	height: 40px;
	display: block;
}

/* 固定小圆圈 */
.ani-spread:after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	left: 16px;
	top: 16px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	background: #ffa200;
	border-radius: 8px;
	z-index: 2;
}

/* 产生动画扩散的圆圈 */
.ani-spread:before {
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	left: 8px;
	top: 8px;
	background: #f8d392;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	border-radius: 24px;
	z-index: 1;
	opacity: 0;
	-webkit-animation: ani-warn 3s ease-out;
	-moz-animation: ani-warn 3s ease-out;
	animation: ani-warn 3s ease-out;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

/* ****************
Public Css
**************** */

/*--- Header ---*/
.header-container {
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 90;
	box-shadow: 0 0 8px #888;
}

.H-logo {
	height: 88px;
	line-height: 88px;
	font-size: 0px;
	float: left;
	position: relative;
	overflow: hidden;
	z-index: 5;
}

.H-logo img {
	max-height: 60px;
}

.H-action {
	float: right;
	margin: 0;
	position: relative;
}

.H-action .split {
	display: block;
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, .5);
	float: left;
	margin: 27px 15px 0;
}

.H-lang,
.H-user,
.H-srch {
	height: 88px;
	float: left;
	position: relative;
}

/*Hlang*/
.H-lang {
	position: relative;
}

.H-lang .Hlang-menu {
	display: block;
	width: 30px;
	text-align: center;
	height: 100%;
	line-height: 88px;
	transition: none;
	-webkit-transition: none;
}

.H-lang .Hlang-menu span {
	color: #333;
	font-size: 22px;
}

.Hlang-box {
	width: 120px;
	box-shadow: 1px 1px 9px #666;
	background: #fff;
	position: absolute;
	top: 70px;
	left: -50px;
	display: none;
}

.Hlang-box:before {
	content: "";
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 8px 8px;
	border-color: transparent transparent #fff transparent;
	position: absolute;
	top: -8px;
	left: 50%;
	margin: 0 0 0 -4px;
}

.Hlang-box a {
	display: block;
	padding: 5px 9px 5px 60px;
	line-height: 30px;
	background-repeat: no-repeat !important;
	background-position: 20px center !important;
}

.Hlang-box a:hover {
	color: #fff;
	background: #006ebc;
}

.Hlang-box a.CN {
	background-image: url(../images/icon-cn.png);
}

.Hlang-box a.EN {
	background-image: url(../images/icon-en.png);
}

/*Hsrch*/
.H-srch .Hsrch-menu {
	display: block;
	width: 30px;
	text-align: center;
	height: 100%;
	line-height: 88px;
}

.H-srch .Hsrch-menu span {
	color: #333;
	font-size: 30px;
}

.Hsrch-box {
	width: 240px;
	background: #fff;
	position: absolute;
	top: 88px;
	right: 0px;
	display: none;
	position: absolute;
	z-index: 2;
}

.Hsrch-block {
	padding: 10px;
	width: 100%;
	position: relative;
}

.Hsrch-block .text {
	width: 100%;
	height: 32px;
	font-size: 12px;
	float: left;
	background: #f7f7f7;
	border: 0px;
	padding: 0 5px;
}

.Hsrch-block .btn-seach {
	background: #006ebc;
	width: 32px;
	height: 32px;
	color: #fff;
	font-size: 18px;
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	text-align: center;
	line-height: 32px;
}

/*Hnav*/
.H-nav {
	float: left;
	margin-left: 5%;
	position: relative;
}

.H-nav li {
	float: left;
	/* position: relative; */
}
.H-nav li:not(:last-child){
	margin-right: 53px;
}
.H-nav>li>a:before{
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: rgba(0, 91, 172, 1);
	opacity: 0;
}
.H-nav>li.cur>a:before,
.H-nav>li:hover>a:before{
	opacity: 1;
}
.H-nav .Hnav-menu {
	display: block;
	height: 88px;
	line-height: 88px;
	font-size: 16px;
	color: #333;
	position: relative;
}
.H-nav .sub-nav-box{
	position: absolute;
	top: 100%;
	width: 1100px;
	left: 0;
	background-color: #fff;
	padding: 54px 0 6px;
	z-index: 1;
	display: none;
}
.H-nav>li:hover .sub-nav-box{
	display: block;
}
.H-nav .sub-nav-box:before{
	position: absolute;
	content: "";
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	width: 200vw;
	background-color: #fff;
	z-index: -1;
}
.H-nav .sub-nav-box ul{
	display: flex;
	flex-wrap: wrap;
}
.H-nav .sub-nav-box li{
	position: relative;
	width: 102px;
	border-bottom: 1px solid rgba(209, 209, 210, 1);
	margin-bottom: 63px;
}
.H-nav .sub-nav-box li a{
	display: block;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 1;
	padding-bottom: 15px;
}
.H-nav .sub-nav-box li a:hover{
	color: rgba(2, 65, 149, 1);
}
.H-nav .sub-nav-box li:before{
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	width: 22px;
	height: 3px;
	background: #006FBD;
}
.Hnav-menu i {
	display: block;
	width: 40px;
	height: 50px;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 2;
	display: none;
	text-align: center;
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
}

.Hnav-menu.cur i {
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}

.Hnav-sub {
	width: 100%;
	background: rgba(19, 19, 19, 0.8);
	position: absolute;
	top: 88px;
	left: 0px;
	display: none;
}

.Hnav-sub li {
	background: #fff;
	width: 100%;
	padding: 15px 10px;
	text-align: center;
	border-bottom: 1px solid #f7f7f7;
}

.Hnav-sub li:hover {
	background: #006ebc;
	color: #fff;
	border-color: #006ebc;
}

@media all and (min-width:980px) {
	.H-lang:hover .Hlang-box {
		display: block;
		animation: slideInUps .3s;
		-webkit-animation: slideInUps .3s;
	}

	.H-nav>li:hover .Hnav-sub {
		display: block;
		animation: slideInUps .3s;
		-webkit-animation: slideInUps .3s;
	}
}

.H-nav li:hover .Hnav-menu,
.H-nav li.cur .Hnav-menu{
	color: rgba(2, 65, 149, 1);
	/* background: linear-gradient(0deg, #0096E0 0%, #024195 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}

#ind-banner img {
	max-width: 100%;
}

/*--- Banner ---*/
.index-bnr {
	height: 100vh;
	position: relative;
}

.bnr-img {
	display: block;
	width: 100%;
	height: auto;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	position: relative;
}

.index-bnr .bnr-img {
	height: 100vh;
}
.index-bnr .swiper-horizontal>.swiper-pagination-bullets,
.index-bnr .swiper-pagination-bullets.swiper-pagination-horizontal,
.index-bnr .swiper-pagination-custom,
.index-bnr .swiper-pagination-fraction {
	bottom: 40px;
}

.index-bnr .swiper-pagination-bullet {
	position: relative;
	width: 7px;
	height: 7px;
	background: #FFFFFF;
	border-radius: 50%;
	opacity: 1;
}

.index-bnr .swiper-pagination-bullet:before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 1px solid #FFFFFF;
	border-radius: 50%;
	opacity: 0;
	transition: all .6s;
}

.index-bnr .swiper-pagination-bullet-active:before {
	opacity: 1;
}

.index-bnr .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.index-bnr .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 17px;
}

/*.index-bnr .swiper-pagination {*/
/*	width: 466px;*/
/*	height: 158px;*/
/*	background: url(../images/pagination.png) no-repeat center;*/
/*	margin: 0 auto;*/
/*	left: 50%;*/
/*	margin-left: -233px;*/
/*	padding-top: 120px;*/
/*	color: #fff;*/
/*	font-size: 24px;*/
/*	bottom: 0 !important;*/
/*}*/

/* .index-bnr .swiper-pagination:after{position:absolute;width:50px;height:50px;border:1px solid #fff;border-radius:50%;content:"";top:-22.5px;left:50%;margin-left:-21.5px;opacity: 0.5;}
.index-bnr .swiper-pagination:before{position:absolute;width:50px;height:50px;border:1px solid #fff;border-radius:50%;content:"";top:-22.5px;left:50%;margin-left:-21.5px;}
 */
.index-bnr .jdt {
	position: absolute;
	left: 50%;
	bottom: 120px;
	z-index: 99;
	margin-left: -29px;
}

.index-bnr .jdt .jdt2 {
	transform: rotate(-90deg);
	transform-origin: 32px;
}

.index-bnr .jdt .jdt2 {
	animation: jtd2 infinite 3.2s linear;
}

@keyframes jtd2 {
	0% {
		stroke-dasharray: 0 190;
		stroke-dashoffset: 0;
	}

	100% {
		stroke-dasharray: 190 0;
		stroke-dashoffset: 0;
	}
}

.index-bnr .bnr-bg {
	width: 100%;
	height: 100%;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	position: absolute;
	top: 0px;
	left: 0px;
}

.iBnr1-box {
	text-align: center;
	color: #fff;
	z-index: 2;
	position: absolute;
	left: 50%;
	top: 40%;
	width: 1200px;
	margin-left: -600px;
	text-align: left;
}

.iBnr1-box .t1 {
	line-height: 50px;
	font-size: 50px;
	margin-bottom: 30px;
	-webkit-transition: all .6s;
	-moz-transition: all .6s;
	-ms-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	transform: translateY(-50px);
	opacity: 0;
}

.iBnr1-box .t2 {
	font-size: 24px;
	line-height: 36px;
	text-transform: uppercase;
	opacity: 0;
	-webkit-transition: all .6s;
	-moz-transition: all .6s;
	-ms-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.swiper-slide.swiper-slide-active .iBnr1-box .t1,
.swiper-slide.swiper-slide-active .iBnr1-box .t2 {
	transform: translate(0, 0) scale(1);
	-webkit-transform: translate(0, 0) scale(1);
	opacity: 1;
}

/*--- Footer ---*/
.Footer-wrap {
	background-image: url(../img/footer-bg.jpg);
	background-size: cover;
}

.footer-container {
	padding: 60px 0;
	1;
	color: #fff;
}
.footer-container .contain{
	display: flex;
	justify-content: space-between;
}
.footer-container .contain:before,
.footer-container .contain::after{
	display: none;
}
.footer-container .contain .r{
	display: flex;
}
.F-logo {
	width: 27%;
	float: left;
	border-right: 1px solid rgba(255, 255, 255, .12);
	/* margin-right: 5%; */
}

.F-logo .F-tel {
	margin-top: 28px;
}

.F-logo p {
	color: #ccc;
	margin-bottom: 8px;
}

.F-nav {
	/* width: 14%; */
	float: left;
}
.F-nav1{
	margin-right: 77px;
}
.F-nav dt,
.F-ct .top {
	line-height: 25px;
	font-size: 16px;
	position: relative;
}
.F-nav dt{
	position: relative;
	line-height: 1;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.F-nav dt:before{
	position: absolute;
	left: 0;
	bottom: -2px;
	content: "";
	height: 2px;
	width: 28px;
	height: 3px;
	background-color: rgba(255, 255, 255, .5);
}
.F-nav dt i {
	display: block;
	width: 40px;
	height: 50px;
	text-align: center;
	position: absolute;
	right: 0px;
	top: 0px;
	display: none;
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
}

.F-nav dt.cur i {
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}

.F-nav dd {
	margin: 22px 0 0;
	display: flex;
}
.F-nav dd .items:not(:last-child){
	margin-right: 20px;
}
.F-nav dd a {
	display: block;
	line-height: 28px;
	color: #a5a5a5;
}

.F-nav dd a:hover {
	color: #fff;
}

.F-ct {
	/* width: 150px; */
	float: right;
	margin-left: 57px;
}
.F-codes{
	display: flex;
}
.F-code {
	width: 80px;
	display: inline-block;
	text-align: center;
}
.F-code:not(:last-child){
	margin-right: 25px;
}
.F-code img{
	width: 80px;
	display: block;
}
.F-code .qrcode {
	font-size: 14px;
	color: rgba(255,255,255,.5);
	line-height: 24px;
	margin: 10px 0 0;
}

.F-coyright {
	padding: 30px 0;
	line-height: 20px;
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, .4);
	border-top: 1px solid #2b343d;
}

.F-coyright a {
	margin: 0 10px;
}

.F-coyright a:hover {
	color: #fff;
}

/* 内页全局通用banner */
.bann {
	margin-top: 70px;
	color: #fff;
}

.bann h2 {
	font-size: 42px;
	margin-bottom: 9px;
	text-align: center;
}

.bann h3 {
	font-size: 24px;
	text-transform: uppercase;
	text-align: center;
}

.bann h2,
.bann h3,
.bann h4 {
	animation: mymove 1s infinite;
	-webkit-animation: mymove 1s infinite;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
}

@keyframes mymove {
	from {
		transform: translateY(-50px);
	}

	to {
		transform: translateY(0px);
	}
}

@-webkit-keyframes mymove {
	from {
		transform: translateY(-50px);
	}

	to {
		transform: translateY(0px);
	}
}

.pub-share {
	margin-top: 20px;
	text-align: right;
}

.pub-share a {
	width: 28px;
	height: 28px;
	background: #b6b9bc;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	color: #1c252f;
	line-height: 28px;
	margin-left: 5px;
}

.pub-share a span {
	font-size: 18px;
}

.pub-share a:hover {
	background: #016fbe;
	color: #fff;
}

/*手机汉堡按钮*/
.Hmenu-btn {
	width: 27px;
	height: 27px;
	padding: 13px 5px;
	cursor: pointer;
	display: none;
	float: right;
	margin: 10px 0 0 10px;
	background: #016fbe;
}

.Hmenu-btn a {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: relative;
}

.Hmenu-btn a:before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0px;
}

.Hmenu-btn a:after {
	content: "";
	display: block;
	width: 80%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0px;
}

.Hmenu-btn a:before {
	top: -6px;
}

.Hmenu-btn a:after {
	bottom: -6px;
}

.Hmenu-btn.cur a:after {
	width: 100%;
}

.Hmenu-btn.cur a {
	-moz-animation: buttonAnimation 0.3s ease forwards;
	-webkit-animation: buttonAnimation 0.3s ease forwards;
	animation: buttonAnimation 0.3s ease forwards;
}

.Hmenu-btn.cur a:before {
	-moz-animation: buttonAnimationBefore 0.3s ease forwards;
	-webkit-animation: buttonAnimationBefore 0.3s ease forwards;
	animation: buttonAnimationBefore 0.3s ease forwards;
}

.Hmenu-btn.cur a:after {
	-moz-animation: buttonAnimationAfter 0.3s ease forwards;
	-webkit-animation: buttonAnimationAfter 0.3s ease forwards;
	animation: buttonAnimationAfter 0.3s ease forwards;
}

@-moz-keyframes buttonAnimationBefore {
	0% {
		-moz-transform: translateY(0px) rotate(0);
		transform: translateY(0px) rotate(0);
	}

	50% {
		-moz-transform: translateY(6px) rotate(0);
		transform: translateY(6px) rotate(0);
	}

	100% {
		-moz-transform: translateY(6px) rotate(45deg);
		transform: translateY(6px) rotate(45deg);
	}
}

@-webkit-keyframes buttonAnimationBefore {
	0% {
		-webkit-transform: translateY(0px) rotate(0);
		transform: translateY(0px) rotate(0);
	}

	50% {
		-webkit-transform: translateY(6px) rotate(0);
		transform: translateY(6px) rotate(0);
	}

	100% {
		-webkit-transform: translateY(6px) rotate(45deg);
		transform: translateY(6px) rotate(45deg);
	}
}

@keyframes buttonAnimationBefore {
	0% {
		-moz-transform: translateY(0px) rotate(0);
		-ms-transform: translateY(0px) rotate(0);
		-webkit-transform: translateY(0px) rotate(0);
		transform: translateY(0px) rotate(0);
	}

	50% {
		-moz-transform: translateY(6px) rotate(0);
		-ms-transform: translateY(6px) rotate(0);
		-webkit-transform: translateY(6px) rotate(0);
		transform: translateY(6px) rotate(0);
	}

	100% {
		-moz-transform: translateY(6px) rotate(45deg);
		-ms-transform: translateY(6px) rotate(45deg);
		-webkit-transform: translateY(6px) rotate(45deg);
		transform: translateY(6px) rotate(45deg);
	}
}

@-moz-keyframes buttonAnimationAfter {
	0% {
		-moz-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-moz-transform: translateY(-6px) rotate(0);
		transform: translateY(-6px) rotate(0);
	}

	100% {
		-moz-transform: translateY(-6px) rotate(-45deg);
		transform: translateY(-6px) rotate(-45deg);
	}
}

@-webkit-keyframes buttonAnimationAfter {
	0% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-webkit-transform: translateY(-6px) rotate(0);
		transform: translateY(-6px) rotate(0);
	}

	100% {
		-webkit-transform: translateY(-6px) rotate(-45deg);
		transform: translateY(-6px) rotate(-45deg);
	}
}

@keyframes buttonAnimationAfter {
	0% {
		-moz-transform: translateY(0) rotate(0);
		-ms-transform: translateY(0) rotate(0);
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-moz-transform: translateY(-6px) rotate(0);
		-ms-transform: translateY(-6px) rotate(0);
		-webkit-transform: translateY(-6px) rotate(0);
		transform: translateY(-6px) rotate(0);
	}

	100% {
		-moz-transform: translateY(-6px) rotate(-45deg);
		-ms-transform: translateY(-6px) rotate(-45deg);
		-webkit-transform: translateY(-6px) rotate(-45deg);
		transform: translateY(-6px) rotate(-45deg);
	}
}

@-moz-keyframes buttonAnimation {
	0% {
		background: #aaaaaa;
	}

	50% {
		background: rgba(255, 255, 255, 0);
	}

	100% {
		background: rgba(255, 255, 255, 0);
	}
}

@-webkit-keyframes buttonAnimation {
	0% {
		background: #aaaaaa;
	}

	50% {
		background: rgba(255, 255, 255, 0);
	}

	100% {
		background: rgba(255, 255, 255, 0);
	}
}

@keyframes buttonAnimation {
	0% {
		background: #aaaaaa;
	}

	50% {
		background: rgba(255, 255, 255, 0);
	}

	100% {
		background: rgba(255, 255, 255, 0);
	}
}
.common-banner{
	position: relative;
}
.common-banner .pic img{
	display: block;
	width: 100%;
	object-fit: cover;
}
.common-breadNav{
	padding: 17px 0 23px;
}
.common-breadNav .contain{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	line-height: 2;
}
.common-breadNav .contain a{
	color: #666;
}
.common-breadNav .contain a:hover{
	color: rgba(0, 110, 188, 1);
}
.common-breadNav .contain a.current{
	color: rgba(0, 110, 188, 1);
}
.common-breadNav .contain .icon-dingwei{
	margin-right: 10px;
}
.common-breadNav .contain .l{
	flex: 1;
}
.common-breadNav .contain .l .swiper-slide{
	width: auto;
}
.common-breadNav .contain .l .swiper-slide:not(:last-child){
	margin-right: 105px;
}
.common-breadNav .contain .l .swiper-slide a{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	line-height: 1;
}
.common-breadNav .contain .l .swiper-slide.active a{
	color: rgba(0, 91, 172, 1);
}
.inner-body{
	padding-top: 88px;
}
.common-nav{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	background-color: rgba(33, 43, 53, .55);
	line-height: 74px;
	width: 1400px;
	max-width: 92%;
}
.common-nav .swiper-slide{
	width: 180px;
	text-align: center;
}
.common-nav .swiper-slide.active,
.common-nav .swiper-slide:hover{
	background-color: rgba(0, 110, 188, 1);
}
.common-nav .swiper-slide a{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	display: block;
}
.pagination ul{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
.pagination li{
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	background: #FFFFFF;
	border-radius: 50%;
	color: #666666;
	margin: 5px 14px;
}
.pagination li a{
	display: block;
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
}
.pagination li .iconfont{
	font-size: 24px;
}
.pagination li:hover,
.pagination li.active{
	color: #fff;
	background-color: rgba(0, 110, 188, 1);
}
.pagination li:hover a,
.pagination li.active a{
	color: #fff;
}
.banner1{
	position: relative;
}
.banner1 .banner-box{
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	left: 50%;
	text-align: left;
	width: 1400px;
	max-width: 94%;
}
.banner1 .banner-box .zh{
	font-size: 44px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1;
}
.banner1 .banner-box .en{
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 1;
	margin-top: 20px;
}
.banner1 .pic img{
	width: 100%;
	min-height: 450px;
	object-fit: cover;
}
.common-nav .contain{
	width: 100%;
	padding: 0 !important;
}
.modal{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    display: none;
    z-index: 999;
}
.modal .shadow{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.modal .content{
    position:absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%,-50%);
}
.modal .content video{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal .close{
    position: absolute;
    right: 0px;
    top: -40px;
    cursor: pointer;
}
.modal .close img{
    width: 40px;
    display: block;
}
@media (max-width:1440px){
	.footer-container .contain .r{
		flex: 1;
		padding-left: 40px;
		justify-content: space-between;
	}
	.F-nav1{
		margin-right: 40px;
	}
	.F-ct{
		margin-left: 40px;
	}
	.F-logo{
		width: 23%;
	}
}
@media (max-width:1280px){
	.F-logo{
		width: 20%;
		padding-right: 10px;
	}
}
@media (max-width:1199px) {
	.footer-container .contain{
		flex-direction: column;
	}
	.footer-container .contain .r{
		flex: 1;
		padding-left: 0;
		flex-direction: column;
	}
	.H-nav .sub-nav-box{
		width: 900px;
	}
	.banner1 .banner-box .zh{
		font-size: 36px;
	}
	.banner1 .banner-box .en{
		font-size: 32px;
	}
}
@media (max-width:1023px) {
	.inner-body{
		padding-top: 50px;
	}
	.H-nav>li{
		position: relative;
	}
	.H-nav .sub-nav-box{
		position: relative;
		width: 100%;
		padding: 15px 4% 0px;
	}
	.H-nav .sub-nav-box li{
		margin-bottom: 20px;
	}
	.H-nav .sub-nav-box li a{
		font-size: 12px;
		padding-bottom: 8px;
	}
	.banner1 .banner-box .zh{
		font-size: 30px;
	}
	.banner1 .banner-box .en{
		font-size: 26px;
	}
	.common-nav{
		line-height: 50px;
	}
	.common-nav .swiper-slide a{
		font-size: 16px;
	}
	.banner1 .pic img{
		min-height: 300px;
	}
	.common-breadNav .contain .l .swiper-slide:not(:last-child){
		margin-right: 30px;
	}
	.common-breadNav .contain{
		flex-direction: column-reverse;
	}
	.common-breadNav .r{
		width: 100%;
		display: flex;
		justify-content: flex-end;
	}
	.common-breadNav .contain .l{
		width: 100%;
		flex: none;
	}
	.pagination li{
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
	.pagination li a{
		font-size: 18px;
	}
	
}
@media (max-width:768px){
	.banner1 .banner-box .zh{
		font-size: 26px;
	}
	.banner1 .banner-box .en{
		font-size: 22px;
	}
	.common-nav .swiper-slide{
		width: 120px;
	}
	.pagination li{
		margin: 5px;
	}
	.common-breadNav .contain .l .swiper-slide a{
		font-size: 16px;
	}
}
@media (max-width:500px){
	.H-nav .sub-nav-box li{
		width: 60px;
	}
	.H-nav li:not(:last-child){
		margin-right: 30px;
	}
	.banner1 .banner-box .zh{
		font-size: 22px;
	}
	.banner1 .banner-box .en{
		font-size: 16px;
	}
	.banner1 .pic img{
		min-height: 250px;
	}
}