@charset "utf-8";
/**
 * style.less
 * 层叠样式表
 gz
 */
@font-face {
	font-family: 'iconfont';
	src: url('../other/iconfont.eot');
	src: url('../other/iconfont.eot?#iefix') format('embedded-opentype'),
		url('../other/iconfont.woff2') format('woff2'),
		url('../other/iconfont.woff') format('woff'),
		url('../other/iconfont.ttf') format('truetype'),
		url('../other/iconfont.svg#iconfont') format('svg');
}
@font-face {
	font-family: 'CenturyGothic';
	src: url('../other/CenturyGothic.eot');
	src: url('../other/CenturyGothic.eot?#iefix') format('embedded-opentype'),
		url('../other/CenturyGothic.woff2') format('woff2'),
		url('../other/CenturyGothic.woff') format('woff'),
		url('../other/CenturyGothic.ttf') format('truetype'),
		url('../other/CenturyGothic.svg#CenturyGothic') format('svg');
}
@font-face {
	font-family: 'CenturyGothic-Bold';
	src: url('../other/CenturyGothic-Bold.eot');
	src: url('../other/CenturyGothic-Bold.eot?#iefix') format('embedded-opentype'),
		url('../other/CenturyGothic-Bold.woff2') format('woff2'),
		url('../other/CenturyGothic-Bold.woff') format('woff'),
		url('../other/CenturyGothic-Bold.ttf') format('truetype'),
		url('../other/CenturyGothic-Bold.svg#CenturyGothic-Bold') format('svg');
}
@font-face {
	font-family: 'AvantGardeITCbyBT-Book';
	src: url('../other/AvantGardeITCbyBT-Book.eot');
	src: url('../other/AvantGardeITCbyBT-Book.eot?#iefix') format('embedded-opentype'),
		url('../other/AvantGardeITCbyBT-Book.woff2') format('woff2'),
		url('../other/AvantGardeITCbyBT-Book.woff') format('woff'),
		url('../other/AvantGardeITCbyBT-Book.ttf') format('truetype'),
		url('../other/AvantGardeITCbyBT-Book.svg#AvantGardeITCbyBT-Book') format('svg');
}
@font-face {
	font-family: 'DINEngschriftStd';
	src: url('../other/DINEngschriftStd.otf');
}
@font-face {
	font-family: 'DINbold';
	src: url('../other/din-bold.ttf');
}
@font-face {
	font-family: 'Montserrat-Regular';
	src: url('../other/Montserrat-Regular.otf');
}
@font-face {
	font-family: 'Montserrat-Black';
	src: url('../other/Montserrat-Black.otf');
}
@font-face {
  font-family: 'SourceHanSansSC-Normal'; 
  src: url('../fonts/SourceHanSansCN-Normal.eot'); 
  src: url('../fonts/SourceHanSansCN-Normal.eot?#iefix') format('embedded-opentype'),
  url('../fonts/SourceHanSansCN-Normal.woff') format('woff'), 
  url('../fonts/SourceHanSansCN-Normal.ttf') format('truetype'), 
  url('../fonts/SourceHanSansCN-Normal.svg#SourceHanSansCNNormal') format('svg'); 
} 
/*
	//放大
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s; 
	-o-transition: all 0.3s ease-out 0s; 
	transition: all 0.3s ease-out 0s;
	
	-webkit-transform: scale(1.1);
    -mos-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);	 
	
	//居中
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	
	//旋转
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	
	//一行显示点
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	
	//几行显示点
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	
	//圆点
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	border-radius: 100%;
	
	//去除select默认样式
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
*/
* {
	margin: 0;
	padding: 0;
}
html{
	overflow-x: hidden;
}
html, body {
    position: relative;
}
body {
	font-family: 'Montserrat-Regular', 'Arial','Microsoft YaHei', 'Source Han Sans CN', 'SourceHanSerifCN',  'Helvetica', 'PingFang Regular';
	font-size: 14px;
	color: #333;
	background: #fff;
	line-height: 1!important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	overflow-y: hidden;
}
body.fixed {
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
body.searchactive {
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
li,
ol,
ul {
	list-style: none;
}
input[type=number] {
	-moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}
ul {
	margin: 0;
	padding: 0;
}
button,
input,
textarea {
	resize: none;
	border: none;
	outline: none;
}
img {
	border: 0;
	max-width: 100%;
}
a {
	text-decoration: none;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
a:hover {
	text-decoration: none;
}
a:hover,
a:link,
a:visited {
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6{
	margin: 0;
	padding: 0;
}
p {
	margin: 0;
	padding: 0;
}
.fancybox-slide--iframe .fancybox-content {
	min-width: 733px !important;
	max-width: 80% !important;
	min-height: 500px !important;
	min-height: 92% !important;
	margin: 0;
	background: none;
}
.fancybox-iframe{
	background: none;
}
.bdshare-button-style0-16 a, 
.bdshare-button-style0-16 .bds_more{
	padding: 0!important;
	margin: 0!important;
	width: 16px;
	height: 16px;
}
.main {
	float: left;
	width: 100%;
}
.w-100 {
	float: left;
	width: 100%;
	position: relative;
	z-index: 999;
}
.w-1600 {
	width: 1600px;
	margin: 0 auto;
}
@media (max-width: 1600px) {
	.w-1600 {
		width: 100%;
		padding: 0 3%;
	}
}

.mobheader_wrapper{display: none;box-shadow: 3px 3px 11px 5px rgb(0 0 0 / 9%);}
/*二维码*/
.bd_weixin_popup{
	width: 260px!important;
	height: 310px!important;
}
/*地图多余*/
.BMapLabel{
	display: none;
}
/*视频*/
.fancybox-slide--iframe .fancybox-content {
	min-width: 733px !important;
	max-width: 80% !important;
	min-height: 500px !important;
	min-height: 92% !important;
	margin: 0;
}
.img-box {
	position: relative;
	display: block;
	overflow: hidden;
	height: 0;
	padding-bottom: 100%;
	outline: none;
}
.img-box img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	outline: none;
	width: 100%;
	height: 100%;
}
.img-box img[src=''],
.img-box img:not([src]) {
	opacity: 0;
	border: 0;
}
*[data-type='iframe'],
*[data-fancybox],
.slick-slide:focus,
a:link {
	outline: none !important;
}
.fancybox-slide--iframe .fancybox-content {
	min-width: 733px !important;
	max-width: 80% !important;
	min-height: 500px !important;
	min-height: 92% !important;
	margin: 0;
}
@media (max-width: 767px) {
	.fancybox-content{
		position: absolute;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.fancybox-slide--iframe .fancybox-content{
		min-width: auto!important;
		max-width: none!important;
		width: 90%!important;
		margin-left: 5%;
		height: 220px!important;
		min-height: auto!important;
		max-height: none!important;	
	}
}
body.body-01 {
	height: 100%;
	/* overflow-y: auto; */
	overflow-x: hidden;
}
.header {
	position: fixed;
	z-index: 9993;
	top: 0;
	width: 100%;
	height: 120px;
	-webkit-transition: all .4s;
	transition: all .4s;
	font-size: 0;
}
.header .none {
	opacity: 0;
}
.header .block {
	opacity: 1;
}
.header.fixed-header .none {
	opacity: 1;
}
.header.fixed-header .block {
	opacity: 0;
}
.header.bg-fff{
	background: #0b6a5b;
}
.header.fixed-header{
	/* position: fixed;
	z-index: 99999; */
	top: 0;
	margin-top: 0;
	background: #fff;
	box-shadow: 3px 3px 11px 5px rgb(0 0 0 / 9%);
}
@media (max-width: 1199px) {
	
}
.header .logo {
	float: left;
	position: relative;
	margin-top: 30px;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.header .logo img {
	float: left;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	height:57px;
	
}
.header .logo a {
	display: block;
	height: 100%;
}
.header .logo span{
	display: inline-block;
	font-size: 18px;
	line-height: 36px;
	padding: 0 10px;
	border-radius: 10px;
	color: #3b59a7;
	border: 1px dashed #3b59a7;
	margin-top: 10px;
	margin-left: 24px;
}
@media (max-width: 1440px) {
}
@media (max-width: 1199px) {
	
}
@media (max-width: 767px) {
	.header {
		height: 66px!important;
	}
	.header .logo {
	  margin-top: 20px;
	}
	.header.header-in .logo {
	    margin-top: 15px;
	}
	.header .logo span{
		display: none;
	}
	.header .logo img {
		height: 26px;
	}
	.header .logo img:nth-child(3),
	.header .logo img:nth-child(4){
		display: none;
	}
	
}
.header .nav-collapse {
	position: relative;
	z-index: 10;
	display: none;
	float: right;
	width: 40px;
	height: 40px;
	margin-left: 10px;
	padding: 0;
	cursor: pointer;
	background: none;
}
@media (max-width: 1199px) {
	.header .nav-collapse {
		display: block;
		margin-top: 40px;
		margin-left: 40px;
		/* background: #fff; */
	}
	.header .nav-collapse.nav-collapse-1 {
		position: absolute;
		z-index: 9999;
		top: 15px;
		right: 20px;
		display: block;
		margin-top: 10px;
		border: none;
	}
	.header .nav-collapse.nav-collapse-1 .btn-line {
		background-color: #fff !important;
	}
}
@media (max-width: 767px) {
	.header .nav-collapse {
		position: absolute;
		top: 10px;
		right: 0;
		margin-top: 0;
		border: none;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header .nav-collapse.nav-collapse-xs:hover .btn-line {
		background-color: #000;
	}
}
.header .nav-collapse .btn-line {
	position: absolute;
	left: 50%;
	width: 20px;
	height: 2px;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
}
.header .nav-collapse .btn-line:nth-child(3),
.header .nav-collapse .btn-line:nth-child(1) {
	position: absolute;
	display: block;
	width: 20px;
	height: 2px;
	content: '';
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	background-color: #fff;
}
.header.fixed-header .nav-collapse .btn-line,
.header.fixed-header .nav-collapse .btn-line:nth-child(3),
.header.fixed-header .nav-collapse .btn-line:nth-child(1){
	background: #040000;
}
.header .nav-collapse .btn-line:nth-child(1) {
	top: 35%;
}
.header .nav-collapse .btn-line:nth-child(2) {
	top: 50%;
}
.header .nav-collapse .btn-line:nth-child(3) {
	top: 65%;
}
.header .nav-collapse.active {
	border-color: transparent;
}
.header .nav-collapse.active .btn-line {
	background-color: #fff;
}
.header .nav-collapse.active .btn-line:nth-child(2) {
	-webkit-transform: translateX(-50px);
	-ms-transform: translateX(-50px);
	transform: translateX(-50px);
	opacity: 0;
}
.header .nav-collapse.active .btn-line:nth-child(1) {
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) rotateZ(45deg);
	-ms-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotateZ(45deg);
}
.header .nav-collapse.active .btn-line:nth-child(3) {
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) rotateZ(-45deg);
	-ms-transform: translateX(-50%) rotate(-45deg);
	transform: translateX(-50%) rotateZ(-45deg);
}
.header .navbg {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	width: 100%;
	height: 50px;
	background-color: rgba(0, 0, 0, .6);
}
@media (min-width: 1200px) {
	.header .nav {
		position: relative;
		float: left;
		/* opacity: 0; */
		-webkit-transition: all 0.3s ease-out 0s;
		-moz-transition: all 0.3s ease-out 0s; 
		-o-transition: all 0.3s ease-out 0s; 
		transition: all 0.3s ease-out 0s;
	}
	
}
@media (max-width: 1199px) {
	.header .nav {
		position: fixed;
		z-index: 9998;
		top: 0;
		left: 0;
		display: none;
		width: 100%;
		height: 100%;
		padding: 0 50px;
		-webkit-transition: left .3s;
		transition: left .3s;
		text-align: left;
		text-align: center;
		background: #fafafa;
		background-color: rgba(0, 0, 0, .9);
	}
	.header .nav .tbl {
		display: table;
		width: 100%;
		height: 100%;
	}
	.header .nav .tbl-cell {
		display: table-cell;
		height: 100%;
		vertical-align: middle;
	}
	.header .nav .tbl-cell .i-tel{
		display: block;
		width: 100%;
		text-align: center;
		color: #fff;
	}
}
@media (max-width: 1199px) {
	.header .nav {
		margin-left: 0%;
	}
}
@media (max-width: 767px) {
	.header .nav {
		width: 100%;
		padding: 30px;
	}
}
.header .nav.left-100 {
	left: -100%;
}
.header .nav.left-200 {
	left: -200%;
}
@media (min-width: 1200px) {
	.header .nav .nav-list1{
		float: left;
	}
	.header .nav .nav-list1>li {
		float: left;
		position: relative;
	}
	.header .nav .nav-list1>li>a {
		/* padding: 0px 18px; */
		padding: 0px 10px;
		font-size: 18px;
		text-align: center;
		position: relative;
		z-index: 2;
		display: inline-block;
		-webkit-transition: all .3s;
		transition: all .3s;
		color: #fff;
		border-bottom: 0px solid rgba(0,142,213,0);
		text-transform: uppercase;
	}
	.header.fixed-header .nav .nav-list1>li>a {
		color: #040000;
	}
	.header .nav .nav-list1>li>a:before {
		position: absolute;
		right: -32px;
		top: 50%;
		font-size: 12px;
		color: #999;
		font-family: arial;
		/* content: "/"; */
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.header .nav .nav-list1>li:last-child>a:before {
		display: none;
	}
	.header .nav .nav-list1>li>a,
	.header .nav .nav-list1>li>a {
		
	}
	.header .nav .nav-list1>li>a span,
	.header .nav .nav-list1>li>a span {
		display: block;
		clear: both;
	}
	.header .nav .nav-list1>li:hover>a span:nth-child(1),
	.header .nav .nav-list1>li.active>a span:nth-child(1){
		color: #fff;
	}
	.header .nav .nav-list1>li>a span:nth-child(2){
		font-size: 14px;
		color: #999;
		margin-top: 7px;
		font-family: 'AvantGardeITCbyBT-Book';
	}
	
	.header .nav .nav-list1>li:hover>a,
	.header .nav .nav-list1>li.active>a {
		opacity: 0.8;
	}
	
	.header .nav .nav-list1 .nav-list2 {
		position: absolute;
		z-index: 50;
		top: 100%;
		left: 0;
		display: none;
		width: 120px;
		margin-left: -0%;
		padding: 0;
		text-align: center;
		text-align: left;
		background: #fff;
	}
	.header .nav .nav-list1 .nav-list2 .nav-div-1 {
		/* width: 1200px; */
		width: 100%;
		margin: 0 auto;
		text-align: left;
	}
	.header .nav .nav-list1 .nav-list2 li {
		position: relative;
		/* border-right: 1px solid #ccc; */
	}
	.header .nav .nav-list1 .nav-list2 li::after{
		position: absolute;
		right: 0;
		top: 50%;
		width: 1px;
		height: 40%;
		margin-top: -20%;
		background: #ccc;
		/* content: ""; */
	}
	.header .nav .nav-list1 .nav-list2 li:last-child {
		border-right: none;
	}
	.header .nav .nav-list1 .nav-list2 li:last-child::after{
		display: none;
	}
	.header .nav .nav-list1 .nav-list2 li>a {
		display: block;
		width: 100%;
		font-size: 14px;
		line-height: 40px;
		padding: 0 16px;
		position: relative;
		z-index: 1;
		-webkit-transition: all .2s;
		transition: all .2s;
		text-align: left;
		color: #fff;
		color: #0b6a5b;
		background: #0b6a5b;
		background: url(../images/navbg.png) repeat;
		
		
	}
	
	.header .nav .nav-list1 .nav-list2 li:last-child>a {
		border-bottom: 0;
	}
	.header .nav .nav-list1 .nav-list2 li>a:hover {
		opacity: 0.8;
		background: #0b6a5b;
		color: #fff;
	}
}
@media (max-width: 1680px) {
	
}
@media (max-width: 1600px) {
	
}
@media (max-width: 1440px) {
	.header .nav .nav-list1>li>a{
		padding: 0px 12px;
	}
	.header .logo img{height:45px;}
	.header .logo{margin-top:29px;}
	 .header{height:100px;}
	 .header .nav .nav-list1>li>a{line-height:100px;}

}
@media (max-width: 1199px) {
	.header .nav .nav-list1 {
		margin: 20px 0;
		opacity: 0;
	}
	.header .nav .nav-list1>li {
		-webkit-transform: translateY(-25px);
		-ms-transform: translateY(-25px);
		transform: translateY(-25px);
		opacity: 0;
	}
	.header .nav .nav-list1>a {
		font-size: 20px;
		color: #fff;
	}
	.header .nav .nav-list1>li>a span:nth-child(2){
		display: none;
	}
}
@media (max-width: 1199px) {
	.header .nav .nav-list2,
	.header .nav .nav-list3 {
		display: none !important;
	}
	.header .nav .nav-list2 a,
	.header .nav .nav-list3 a {
		font-size: 16px;
		line-height: 2;
		margin-top: 5px;
		color: #fff;
	}
	.header .nav .nav-list1 .nav-list2 li>a:before {
		font-family: 'iconfont' !important;
		margin-right: 6px;
		content: '\e72f';
	}
}
.header .nav .nav-list2 a,
.header .nav .nav-list3 a {
	display: block;
}
@media (max-height: 580px) {
	.header .nav .nav-list2 a,
	.header .nav .nav-list3 a {
		margin-top: 0;
	}
}
.header .nav-2,
.header .nav-3 {
	display: none;
}
@media (max-width: 1199px) {
	.header .nav-2,
	.header .nav-3 {
		position: absolute;
		z-index: 9999;
		top: 0;
		display: block;
		overflow: hidden;
		width: 100%;
		height: 100%;
		padding: 20px;
		-webkit-transition: left .3s;
		transition: left .3s;
		text-align: left;
		text-align: center;
		color: #fff;
		background-color: rgba(152, 38, 42, .9);
	}
}
.header .nav-2 .nav-top,
.header .nav-3 .nav-top {
	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: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header .nav-2 .nav-top .back-btn:before,
.header .nav-3 .nav-top .back-btn:before {
	font-family: 'iconfont';
	font-size: 26px;
	content: '\e9b5';
}
.header .nav-2 .nav-top h2,
.header .nav-3 .nav-top h2 {
	font-size: 30px;
	margin: 0;
	text-transform: uppercase;
	color: #fff;
}
.header .nav-2 .nav-top h2 a,
.header .nav-3 .nav-top h2 a{
	color: #fff;
}
@media (max-width: 767px) {
	.header .nav .nav-list1>li.pc-none{
		display: none;
	}
	.header .nav .nav-list1>li.pc-block{
		display: block;
	}
	.header .nav-2 .nav-top h2,
	.header .nav-3 .nav-top h2 {
		font-size: 20px;
		width: 100%;
	}
}
.header .nav-2 .nav-top .nav-collapse-2,
.header .nav-3 .nav-top .nav-collapse-2 {
	margin: 0;
}
.header .nav-2 .nav-top .nav-collapse-2 .btn-line,
.header .nav-3 .nav-top .nav-collapse-2 .btn-line {
	background-color: #fff;
}
.header .nav-2 .content,
.header .nav-3 .content {
	overflow: auto;
	height: 80%;
	margin-top: 10%;
}
@media (max-width: 767px) {
	.header .nav-2 .content ul,
	.header .nav-3 .content ul {
		padding: 0 15px;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}
.header .nav-2 .content ul li,
.header .nav-3 .content ul li {
	display: inline-block;
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	margin: 25px 0;
	text-align: center;
}
.header .nav-2 .content ul li a,
.header .nav-3 .content ul li a{
	color: #fff;
	font-size: 24px;
}
@media (max-width: 767px) {
	.header .nav-2 .content ul li,
	.header .nav-3 .content ul li {
		margin: 15px 0 0 0;
	}
	.header .nav-2 .content ul li a, 
	.header .nav-3 .content ul li a{
		font-size: 20px;
	}
}
.header .nav-2 .content ul li.more,
.header .nav-3 .content ul li.more {
	position: relative;
}
.header .nav-2 .content ul li.more:after,
.header .nav-3 .content ul li.more:after {
	font-family: 'iconfont' !important;
	font-size: 16px;
	position: absolute;
	top: 50%;
	right: 0;
	content: '\e72f';
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #fff;
}
.header .nav-2 .content ul li a,
.header .nav-3 .content ul li a {
	display: block;
}
.header .nav-2 {
	left: 100%;
}
.header .nav-3 {
	left: 200%;
}
.header .nav-3 .content ul li {
	font-size: 19px;
}
.header .fade-out ul {
	text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.header .fade-out ul {
		padding: 0 5%;
	}
}
@media (max-width: 1199px) {
	.header .fade-out ul .pic {
		display: none !important;
	}
}
@media (max-width: 1199px) {
	.header .fade-out ul.nav-list1 {
		opacity: 1;
	}
	.header .fade-out ul.nav-list1 a {
		color: #fff;
	}
	.header .fade-out ul.nav-list1>li {
		position: relative;
		margin: 20px 0;
	}
	.header .fade-out ul.nav-list1>li.act {
		-webkit-transition: all .4s;
		transition: all .4s;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	.header .fade-out ul.nav-list1>li.more:after {
		font-family: 'iconfont';
		font-size: 18px;
		position: absolute;
		top: 50%;
		right: 0;
		margin-top: -14px;
		content: '\e72f';
		color: #fff;
	}
	.header .fade-out ul.nav-list1>li>a {
		font-size: 22px;
		height: auto;
		line-height: 2.5;
		display: block;
		text-transform: uppercase;
	}
	.header .fade-out ul.nav-list1 .nav-list2>li>a {
		font-size: 20px;
	}
}
@media (max-width: 1199px) and (max-width: 767px) {
	.header .fade-out ul.nav-list1>li {
		margin: 0;
	}
}
@media (max-width: 1199px) and (max-height: 768px) {
	.header .fade-out ul.nav-list1 .nav-list2>li>a {
		font-size: 18px;
	}
}
@media (max-width: 1199px) and (max-width: 480px) {
	.header .fade-out ul.nav-list1 .nav-list2>li>a {
		font-size: 14px;
	}
}
.header .fade-out ul.nav2-list2 h4 {
	font-size: 20px;
	line-height: 50px;
}
.head-right {
	float: right;
	line-height: 120px;
}
.wx,
.menu {
	float: right;
	margin-top: 50px;
	margin-left: 40px;
}
.pc-tel{
	font-family: 'CenturyGothic';
	float: right;
	margin-right: 40px;
	padding-left: 38px;
	line-height: 22px;
	font-size: 26px;
	margin-top: 24px;
	color: #fff;
	color: #0b6a5b;
	background: url(../images/tel.png) left center no-repeat;
	background: url(../images/tel-on.png) left center no-repeat;
}
/*搜索*/
.header .find {
	float: right;
	width: 22px;
	height: 22px;
	line-height: 22px;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all .4s;
	transition: all .4s;
	margin-top: 50px;
	margin-left: 35px;
	position: relative;
}
.header .find img{
	vertical-align: top;
}
.header .find::after{
	position: absolute;
	left: -16px;
	top: 50%;
	width: 3px;
	height: 3px;
	background: #ccc;
	border-radius: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.header.fixed-header.course .find {
	color: #6c6c6c;
	padding-top: 38px;
}
@media (max-width: 1440px) {
	.header .find {
		margin-left: 24px;
		margin-top:37px;
	}
	.wx, .menu{margin-top:37px;}
	.header .nav-collapse{margin-top:26px;}
	
	.header .find::after{
		left: -12px;
	}
}
@media (max-width: 1280px) {
	.header .seach-phone .phone {
		font-size: 20px;
		padding-right: 30px;
	}
}
@media (max-width: 1199px) {
	.header .seach-phone {
		background: none;
		height: 66px;
		line-height: 66px;
		margin-right: 7%;
	}
	.header .find {
		
	}
	
	.header .find img{
		width: 20px;
	}
}
@media (max-width: 767px) {
    	.header .nav-collapse{margin-top:0px;}
	.wx, .menu {
		margin-right: 40px;
    margin-top: 20px;
    margin-left: 20px;
	}
	.header .find{
		margin-left: 40px;
    margin-top: 20px;
	}
}
/*搜索弹窗*/
.header .search-box {
	position: fixed;
	z-index: 888;
	top: 100%;
	left: 0;
	display: none;
	overflow: hidden;
	width: 100%;
	height: 100%;
	margin-top: 20px;
	margin-top: 0;
	margin-right: 10px;
	padding: 0 3%;
	background-color: rgba(4, 0, 0, .9);
}
.header .search-box .search {
	line-height: 40px;
	overflow: hidden;
	zoom: 1;
	width: 240px;
	border: 1px solid #dbdbdb;
	border-radius: 40px;
}
.header .search-box .search:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: '';
}
.header .search-box .input-text {
	float: left;
	height: 38px;
	padding-left: 10%;
	background: none;
}
@media (min-width: 768px) {
	.header .search-box .input-text {
		width: 100%;
		padding: 0 50px 0 3%;
	}
}
.header .search-box .input-submit {
	line-height: 36px;
	float: right;
	width: 27px;
	height: 27px;
	-webkit-animation: fadeInLeft 1s 0s ease both;
	animation: fadeInLeft 1s 0s ease both;
	font-size: 24px;
	background: url(../images/search.png) no-repeat;
	color: #fff;
}
@media (min-width: 768px) {
	.header .search-box .input-submit {
		position: absolute;
		right: 0;
		bottom: 20px;
	}
}
.header .search-box.search-xs {
	width: 100%;
	margin: 0;
	border-right: 30px solid transparent;
	border-left: 30px solid transparent;
	background: none;
}
@media (min-width: 1200px) {
	.header .search-box.search-xs {
		display: none;
	}
}
@media (max-width: 1199px) {
	.header .search-box.search-xs {
		position: absolute;
		z-index: 0;
		top: auto;
		right: 0;
		bottom: 0;
		bottom: 30px;
		display: inline-block;
		height: 34px;
	}
}
.header .search-box.search-xs.show {
	z-index: 66;
}
.header .search-box.search-xs.show .search {
	left: 0;
}
.header .search-box.search-xs .search {
	position: absolute;
	z-index: 888;
	top: 0;
	left: 120%;
	width: 100%;
	-webkit-transition: left .3s;
	transition: left .3s;
	border-color: #fff;
	background: #fff;
}
@media (max-width: 360px) {
	.header .search-box.search-xs form .input-text {
		width: 74%;
	}
}
@media (max-width: 767px) {
	.header .search-box.search-xs form .input-text {
		padding-left: 5%;
	}
}
.header .search-box.search-xs .input-submit {
	line-height: 34px;
	background: #fff;
}
.header .search-box.search-xs .input-submit:before {
	color: #104384;
}
.header .search-icon {
	position: absolute;
	z-index: 10;
	top: 18px;
	left: 15px;
	display: inline-block;
	display: none;
	cursor: pointer;
}
.header .search-icon:before {
	font-family: 'iconfont' !important;
	font-size: 18px;
	content: '\e660';
	color: #8cc63f;
}
.header .search-lg {
	top: 0;
}
.header .search-lg .logo {
	margin-top: 20px;
	margin-left: 0;
}
.header .search-lg .search {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	width: 90%;
	max-width: 800px;
	margin: auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
}
.header .search-lg .search p {
	margin-bottom: 50px;
	-webkit-animation: zoomIn 1s 0s ease both;
	animation: zoomIn 1s 0s ease both;
	text-align: center;
	letter-spacing: 2px;
	color: #fff;
	display: none;
}
.header .search-lg .input-text {
	font-size: 16px;
	line-height: 30px;
	width: 80%;
	height: 60px;
	padding: 0 10px;
	padding-bottom: 20px;
	-webkit-animation: zoomIn 1s 0s ease both;
	animation: zoomIn 1s 0s ease both;
	color: #fff;
}
.header .search-lg input::-webkit-input-placeholder,
.header .search-lg textarea::-webkit-input-placeholder {
	color: #fff;
}
.header .search-lg input:-o-placeholder,
.header .search-lg textarea:-o-placeholder {
	color: #fff;
}
.header .search-lg input::-moz-placeholder,
.header .search-lg textarea::-moz-placeholder {
	color: #fff;
}
.header .search-lg input:-ms-input-placeholder,
.header .search-lg textarea:-ms-input-placeholder {
	color: #fff;
}
.header .search-lg input:focus::-webkit-input-placeholder,
.header .search-lg textarea:focus::-webkit-input-placeholder {
	color: #fff;
}
.header .search-lg input:focus::-o-placeholder,
.header .search-lg textarea:focus::-o-placeholder {
	color: #fff;
}
.header .search-lg input:focus::-moz-placeholder,
.header .search-lg textarea:focus::-moz-placeholder {
	color: #fff;
}
.header .search-lg input:focus::-ms-input-placeholder,
.header .search-lg textarea:focus::-ms-input-placeholder {
	color: #fff;
}
.header .search-lg .close-btn {
	position: fixed;
	top: 34px;
	right: 18%;
	cursor: pointer;
}
@media (max-width: 1440px) {
	.header .search-lg .close-btn {
		right: 8%;
	}
}
.header .search-lg .close-btn:before {
	font-size: 20px;
	content: '\2716';
	color: #fff;
}
/*搜索弹窗end*/
	.header .block{
		display: block;
	}
	.header .none{
		display: none;
	}
	.header.fixed-header .block{
		display: none;
	}
	.header.fixed-header .none{
		display: block;
		
	}
	
	.header .find .block{
		display: block;
	}
	.header .find .none{
		display: none;
	}
	
	.header.fixed-header .find .block{
		display: none;
	}
	.header.fixed-header .find .none{
		display: block;
	}
/*heart end*/
.pc-menu{
	float: right;
	margin-top: 24px;
	width: 32px;
	height: 22px;
	cursor: pointer;
	background: url(../images/menu.png) center no-repeat;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s; 
	-o-transition: all 0.3s ease-out 0s; 
	transition: all 0.3s ease-out 0s;
	
}
.pc-menu.click{
	background-image: url(../images/x.png);
}
.header.fixed-header .pc-menu.click{
	/* background-image: url(../images/x-on.png); */
}
.pc-menu > span{
	display: block;
	float: right;
	width: 54px;
	height: 47px;
	background: url(../images/menu.jpg) no-repeat;
	cursor: pointer;
}
@media (max-width: 1199px) {
	.pc-menu{
		display: none;
	}
}
.pcMenu-list{
	float: left;
	width: 100%;
	padding-left: 12.5%;
}
.pcMenu-list ul{
	float: left;
	width: 100%;
}
.pcMenu-list ul li{
	float: left;
	width: 20%;
	padding-top: 326px;
	position: relative;
}
.pcMenu-list ul li::after{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 960px;
	height: 960px;
	margin-left: -50px;
	background: url(../images/menu-nav-bg.jpg) no-repeat;
	content: "";
	z-index: -1;
	display: none;
}
.pcMenu-list ul li:hover::after{
	display: block;
}
.pcMenu-list ul li a{
	float: left;
	width: 100%;
	text-align: center;
	font-size: 30px;
	padding-top: 100px;
	border-top: 1px solid rgba(255,255,255,0.3);
	color: rgba(255,255,255,0.3);
}
.pcMenu-list ul li:hover a{
	border-top-color: rgba(255,255,255,1);
}
.pcMenu-list ul li:hover a{
	color: #fff;
}
.head-nav-top{
	float: left;
	width: 100%;
}
.head-nav{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #010000;
	background-position: bottom center;
	background-repeat: no-repeat;
	opacity: 0;
	z-index: -1;
	/* -webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s; 
	-o-transition: all 0.3s ease-out 0s; 
	transition: all 0.3s ease-out 0s; */
}
.head-nav-bot{
	float: left;
	width: 100%;
	height: 136px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: url(../images/nav-bot.png) no-repeat;
	background-size: 100% auto;
	z-index: 1000;
}
.closes{
	float: right;
	cursor: pointer;
	top: 85px;
	right: 6.25%;
	position: absolute;
}
.head-nav-logo{
	float: left;
	margin-top: 88px;
	margin-left: 6.25%;
}
/*底部*/
.foot-tel{
	display: none;
}
@media (max-width: 767px) {
	.foot-tel{
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		background: #13283a;
		background: #008ed5;
		width: 100%;
		z-index: 999;
	}	
	.foot-tel a{
		display: block;
		float: left;
		width: 33.3333%;
		line-height: 50px;
		color: #fff;
		border-right: 1px solid #fff;
		text-align: center;
	}
}	
/**
 * page
 */
.page {
	float: left;
	width: 100%;
	clear: both;
	overflow: hidden;
	margin-top: 65px;
	text-align: center;
	font-family: 'centurygothic';
}
.page a {
	font-size: 16px;
	line-height: 44px;
	display: inline-block;
	overflow: hidden;
	/* padding: 0 14px; */
	width: 46px;
	height: 46px;
	margin: 0 5px;
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
	text-align: center;
	border-radius: 50%;
	color: #e4e2e2;
	/* background: #ccc; */
	border: 1px solid #eee;
}
.page a.prev {
	background: url("../images/left1.png") center no-repeat;
}
.page a.next {
	background: url("../images/right1.png") center no-repeat;
}
.page a.prev:hover {
	background: #fff url("../images/left1-on.png") center no-repeat;
}
.page a.next:hover {
	background: #fff url("../images/right1-on.png") center no-repeat;
}
@media (max-width: 1440px) {
	.page{
		margin-top: 60px;
	}
}
@media (max-width: 1199px) {
	.page{
		margin-top: 40px;
	}
	.page a {
		margin: 0 6px;
		height: 54px;
		line-height: 54px;
		width: 54px;
	}
}
@media (max-width: 991px) {
	.page{
		margin-top: 30px;
	}
	.page a {
		height: 40px;
		line-height: 40px;
		width: 40px;
	}
}
@media (max-width: 767px) {
	.page {
		margin-top: 30px;
	}
	.page a.prev {
		background-size: 7px auto;
	}
	.page a.next {
		background-size: 7px auto;
	}	
	.page a {
		height: 40px;
		line-height: 40px;
		width: 40px;
		margin: 0 2px;
	}
}
.page a.omit:hover {
	color: #fff;
	/* background-color: #eee; */
}
.page a.prev {
	
}
.page a.prev:after {
	/*font-family: 'iconfont' !important;*/
	/*content: '\e601';*/
}
.page a.next {
	
}
.page a.next:before {
	/*font-family: 'iconfont' !important;*/
	/*content: '\e827';*/
}
.page a.active,
.page a:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: #fff;
}
.page.page1 a.active,
.page.page1 a:hover {
	background-color: #fff;
	border: 1px solid #fff;
}
@media (max-width: 1024px) {
	.page a {
		font-size: 14px;
	}
	.page a.prev,
	.page a.next {
		margin: 0 5px;
	}
	.page a:prev {
		background-size: 7px auto;
	}
	.page a:next {
		background-size: 7px auto;
	}
}
.title{
	float: left;
	width: 100%;
	text-align: center;
	color: #040000;
	font-family: 'CenturyGothic-Bold';
	text-transform: uppercase;
}
.title .title-e {
	font-size: 60px;
	font-family:"DINbold";
}
.title .title-c {
	font-size: 40px;
	margin-top: 16px;
}
@media (max-width: 1440px) {
	.title .title-e {
		font-size: 40px;
	}
	.title .title-c {
		font-size: 24px;
		margin-top: 12px;
	}
}
@media (max-width: 1199px) {
	.title .title-e {
		font-size: 36px;
	}
	.title .title-c {
		font-size: 18px;
		margin-top: 8px;
	}
}
@media (max-width: 767px) {
	.title .title-e {
		font-size: 24px;
	}
	.title .title-c {
		font-size: 16px;
		margin-top: 6px;
	}
}
.banner-pic{
	float: left;
	width: 100%;
	font-size: 0;
	-webkit-transition: all 2s ease-out 0s;
	-moz-transition: all 2s ease-out 0s; 
	-o-transition: all 2s ease-out 0s; 
	transition: all 2s ease-out 0s;
}
.banner-pic video{
    width: 100%;
}
/*banner*/
.banner {
	float: left;
	font-size: 0;
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-bottom: 20px;
}
@keyframes blue{
	0% { 
		-webkit-transform: scale(1.1);
		-mos-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% { 
		-webkit-transform: scale(1);
		-mos-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}
.banner .slick-current .item .img-box > img{
	animation: blue 3s 0s ease both;
}
.banner .slick-arrow {
	position: absolute;
	bottom: 65px;
	left: 6.25%;
	width: 60px;
	height: 60px;
	z-index: 99;
	background-color: rgba(0,0,0,0);!important;
	background-repeat: no-repeat!important;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s; 
	-o-transition: all 0.3s ease-out 0s; 
	transition: all 0.3s ease-out 0s;
}
/* .banner .slick-arrow.slick-prev{
	background-image: url(../images/left.png);
}
.banner .slick-arrow.slick-prev:hover{
	background-image: url(../images/left-on.png);
}
.banner .slick-arrow.slick-next{
	left: auto;
	right: 6.25%;
	background-image: url(../images/right.png);
}
.banner .slick-arrow.slick-next:hover{
	background-image: url(../images/right-on.png);
} */
.banner .item .img-box img {
	display: block;
	width: 100%;
	/* filter: grayscale(100%);
	filter: gray; */
	-webkit-transition: all 3s ease-out 0s;
	-moz-transition: all 3s ease-out 0s; 
	-o-transition: all 3s ease-out 0s; 
	transition: all 3s ease-out 0s;
}
.banner .item:hover .img-box img {
	/* filter: grayscale(0%);
	filter: initial; */
}
.banner .img-box {
	padding-bottom: 56.25%;
	padding-bottom: 49.6875%;
}
.banner .img-box.pc{
	display: block;
}
.banner .img-box.ph{
	display: none;
}
.banner .video-js{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%!important;
	height: 100%!important;
	background: none;
}
.banner .vjs-poster{
	background: none;
}
.banner .slick-slide.slick-current.slick-active .img-box{
	width: 100%;
}
.banner .slick-dots,
.banner .to-num{
    position: absolute;
	right: 160px;
	font-family: 'CenturyGothic-Bold';
	font-size: 38px;
    top: 50%;
    -webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.banner .slick-dots{
    width: 74px;
    font-size: 0;
}
.banner .to-num{
    display: none;
    margin-top: -52px;
    color: #fff;
}
.banner .to-num::before{
	
	content: "0";
}
.banner .slick-dots li{
    float: right;
    width: 38px;
    height: 4px;
    margin: 7px 0;
    background: #fff;
		cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s; 
	-o-transition: all 0.3s ease-out 0s; 
	transition: all 0.3s ease-out 0s;
}
.banner .slick-dots li.slick-active{
    width: 74px;
}
.banner .slick-dots li button{
	background-color: rgba(0,0,0,0)!important;
    font-size: 38px;
    color: #fff;
    position: absolute;
    top: -64px;
    right: 0;
    opacity: 0;
}
.banner .slick-dots li button::before{
    content: "0";
}
.banner .slick-dots li.slick-active button{
	opacity: 1;
}
.banner .text {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	z-index: 9999999;
	color: #fff;

}

.banner .text .h2,
.banner .text .h3{
	margin-top: 28px;
}

.banner .text .h1,.banner .text .h2{
margin-left: auto;margin-right: auto;display: block;
}
.bannertxt2{}
.text .bannertxt2  .h1,.text .bannertxt2 .h2{margin-left:initial;margin-right: initial;}
.text .bannertxt2  .h1{margin-left:12.5%;}
.text .bannertxt2  .h2{margin-left:20.8125%;}

.banner .slick-current .text .p1{
	animation: fadeIn 1s 0s ease both;
}
.banner .slick-current .text h1, 
.banner .slick-current .text h2, 
.banner .slick-current .text h3, 
.banner .slick-current .text h4,
.banner .slick-current .text .text-p1,
.banner .slick-current .text .text-p2,
.banner .slick-current .text .text-p3,
.banner .slick-current .text .text-p4,
.banner .slick-current .text .text-p5,
.banner .slick-current .text .text-p6{
    animation: fadeInUp 1s 0s ease both;
}
.right-fixed{ width: 70px;  position: fixed; top: 50%; margin-top: -248px; right: 0; z-index: 999;  height: 497px; /* display: none!important;   */}
.right-fixed ul { width: 100%; zoom:1;}
.right-fixed li {  position: relative;  width: 70px; height: 70px;  float: right;  line-height: 70px; border-bottom: 1px solid #fff;  background: #00508f; transition: width .3s, background .3s, margin .3s;}
.right-fixed li.right-fixed1 {width: 230px;  margin-right: -160px; }
.right-fixed li.right-fixed2{ width: 230px; margin-right: -160px; }
.right-fixed li.right-fixed3{ width: 230px; margin-right: -160px; }
.right-fixed li.right-fixed4{ width: 230px; margin-right: -160px; }
.right-fixed li.right-fixed5{ width: 230px; margin-right: -160px; }
.right-fixed li.right-fixed6{ width: 230px; margin-right: -160px; }
.right-fixed li.top{ background:#333; }
.right-fixed li a { display: block;  width: 100%;  height: 100%;}
.right-fixed li .ico { width: 70px; height: 70px; position: absolute;  top: 0;  left: 0;  transition: left .3s;}
.right-fixed li.right-fixed1 .ico, .right-fixed li.right-fixed2 .ico ,.right-fixed li.right-fixed3 .ico,
.right-fixed li.right-fixed4 .ico, .right-fixed li.right-fixed5 .ico ,.right-fixed li.right-fixed6 .ico,
{left: 0;}
.right-fixed li .ico.ico01 {background: url(../htjyimgs/right_fixed_wx.png) no-repeat center;background-size:35px;}
.right-fixed li .ico.ico02 {background: url(../htjyimgs/right_fixed_sph.png) no-repeat center;background-size:35px;}
.right-fixed li .ico.ico03 {background: url(../htjyimgs/right_fixed_dy.png) no-repeat center;background-size:35px;}
.right-fixed li .ico.ico04 {background: url(../htjyimgs/right_fixed_dh.png) no-repeat center;background-size:35px;}
.right-fixed li .ico.ico05 {background: url(../htjyimgs/right_fixed_fh.png) no-repeat center;background-size:35px;}
.right-fixed li p {
    font-size: 15px;
    color: #fff;
    line-height: 70px;
    padding: 0 20px;
    transition: transform .3s;
}
.right-fixed li.right-fixed1 p, .right-fixed li.right-fixed2 p , .right-fixed li.right-fixed3 p,
.right-fixed li.right-fixed4 p, .right-fixed li.right-fixed6 p
{
    padding: 0 20px 0 70px;
}
.right-fixed li.right-fixed5 p{ padding:0 0 0 70px; }
.right-fixed li:hover {  background: #17a90b;}
.right-fixed li.right-fixed1:hover {margin-right: 0;width: 230px;}
.right-fixed li.right-fixed2:hover {margin-right: 0;width: 230px;}
.right-fixed li.right-fixed3:hover {margin-right: 0;width: 230px;}
.right-fixed li.right-fixed4:hover {margin-right: 0;width: 230px;}
.right-fixed li.right-fixed5:hover {margin-right: 0;width: 230px; background: #17a90b}
.right-fixed li.right-fixed5:hover p{ width: 160px; height:160px; border:1px solid #ccc; padding:0; background: #fff; padding-left: 0;}
.right-fixed li.right-fixed5:hover p img{ display: block; width: 100%; }
.right-fixed li.right-fixed6:hover {margin-right: 0;width: 230px;}
.right-fixed li.right-fixed1:hover .ico{right: 0;left: auto;}
.right-fixed li.right-fixed2:hover .ico{right: 0;left: auto;}
.right-fixed li.right-fixed3:hover .ico{right: 0;left: auto;}
.right-fixed li.right-fixed4:hover .ico{right: 0;left: auto;}
.right-fixed li.right-fixed5:hover .ico{right: 0;left: auto;}
.right-fixed li.right-fixed6:hover .ico{right: 0;left: auto;}
.right-fixed li.right-fixed1:hover p,.right-fixed li.right-fixed2:hover p,
.right-fixed li.right-fixed3:hover p,.right-fixed li.right-fixed4:hover p,.right-fixed li.right-fixed6:hover p{ padding: 0 20px; }

.footshare{margin-bottom:25px;}
.footshare dt{
    font-size: 18px;
    color: #fff;font-weight:normal;
}
.footshare dd{margin-top:15px;}
.footshare{position: relative;float: none!important;clear: both;padding-top:60px;}
.footshare a{display: block;width:48px;height:48px;float: left;margin-right: 34px;background-size:48px!important;}
.footshare a:last-of-type{margin-right:0px;}
.footwx{position: absolute;left:0px;top:121px;display: none;z-index: 99;}
.footshare2a{left:75px;}
.footshare3a{left:150px;}
.footshare4a{left:225px;}
.footshare5a{left:300px;}
.footshare6a{left:375px;}
.footshare7a{left:450px;}
.footwx.hover{display: block;}
.hotline{font-size:25px;color:#fff;line-height: 40px;}







@media (max-width: 1440px) {
    	 .head-right{line-height:100px;}
	.banner .slick-dots, .banner .to-num{
		right: 100px;
	}
	.banner .text .h2,
	.banner .text .h3{
		margin-top: 20px;
	}
	.banner .text .h1{
		height: 40px;width: auto;
	}
	.banner .text .h2{
	   height: auto;width:200px;
		padding-bottom: 20px;
	}
	.banner .item3 .text .h2{width:800px;height:auto;}

}
@media (max-width: 1199px) {
	.banner .img-box.pc{
		display: none;
	}
	.banner .img-box.ph{
		display: block;
	}
	.banner .img-box{
		padding-bottom: 100%;
	}
	.banner .text .h2,
	.banner .text .h3{
		margin-top: 15px;
	}
	.banner .text .h1{
		font-size: 48px;
	}
	.banner .text .h2{
		font-size: 24px;
		padding-bottom: 15px;
	}

}
@media (max-width: 991px) {
	.banner{

		
	}
	.header .find{position:absolute;right:60px;}
	.banner .text,.wx{
	 display: none;
	}
	.header .logo{margin-top:20px;}
	.banner .img-box{
		padding-bottom: 100%;
	}
	.banner .img-box.pc{
		display: none;
	}
	.banner .img-box.phone{
		display: block;
	}
	.i-sty .i-sty-p{height:48px!important;right:10%!important;top:10%!important;}
	.i-sty .i-sty-e{font-size:16px!important;top:110px!important;right:10%!important;}
	.i-sty .i-sty-a a{font-size:18px!important;width:150px!important;height:40px!important;line-height:40px!important;right:10%!important;bottom:30px!important;}
	.i-pro-d{margin-top:0px!important;}
	.i-pro-ul ul li .i-pro-img img{height:34px!important;}
.i-pro-d .slick-slide{padding:0px 0px 30px 0px!important;}
.i-pro-d{padding-bottom:40px!important;}
.i-pro-d .slick-arrow.slick-next{right:30%!important;}
.i-pro-d .slick-arrow.slick-prev{right:initial!important;left:30%!important;}
.i-dz-t i{width:20px!important;height:13px!important;}
.i-dz-t, .i-dz-e{font-size:16px!important;}
.i-dz-t i:before{height:18px!important;margin-top:-9px!important;}
.i-dz-t{top:50px!important;}
.i-dz-a{top:80px!important;width:80%!important;left:10%!important;}
.i-dz-a img{max-width:100%!important;width:100%!important;}
.i-dz-e{top:125px!important; width: 80%!important;margin-left:10%!important;}
.foot-tr a img{height:40px!important;}
.i-pro-d{width:94%;margin-left:3%!important;margin-right:3%!important;}
.header .logo img{height:31px!important;}	
}
@media (max-width: 767px) {
	.banner .text .h2,
	.banner .text .h3{
		margin-top: 10px;
	}
	.banner .text .h1{
		font-size: 24px;
	}
	.banner .text .h2{
		font-size: 18px;
		padding-bottom: 10px;
	}

	.banner .slick-dots, .banner .to-num{
		right: 30px;
	}
	.banner .slick-dots{
		width: 44px;
	}
	.banner .to-num{
		margin-top: -32px;
	}
	.banner .slick-dots li{
		width: 30px;
		height: 3px;
		margin: 4px 0;
	}
	.banner .slick-dots li.slick-active{
		width: 44px;
	}
	.banner .slick-dots li button{
		font-size: 24px;
		top: -34px;
	}
}
.banner.banner-in .img-box {
	padding-bottom: 0;
	height: auto;
}
.banner.banner-in .img-box img{
	position: relative;
	left: auto;
	top: auto;
}
.banner.banner-in .text{
	top: auto;
	bottom: 0;
	-webkit-transform: translateY(-0%);
	-ms-transform: translateY(-0%);
	-moz-transform: translateY(-0%);
	transform: translateY(-0%);
	background: url(../images/ban-bg.png) no-repeat;
}
.swiper-container {
	width: 100%;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
}
.swiper-slide {
	position: relative;
	/* float: left; */
	width: 100%;
	height: 100%;
	/* background-size: 100% 100%; */
	background-size: cover !important;
	overflow: hidden;
}
.swiper-container .box-footer {
	height: auto;
}
.swiper-slide2{
	height: auto;
}
.wrap-sidenav{
	height: 70px;
	box-shadow: 3px 0 3px rgba(0,0,0,0.1);
	position: relative;
	z-index: 1000;
}
.wrap-sidenav .sidenav{
    position: relative;
}
.wrap-sidenav .sidenav ul{
    font-size: 0;
    position: relative;
    position: absolute;
    left: 0;
    /* overflow: hidden; */
    white-space: nowrap;
	text-align: left;
}
.wrap-sidenav .sidenav ul li{
    display: inline-block;
}
.wrap-sidenav .sidenav ul li:last-child{
}
.wrap-sidenav .sidenav ul li > a{
	font-size: 22px;
	color: #333;
	line-height: 68px;
	position: relative;
	display: block;
	height: 70px;
	padding: 0 30px 0 30px;
	font-weight: bold;
	text-transform: uppercase;
}
.wrap-sidenav .sidenav ul li > a img{
	vertical-align: middle;
	padding-bottom: 3px;
	margin-right: 0px;
	max-width: none;
}
.wrap-sidenav .sidenav ul li > a .block{
	display: inline-block!important;
	padding-bottom: 3px;
}
.wrap-sidenav .sidenav ul li > a .hover{
	display: none!important;
	margin-right: 6px;
}
.wrap-sidenav .sidenav ul li.active > a,
.wrap-sidenav .sidenav ul li:hover > a{
	background: #fff;
	color: #fff;
}
.wrap-sidenav .sidenav ul li.active > a .block,
.wrap-sidenav .sidenav ul li:hover > a .block
{
    display: none!important;
}
.wrap-sidenav .sidenav ul li.active > a .hover,
.wrap-sidenav .sidenav ul li:hover > a .hover
{
	display: inline-block!important;
	padding-bottom: 3px;
}
.fixed-nav{
	position: fixed;
	width: 100%;
	top: 70px;
	background: #fff;
	z-index: 9992;
}
.wrap-sidenav.case-sidenav{
	float: left;
	width: 100%;
	height: 120px;
}
.wrap-sidenav.case-sidenav .sidenav ul li > a, 
.wrap-sidenav.case-sidenav .sidenav ul li > a{
	height: 120px;
	line-height: 118px;
}
.wrap-sidenav.case-sidenav .sidenav ul li.active > a, 
.wrap-sidenav.case-sidenav .sidenav ul li:hover > a{
	background: #008ed5;
	color: #fff;
}
@media (max-width: 1440px){
	.wrap-sidenav.case-sidenav{
		height: 100px;
	}
	.wrap-sidenav.case-sidenav .sidenav ul li a, 
	.wrap-sidenav.case-sidenav .sidenav ul li a{
		height: 100px;
		line-height: 98px;
	}
	.wrap-sidenav .sidenav ul li > a {
	    padding: 0 15px 0 15px;
			font-size: 18px;
	}

}
@media (max-width: 1199px){
	.wrap-sidenav.case-sidenav{
		height: 80px;
	}
	.wrap-sidenav.case-sidenav .sidenav ul li > a, 
	.wrap-sidenav.case-sidenav .sidenav ul li > a{
		height: 80px;
		line-height: 78px;
	}
    .wrap-sidenav .sidenav ul li:hover a:before
    {
        display: none;
    }
}
@media (max-width: 991px){
	.fixed-nav{
		top: 66px;
	}
	.wrap-sidenav .up {
	    padding-right: 24px;
	    line-height: 50px;
	    font-size: 14px;
	}
	.wrap-sidenav.fixed-nav .up{
		line-height: 40px;
	}
	
	.wrap-sidenav{
	    height: 50px;
	}
    .wrap-sidenav .sidenav ul li > a{
		height: 50px;
		line-height: 50px;
    }
	.wrap-sidenav .sidenav ul li > a img{
		width: 36px;
		margin-right: 6px;
	}
	.wrap-sidenav .sidenav ul li > a{
		font-size: 14px;
	}
	.fixed-nav.wrap-sidenav{
		height: 40px;
	}
	.fixed-nav.wrap-sidenav .sidenav ul li > a {
	    height: 40px;
	    line-height: 40px;
	}
}
@media (max-width: 767px){
	.wrap-sidenav .up{
		display: none;
	}
	.wrap-sidenav.fixed-nav .up{
		display: none;
	}
	.fixed-nav{
		top: 60px;
	}
	.wrap-sidenav{
    	height: 50px;
        margin-top: -0px;
    }
	.wrap-sidenav .sidenav ul li > a {
	    padding: 0 12px 0 12px;
	}
	.wrap-sidenav.case-sidenav{
		height: 60px;
	}
	.wrap-sidenav.case-sidenav .sidenav ul li > a, 
	.wrap-sidenav.case-sidenav .sidenav ul li > a{
		height: 60px;
		line-height: 58px;
	}
}
.add{
	font-family: 'AvantGardeITCbyBT-Book';
	position: absolute;
	right: 0;
	line-height: 70px;
	color: #9b9a9a;
	padding-left: 30px;
	background: url(../images/home.png) left center no-repeat;
}
.add a{
	font-size: 14px;
	margin: 0 4px;
	color: #9b9a9a;
}
.add a:hover,
.add a.active{
	color: #fff;
}
@media (max-width: 1680px){
	.add{
		right: 3%;
	}
}
@media (max-width: 1199px){
	.add{
		display: none;
	}
}
.i-sty {
	float: left;
	width: 50%;
	position: relative;
}
.i-sty img{width:100%;}
.i-sty:nth-of-type(1){padding-right: 10px;}
.i-sty:nth-of-type(2){padding-left: 10px;}
.i-sty .i-sty-txt{
	position: absolute;
	right:120px;
	top: 129px;
	color: #fff;
	
}
.i-sty .i-sty-e{
	font-size: 30px;
	font-family: 'SourceHanSansSC-Normal';
	letter-spacing: 11px;
	color: #000000;
	padding-bottom: 11px;
	position: absolute;right: 110px;top:224px;
}
.i-sty .i-sty-e:after{
    content:"";
    width:96%;
    height: 1px;
    background:#000000;
    position: absolute;
    bottom:0px;
    left: 0px;
}
.i-sty .i-sty-p{
height: 62px;width: auto;display: block;position: absolute;right:120px;top: 130px;
}
.i-sty .i-sty-p2{height:69px;}
.i-sty .i-sty-a a{
font-size:24px;color: #000000;height: 50px;line-height: 50px;border:solid 1px #000000;width: 230px;display: block;text-align: center;
border-radius:30px;position: absolute;bottom: 84px;right: 120px;
}
.i-sty .i-sty-a a:hover{background:#000;color:#fff;}	
.i-pro {
	padding: 80px 0 318px 0;
}
.i-pro-ul{
	float: left;
	width: 100%;
	margin-top: 86px;
}
.proindex{padding-bottom: 34px;}
.proindex:hover .i-pro-children{display: block;}
.i-pro-children{display:none;position: absolute;bottom:0px;width: 100%;}
.i-pro-children a{font-size: 16px;color:#999999;position:relative;padding-bottom: 5px;margin-right: 27px;}
.i-pro-children a:last-of-type{margin-right: 0px;}
.i-pro-children a:after{content:"";display: block;width:100%;height: 1px;background: #666666;position: absolute;position: absolute;bottom:0px;left:0px;width:0px;}
.i-pro-children a:hover{color:#333333;}
.i-pro-children a:hover:after{width:100%;}
.i-pro-ul ul li {
	width: 25%;
	float: left;
	color: #040000;
	position: relative;
	text-align: center;
	font-family: 'CenturyGothic-Bold';
	cursor: pointer;
}

.i-pro-ul ul li:last-child::after {
	display: none;
}	
.i-pro-ul ul li:hover .i-pro-img img{
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s; 
	-o-transition: all 0.3s ease-out 0s; 
	transition: all 0.3s ease-out 0s;
}
.i-pro-ul ul li:hover .i-pro-img img{
	-webkit-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.i-pro-ul ul li .i-pro-img img{
    height: 56px;width:auto;
}
.i-pro-ul ul li .i-pro-c{
	font-size: 30px;
	margin-top: 22px;
}
.i-pro-ul ul li .i-pro-e{
	font-size: 29px;
	margin-top: 10px;
	text-transform: uppercase;
	font-family: 'DINbold';
}
.i-pro-d{
	margin-top: 100px;
	position: relative;
	padding-bottom: 124px;
}
.i-pro-d .slick-slide{
	padding: 110px 28px 28px 28px;
	font-size: 0;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s; 
	-o-transition: all 0.3s ease-out 0s; 
	transition: all 0.3s ease-out 0s;
}
.i-pro-d .slick-slide.slick-active.slick-center{
	margin-top: -80px;
}
.i-pro-d .slick-slide.slick-active.slick-center > div > div{
	box-shadow: 8px 0 16px rgba(4, 0, 0, 0.2);
}
.i-pro-d .img-box{
	padding-bottom: 83.33333333333333%;
}
.i-pro-d .img-box img{
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s; 
	-o-transition: all 0.3s ease-out 0s; 
	transition: all 0.3s ease-out 0s;
}	
.i-pro-d .slick-slide:hover .img-box img{
	-webkit-transform: scale(1.1);
	-mos-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);	 
}
.i-pro-d .i-pro-txt{
	display: none;
	margin-top: -18px;
	position: relative;

	z-index: 2;
}
.i-pro-d .slick-slide.slick-active.slick-center .i-pro-txt{
	display: block;
}

.i-pro-d .i-pro-txt .i-pro-t a{
	color: #000;
}
.i-pro-d .i-pro-txt .i-pro-t img{
	margin-left: 15px;
	display: inline-block;
	vertical-align: middle;
}
.i-pro-d .i-pro-txt .i-pro-p{
	font-size: 18px;
	line-height: 28px;
	padding: 16px 26px 26px 26px;
	background: #676767;
	color:#cdd1d6;
}
.i-pro-d .i-pro-txt .i-pro-p .p1{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.i-pro-d .i-pro-txt .i-pro-p .p1 i{display:block;}
.i-pro-d .slick-arrow{
	width: 47px;
	height: 47px;
	border: 2px solid #000;
	background-color: #fff;
	border-radius: 100%;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 99;
}
.i-pro-d .slick-arrow:hover{
	background-color: #000;
}
.i-pro-d .slick-arrow.slick-next{
	right: 44.56%;
	background-image: url(../images/r1.png);
}
.i-pro-d .slick-arrow.slick-next:hover{
	background-image: url(../images/r1-on.png);
}
.i-pro-d .slick-arrow.slick-prev{
	left: 44.56%;
	background-image: url(../images/l1.png);
}
.i-pro-d .slick-arrow.slick-prev:hover{
	background-image: url(../images/l1-on.png);
}
.i-dz{
	position: relative;
}
.i-dz-t,.i-dz-e{font-size:28px;color:#000;  font-family: 'SourceHanSansSC-Normal';top:135px;position: absolute;text-align: center;width:100%;}
.i-dz-t i{display: inline-block;width:60px;position: relative;height:26px;}
.i-dz-t i:before{content:"";display: block;width:1px;height:26px;position: absolute;background:#000;left:50%;margin-left:-0.5px;top:50%;margin-top:-13px;}
.i-dz-a{position: absolute;top: 273px;width:100%;}
.i-dz-a img{margin-left: auto;margin-right: auto;display: block;}
.i-dz-e{top: 372px;}

.i-ab{}
.i-ab .i-ab-l{
	float: left;
	width: 50%;
}
.i-ab .i-ab-l img{
	width: 100%;
}
.i-ab .i-ab-r{
	float: left;
	width: 50%;
}
.i-ab .i-ab-r .i-ab-txt{
	float: left;
	width: 70.8%;
	margin-left: 8.8%;
	margin-top: 106px;
	color: #040000;
}
.i-ab .i-ab-r .i-ab-txt .i-ab-e{
	font-size: 64px;
		font-family: 'DINbold';
}
.i-ab .i-ab-r .i-ab-txt .i-ab-c{
	font-size: 40px;
	margin-top: 20px;
	 font-family: 'SourceHanSansSC-Normal'; 
	padding-bottom: 36px;
	position: relative;
}
.i-ab .i-ab-r .i-ab-txt .i-ab-c::after{
	width: 28px;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #000;
	content: "";
}
.i-ab .i-ab-r .i-ab-txt .i-ab-p{
	font-size: 18px;
	line-height: 2;
	margin-top: 32px;
}
.i-ab .i-ab-r .i-ab-txt .i-ab-a a{
	margin-top: 80px;
	line-height: 56px;
	border-radius: 28px;
	padding: 0 24px 0 36px;
	font-size: 20px;
	margin-right: 22px;
	color: #040000;
	border: 1px solid #000;
	display: inline-block;
}
.i-ab .i-ab-r .i-ab-txt .i-ab-a a:hover{
	opacity: 0.8;
}
.i-ab .i-ab-r .i-ab-txt .i-ab-a a:last-child{
	margin-right: 0;
}
.i-ab .i-ab-r .i-ab-txt .i-ab-a a img{
	margin-left: 14px;
	display: inline-block;
	vertical-align: middle;
}
.i-ab .i-ab-r .i-ab-txt .i-ab-a .iframe {
	display: none;
	width: 100% !important;
	height: 100% !important;
}
.i-his{
	position: relative;
}
.i-his-con{
	position: absolute;
	top: 116px;
	left: 0;
	width: 100%;
}
.i-his-con .title,
.i-his-con .i-his-slick{
	color: #000000;
}
.i-his-con .i-his-slick{
	margin-top: 190px;
	padding: 0 50px;
	position: relative;
	float: left;
	width: 100%;
}
.i-his-con .i-his-slick::after{
	position: absolute;
	top: 76px;
	left: 8%;
	width: 84%;
	border-bottom: 1px dashed #fff;
	content: "";
}
.i-his-con .i-his-slick .slick-slide{
	padding: 0 30px;
}
.i-his-year{
	font-size: 20px;
	position: relative;
}
.i-his-year span{
	font-size: 48px;
	margin-right: 10px;
	font-family: 'DINEngschriftStd';
}
.i-his-year::after{
	top: 58px;
	left: 30px;
	width: 35px;
	height: 35px;
	border-radius: 100%;
	border: 1px dashed #fff;
	position: absolute;
	/* -webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%); */
	content: "";
}
.i-his-year::before{
	top: 68px;
	left: 39px;
	width: 17px;
	height: 17px;
	border-radius: 100%;
	background: #fff;
	position: absolute;
	/* -webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%); */
	content: "";
}
.i-his-p{
	font-size: 20px;
	line-height: 32px;
	margin-top: 60px;
}
.i-his-con .i-his-slick .slick-arrow{
	top: 48px;
	width: 50px;
	height: 50px;
	border: 7px solid #fff;
	border-radius: 100%;
	background-repeat: no-repeat;
	position: absolute;
	background-color: rgba(0, 0, 0, 0);
	background-position: center;
}
.i-his-con .i-his-slick .slick-arrow.slick-prev{
	left: 0;
	background-image: url(../images/l2.png);
}
.i-his-con .i-his-slick .slick-arrow.slick-next{
	right: 0;
	background-image: url(../images/r2.png);
}
/*发展历程S*/
.cont .page2 {
  padding: 400px 0 7%;
  background: url(../htjyimgs/banner_history.jpg);
  background-size: cover;
  overflow: hidden;
}
.cont .page2 .title .text p {
  color: #634f44;
}
.cont .page2 .title .text span {
  color: #231815;
}
.cont .page2 .title .bg {
  width: 7.7%;
  opacity: 1;
}
.cont .page2 .sw_box {

  background-size: cover;
  height: 654px;
  position: relative;
}
.cont .page2 .sw_box .sw_btn {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #bc9480;
  transition: all 0.3s;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cont .page2 .sw_box .sw_btn:hover {
  background: #e3bca8;
}
.cont .page2 .sw_box .sw_btn svg {
  width: 30px;
  height: 30px;
  margin: 0!important;
}
.cont .page2 .sw_box .sw_btn.prev {
  left: 30px;
}
.cont .page2 .sw_box .sw_btn.next {
  right: 30px;
}
.cont .page2 .sw_box .sw_btn.swiper-button-disabled {
  background-color: #c2c3c7;
}
.cont .page2 .swiper-container {
  width: 85%;
  margin: 0 auto;
  height: 70%;
  box-sizing: content-box;
  padding: 5% 0 7%;
  transform: rotate(-7deg);
}
.cont .page2 .swiper-container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.cont .page2 .swiper-container .swiper-slide .txt {
  transform: rotate(7deg);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-top:15px;
}
.cont .page2 .swiper-container .swiper-slide .txt:hover {
  flex-direction: column-reverse;
}
.cont .page2 .swiper-container .swiper-slide .txt:hover p {
  font-size: 27px;
  font-weight: bold;
}
.cont .page2 .swiper-container .swiper-slide .txt:hover span {
  font-size: 27px;
}
.cont .page2 .swiper-container .swiper-slide p {
  font-size: 22px;
  display: block;
  color: #fff;
  transition: all 0.3s;
  white-space: nowrap;
}
.cont .page2 .swiper-container .swiper-slide span {
  font-size: 27px;
  display: block;
  font-family: 'Bank';
  color: #fff;
  transition: all 0.3s;
  white-space: nowrap;
}
.cont .page2 .swiper-container .swiper-slide:nth-child(2n) {
  align-items: flex-end;
}

/* 125% */
@media screen and (max-width: 1440px) {
  .cont .page2 .swiper-container .swiper-slide span {
    font-size: 24px;
  }
  .cont .page2 .swiper-container .swiper-slide p {
    font-size: 20px;
  }
  .cont .page2 .swiper-container .swiper-slide .txt:hover span,
  .cont .page2 .swiper-container .swiper-slide .txt:hover p {
    font-size: 40px;
  }
  .cont .page2 .sw_box .sw_btn {
    width: 50px;
    height: 50px;
  }
  .cont .page2 .sw_box .sw_btn svg {
    width: 25px;
    height: 25px;
  }
  .i-sty .i-sty-p{height:36px;top:80px;right:100px;}
  .i-sty .i-sty-e{right:88px;font-size:21px;top:140px;}
  .i-sty .i-sty-a a{font-size:18px;width:185px;height:40px;line-height:40px;right:88px;}
  .banner .slick-dots li{height:2px;}
  .i-pro-ul ul li .i-pro-img img{height:45px;}
}
@media screen and (max-width: 1280px) {
  .cont .page2 .sw_box {
    height: 500px;
  }
  .cont .page1 .des {
    width: 90%;
    margin: 0 auto;
  }
  .cont .page1 .des p br {
    display: none;
  }
  .cont .page1 .des p {
    line-height: 2;
  }
  .cont .page2 .sw_box .sw_btn {
    width: 40px;
    height: 40px;
  }
  .cont .page2 .sw_box .sw_btn svg {
    width: 20px;
    height: 20px;
  }
  .cont .page3 .sw_box .sw_btn {
    width: 40px;
    height: 40px;
  }
  .cont .page3 .sw_box .sw_btn svg {
    width: 20px;
    height: 20px;
  }
  .cont .page2 .swiper-container .swiper-slide span {
    font-size: 20px;
  }
  .cont .page2 .swiper-container .swiper-slide p {
    font-size: 16px;
  }
  .cont .page2 .swiper-container .swiper-slide .txt:hover span,
  .cont .page2 .swiper-container .swiper-slide .txt:hover p {
    font-size: 32px;
  }
}
/* 150 */
@media screen and (max-width: 998px) {
  .cont .page1 {
    padding: 50px 0;
  }
  .cont .page2 {
    padding: 50px 0!important;
  }
  .cont .title p::after {
    width: 50px;
    height: 2px;
  }
  .cont .title .bg {
    width: 20.39%;
  }
  .cont .page2 .title .bg {
    width: 20.5%;
  }

}
@media screen and (max-width: 768px) {
  .cont .page2 .sw_box {
    height: 400px;
  }
  .cont .page2 .swiper-container {
    height: 67%;
    padding: 12% 0 7%;
  }
  .cont .page2 .sw_box .sw_btn.prev {
    left: 10px;
  }
  .cont .page2 .sw_box .sw_btn.next {
    right: 10px;
  }
  .cont .page2 .sw_box .sw_btn {
    width: 30px;
    height: 30px;
  }
  .cont .page2 .sw_box .sw_btn svg {
    width: 15px;
    height: 15px;
  }
}
/*发展历程E*/
























.i-news{
	padding: 153px 0 200px 0;
}
.i-news-con{
	float: left;
	width: 100%;
	margin-top: 176px;
}
.i-news-con ul{} 
.i-news-con ul li{
	float: left;
	width: 31.25%;
	margin-right: 3.125%
}
.i-news-con ul li:last-of-type{margin-right:0px;}

.i-news-con ul li .img-box{
	padding-bottom: 128%;
}
.i-news-con ul li .img-box img{
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s; 
	-o-transition: all 0.3s ease-out 0s; 
	transition: all 0.3s ease-out 0s;
}	
.i-news-con ul li:hover .img-box img{
	-webkit-transform: scale(1.1);
  -mos-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);	 
}
.i-news-con ul li .img-box .i-news-time{
	left: 34px;
	bottom: 34px;
	position: absolute;
	color: #fff;
	text-align: center;
}
.i-news-con ul li .img-box .i-news-time .i-news-day{
	font-size: 64px;
	padding-bottom: 12px;
	position: relative;
	font-family: 'CenturyGothic-Bold';
}
.i-news-con ul li .img-box .i-news-time .i-news-day::after{
	width: 48px;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	content: "";
}
.i-news-con ul li .img-box .i-news-time .i-news-year{
	margin-top: 12px;
	font-size: 16px;
	font-family: 'CenturyGothic';
}
.i-news-con ul li .i-news-p{
	font-size: 24px;
	line-height: 36px;
	margin-top: 33px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.i-news-con ul li .i-news-p a{
	color: #000;
	font-weight: bold; font-family: 'SourceHanSansSC-Normal'; 
}
.i-news-con ul li .i-news-a{}
.i-news-con ul li .i-news-a a{
	width: 51px;
	height: 17px;
	margin-top: 30px;
	background: url(../htjyimgs/icon5.png) no-repeat;
	display: inline-block;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s; 
	-o-transition: all 0.3s ease-out 0s; 
	transition: all 0.3s ease-out 0s;
}
.i-news-con ul li .i-news-a a:hover{
	margin-left: 5px;
}
@media (max-width: 1680px){
	.i-ab .i-ab-r .i-ab-txt{
		margin-top: 86px;
	}
}
@media (max-width: 1440px){
   
    .cont .page2 .sw_box{height:450px;}
    .i-ab .i-ab-r .i-ab-txt .i-ab-a a img{max-width:24px;}
	.i-sty .i-sty-txt {
    left: 12%;
    bottom: 100px;
	}
	.i-sty .i-sty-txt .i-sty-e{
		font-size: 42px;
	}
	.i-sty .i-sty-txt .i-sty-p{
		margin-top: 14px;
		font-size: 20px;
	}
	.i-sty .i-sty-txt .i-sty-a a{
		margin-top: 20px;
		width: 28px;
		height: 28px;
	}
	.i-pro-ul{
		margin-top: 66px;
	}
	.i-pro-ul ul li .i-pro-c{
		font-size: 20px;
		margin-top: 18px;
	}
	.i-pro-ul ul li .i-pro-e{
		font-size: 18px;
		margin-top: 8px;
	}
	.i-pro-d .slick-slide {
    padding: 100px 18px 18px 18px;
	}
	.i-pro-d .i-pro-txt .i-pro-t {
    height: 44px;
    line-height: 44px;
    padding: 0 32px 0 20px;
    font-size: 20px;
	}
	.i-pro-d .i-pro-txt .i-pro-p {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 22px 22px 22px;
	}
	.i-pro-d .slick-slide.slick-active.slick-center {
    margin-top: -72px;
	}

.i-pro-d .i-pro-txt{margin-top:-11px;}
.i-pro-d{margin-top:60px;}
	.i-ab .i-ab-r .i-ab-txt {
		width: 80%;
    margin-left: 8%;
    margin-top: 45px;
	}
	.i-ab .i-ab-r .i-ab-txt .i-ab-e{
		font-size: 48px;
	}
	.i-ab .i-ab-r .i-ab-txt .i-ab-c{
		font-size: 24px;
		margin-top: 18px;
		padding-bottom: 24px;
	}
	.i-ab .i-ab-r .i-ab-txt .i-ab-c::after{
		width: 24px;
		height: 3px;
	}
	.i-ab .i-ab-r .i-ab-txt .i-ab-p{
		font-size: 16px;
		margin-top: 24px;
	}
	.i-ab .i-ab-r .i-ab-txt .i-ab-a a{
		margin-top: 30px;
		line-height: 40px;
		border-radius: 24px;
		padding: 0 20px 0 30px;
		font-size: 16px;
		margin-right: 18px;
	}
	.i-dz-a img{max-width:700px;}
	.i-dz-a{top:200px;}
	.i-dz-e{top:285px;}
	.i-dz-t, .i-dz-e{font-size:24px;}
	.i-pro{padding:80px 0px 100px;}
	.cont .page2{padding-top:210px;}
	.i-news-con{margin-top:94px;}
	.i-his-con .i-his-slick {
    margin-top: 120px;
	}
	.i-his-year{
		font-size: 18px;
	}
	.i-his-year span{
		font-size: 36px;
		margin-right: 8px;
	}
	.i-his-year::after{
		top: 46px;
		left: 22px;
		width: 28px;
		height: 28px;
	}
	.i-his-year::before{
		top: 53px;
		left: 29px;
		width: 14px;
		height: 14px;
	}
	.i-his-p{
		font-size: 16px;
		line-height: 30px;
		margin-top: 50px;
	}
	.i-his-con .i-his-slick::after {
    top: 60px;
    left: 9%;
    width: 82%;
	}
	.i-his-con .i-his-slick .slick-arrow {
    top: 36px;
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
		background-size: 12px auto;
	}
	.i-his-con{top:85px;}
	.i-news {
    padding: 94px 0 94px 0;
	}
	.i-news-con ul li .img-box .i-news-time{
		left: 28px;
		bottom: 28px;
	}
	.i-news-con ul li .img-box .i-news-time .i-news-day{
		font-size: 48px;
		padding-bottom: 10px;
	}
	.i-news-con ul li .img-box .i-news-time .i-news-day::after{
		width: 36px;
	}
	.i-news-con ul li .img-box .i-news-time .i-news-year{
		margin-top: 10px;
		font-size: 14px;
	}
	.i-news-con ul li .i-news-p{
		font-size: 18px;
		line-height: 32px;
		margin-top: 16px;
	}
	.i-news-con ul li .i-news-a a {
    margin-top: 20px;
	}
	.i-news-con ul li .i-news-a a{background-size:26px;}
}
@media (max-width: 1199px){
	.i-sty{
		margin-top:20px;
		    width: 94%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    float: none;
	}
	.banner{
		margin-bottom:0px;
		
	}
	.i-sty:nth-of-type(1){padding-right:0px;}
.i-sty:nth-of-type(2){padding-left:0px;}


	.i-ab .i-ab-l{
		display: none;
		width: 100%;
	}
	.i-ab .i-ab-r{
		width: 100%;
	}
	.i-ab .i-ab-r .i-ab-txt{
		margin-bottom: 66px;
	}
	.i-his-con{
		top: 86px;
	}
	.i-his-con .i-his-slick {
    margin-top: 60px;
	}
	.i-news {
    padding: 64px 0 94px 0;
	}

	.proindex{padding-bottom:55px;}
	.i-pro-children a{margin-right:0px;display:block;font-size:14px;}
	.i-pro-children a:nth-of-type(1){margin-bottom:5px;}
	.i-news-con{margin-top:70px;}
}
@media (max-width: 991px){
	.i-his:after{content:"";display: block;width: 100%;height:100%;position: absolute;bottom:0px;left:0px;height:100%;background:rgb(0 0 0 / 20%);}
	.i-his-con{z-index: 99;}
	.i-pro-d .i-pro-txt{
		display: block;
	}
	.i-pro {
    padding: 60px 0 68px 0;
	}
	.i-pro-d .slick-slide > div > div{
		box-shadow: 8px 0 16px rgba(4, 0, 0, 0.2);
	}
	.i-pro-d .slick-slide.slick-active.slick-center {
		margin-top: -0px;
	}
	.i-pro-d .slick-arrow.slick-next{
		right: 60px;
	}
	.i-pro-d .slick-arrow.slick-prev{
		right: 120px;
	}

	.i-dz-txt .i-dz-e{
		font-size: 14px;
		margin-top: 10px;
	}

	.i-dz-txt .i-dz-a{
		margin-top: 28px;
	}
	
	.i-his > img {
		max-width: 120%;
		margin-left: -10%;
	}

}
@media (max-width: 767px){
	.right-fixed li,.right-fixed li .ico{width: 45px;height: 45px;}
	.right-fixed li .ico.ico05,.right-fixed li .ico.ico04{background-size: 23px;}
	.right-fixed li .ico.ico01{background-size: 30px;}
    .right-fixed li.right-fixed5,.right-fixed li.right-fixed4{width: 45px;margin-right:0px;}
    .right-fixed li.right-fixed5:hover{width: 146px;}
    .right-fixed li.right-fixed5:hover p{width: 100px;height: 100px;}
    .right-fixed li p{line-height: 45px;}
    .right-fixed li.right-fixed4:hover{width: 183px;}
    .right-fixed{height: 150px;margin-top: -75px;}
	.i-sty .i-sty-txt {
		left: 8%;
		bottom: 40px;
	}
	.i-sty .i-sty-txt .i-sty-e{
		font-size: 24px;
	}
	.i-sty .i-sty-txt .i-sty-c{
		margin-top: 8px;
		font-size: 18px;
		padding-bottom: 12px;
	}

	.i-sty .i-sty-txt .i-sty-p{
		margin-top: 10px;
		font-size: 18px;
	}
	.i-sty .i-sty-txt .i-sty-a a{
		margin-top: 16px;
		width: 24px;
		height: 24px;
	}
	.i-pro {
    padding: 30px 0 30px 0;
	}

	.i-pro-ul ul li .i-pro-img img{
		height: 48px;
	}
	.i-pro-ul{
		margin-top: 30px;
	}
	.i-pro-ul ul li .i-pro-c{
		font-size: 16px;
		margin-top: 10px;
	}
	.i-pro-ul ul li .i-pro-e{
		font-size: 14px;
		margin-top: 6px;
	}
	.i-pro-d{
		margin-top: 30px;
	}
	.i-pro-d .slick-slide {
    padding: 50px 30px 30px 30px;
	}
	.i-pro-d .slick-arrow{
		width: 36px;
		height: 36px;
		background-size: 10px auto;
	}
	.i-pro-d .slick-arrow.slick-next{
		right: 30px;
	}
	.i-pro-d .slick-arrow.slick-prev{
		right: 80px;
	}

	.i-dz > img{
		max-width: 180%;
		margin-left: -40%;
	}


	.i-ab .i-ab-r .i-ab-txt {
    width: 100%;
    margin-left: 0%;
		padding: 0 5%;
    margin-top: 30px;
		margin-bottom: 30px;
	}
	.i-ab .i-ab-r .i-ab-txt .i-ab-e {
    font-size: 24px;
	}
	.i-ab .i-ab-r .i-ab-txt .i-ab-c {
    font-size: 18px;
    margin-top: 10px;
    padding-bottom: 12px;
	}
	.i-ab .i-ab-r .i-ab-txt .i-ab-p{
		font-size: 14px;
		margin-top: 10px;
	}
	.i-ab .i-ab-r .i-ab-txt .i-ab-a a {
    margin-top: 20px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 15px 0 20px;
    font-size: 14px;
    margin-right: 10px;
	}
	.i-ab .i-ab-r .i-ab-txt .i-ab-a a img {
    margin-left: 10px;
		height: 14px;
		margin-top: -3px;
	}
	.i-his-con {
    top: 40px;
	}
	.i-his-con .i-his-slick {
    margin-top: 40px;
	}
	.i-his > img {
    max-width: 180%;
    margin-left: -40%;
	}
	.i-his-con .i-his-slick .slick-slide {
    padding: 0 10px;
	}
	.i-his-p{
		font-size: 14px;
	}
	.i-his-year{
		font-size: 16px;
	}
	.i-his-year span{
		font-size: 24px;
		margin-right: 6px;
	}
	.i-his-con .i-his-slick::after {
    top: 50px;
	}
	.i-his-con .i-his-slick .slick-arrow {
    top: 36px;
    width: 30px;
    height: 30px;
    border: 3px solid #fff;
    background-size: 10px auto;
	}
	.i-his-year::after{
		top: 37px;
	}
	.i-his-year::before{
		top: 44px;
	}
	.i-news-con ul li{
		width: 100%;
		margin-right: 0%
	}
	.i-news-con ul li:nth-child(2){
		margin-top: 0px;
	}
	.i-news-con ul li:nth-child(3){
		margin-right: 0;
		margin-top: -0px;
	}
	.i-news {
    padding: 30px 0 30px 0;
	}
	.i-news-con{
		margin-top: 10px;
	}
	.i-news-con ul li{
		margin-top: 20px;
	}
	.i-news-con ul li:nth-child(2){
		margin-top: 20px;
	}
	.i-news-con ul li:nth-child(3){
		margin-top: 20px;
	}
	.i-news-con ul li .i-news-p{
		margin-top: 10px;
	}
	.i-news-con ul li .i-news-a a {
    margin-top: 10px;
	}
	.i-news-con ul li .i-news-p{
		font-size: 16px;
		line-height: 1.8;
	}
}
.footer{
	float: left;
	width: 100%;
	color: #fff;
	background: #000000;
}
.footer a{
	color: #ccc;
}
.foot-t{
	padding: 50px 0 92px 0;
	float: left;
	width: 100%;
	border-bottom: 1px solid #666;
}
.foot-tl{
	width: 72.375%;
	float: left;
}
.foot-tl ul li{
	float: left;
	width: 16.66%;
}
.foot-tl ul li .foot-tl-c{
	font-size: 30px;
	margin-top: 16px;
}

.foot-tl ul li .foot-tl-a{
	margin-top: 30px;
}
.foot-tl ul li .foot-tl-a a{
	font-size:26px;
	line-height: 2;
	display: block;
}
.foot-tl ul li .foot-tl-a a:hover{
	color: #fff;
}
.foot-tr{
	width: 18.625%;
	float: right;
}
.brandtop{display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
    flex-direction: row;}
.foot-tr a{
	display: block;
}
.foot-tr a:first-child{
	margin-top: 0;
}
.foot-d{
	font-size: 18px;
	padding: 36px 0 40px 0;
	float: left;
	width: 100%;
	color: #ccc;
	text-align: center;
}
.foot-d .a1{
	margin-left: 8px;
}
@media (max-width: 1440px){
	.foot-t {
    padding: 40px 0 72px 0;
	}
	.foot-tl ul li .foot-tl-c{
		font-size: 21px;
		margin-top: 12px;
	}
	.foot-tl ul li .foot-tl-e{
		font-size: 16px;
		height: 44px;
		line-height: 22px;
		margin-top: 8px;
	}
	.foot-tl ul li .foot-tl-a{
		margin-top: 20px;
	}
	.foot-tl ul li .foot-tl-a a{
		font-size: 16px;
	}
	.foot-d {
		font-size: 16px;
		padding: 28px 0 32px 0;	
	}
	.brandtop img{height:55px;}
	.footer a{margin-right:0px;}
	.footshare a{width:38px;height:38px;background-size:38px!important;}
	.hotline{font-size:16px;line-height: 27px;}
	.footshare{padding-top:30px;}
	.footwx{top:88px;}
}
@media (max-width: 1199px){
	.foot-tl,
	.foot-tr{
		width: 100%;
	}
	.foot-tr{
		text-align: center;
	}
	.foot-tr a {
		display: inline-block;
		margin: 20px 20px;
	}
	.footshare{display:none!important;}
	.brandtop{width:180px;margin-left:auto;margin-right:auto;}
	.hotline{font-size:17px;line-height:30px;}
	.foot-tr a:first-child{margin:20px;}
}
@media (max-width: 767px){
	.foot-tl{
		display: none;
	}
	.foot-tr a img{
		height: 60px;
	}
	.foot-t {
		padding: 30px 0 30px 0;
	}

	.foot-d {
    font-size: 14px;
    padding: 20px 0 20px 0;
	}
	.i-sty{border:solid 1px #dedede;clear:both;overflow:hidden;padding:10px;margin-top:30px;}
	.i-sty:nth-of-type(1) img{width:50%;float:left;}
	.i-sty:nth-of-type(2) img{width:50%;float:right;}
	.i-sty .i-sty-p{height:30px!important;top:15px!important;right:15px!important;width:auto!important;float:none!important;}
	.i-sty .i-sty-e{top:63px!important;letter-spacing:0px;right:15px!important;}
	.i-sty .i-sty-a a{font-size:14px!important;width:120px!important;height:30px!important;bottom:15px!important;line-height:30px!important;right:15px!important;}
	.i-sty:nth-of-type(2) .i-sty-p,.i-sty:nth-of-type(2) .i-sty-e,.i-sty:nth-of-type(2) .i-sty-a a{right:initial!important;left:15px;}
	
	.cont .page2 .sw_box{height:230px;}
	.cont .page2 .swiper-container .swiper-slide span{font-size:18px;}
	.i-news-con ul li{width:48.5%;margin-right:0px;}
	.i-news-con ul li:nth-of-type(even){float:right;}
	.i-news-con ul li:last-of-type{display:none;}
	.i-news-con ul li .img-box .i-news-time .i-news-day{font-size:39px;}
	

	
}
	.banner .img-box img,.banner .img-box{position:static;height:auto;}
	.banner .img-box{padding-bottom:0px;}