/**
 * style.css
 * 层叠样式表
 gz
 */
@charset "utf-8";
.header {
	position: fixed;
	z-index: 9993;
	top: 0;
	width: 100%;
	-webkit-transition: all .4s;
	transition: all .4s;
	box-shadow: 0 0 12px rgba(0,0,0,0.3);
	padding: 0 2.6%;
	background: #fff;
	font-weight: bold;
}
@media (max-width: 1199px) {
	.header {
		height: 100px;
	}
}
@media (max-width: 767px) {
	.header {
		height: 60px;
	}
}

.header .logo {
	float: left;
	position: relative;
	margin-top: 40px;
	-webkit-transition: all .4s;
	transition: all .4s;
	margin-right: 19%;
}
.header .logo a > img {
	float: left;
	display: 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;
}
.header .logo a > img.block{
	display: block;
}
.header .logo a > img.none{
	display: none;
}
.header .logo a {
	display: block;
	height: 100%;
}
.header.fixed-header .logo img.none,
.header.header-in .logo img.none
{
	display: block;
}
.header.fixed-header .logo img.block,
.header.header-in .logo img.block{
	display: none;
}

@media (max-width: 767px) {
	.header .logo{
		margin-top: 20px;
		margin-right: 0;
	}

}


.header .nav-collapse {
	position: relative;
	z-index: 10;
	display: none;
	float: right;
	width: 40px;
	height: 40px;
	margin-left: 20px;
	padding: 0;
	cursor: pointer;
	background: none;
}
@media (max-width: 1199px) {
	.header .nav-collapse {
		display: block;
		margin-top: 30px;
		margin-left: 0;
		left: 50%;
		position: absolute;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.header.fixed-header .nav-collapse,
	.header.header-in .nav-collapse{
	}
	.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;
		margin-top: 0;
		margin-left: 0;
		border: none;
		left: auto;
		right: 5%;
    -webkit-transform: translateX(-0%);
    -ms-transform: translateX(-0%);
    -moz-transform: translateX(-0%);
    transform: translateX(-0%);
	}
	.header.fixed-header .nav-collapse,
	.header.header-in .nav-collapse{
		margin-top: 0px;
	}
}
@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: 32px;
	height: 3px;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #1472b5;
}

.header .nav-collapse .btn-line:nth-child(3),
.header .nav-collapse .btn-line:nth-child(1) {
	position: absolute;
	display: block;
	width: 32px;
	height: 3px;
	content: '';
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	background-color: #1472b5;
}
.header.fixed-header .nav-collapse .btn-line,
.header.header-in .nav-collapse .btn-line {
	background-color: #1472b5;
}
.header.fixed-header .nav-collapse .btn-line:nth-child(3),
.header.fixed-header .nav-collapse .btn-line:nth-child(1),
.header.header-in .nav-collapse .btn-line:nth-child(3),
.header.header-in .nav-collapse .btn-line:nth-child(1) 
{
	background-color: #1472b5;
}
.header .nav-collapse .btn-line:nth-child(1) {
	top: 25%;
}
.header .nav-collapse .btn-line:nth-child(2) {
	top: 50%;
}
.header .nav-collapse .btn-line:nth-child(3) {
	top: 75%;
}
.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;

}
@media (min-width: 1200px) {
	.header .nav {
		-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;
	}
	.header.fixed-header .nav,
	.header.header-in .nav{
		margin-top: 0;
	}
}
@media (max-width: 1440px) {
	.header .nav{
	}
}
@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(20, 114, 181, .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{
	}
	.header .nav .nav-list1>li {
		float: left;
		/* position: relative; */
		margin: 0 1px;
	}
	.header .nav .nav-list1>li:last-child::after{
		display: none;
	}
	.header .nav .nav-list1>li>a {
		line-height: 100px;
		padding: 0 35px;
		font-size: 18px;
		position: relative;
		z-index: 2;
		display: inline-block;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	.header .nav .nav-list1>li>a:before {
		
	}
	.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 {
		
	}
	.header .nav .nav-list1>li:hover>a,
	.header .nav .nav-list1>li.active>a {
		color: #1472b5;
	}
	.header .nav .nav-list1>li:hover>a:before,
	.header .nav .nav-list1>li.active>a:before {
		display: none;
	}
	.header .nav .nav-list1 .nav-list2 {
		position: absolute;
		z-index: 50;
		top: 100%;
		display: none;
		left: 50%;
		-webkit-transform: translateX(-50%);
   -ms-transform: translateX(50%);
   -moz-transform: translateX(-50%);
   transform: translateX(-50%);
		width: 1600px;
		text-align: center;
		color: #fff;
		background-color: #1472b5;
		/* background: #fff; */
		/* box-shadow: 5px 0 10px rgba(0,0,0,0.15); */
	}
	.header .nav .nav-list1>li>a {
		line-height: 100px;
	}
	
}

@media (max-width: 1440px) {
	
}

@media (max-width: 1366px) {
	
}

@media (max-width: 1199px) {

}
.header .nav .nav-list1 .navbg{
	position: absolute;
	top: 120px;
	left: 50%;
	-webkit-transform: translateX(-50%);
   -ms-transform: translateX(50%);
   -moz-transform: translateX(-50%);
   transform: translateX(-50%);
	display: none;
	width: 1600px;
	height: 100%;

}
.header.fixed-header .nav .nav-list1 .navbg,
.header.header-in .nav .nav-list1 .navbg{
	top: 100px;
}
.header .nav .nav-list1 .navbg .info
{
	width: 100%;
	border-top: 1px solid #e5e5e5;
	background-color: #1472b5;
}
.header .nav .nav-list1 .navbg.bg .info{
}

@media (max-width: 1600px) {
	.header .nav .nav-list1>li>a {
		padding: 0 25px;
	}
}
@media (max-width: 1440px) {
	.header .nav .nav-list1>li>a {
		padding: 0 18px;
	}
}
@media (max-width: 1366px) {
	
}
@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;
	}
}
@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: #fafafa;
		background-color: rgba(20, 114, 181, .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;
	display: none;
}
.header .nav-2 .content ul li a span .block{
	display: none;
}
.header .nav-2 .content ul li a span .none{
	display: inline-block;
	vertical-align: middle;
	padding-bottom: 3px;
	margin-right: 5px;
}
.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: 12%;
}
@media (max-width: 767px) {
	.header .nav-2 .content ul,
	.header .nav-3 .content ul {
		padding: 0 15px;
	}
}
.header .nav-2 .content ul li,
.header .nav-3 .content ul li {
	display: inline-block;
	width: 100%;
	font-size: 22px;
	line-height: 2.5;
	margin: 25px 0;
	text-align: center;
}
.header .nav-2 .content ul li a,
.header .nav-3 .content ul li a{
	color: #fff;
}
@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.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;
}
@media (min-width: 1200px) {
	.header.fixed-header,
	.header.header-in {
		box-shadow: 0 0 5px #bbb;
	}
}
.header.fixed-header,
.header.header-in {
	/* height: 100px; */
	box-shadow: 0 0 5px #bbb;
}
.header.fixed-header .logo,
.header.header-in .logo{
}
/* .header.fixed-header .logo span,
.header.header-in .logo span{
	display: none;
} */
.header.header-in .nav .nav-list1>li>a,
.header.fixed-header .nav .nav-list1>li>a
{
  margin-top: 0px;
}
.header.fixed-header .nav .nav-list1>li:hover>a, 
.header.fixed-header .nav .nav-list1>li.active>a,
.header.header-in .nav .nav-list1>li:hover>a, 
.header.header-in .nav .nav-list1>li.active>a
{
}
.header.fixed-header .i-ico,
.header.header-in .i-ico{
	margin-top: 23px;
}
.header.fixed-header .find,
.header.header-in .find {
}
@media (max-width: 1199px) {
	.header.header-in .nav .nav-list1>li>a,
	.header.fixed-header .nav .nav-list1>li>a{
		color: #fff;
	}
}
@media (max-width: 767px) {
	.header.fixed-header .logo, 
	.header.header-in .logo {
	}
	.header.fixed-header,
	.header.header-in{
	}
}

.ico-right{
	float: right;
	margin-top: 40px;
	-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;
}
.ico-right a{
	float: left;
	font-size: 0;
	margin-left: 54px;
	position: relative;
}
.ico-right a::after{
	position: absolute;
	left: -36px;
	top: 50%;
	transform: translateY(50%);
	width: 20px;
	height: 1px;
	background: #cacaca;
	content: "";
}
.ico-right a:first-child{
	margin-left: 0px;
}
.ico-right a:first-child::after{
	display: none;
}
.ico-right a .block{
	display: inline-block;
}
.ico-right a .on{
	display: none;
}
.ico-right a:hover .block{
	display: none;
}
.ico-right a:hover .on{
	display: inline-block;
}


@media (max-width: 991px){
	.ico-right a{
		margin-left: 34px;
	}
	.ico-right a::after{
		left: -24px;
		width: 10px;
	}
}
@media (max-width: 767px){
	.ico-right{
		display: none;
	}
	.ico-right a img{
		height: 20px;
	}

}

/*heart end*/

.add{
	float: right;
	line-height: 80px;
	font-size: 18px;
	padding-left: 32px;
	background: url(../images/about/ico.png) left center no-repeat;
	color: #fff;
	position: relative;
}
.add a{
	color: #fff;	
}
@media (max-width: 1600px){
	.add{
		line-height: 70px;
		font-size: 16px;
	}
}
@media (max-width: 1199px){
	.add{
		display: none;
	}
}



/*banner*/
.banner {
	float: left;
	font-size: 0;
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-top: 100px;
}
.banner .slick-arrow {
	width: 44px;
	height: 11px;
	position: absolute;
	bottom: 90px;
	z-index: 9;
	padding: 0;
	cursor: pointer;
	opacity: 1;
	background-size: 100% 100%!important;
}
.banner .slick-arrow.slick-prev{
	left: 114px;
	background: url(../images/left.png) center no-repeat;
}
.banner .slick-arrow.slick-next{
	left: 294px;
	background: url(../images/right.png) center no-repeat;
}

.banner img {
	display: block;
	width: 100%;
}
.banner .img-box {
	padding-bottom: 44.27083333333333%;
}
.banner .img-box.pc{
	display: block;
}
.banner .img-box.ph{
	display: none;
}

.banner .img-box .video-js{
	position: absolute;
	width: 100%;
	height: 100%;
}
.banner .img-box .video-js .vjs-tech{
	width: 102%;
	height: 102%;
	top: -1%;
	left: -1%;
}

.banner .slick-dots{
	position: absolute;
	left: 50%;
	bottom: 48px;
	text-align: center;
	-webkit-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   -moz-transform: translateX(-50%);
   transform: translateX(-50%);
	 text-align: center;
}
.banner .slick-dots li{
	display: inline-block;
	width: 16px;
	height: 4px;
	margin: 0 10px;
	border-radius: 1px;
	background: #fff;
	cursor: pointer;
	/* box-shadow: 3px 2px 10px rgba(0, 0, 0, 0.25); */
}
.banner .slick-dots li.slick-active{
	background: #1472b5;
}


.banner .text {
	font-family: 'CenturyGothic-bold';
	top: 26.3%;
	left: 0%;
	position: absolute;
	width: 100%;
	z-index: 9999999;
	color: #fff;
	text-align: left;
	padding-left: 7%;
}
.banner .text.text-video{
	text-align: center;
	padding: 0 6%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.banner .slick-current .text h1,
.banner .slick-current .text h2,
.banner .slick-current .text h3{
	animation: fadeInUp 1s 0s ease both;
}
.banner .text h1{
	font-size: 56px;
	font-family: 'Helvetica-Bold';
}
.banner .text h2{
	font-size: 66px;
	margin-top: 28px;
}
.banner .text h3{
	font-size: 34px;
	margin-top: 32px;
}

@media (max-width: 1600px) {
	.banner .text h1{
		font-size: 48px;
	}
	.banner .text h2{
		font-size: 54px;
		margin-top: 20px;
	}
	.banner .text h3{
		font-size: 28px;
		margin-top: 30px;
	}
}
@media (max-width: 1440px) {
	.banner .text h1{
		font-size: 36px;
	}
	.banner .text h2{
		font-size: 40px;
		margin-top: 15px;
	}
	.banner .text h3{
		font-size: 24px;
		margin-top: 20px;
	}
}
@media (max-width: 1199px) {
	.banner .slick-dots li button{
		display: none;
	}
	.banner .img-box{
		padding-bottom: 100%;
	}
	.banner .img-box.pc{
		display: none;
	}
	.banner .img-box.ph{
		display: block;
	}

	.banner .text h1{
		font-size: 36px;
	}
	.banner .text h2{
		font-size: 24px;
		margin-top: 15px;
	}
	.banner .text h3{
		font-size: 24px;
		margin-top: 30px;
	}
	.banner .text h3 span{
		padding: 0 18px;
		line-height: 48px;
		border-radius: 16px;
	}
}
/* @media (max-width: 991px) {
	
	.banner .slick-dots, 
	.banner .to-num {
	    bottom: 40px;
	}
	.banner .slick-dots li button{
		font-size: 24px;
	}
	.banner .slick-arrow{
		bottom: 46px;
		background-size: auto 8px!important;
	}
	.banner .slick-arrow.slick-prev{
		left: 15px;
	}
	.banner .slick-arrow.slick-next{
		left: 136px;
	}
	.banner .to-num{
		left: 105px;
		bottom: 34px;
		font-size: 24px;
	}
	.banner .to-num::after{
		font-size: 24px;
	}
	.banner .slick-dots {
	    left: 62px;
	}
} */
@media (max-width: 767px) {
	.banner{
		margin-top: 60px;
	}
	.banner .text{
		padding: 0 6%;
		top: 40%;
	}
	.banner .text h1{
		font-size: 24px;
	}
	.banner .text h2{
		font-size: 18px;
	}
	.banner .text h3 {
		margin-top: 10px;
		font-size: 18px;
	}
	.banner .slick-dots,
	.banner .to-num {
	    bottom: 20px;
	}
	.banner .slick-dots li button{
		font-size: 24px;
	}
	.banner .slick-arrow{
		bottom: 26px;
		background-size: auto 8px!important;
	}
	.banner .slick-arrow.slick-prev{
		left: 15px;
	}
	.banner .slick-arrow.slick-next{
		left: 136px;
	}
	.banner .to-num{
		left: 105px;
		bottom: 14px;
		font-size: 24px;
	}
	.banner .to-num::after{
		font-size: 24px;
	}
	.banner .slick-dots li {
    margin: 0 6px;
	}
}
.banner.banner-in{
	margin-top: 120px;
}
.banner.banner-in .img-box{
	padding-bottom: 40.625%;
}
.banner.banner-in .text{
	text-align: center;
	-webkit-transform: translateY(-0%);
	-ms-transform: translateY(-0%);
	-moz-transform: translateY(-0%);
	transform: translateY(-0%);
}
.banner.banner-in .text h1, 
.banner.banner-in .text h2, 
.banner.banner-in .text h3, 
.banner.banner-in .text h4, 
.banner.banner-in .text h5 {
    text-shadow: 0px 0 0px rgba(0,0,0,0);
}

.banner.banner-in .text h1,
.banner.banner-in .text h2{
	color: #fff;
}
.banner.banner-in .text h1{
	font-size: 46px;
}
.banner.banner-in .text h2{
	font-family: 'CenturyGothic';
	font-size: 56px;
	text-transform: uppercase;
}

.banner.banner-in .text h4,
.banner.banner-in .text h5,
.banner.banner-in .text .p1{
	padding-left: 11.5%;
	color: #1472b5;
}
.banner.banner-in .text h4{
	font-size: 66px;
	text-align: left;
	text-transform: uppercase;
}
.banner.banner-in .text h5{
	font-size: 44px;
	margin-top: 20px;
	text-align: left;
}
.banner.banner-in .text .p1{
	font-size: 23px;
	line-height: 43px;
	margin-top: 36px;
	text-align: left;
	color: #010101;
}
.banner.banner-in .text .p1 span{
	color: #1472b5;
}

@media (max-width: 1680px) {
	.banner.banner-in .text h4,
	.banner.banner-in .text h5,
	.banner.banner-in .text .p1{
		padding-left: 10%;
	}
	.banner.banner-in .text h4{
		font-size: 48px;
	}
	.banner.banner-in .text h5{
		font-size: 36px;
		margin-top: 18px;
	}
	.banner.banner-in .text .p1{
		font-size: 20px;
		line-height: 40px;
		margin-top: 30px;
	}
}
@media (max-width: 1600px) {
	.banner.banner-in{
		margin-top: 100px;
	}
	.banner.banner-in .text h4,
	.banner.banner-in .text h5,
	.banner.banner-in .text .p1{
		padding-left: 10%;
	}
	
	.banner.banner-in .text h4{
		font-size: 48px;
	}
	.banner.banner-in .text h5{
		font-size: 36px;
		margin-top: 18px;
	}
	.banner.banner-in .text .p1{
		font-size: 20px;
		line-height: 40px;
		margin-top: 30px;
	}
	.banner.banner-in .text h1{
		font-size: 32px;
	}
	.banner.banner-in .text h2{
		font-size: 20px;
		padding-bottom: 18px;
	}
	.banner.banner-in .text h2::after{
		width: 28px;
		height: 3px;
	}
}

@media (max-width: 1440px) {
	.banner.banner-in {
		margin-top: 85px;
	}
	.banner.banner-in .text h4, .banner.banner-in .text h5, .banner.banner-in .text .p1 {
		padding-left: 6%;
	}
	.banner.banner-in .text h4{
		font-size: 46px;
	}
	.banner.banner-in .text h5{
		font-size: 34px;
		margin-top: 15px;
	}
	.banner.banner-in .text .p1{
		font-size: 18px;
		line-height: 2;
		margin-top: 24px;
	}
}
@media (max-width: 1365px) {
	.banner.banner-in .text h4{
		font-size: 36px;
	}
	.banner.banner-in .text h5{
		font-size: 24px;
		margin-top: 12px;
	}
	.banner.banner-in .text .p1{
		font-size: 16px;
		margin-top: 18px;
	}
}
@media (max-width: 1199px) {
	.banner.banner-in .img-box{
		padding-bottom: 100%;
	}
	.banner.banner-in .text h1{
		font-size: 28px;
	}
	.banner.banner-in .text h2{
		font-size: 18px;
		padding-bottom: 16px;
	}
	.banner.banner-in .text h2::after{
		width: 24px;
		height: 3px;
	}
}
@media (max-width: 767px) {
	.banner.banner-in{
		margin-top: 60px;
	}
	.banner.banner-in .img-box::after{
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
		background: rgba(0,0,0,0.2);
		content: "";
	}
	.banner.banner-in .text h1{
		font-size: 24px;
	}
	.banner.banner-in .text h2{
		font-size: 16px;
		padding-bottom: 14px;
	}
	.banner.banner-in .text h2::after{
		width: 20px;
		height: 3px;
	}
	.banner.banner-in .text h4, .banner.banner-in .text h5, .banner.banner-in .text .p1 {
    padding-left: 0%;
	}
	.banner.banner-in .text h4{
		font-size: 24px;
	}
	.banner.banner-in .text h5{
		font-size: 18px;
		margin-top: 12px;
	}
	.banner.banner-in .text .p1{
		font-size: 14px;
		margin-top: 10px;
		line-height: 1.4;
	}
}


.foot{
	
	color: #9d9d9d;
	background: #202020;
	padding: 0 5.2%;
} 
.foot a{
	color: #9d9d9d;
}
.foot a:hover{
	opacity: 0.8;
}
.foot-1{
	padding: 62px 0% 22px 0%;
	border-bottom: 1px solid #3d3d3d;
} 
.foot1-con{
	float: left;
	width: 100%;
	position: relative;
}
.foot1-con .foot1-logo{
	float: left;
	width: 18%;
}
.foot1-logo .div{
	margin-top: 28px;
}
.foot1-logo .div a{
	margin-right: 32px;
}
.foot1-logo .div a:last-child{
	margin-top: 0;
}

.foot1-lx,
.foot1-ewm{
	float: right;
}
.foot1-lx ul{
	float: left;

}
.foot1-lx ul li{
	float: left;
	margin-right: 90px;
	text-align: center;
}
.foot1-lx ul li 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;
}
.foot1-lx ul li:hover img{
	-webkit-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.foot1-lx ul li p{
	margin-top: 18px;
	font-size: 18px;
	color: #9d9d9d;
}


.foot-2{
	padding: 22px 0 44px 0;
	font-size: 14px;
	color: #9d9d9d;
	text-align: center;
}
.foot-2 a{
	margin-left: 26px;
}
@media (max-width: 1600px) {
	.foot1-logo .div{
		margin-top: 20px;
	}
	.foot1-logo .div a{
		margin-right: 20px;
	}
	.foot1-lx ul li p {
    font-size: 16px;
	}
	.foot-2 {
    padding: 18px 0 30px 0;
	}
}
@media (max-width: 1366px) {
	.foot1-lx ul li{
		margin-right: 50px;
	}
}
@media (max-width: 1199px) {
	.foot1-con .foot1-logo,
	.foot1-ewm{
		width: auto;
	}
	.foot1-lx{
		width: 100%;
		text-align: center;
		margin-top: 50px;
	}
	.foot1-lx ul{
		width: 100%;
	}
	.foot1-lx ul li{
		width: 33.33%;
		margin-right: 0;
		text-align: center;
	}

}	
@media (max-width: 767px) {
	.foot{
		padding-bottom: 50px;
	}
	.foot-1 {
    padding: 30px 0% 20px 0%;
	}
	.foot1-lx ul li{
		width: 100%;
		margin-top: 20px;
	}
	.foot1-lx{
		margin-top: 20px;
	}
	.foot1-lx ul li img{
		height: 30px;
	}
	.foot1-lx ul li p{
		margin-top: 10px;
	}
	.foot-2 {
    padding: 15px 0 20px 0;
	}
	.foot-2 a {
    margin-left: 15px;
	}
}

.foot-tel{
	display: none;
}
@media (max-width: 767px) {
	.foot-tel{
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		background: #1472b5;
		width: 100%;
		z-index: 999;
		border-top: 1px solid rgba(255,255,255,0.2);
	}	
	.foot-tel a{
		display: block;
		float: left;
		width: 50%;
		line-height: 50px;
		color: #fff;
		border-right: 1px solid rgba(255,255,255,0.2);
		text-align: center;
	}
	.foot-tel a:last-child{
		border-right: 0;
	}
}


.i-about-bg{
	background: url(../images/bg1.png) right top no-repeat;
}
.i-about{
	padding: 120px 0 110px 0px;
}
.i-about .title,
.i-about .i-about-p{
	padding: 0 5.2%;
	color: #010101;
}
.i-about-p{
	float: left;
	width: 70%;
	font-size: 18px;
	margin-top: 40px;
	line-height: 2;
	color: #000;
}
.i-about-num{
	font-size: 20px;
	margin-top: 50px;
}

.i-about-num ul li{
	float: left;
	width: 308px;
	text-align: center;
	position: relative;
}
.i-about-num ul li::after{
	position: absolute;
	right: 0;
	top: 33%;
	width: 1px;
	height: 105px;
	/* transform: translateY(-50%); */
	background: url(../images/bg4.jpg) no-repeat;
	content: "";
}
.i-about-num ul li:last-child::after{
	display: none ;
}
.i-about-num ul li span,
.i-about-num ul li font{
	color: #1472b5;
}
.i-about-num ul li span{
	font-size: 140px;
	font-family: 'Chronica-Regular';
}
.i-about-num ul li font{
	font-size: 110px;
	font-family: 'CenturyGothic';
}
.i-about-num ul li span p{
	font-size: 20px;
}

.i-case-bg{
	background: url(../images/bg2.png) right 388px no-repeat;
}
.i-case-t,
.i-case-d{
	padding: 0 2.6%;
}
.i-case-t ul li{
	float: left;
	width: 31.8%;
	margin-right: 2.3%;
	color: #fff;
}
.i-case-t ul li:last-child{
	margin-right: 0;
}
.i-case-t ul li .img-box{
	padding-bottom: 129.3103448275862%;
}

.i-case-t 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-case-t 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-case-t ul li .i-case-con,
.i-case-t ul li .i-case-pop{
	position: absolute;
	left: 0;
	padding: 0 57px;
}
.i-case-t ul li .i-case-con{
	bottom: 60px;
}
.i-case-t ul li .i-case-pop{
	padding-top: 105px;
	height: 100%;
	top: 100%;
	background: rgba(20, 114, 181, 0.9);
	-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-case-t ul li:hover .i-case-pop{
	top: 0%;
}

.i-case-t ul li .i-case-c,
.i-case-t ul li .i-case-p,
.i-case-t ul li .i-case-link{
	margin-top: 30px;
}
.i-case-t ul li .i-case-c{
	font-size: 38px;
	margin-top: 32px;
}
.i-case-t ul li .i-case-e{
	font-size: 36px;
	font-family: 'Helvetica';
}
.i-case-t ul li .i-case-p{
	font-size: 18px;
	line-height: 2;
}
.i-case-t ul li .i-case-link a{
	display: inline-block;
	padding: 0 20px;
	line-height: 46px;
	font-size: 20px;
	color: #010101;
	background: #fff;
	margin-right: 18px;
	border-radius: 5px;
}
.i-case-t ul li .i-case-link a:hover{
	color: #1472b5;
	background: rgba(255,255,255,0.9);
}
.i-case-t ul li .i-case-link a:last-child{
	margin-right: 0;
}
.i-case-t ul li .i-case-a{
	margin-top: 70px;
}
.i-case-t ul li .i-case-a a{
	display: inline-block;
	width: 45px;
	height: 15px;
	background: url(../images/jt.png) 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;
}
.i-case-t ul li .i-case-a a:hover{
	margin-left: 10px;
}
.i-case-d .title{
	padding: 74px 50px 50px 50px;
}
.i-case-d .title-p a:hover,
.i-news .title-p a:hover{
	color: #1472b5;
	margin-right: 5px;
}
.i-case-d ul li{
	float: left;
	width: 33.33%;
}
.i-case-d ul li .img-box{
	padding-bottom: 82.37232289950577%;
}
.i-case-d 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-case-d 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-customer-bg{
	margin-top: 65px;
	padding: 84px 5.2% 75px 5.2%;
	background:#f8f8f8 url(../images/bg3.png) left bottom no-repeat;
}
.i-customer-l{
	float: left;
	width: 38.5%;
}
.i-customer-l .title a{
	margin-top: 290px;
	font-size: 18px;
	color: #666;
	display: inline-block;
}
.i-customer-l .title a:hover{
	color: #1472b5;
	margin-left: 5px;
}
.i-customer-r{
	float: left;
	width: 61.5%;
}
.i-customer-r ul{
	border-left: 1px solid #e7e7e7;
	border-top: 1px solid #e7e7e7;
}

.i-customer-r ul li{
	float: left;
	width: 33.33%;
	border-right: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
}
.i-customer-r ul li .img-box{
	padding-bottom: 52.99145299145299%;
}
.i-customer-r ul li .img-box img{
	-webkit-transition: all 0.9s ease-out 0s;
	-moz-transition: all 0.9s ease-out 0s; 
	-o-transition: all 0.9s ease-out 0s; 
	transition: all 0.9s ease-out 0s;
}
.i-customer-r ul li:hover .img-box img{
	-webkit-transform: rotateY(180deg);
   -ms-transform: rotateY(360deg);
   -moz-transform: rotateY(360deg);
   transform: rotateY(360deg);
}

.i-news{
	padding: 70px 5.2% 87px 5.2%;
}
.i-news-ul{
	margin-top: 56px;
}
.i-news-ul ul li{
	float: left;
	width: 31.9%;
	margin-right: 2.15%;
	padding: 40px;
	background: #f8f8f8;
	position: relative;
	overflow: hidden;
}
.i-news-ul ul li .bg{
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	z-index: 1;
	height: 100%;
	-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-ul ul li .bg > img{
	height: 100%;
	-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-ul ul li:hover .bg > img{
	-webkit-transform: scale(1.1);
	-mos-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);	 
}
.i-news-ul ul li:hover .bg{
	opacity: 1;
}
.i-news-ul ul li:last-child{
	margin-right: 0;
}
.i-news-ul ul li .i-news-day,
.i-news-ul ul li .i-news-year{
	color: #999;
}
.i-news-ul ul li .i-news-day{
	font-size: 36px;
	font-family: 'CenturyGothic-Bold';
}
.i-news-ul ul li .i-news-year{
	font-size: 18px;
	margin-top: 6px;
	font-family: 'CenturyGothic';
}
.i-news-ul ul li .i-news-t{
	margin-top: 48px;
	font-size: 26px;
	line-height: 1.6;
}
.i-news-ul ul li .i-news-p{
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.8;
	color: #666;
}
.i-news-ul ul li .i-news-a{
	margin-top: 40px;
}
.i-news-ul ul li .i-news-a{
	font-size: 18px;
	color: #0386ee;
	-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-ul ul li .i-news-a:hover{
	margin-left: 5px;
}

.i-news-ul ul li:hover .i-news-day,
.i-news-ul ul li:hover .i-news-year,
.i-news-ul ul li:hover .i-news-t,
.i-news-ul ul li:hover .i-news-p,
.i-news-ul ul li:hover .i-news-a{
	position: relative;
	z-index: 2;
	color: #fff;
}


.i-future{
	/* padding: 124px 0 100px 0; */
	/* background: url(../images/pic2.jpg) center no-repeat; */
	background-size: cover;
	text-align: center;
	color: #fff;
	position: relative;
}
.i-future .pc{
	display: block;
}
.i-future .ph{
	display: none;
}
.i-future .img-box{
	padding-bottom: 28.64583333333333%;
}
.i-future-text{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
}
.i-future .i-future-e{
	font-size: 74px;
	font-family: 'CenturyGothic-Bold';
}
.i-future .i-future-c{
	font-size: 50px;
	margin-top: 2px;
}
.i-future .i-future-span{
	font-size: 36px;
	margin-top: 24px;
}
.i-future .i-future-span span{
	line-height: 70px;
	padding: 0 38px;
	border-radius: 35px;
	display: inline-block;
	background: #1472b5;
}
.i-future .i-future-a{
	font-size: 20px;
	margin-top: 36px;
}
.i-future .i-future-a a{
	padding-bottom: 8px;
	display: inline-block;
	border-bottom: 1px solid #fff;
	color: #fff;
}
.i-future .i-future-a a:hover{
	opacity: 0.8;
}
@media (max-width: 1600px) {
	.i-case-t ul li .i-case-link a{
		padding: 0 16px;
		font-size: 18px;
		margin-right: 10px;
	}
	.i-case-t ul li .i-case-c,
	.i-case-t ul li .i-case-p,
	.i-case-t ul li .i-case-link{
		margin-top: 20px;
	}
	.i-case-t ul li .i-case-a {
    margin-top: 50px;
	}
	.i-about-bg{
		background-size: 400px auto;
	}
	.i-case-bg{
		background-size: 300px auto;
	}
	.i-customer-bg{
		background-size: 400px auto;
	}
	.i-about {
    padding: 80px 0 70px 0px;
	}
	.i-about-num{
		margin-top: 30px;
	}
	.i-about-num{
		font-size: 18px;
	}
	.i-about-num ul li{
		width: 280px;
	}
	.i-about-num ul li span{
		font-size: 120px;
	}
	.i-customer-l .title a{
		margin-top: 200px;
	}
	.i-news-ul {
    margin-top: 40px;
	}
	.i-news-ul ul li .i-news-day{
		font-size: 28px;
	}
	.i-news-ul ul li .i-news-year{
		font-size: 16px;
		margin-top: 4px;
	}
	.i-news-ul ul li .i-news-t{
		margin-top: 36px;
		font-size: 20px;
	}
	.i-news-ul ul li .i-news-p{
		margin-top: 16px;
		font-size: 14px;
	}
	.i-news-ul ul li .i-news-a{
		margin-top: 30px;
	}
	.i-news-ul ul li .i-news-a a{
		font-size: 16px;
	}

	.i-future .i-future-e{
		font-size: 60px;
	}
	.i-future .i-future-c{
		font-size: 40px;
	}
	.i-future .i-future-span{
		font-size: 28px;
		margin-top: 16px;
	}
	.i-future .i-future-span span{
		line-height: 64px;
		padding: 0 28px;
		border-radius: 32px;
	}
	.i-future .i-future-a{
		font-size: 18px;
		margin-top: 28px;
	}
	.i-future .i-future-a a{
		padding-bottom: 6px;
	}
}
@media (max-width: 1440px) {
	.i-about-p {
		font-size: 16px;
		margin-top: 30px;
	}
	.i-about-num ul li {
    width: 240px;
	}
	.i-about-num ul li::after{
		top: 20%;
	}
	.i-about-num {
    margin-top: 20px;
	}
	.i-about-num ul li span {
    font-size: 80px;
	}
	.i-about-num ul li font{
		font-size: 68px;
	}
	.i-about-num {
    font-size: 16px;
	}
	.i-case-t ul li .i-case-con {
    bottom: 40px;
	}
	.i-case-t ul li .i-case-con, 
	.i-case-t ul li .i-case-pop {
		padding: 0 8%;
	}
	.i-case-t ul li .i-case-pop{
		padding-top: 90px;
	}
	.i-case-t ul li .img-box .i-case-img img{
		width: 56px;
	}
	.i-case-t ul li .i-case-c, 
	.i-case-t ul li .i-case-p, 
	.i-case-t ul li .i-case-link{
		margin-top: 20px;
	}
	.i-case-t ul li .i-case-c {
    font-size: 28px;
    margin-top: 24px;
	}
	.i-case-t ul li .i-case-e {
    font-size: 28px;
	}
	.i-case-t ul li .i-case-p {
    font-size: 16px;
	}
	.i-case-t ul li .i-case-link a {
    padding: 0 12px;
    font-size: 16px;
    margin-right: 8px;
	}
	.i-case-t ul li .i-case-a {
    margin-top: 40px;
	}
	.i-case-d .title {
    padding: 54px 2.6% 40px 2.6%;
	}
	.i-customer-bg {
    margin-top: 48px;
    padding: 64px 5.2% 55px 5.2%;
	}
	.i-news {
    padding: 50px 5.2% 67px 5.2%;
	}
	.i-future .i-future-e{
		font-size: 48px;
	}
	.i-future .i-future-c{
		font-size: 36px;
	}
	.i-future .i-future-span{
		font-size: 24px;
		margin-top: 12px;
	}
	.i-future .i-future-span span{
		line-height: 60px;
		padding: 0 24px;
		border-radius: 30px;
	}
	.i-future .i-future-a{
		font-size: 16px;
		margin-top: 24px;
	}
	
	.i-case-t ul li .img-box .i-case-img img{
		width: 48px;
	}
	.i-case-t ul li .i-case-c, 
	.i-case-t ul li .i-case-p, 
	.i-case-t ul li .i-case-link{
		margin-top: 15px;
	}
	.i-case-t ul li .i-case-c {
    font-size: 24px;
    margin-top: 20px;
	}
	.i-case-t ul li .i-case-e {
    font-size: 24px;
	}
	.i-case-t ul li .i-case-p {
    font-size: 14px;
	}
	.i-case-t ul li .i-case-link a {
    padding: 0 10px;
    font-size: 14px;
    margin-right: 6px;
	}
	.i-case-t ul li .i-case-a {
    margin-top: 30px;
	}
}
@media (max-width: 1199px) {
	.i-future .pc{
		display: none;
	}
	.i-future .ph{
		display: block;
	}
	.i-future .ph{
		max-width: 200%;
		/* margin-left: -50%; */
	}
	.i-future .img-box{
		padding-bottom: 57.2%;
	}
	.i-about-bg {
		background-size: 300px auto;
	}
	.i-about-num ul li{
		width: 25%;
	}
	.i-case-t ul li .i-case-pop {
    padding-top: 40px;
	}
	.i-case-t ul li .i-case-link a{
		padding: 0 6px;
		line-height: 36px;
	}
	.i-case-t ul li .i-case-a {
    margin-top: 18px;
	}
	.i-customer-l .title a {
    margin-top: 120px;
	}
	.i-news-ul ul li {
    padding: 30px;
	}
	.i-news-ul ul li .i-news-t {
    margin-top: 20px;
    font-size: 18px;
	}
}
@media (max-width: 991px) {
	.i-case-t ul{
		text-align: center;
	}
	.i-case-t ul li{
		float: none;
		display: inline-block;
		width: 47%;
		margin: 20px 1% 0 1%;
	}
	.i-customer-l,
	.i-customer-r{
		width: 100%;
	}
	.i-customer-r{
		margin-top: 30px;
	}
	.i-customer-l .title a{
		margin-top: 20px;
	}
	.i-news-ul ul{
		text-align: center;
	}
	.i-news-ul ul li{
		display: inline-block;
		float: none;
		width: 47%;
		margin: 15px 1% 0 1%;
		text-align: left;
	}
	.i-future .i-future-e{
		font-size: 36px;
	}
	.i-future .i-future-c{
		font-size: 24px;
	}
	.i-future .i-future-span{
		font-size: 20px;
		margin-top: 8px;
	}
	.i-future .i-future-span span{
		line-height: 48px;
		padding: 0 20px;
		border-radius: 24px;
	}
	.i-future .i-future-a{
		font-size: 14px;
		margin-top: 18px;
	}
}
@media (max-width: 767px) {
	.i-about {
		padding: 30px 0 30px 0px;
	}
	.i-about-p{
		width: 100%;
		margin-top: 15px;
	}
	.i-about-bg {
		background-size: 200px auto;
	}
	.i-about-num ul li{
		width: 50%;
		margin: 10px 0;
	}
	.i-about-num ul li span {
    font-size: 60px;
	}
	.i-about-num ul li font {
    font-size: 50px;
	}
	.i-about-num ul li:nth-child(2)::after{
		display: none;
	}
	.i-case-t ul li{
		width: 100%;
		margin: 5px 0;
	}
	.i-case-t ul li .i-case-pop{
		padding-top: 80px;
	}
	.i-customer-l .title a{
		font-size: 14px;
		margin-top: 10px;
	}
	.i-case-d ul li{
		width: 100%;
	}
	.i-customer-bg {
    margin-top: 20px;
    padding: 20px 5.2% 20px 5.2%;
	}
	.i-customer-r ul{
		border-right: 1px solid #e7e7e7;
	}
	.i-customer-r ul li{
		width: 100%;
		border: 0px;
		border-bottom: 1px solid #e7e7e7;
	}
	.i-news {
    padding: 20px 5.2% 20px 5.2%;
	}
	.i-news-ul ul li{
		width: 100%;
		margin: 10px 0 0 0;
	}
	.i-future{
		/* padding: 0px 5% 0px 5%; */
	}
	.i-future-text{
		width: 90%;
		left: 5%;
	}
	.i-future .i-future-e{
		font-size: 24px;
	}
	.i-future .i-future-c{
		font-size: 18px;
	}
	.i-future .i-future-span{
		font-size: 16px;
		margin-top: 6px;
	}
	.i-future .i-future-span span{
		line-height: 22px;
		padding: 10px 16px;
		border-radius: 10px;
	}
	.i-future .i-future-a{
		font-size: 14px;
		margin-top: 12px;
	}
}

/*case*/
.case-bg{
	background: url(../images/case/bg1.png) right 66px no-repeat;
}
.case-t{
	padding: 90px 5.2%;
	line-height: 1;
}
.case-t .case-the{
	font-size: 64px;
	color: #1472b5;
	font-family: 'Helvetica-Bold';
}
.case-t .case-thc{
	font-size: 30px;
	margin-top: 20px;
}
.case-t .case-th{
	font-size: 48px;
	margin-top: 32px;
}
.case-t .case-te{
	font-size: 20px;
	margin-top: 15px;
	color: #666;
	font-family: 'CenturyGothic';
}

.case-m{
	padding: 0 2.6%;
	overflow: hidden;
}
.case-m-slick{
	overflow: hidden;
}
.case-m-slick .case-m-li{
	position: relative;
}
.case-m-slick .case-m-li .img-box{
	padding-bottom: 32.96703296703297%;
}
.case-m-slick .case-m-text{
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	padding-left: 124px;
	padding-top: 118px;
}
.case-m-slick .case-m-text .case-m-t{
	font-size: 32px;
	line-height: 1;
	margin-top: 60px;
}
.case-m-slick .case-m-text .case-m-p{
	font-size: 26px;
	line-height: 40px;
	margin-top: 20px;
}
.case-m-slick .case-m-text .case-m-a{
	font-size: 28px;
	margin-top: 40px;
}
.case-m-slick .case-m-text .case-m-a a{
	color: #fff;
} 
.case-m-slick .case-m-text .case-m-a a:hover{
	opacity: 0.8;
	/* color: #1472b5; */
}

.case-m-slick .case-m-text .case-m-a img{
	margin-right: 22px;
	display: inline-block;
}

.case-m-slick .slick-dots{
	position: absolute;
	left: 0;
	bottom: 38px;
	width: 100%;
	text-align: center;
}
.case-m-slick .slick-dots li{
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 12px;
	border-radius: 100%;
	background: #fff;
}
.case-m-slick .slick-dots li button{
	display: none;
}

.case-m-slick .slick-dots li.slick-active{
	background: #1472b5;
}

.case-d{
	margin-top: 90px;
	margin-bottom: 57px;
}
.case-d .slick-dots{
	margin-top: 72px;
	font-size: 18px;
	text-align: center;
}
.case-d .slick-dots a{
	float: none;
	display: inline-block;
	width: auto;
	margin: 0 5px;
	padding: 0 5px;
	padding-bottom: 16px;
	position: relative;
}
.case-d .slick-dots a::after{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	border-radius: 2px;
	content: "";
}

.case-d .slick-dots a button{
	background: none;
}

.case-d .slick-dots a.slick-active{
	color: #1472b5;
}
.case-d .slick-dots a:hover::after,
.case-d .slick-dots a.slick-active::after{
	background: #1472b5;
}
.case-d .slick-prev,
.case-d .slick-next{
	display: inline-block;
	width: 8px;
	height: 14px;
}

.case-d .slick-dots .slick-prev{
	margin-right: 30px;
	background: url(../images/case/l1.png) no-repeat;
}
.case-d .slick-dots .slick-prev:hover{
	background: url(../images/case/l1_on.png) no-repeat;
}
.case-d .slick-dots .slick-next{
	margin-left: 30px;
	background: url(../images/case/r1.png) no-repeat;
}
.case-d .slick-dots .slick-next:hover{
	background: url(../images/case/r1_on.png) no-repeat;
}
.case-d .slick-dots .slick-next::after,
.case-d .slick-dots .slick-prev::after{
	display: none;
}
@media (max-width: 1600px){
	.case-bg{
		background-size: 500px auto;
	}
	.case-t{
		padding: 70px 5.2%;
	}
	.case-t .case-the{
		font-size: 48px;
	}
	.case-t .case-thc{
		font-size: 24px;
		margin-top: 15px;
	}
	.case-t .case-th{
		font-size: 36px;
		margin-top: 32px;
	}
	.case-t .case-te{
		font-size: 18px;
		margin-top: 12px;
	}
	.case-tp {
    font-size: 18px;
    margin-top: 28px;
	}
	.case-de-link span {
    font-size: 24px;
    padding-bottom: 6px;
	}

	.case-m-slick .case-m-text{
		padding-left: 5%;
		padding-top: 88px;
	}
	.case-m-slick .case-m-text .case-m-t{
		font-size: 28px;
		margin-top: 48px;
	}
	.case-m-slick .case-m-text .case-m-p{
		font-size: 22px;
		line-height: 32px;
		margin-top: 15px;
	}
	.case-m-slick .case-m-text .case-m-a{
		font-size: 24px;
		margin-top: 30px;
	}
}
@media (max-width: 1440px){
	.case-t {
    padding: 50px 5.2%;
	}
	.case-t .case-the{
		font-size: 36px;
	}
	.case-t .case-thc{
		font-size: 20px;
		margin-top: 10px;
	}
	.case-t .case-th{
		font-size: 30px;
		margin-top: 32px;
	}
	.case-t .case-te{
		font-size: 16px;
		margin-top: 10px;
	}
	
	.case-d {
    margin-top: 60px;
    margin-bottom: 47px;
	}
	.case-m-slick .case-m-text{
		padding-left: 5%;
	}
	.case-m-slick .case-m-text .case-m-t{
		font-size: 24px;
		margin-top: 36px;
	}
	.case-m-slick .case-m-text .case-m-p{
		font-size: 20px;
		line-height: 30px;
		margin-top: 10px;
	}
	.case-m-slick .case-m-text .case-m-a{
		font-size: 20px;
		margin-top: 20px;
	}
}

@media (max-width: 1199px){
	
	.case-m-slick .case-m-li .img-box {
    padding-bottom: 48%;
	}
	.case-m-slick .case-m-li .img-box > img{
		width: 150%;
		max-width: 150%;
		left: -25%;
	}
}

@media (max-width: 991px){
	.case-bg{
		background-size: 400px auto;
	}
	.case-m-slick .case-m-text img{
		height: 40px;
	}
	.case-d {
		margin-top: 40px;
		margin-bottom: 30px;
	}
	.case-m-slick .case-m-text .case-m-t{
		font-size: 18px;
		margin-top: 20px;
	}
	.case-m-slick .case-m-text .case-m-p{
		width: 90%;
		font-size: 14px;
		line-height: 24px;
		margin-top: 6px;
	}
	.case-m-slick .case-m-text .case-m-a{
		font-size: 16px;
		margin-top: 10px;
	}
	.case-m-slick .case-m-text .case-m-a img{
		width: 30px;
		height: 30px;
		margin-right: 10px;
	}
}
@media (max-width: 767px){
	.case-bg{
		background-size: 200px auto;
	}
	.case-t {
    padding: 30px 5.2%;
	}
	.case-t .case-the{
		font-size: 22px;
	}
	.case-t .case-thc{
		font-size: 16px;
		margin-top: 6px;
	}
	.case-t .case-th{
		font-size: 18px;
		margin-top: 20px;
	}
	.case-t .case-te{
		font-size: 16px;
		margin-top: 10px;
	}

	.case-d .slick-dots{
		margin-top: 30px;
		font-size: 16px;
	}
	.case-d .slick-dots a{
		margin: 0 4px;
		padding: 0 4px;
		padding-bottom: 8px;
	}
	.case-d .slick-dots a::after{
		height: 4px;
		border-radius: 2px;
	}
	.case-d .slick-dots .slick-prev{
		margin-right: 20px;
	}
	.case-d .slick-dots .slick-next{
		margin-left: 20px;
	}
	.case-d .slick-dots a.slick-prev,
	.case-d .slick-dots a.slick-next{
		width: 8px;
	}

	.case-m-slick .case-m-li .img-box {
    padding-bottom: 64%;
	}
	.case-m-slick .case-m-li .img-box > img{
		width: 200%;
		max-width: 200%;
		left: -50%;
	}
	.case-m-slick .case-m-text{
		padding-top: 28px;
	}
	.case-d {
    margin-top: 20px;
	}
	.case-m-slick .slick-dots{
		bottom: 12px;
	}
	.case-m-slick .slick-dots li{
		width: 10px;
		height: 10px;
		margin: 0 5px;
	}
}

/*case-details*/
.case-de-t{
	position: relative;
}
.case-de-t .caDe-add{
	font-size: 16px;
	padding-left: 20px;
	position: absolute;
	top: 60%;
	right: 5.2%;
	color: #010101;
}
.case-de-t .caDe-add::after{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: #010101;
	content: "";
}
.case-de-t a{
	color: #010101;
}
.case-de-t a:hover,
.case-de-t a.active{
	/* color: #1472b5; */
	opacity: 0.9;
}
.case-de-con{
	padding: 0 5.2%;
}
.case-de-con .case-de-txt-t{
	font-size: 44px;
	margin-top: 62px;
	text-align: center;
}
.case-de-con .case-de-txt-p{
	margin-top: 56px;
	padding: 44px 60px 55px 60px;
	background: #f0f5f8;
}
.case-de-con .case-de-txt-p .case-de-txt-pp{
	font-size: 18px;
	line-height: 2;
	color: #010101;
}
.case-de-con .case-de-txt-p .case-de-txt-pa{
	font-size: 20px;
	padding-left: 36px;
	margin-top: 30px;
	background: url(../images/case-details/ico.png) left center no-repeat;
	background-size: 24px auto;
	font-family: 'CenturyGothic-Bold';
}
.case-de-con .case-de-txt-p .case-de-txt-pa a:hover{
	color: #ff0000;
}

.case-de-con .case-de-pic{
	margin-top: 10px;
}
.case-de-con .case-de-pic img{
	margin-top: 60px;
	margin-top: 0px!important;
}
.case-de-con .case-de-p{
	font-size: 30px;
	line-height: 1.8;
	margin-top: 60px;
	font-weight: bold;
}
.case-de-link{
	margin-top: 30px;
}
.case-de-link span{
	font-size: 30px;
	padding-bottom: 10px;
	float: left;
	color: #1472b5;
	border-bottom: 1px solid #1472b5;
}
.case-de-link .case-de-link-a1{
	margin-left: 10px;
	padding: 0 28px;
	line-height: 50px;
	border-radius: 25px;
	font-size: 24px;
	display: inline-block;
	color: #fff;
	background: #1472b5;
}
.case-de-link .case-de-link-a2{
	font-size: 18px;
	padding-bottom: 10px;
	float: right;
	border-bottom: 1px solid #1472b5;
}
.case-de-link .case-de-link-a1:hover{
	opacity: 0.8;
}

.case-de-link .case-de-link-a2:hover{
	margin-right: 5px;
	color: #1472b5;
}

.case-de-page{
	line-height: 60px;
	font-size: 16px;
	margin-top: 70px;
	background: #f8f8f8;
}
.case-de-page a{
	color: #666;
	max-width: 45%;
}
.case-de-page a:hover{
	color: #1472b5;
}
.case-de-page .case-de-page-prev{
	float: left;
}
.case-de-page .case-de-page-prev:hover{
	margin-left: 5px;
}
.case-de-page .case-de-page-next{
	float: right;
}
.case-de-page .case-de-page-next:hover{
	margin-right: 5px;
}
.case-de-h{
	font-size: 36px;
	padding: 60px 0 40px 0;
}
.case-de-other{
	padding-bottom: 94px;
}
.case-de-other .case-de-other-pic{
	float: left;
	width: 25%;
}
.case-de-other .case-de-other-pic .img-box{
	padding-bottom: 82.55813953488372%;
}
.case-de-other .case-de-other-pic .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;
}
.case-de-other .case-de-other-pic:hover .img-box img{  
	-webkit-transform: scale(1.1);
	-mos-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);	 
}
@media (max-width: 1600px){
	.case-de-con .case-de-txt-t{
		font-size: 36px;
		margin-top: 48px;
	}
	.case-de-con .case-de-txt-p {
    margin-top: 48px;
    padding: 36px 3% 40px 3%;
	}
	.case-de-con .case-de-txt-p .case-de-txt-pa {
    font-size: 18px;
    padding-left: 52px;
    margin-top: 30px;
	}
	.case-de-con .case-de-p {
    font-size: 24px;
    margin-top: 40px;
	}
}

@media (max-width: 1440px){
	.case-de-link span {
    font-size: 20px;
    padding-bottom: 4px;
	}
	.case-de-t .caDe-add{
		top: 50%;
	}
	.case-de-link .case-de-link-a1{
    padding: 0 24px;
    line-height: 40px;
    border-radius: 20px;
    font-size: 18px;
	}
	.case-de-page{
		margin-top: 50px;
	}
	.case-de-h {
    font-size: 28px;
    padding: 40px 0 30px 0;
	}
}
@media (max-width: 1366px){
	.case-de-t .caDe-add{
		top: 40%;
	}
}
@media (max-width: 1199px){
	.case-de-con .case-de-txt-t {
    font-size: 28px;
    margin-top: 28px;
	}
	.case-de-con .case-de-txt-p {
    margin-top: 28px;
    padding: 28px 3% 30px 3%;
	}
	.case-de-con .case-de-txt-p .case-de-txt-pa {
    font-size: 16px;
    padding-left: 40px;
    margin-top: 20px;
		background-size: 24px auto;
	}
	.case-de-con .case-de-pic img {
    margin-top: 30px;
	}
	.case-de-con .case-de-p {
    font-size: 20px;
    margin-top: 30px;
	}
	.case-de-t .caDe-add{
		font-size: 14px;
		padding-left: 8px;
	}
	.case-de-t .caDe-add::after{
		width: 4px;
		height: 4px;
	}
}
@media (max-width: 991px){
	.case-de-con .case-de-txt-t{
		font-size: 22px;
	}
	.case-de-con .case-de-txt-p {
    margin-top: 20px;
    padding: 20px 3% 20px 3%;
	}
	.case-de-other .case-de-other-pic {
    width: 50%;
	}
}
@media (max-width: 767px){
	.case-de-con .case-de-txt-p {
    padding: 20px 5% 20px 5%;
	}
	.case-de-con .case-de-txt-p .case-de-txt-pp{
		font-size: 14px;
	}
	.case-de-con .case-de-txt-p .case-de-txt-pa {
    font-size: 16px;
    padding-left: 30px;
    margin-top: 10px;
    background-size: 20px auto;
	}
	.case-de-con .case-de-pic img {
    margin-top: 20px;
	}
	.case-de-con .case-de-p {
    font-size: 16px;
    margin-top: 20px;
	}
	.case-de-link .case-de-link-a1 {
		padding: 0 15px;
		line-height: 36px;
		border-radius: 18px;
		font-size: 16px;
		float: right;
	}
	.case-de-link .case-de-link-a2 {
    font-size: 16px;
    padding-bottom: 8px;
		margin-top: 10px;
		display: block;
		float: right;
		clear: both;
	}
	.case-de-page {
		font-size: 14px;
    margin-top: 20px;
		padding: 10px 5%;
	}
	.case-de-page a{
		max-width: 100%;
		width: 100%;
		line-height: 36px;
	}
	.case-de-page .case-de-page-prev:hover{
		margin-left: 5px;
	}
	.case-de-page .case-de-page-next:hover{
		float: left;
		margin-left: 5px;
	}
	.case-de-h {
    font-size: 20px;
    padding: 20px 0 20px 0;
	}
	.case-de-other {
    padding-bottom: 30px;
	}
}
/*about*/
.case-tp{
	font-size: 20px;
	line-height: 1.8;
	margin-top: 36px;
	width: 80%;
}
@media (max-width: 1440px){
	.case-tp {
		font-size: 16px;
		margin-top: 20px;
	}
}

/*视觉差几个背景图*/
.cd-fixed-bg.cd-bg-1 {
	float: left;	
	width: 94.8%;
	margin: 0 2.6%;
  background-image: url("../images/about/img.jpg");
}
/*视觉差css*/
.cd-fixed-content{
	float: left;
	width: 100%;
	padding-top: 601px;
	padding-top: 540px;
	/* padding: 134px 3% 156px 3%; */
	overflow: hidden;
}
@media (max-width: 1199px){
	.cd-fixed-content{
		padding-top: 0;
	}
}
@media (max-width: 767px){
	.cd-fixed-content > img{
		width: 200%;
		max-width: 200%;
		margin-left: -50%;
	}
}
.about-con{
	position: absolute;
	top: 150px;
	top: 120px;
	left: 0;
	color: #fff;	
	text-align: center;
	width: 100%;
}
.about-con .about-tc{
	font-size: 60px;
}
.about-con .about-te{
	font-size: 40px;
	font-family: 'CenturyGothic';
}
.about-con ul{
	margin-top: 30px;
}
.about-con ul li{
	padding: 0 96px;
	display: inline-block;
	position: relative;
}
.about-con ul li::after{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 105px;
	background: url(../images/about/line-1.png) no-repeat;
	content: "";
}
.about-con ul li:last-child::after{
	display: none;
}
.about-con ul li .about-num{
	font-size: 110px;
	line-height: 1;
	font-family: 'CenturyGothic';
}
.about-con ul li .about-num span{
	font-size: 140px;
	font-family: 'Chronica-Regular';
}

.about-con ul li .about-p{
	font-size: 20px;
}

.about-txt{
	padding:0 5.2% 64px 5.2%;
	background: url(../images/about/bg3.png) right bottom no-repeat;
}
.about-txt ul{}
.about-txt ul li{
	line-height: 1;
	padding: 114px 0 44px 0;
	background: url(../images/about/bg2.png) left bottom repeat-x;
}
.about-txt ul li:last-child{
	background: none;
}

.about-txt ul li .about-txt-img{
	position: absolute;
	top: -48px;
	left: 0;
	z-index: -1;
}
.about-txt ul li .about-txt-h{
	font-size: 48px;
	font-weight: bold;
	/* color: #1472b5; */
	position: relative;
}
.about-txt ul li .about-txt-tc{
	font-size: 36px;
	margin-top: 24px;
}
.about-txt ul li .about-txt-te{
	font-size: 20px;
	margin-top: 24px;
	/* color: #999; */
	font-family: 'CenturyGothic';
}

.custom-img{
	padding: 0 50px;
}
.i-case-d.custom-ul ul{
	margin-top: -44px;
}
.i-case-d.custom-ul ul li{
	width: 23.2%;
	margin-right: 2.4%;
	margin-top: 44px;
	border: 1px solid #c4c4c4;
}
.i-case-d.custom-ul ul li:nth-child(4n){
	margin-right: 0;
}

.i-case-d.custom-ul ul li .img-box{
	padding-bottom: 39.84962406015038%;
}

@media (max-width: 1440px){
	.about-con .about-tc{
		font-size: 48px;
	}
	.about-con .about-te{
		font-size: 28px;
	}
	.about-con ul li{
		padding: 0 48px;
	}
	.about-con ul li::after{
		height: 65px;
	}
	.about-con ul li .about-num{
		font-size: 80px;
	}
	.about-con ul li .about-num span{
		font-size: 100px;
	}
	.about-con ul li .about-p{
		font-size: 18px;
	}
	.about-txt{
		background-size: 300px auto;
	}
	.about-txt ul li {
    padding: 94px 0 34px 0;
	}
	.about-txt ul li .about-txt-img{
		top: -48px;
	}
	.about-txt ul li .about-txt-img img{
		height: 88px;
	}
	.about-txt ul li .about-txt-h{
		font-size: 36px;
	}
	.about-txt ul li .about-txt-tc{
		font-size: 28px;
		margin-top: 18px;
	}
	.about-txt ul li .about-txt-te{
		font-size: 18px;
		margin-top: 18px;
	}
}
@media (max-width: 1199px){
	.about-con{
		top: 23%;
	}
	.about-con ul {
    margin-top: 20px;
	}
	.about-con ul li{
		padding: 0 36px;
	}
	.about-con ul li::after{
		height: 48px;
	}
	.about-con ul li .about-num{
		font-size: 50px;
	}
	.about-con ul li .about-num span{
		font-size: 60px;
	}
	.about-con ul li .about-p {
    font-size: 16px;
	}
}

@media (max-width: 991px){
	.about-txt{
    padding: 0 5.2% 36px 5.2%;
	}
	.custom-img {
    padding: 0 5.2%;
	}
	.i-case-d.custom-ul ul li{
		width: 48%;
		margin-right: 4%;
		margin-top: 20px;
	}
	.i-case-d.custom-ul ul li:nth-child(2n){
		margin-right: 0;
	}
	.about-con ul li {
    padding: 0 24px;
	}
	.about-con ul li .about-num{
		font-size: 32px;
	}
	.about-con ul li .about-num span{
		font-size: 42px;
	}
	.about-txt ul li {
    padding: 60px 0 20px 0;
	}
	.about-txt ul li .about-txt-img {
    top: -28px;
	}
	.about-txt ul li .about-txt-img img {
    height: 48px;
	}
	.about-txt ul li .about-txt-h{
		font-size: 28px;
	}
	.about-txt ul li .about-txt-tc{
		font-size: 20px;
		margin-top: 14px;
	}
	.about-txt ul li .about-txt-te{
		font-size: 16px;
		margin-top: 12px;
	}
}
@media (max-width: 767px){
	.case-tp{
		width: 100%;
		font-size: 14px;
		line-height: 22px;
	}
	.case-de-link span{
		font-size: 16px;
	}
	.about-con {
    top: 15%;
		padding: 0 3%;
	}
	.about-con ul {
    margin-top: 10px;
	}
	.about-con ul li {
    padding: 0 12px;
		margin: 5px 0;
	}
	.about-con ul li .about-num{
		font-size: 24px;
	}
	.about-con ul li .about-num span{
		font-size: 28px;
	}
	.about-con ul li .about-p {
    font-size: 12px;
	}
	.about-con ul li::after {
    height: 24px;
	}
	.about-txt{
		background-size: 200px auto;
	}
	.about-txt ul li {
    padding: 36px 0 15px 0;
	}
	.about-txt ul li .about-txt-img {
    top: -18px;
	}
	.about-txt ul li .about-txt-img img {
    height: 38px;
	}
	.about-txt ul li .about-txt-h{
		font-size: 22px;
	}
	.about-txt ul li .about-txt-tc{
		font-size: 16px;
		margin-top: 12px;
	}
	.about-txt ul li .about-txt-te{
		font-size: 14px;
		margin-top: 10px;
	}
	.i-case-d.custom-ul{
		margin-top: 50px;
	}
}

.contact-t{
	margin-top: 96px;
	padding: 0 2.6%;
}
.contact-t-ul{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	color: #fff;
	width: 100%;
	text-align: center;
}
.contact-t-ul .contact-t-li{
	padding: 0 80px;
	display: inline-block;
	vertical-align: middle;
}
.contact-t-ul .contact-t-li .contact-t-li-e{
	font-size: 44px;
	padding: 24px 0 26px 0;
	text-transform: uppercase;
	font-family: 'CenturyGothic-Bold';
}

.contact-t-ul .contact-t-li span 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;
}
.contact-t-ul .contact-t-li:hover span img{
	-webkit-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.contact-t-ul .contact-t-li .contact-t-li-c{
	font-size: 22px;
}
.case-t.contact-lx{
	padding-bottom: 0px;
}
.case-t.contact-ly{
	padding: 50px 5.2% 80px 5.2%;
	font-size: 18px;
	background: url(../images/contact/bg2.png) bottom center no-repeat;
}
.contact-form input[type=text],
.contact-form textarea{
	border: 1px solid #c4c4c4;
	background: #f9f9f9;
	padding: 20px 24px;
	margin-top: 48px;
	border-radius: 20px;
	line-height: 40px
}
.contact-form input[type=text]{
	float: left;
	width: 31.1%;
	margin-right: 3.35%;
}
.contact-form input[type=text]:nth-child(3){
	margin-right: 0;
}
.contact-form textarea{
	width: 100%;
	height: 210px;
}
.contact-form .center{
	text-align: center;
	margin-top: 48px;
}
.contact-form input[type=submit]{
	border-radius: 20px;
	padding: 0 55px;
	line-height: 80px;
	background: #1472b5;
	color: #fff;
	-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;
}
.contact-form input[type=submit]:hover{
	opacity: 0.9;
}
@media (max-width: 1600px){
	.contact-t-ul .contact-t-li {
    padding: 0 40px;
	}
	.contact-t-ul .contact-t-li .contact-t-li-e {
    font-size: 36px;
    padding: 20px 0 20px 0;
	}
	.contact-t-ul .contact-t-li .contact-t-li-c {
    font-size: 18px;
	}
}
@media (max-width: 1440px){
	.contact-t-ul .contact-t-li {
    padding: 0 30px;
	}
	.contact-t-ul .contact-t-li:last-child span img{
		width: 150px;
	}
	.contact-t-ul .contact-t-li .contact-t-li-e {
    font-size: 30px;
    padding: 15px 0 15px 0;
	}
	.contact-t-ul .contact-t-li .contact-t-li-c {
    font-size: 16px;
	}
	.contact-form input[type=text], .contact-form textarea {
    padding: 15px 20px;
    margin-top: 30px;
    border-radius: 15px;
    line-height: 30px;
	}
	.contact-form textarea{
		height: 180px;
	}
	.contact-form .center {
    margin-top: 30px;
	}
	.contact-form input[type=submit] {
    border-radius: 18px;
    padding: 0 40px;
    line-height: 60px;
	}
}
@media (max-width: 1199px){
	.contact-t {
		margin-top: 50px;
		padding: 0 2.6%;
	}
	.contact-t-ul .contact-t-li {
    padding: 0 20px;
	}
	.contact-t-ul .contact-t-li:last-child span img{
		width: 120px;
	}
	.contact-t-ul .contact-t-li .contact-t-li-e {
    font-size: 24px;
    padding: 10px 0 10px 0;
	}
	.contact-t-ul .contact-t-li .contact-t-li-c {
    font-size: 16px;
	}
}
@media (max-width: 991px){
	.contact-t{
		margin-top: 40px;
	}
	.contact-t-ul .contact-t-li .contact-t-li-e {
    font-size: 20px;
    padding: 8px 0 8px 0;
	}
	.contact-t-ul .contact-t-li .contact-t-li-c {
    font-size: 14px;
	}
	.contact-t-ul .contact-t-li span img{
		height: 40px;
	}
	.contact-t-ul .contact-t-li:last-child span img {
    width: 100px;
		height: 100px;
	}
	.case-t.contact-ly {
    padding: 40px 5.2% 60px 5.2%;
    font-size: 16px;
	}
}
@media (max-width: 767px){

	.contact-t {
		margin-top: 20px;
	}
	.contact-t > img{
		max-width: 200%;
		width: 200%;
		left: -50%;
	}
	.contact-t-ul .contact-t-li{
		margin: 10px 0;
	}
	.contact-t-ul .contact-t-li span img {
    height: 30px;
	}
	.contact-t-ul .contact-t-li .contact-t-li-e {
    font-size: 18px;
    padding: 4px 0 4px 0;
	}
	.contact-t-ul .contact-t-li .contact-t-li-c {
    font-size: 14px;
	}
	.contact-t-ul .contact-t-li span img{
		height: 30px;
	}
	.contact-t-ul .contact-t-li:last-child span img {
    width: 80px;
		height: 80px;
	}
	.case-t.contact-ly {
    padding: 20px 5.2% 30px 5.2%;
	}
	.contact-form input[type=text], .contact-form textarea {
		width: 100%;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 10px;
    line-height: 24px;
		font-size: 14px;
	}
	.contact-form textarea {
    height: 120px;
	}
	.contact-form input[type=submit] {
    border-radius: 10px;
    padding: 0 20px;
    line-height: 40px;
	}
	.contact-form .center {
    margin-top: 15px;
	}
	
}

.cd-fixed-bg.in-bg-1{
	background-image: url(../images/introduction/img1.jpg);
}
.cd-fixed-bg.in-bg-1 .cd-fixed-content{
	padding-top: 33.02197802197802%;
}
.cd-fixed-bg.in-bg-1 .about-con{
	top: 240px;
}

.bg155{
	background: url(../images/bg5.png) left 155px no-repeat;
}
.bg155.bg-cade{
	background-position: left 1100px;
}
.bg155-277{
	background: url(../images/bg5.png) left 155px no-repeat, 
							url(../images/bg2.png) right 978px no-repeat;
}
@media (max-width: 1600px){
	.cd-fixed-bg.in-bg-1 .about-con{
		top: 33%;
	}
}
@media (max-width: 991px){
	.bg155{
		background-position: left 120px;
		background-size: 300px;
	}
}


.in-list.case-t{
	padding-top: 0;
	padding-bottom:72px;
}
.in-list ul{}
.in-list ul li{
	margin-top: 62px;
	background: #f8f8f8;
}
.in-list ul li > span,
.in-list ul li .in-li-txt{
	display: inline-block;
	vertical-align: middle;
}
.in-list ul li > span{
	width: 46.2%;
	overflow: hidden;
}
.in-list ul li > span 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;
}
.in-list ul li:hover > span img{
	-webkit-transform: scale(1.1);
	-mos-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);	
}

.in-list ul li .in-li-txt{
	width: 53.4%;
	padding: 0 70px 0 110px;
}

.in-list ul li .in-li-txt .in-li-txt-h{
	font-size: 42px;
	font-weight: bold;
}
.in-list ul li .in-li-txt .in-li-txt-span{
	margin: 24px 0 50px 0;
}
.in-list ul li .in-li-txt .in-li-txt-span span{
	font-size: 20px;
	line-height: 46px;
	padding: 0 24px;
	border-radius: 5px;
	margin-right: 18px;
	display: inline-block;
	background: #1472b5;
	color: #fff;
}
.in-list ul li .in-li-txt .in-li-txt-span span:last-child{
	margin-right: 0;
}

.in-list ul li .in-li-txt .in-li-txt-p{
	font-size: 18px;
	line-height: 2;
}


@media (max-width: 1600px){
	.in-list ul li .in-li-txt {
		padding: 0 50px 0 90px;
	}
	.in-list ul li .in-li-txt .in-li-txt-h{
		font-size: 36px;
	}
	.in-list ul li .in-li-txt .in-li-txt-span span {
    font-size: 18px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 4px;
    margin-right: 14px;
	}
	.in-list ul li .in-li-txt .in-li-txt-p{
		font-size: 16px;
	}
}
@media (max-width: 1440px){
	.in-list ul li{
		margin-top: 50px;
	}
	.in-list ul li .in-li-txt {
		padding: 0 40px 0 70px;
	}
	.in-list ul li .in-li-txt .in-li-txt-h{
		font-size: 28px;
	}
	.in-list ul li .in-li-txt .in-li-txt-span span {
    font-size: 16px;
    line-height: 34px;
    padding: 0 18px;
    margin-right: 12px;
	}
	.in-list ul li .in-li-txt .in-li-txt-p{
		font-size: 16px;
	}
}
@media (max-width: 1199px){
	.cd-fixed-bg.in-bg-1 .cd-fixed-content {
		padding-top: 0%;
	}
	.about-con .about-tc{
		font-size: 36px;
	}
	.about-con .about-te{
		font-size: 24px;
	}
	.in-list ul li > span{
		width: 46.1%;
	}
	.in-list ul li .in-li-txt{
		width: 53.3%;
		padding: 0 3% 0 3%;
	}
	.in-list ul li .in-li-txt .in-li-txt-h{
		font-size: 22px;
	}
	.in-list ul li .in-li-txt .in-li-txt-span {
    margin: 18px 0 20px 0;
	}
	.in-list ul li .in-li-txt .in-li-txt-span span {
    font-size: 14px;
    line-height: 32px;
    padding: 0 16px;
    margin-right: 10px;
	}
	.in-list ul li .in-li-txt .in-li-txt-p{
		font-size: 14px;
	}
}
@media (max-width: 991px){
	.in-list.case-t {
    padding-top: 0;
    padding-bottom: 50px;
	}
	.in-list ul li {
    margin-top: 30px;
	}
	.in-list ul li > span{
		width: 100%;
	}
	.in-list ul li .in-li-txt{
		width: 100%;
		padding: 30px 3% 30px 3%;
	}
	.about-con .about-tc{
		font-size: 24px;
	}
	.about-con .about-te{
		font-size: 18px;
	}
}
@media (max-width: 767px){
	.about-con .about-tc{
		font-size: 18px;
	}
	.about-con .about-te{
		font-size: 14px;
	}
	.cd-fixed-bg.in-bg-1 .cd-fixed-content img{
		max-width: 150%;
		width: 150%;
		left: -25%;
	}
	.in-list ul li {
    margin-top: 20px;
	}
	.in-list ul li .in-li-txt {
    padding: 20px 3% 20px 3%;
	}
	.in-list ul li .in-li-txt .in-li-txt-h {
    font-size: 20px;
	}
}

.news-m {
	padding: 0 2.6%;
}
.news-m .news-m-li{
	position: relative;
}
.news-m .news-m-li .img-box{
	padding-bottom: 32.96703296703297%;
}
.news-m .news-m-li .news-m-text{
	left: 6.4%;
	width: 41%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
}
.news-m .news-m-li .news-m-text a{
	color: #fff;
}

.news-m .news-m-li .news-m-t{
	font-size: 28px;
	line-height: 40px;
}
.news-m .news-m-li .news-m-time{
	font-size: 18px;
	margin: 18px 0 36px 0;
}
.news-m .news-m-li .news-m-p{
	font-size: 16px;
	line-height: 30px;
}
.news-m .news-m-li .news-m-a{
	font-size: 18px;
	margin-top: 40px;
	display: inline-block;
}
.news-m .news-m-li .news-m-a:hover{
	margin-left: 5px;
	color: #1472b5;
}

.i-case-d.news ul{
	margin-top: -50px;
}
.i-case-d.news ul li{
	width: 48.2%;
	margin-right: 3.6%;
	margin-top: 50px;
	position: relative;
}
.i-case-d.news ul li:nth-child(2n){
	margin-right: 0;
}

.i-case-d.news ul li .img-box {
	padding-bottom: 45.61003420752566%;
	background: #f8f8f8;
}
.i-case-d.news ul li .img-box img{
	opacity: 0;
}

.i-case-d.news ul li .news-txt{
	padding: 0 5.7%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	color: #fff;
}
.i-case-d.news ul li .news-txt .news-time{
	font-size: 20px;
	color: #1472b5;
	font-family: 'CenturyGothic-Bold';
}
.i-case-d.news ul li .news-txt .news-t{
	font-size: 30px;
	margin: 24px 0 20px 0;
	color: #000;
}
.i-case-d.news ul li .news-txt .news-p{
	font-size: 16px;
	line-height: 1.8;
	color: #666;
}
.i-case-d.news ul li .news-txt .news-a{
	font-size: 14px;
	margin-top: 44px;
	display: inline-block;
	color: #0386ee;
	-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-case-d.news ul li:hover .img-box img{
	opacity: 1;
}
.i-case-d.news ul li:hover .news-txt .news-time,
.i-case-d.news ul li:hover .news-txt .news-t,
.i-case-d.news ul li:hover .news-txt .news-p,
.i-case-d.news ul li:hover .news-txt .news-a{
	color: #fff;
}
.i-case-d.news ul li .news-txt .news-a:hover{
	margin-left: 5px;
}
.case-de-t.news-bg .caDe-add,
.case-de-t.news-bg .caDe-add a{
	color: #fff;
}
/* .case-de-t a:hover, .case-de-t a.active {
	color: #fff;
} */
.case-de-t.news-bg .caDe-add::after{
	background: #fff;
}
@media (max-width: 1600px){
	.news-m .news-m-li .news-m-t{	
		font-size: 24px;
		line-height: 36px;
	}
	.news-m .news-m-li .news-m-time{
		font-size: 16px;
		margin: 10px 0 15px 0;
	}
	.news-m .news-m-li .news-m-p{
		font-size: 14px;
		line-height: 28px;
	}
	.news-m .news-m-li .news-m-a{
		font-size: 16px;
		margin-top: 30px;
	}

	.i-case-d.news ul li .news-txt .news-time{
		font-size: 18px;
	}
	.i-case-d.news ul li .news-txt .news-t{
		font-size: 24px;
		margin: 18px 0 16px 0;
	}
	.i-case-d.news ul li .news-txt .news-a{
		font-size: 14px;
		margin-top: 30px;
	}
}

@media (max-width: 1440px){
	.news-m .news-m-li .news-m-text{
		width: 50%;
	}
	.news-m .news-m-li .news-m-t{	
		font-size: 20px;
		line-height: 30px;
	}
	.news-m .news-m-li .news-m-time{
		margin: 8px 0 12px 0;
	}
	.news-m .news-m-li .news-m-a{
		margin-top: 20px;
	}

	.i-case-d.news ul li .news-txt .news-time{
		font-size: 16px;
	}
	.i-case-d.news ul li .news-txt .news-t{
		font-size: 22px;
		margin: 16px 0 14px 0;
	}
	.i-case-d.news ul li .news-txt .news-a{
		margin-top: 20px;
	}
}

@media (max-width: 1199px){
	.i-case-d.news ul li{
		margin-top: 30px;
	}
	.i-case-d.news ul li .news-txt .news-time{
		font-size: 16px;
	}
	.i-case-d.news ul li .news-txt .news-t{
		font-size: 18px;
		margin: 8px 0 6px 0;
	}
	.i-case-d.news ul li .news-txt .news-p{
		font-size: 14px;
	}
	.i-case-d.news ul li .news-txt .news-a{
		margin-top: 15px;
	}
}

@media (max-width: 991px){
	.i-case-d.news ul li {
		width: 100%;
    margin-top: 30px;
		margin-right: 0;
	}
	.news-m .news-m-li .news-m-text {
		width: 60%;
	}
	.news-m .news-m-li .img-box img{
		max-width: 150%;
		width: 150%;
		left: -25%;
	}
	.news-m .news-m-li .img-box {
    padding-bottom: 48%;
	}
}

@media (max-width: 767px){
	.case-de-t img{
		max-width: 300%;
	}
	.case-de-t .caDe-add{
		font-size: 12px;
		max-width: 60%;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}	
	.news-m .news-m-li .img-box img {
    max-width: 200%;
    width: 200%;
    left: -50%;
	}
	.news-m .news-m-li .img-box {
    padding-bottom: 64%;
	}
	.news-m .news-m-li .news-m-text {
    width: 75%;
	}
	.news-m .news-m-li .news-m-t {
    font-size: 18px;
    line-height: 24px;
	}
	.news-m .news-m-li .news-m-time {
    margin: 6px 0 8px 0;
	}
	.news-m .news-m-li .news-m-p {
    font-size: 14px;
    line-height: 24px;
	}
	.news-m .news-m-li .news-m-a {
    margin-top: 10px;
		font-size: 14px;
	}
	.i-case-d.news ul {
    margin-top: -40px;
	}
	.i-case-d.news ul li{
		margin-top: 20px;
	}
	.i-case-d.news ul li .img-box img{
		max-width: 200%;
    width: 200%;
    left: -50%;
	}
	.i-case-d.news ul li .img-box {
    padding-bottom: 68%;
	}
}


/*新闻详情*/
.news-datails{
	float: left;
	width: 100%;
	padding: 74px 5.2% 85px 5.2%;
}
.news-de-1{
	float: left;
	width: 70.9%;
}
.news-de-1 .news-de-1-h1{
	font-size: 46px;
	color: #333;
}
.news-de-1 .news-de-1-fun {
	font-size: 16px;
	margin-top: 18px;
	color: #666;
}
.news-de-1 .text {
	float: left;
	width: 100%;
	font-size: 18px;
	line-height: 2;
	color: #333;
	padding: 48px 0 88px 0;
	text-align: left;
	border-bottom: 1px solid #dfdfdf;
}
.news-de-1 .text img{
	max-width: 100%;
}
.news-de-1 .news-de-page{
	padding-top: 40px;
}
.news-de-1 .news-de-page a:first-child{
	font-size: 36px;
	float: left;
	max-width: 70%;
}
.news-de-1 .news-de-page a:last-child{
	font-size: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #666;
	color: #666;
	float: right;
}
.news-de-1 .news-de-page a:last-child:hover{
	margin-right: 5px;
	color: #1472b5;
	border-bottom-color: #1472b5;
}


.text-fun{
	float: right;
  width: 24.2%;
}
.text-fun .text-fun-h{
	font-size: 36px;
	margin-top: 32px;
	margin-bottom: 24px
}
.text-fun ul{
	margin-bottom: 30px;
}
.text-fun ul li{
	margin-bottom: 44px;
}
.text-fun ul li a{
	font-size: 22px;
}
.text-fun ul li a:hover{
	color: #1472b5;
}

.text-fun ul li .text-fun-time{
	font-size: 16px;
	margin-top: 10px;
}
.text-fun .text-fun-a a{
	padding-bottom: 10px;
	font-size: 20px;
	border-bottom: 1px solid #1472b5;
	color: #1472b5;
	display: inline-block;
}
.text-fun .text-fun-a a:hover{
	margin-left: 5px;
}

@media (max-width: 1600px){
	.news-de-1 .news-de-1-h1{
		font-size: 36px;
	}
	.news-de-1 .text {
    font-size: 18px;
    padding: 38px 0 68px 0;
	}
	.news-de-1 .news-de-page {
    padding-top: 30px;
	}
	.news-de-1 .news-de-page a:first-child{
		font-size: 30px;
	}
	.news-de-1 .news-de-page a:last-child {
    font-size: 18px;
    padding-bottom: 8px;
	}
	.text-fun .text-fun-h {
    font-size: 28px;
    margin-top: 24px;
    margin-bottom: 18px;
	}
	.text-fun ul li a {
    font-size: 20px;
	}
	.text-fun ul li .text-fun-time{
		font-size: 14px;
	}
	.text-fun ul li {
    margin-bottom: 30px;
	}
	.text-fun .text-fun-a a {
    padding-bottom: 8px;
    font-size: 18px;
	}
}
@media (max-width: 1440px){
	.news-de-1 .news-de-1-h1{
		font-size: 28px;
	}
	.news-de-1 .text {
    font-size: 16px;
    padding: 30px 0 48px 0;
	}
	.news-de-1 .news-de-page {
    padding-top: 20px;
	}
	.news-de-1 .news-de-page a:first-child{
		font-size: 24px;
	}
	.news-de-1 .news-de-page a:last-child {
    font-size: 16px;
    padding-bottom: 6px;
	}
	.text-fun .text-fun-h {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 14px;
	}
	.text-fun ul li a {
    font-size: 18px;
	}
	.text-fun ul li {
    margin-bottom: 24px;
	}
	.text-fun .text-fun-a a {
    padding-bottom: 6px;
    font-size: 16px;
	}
}
@media (max-width: 1366px){
	
}
@media (max-width: 1199px){
	.news-de-1{
		margin-top: 0;
	}
	.news-de-1{
		width: 100%;
	}

	.text-fun{
		width: 100%;
		margin-top: 30px;
	}
	
}
@media (max-width: 991px){
	.news-datails {
		padding: 30px 3% 30px 3%;
	}
}
@media (max-width: 767px){
	.news-datails {
	  padding: 15px 3% 15px 3%;
	}
	.news-de-1 .news-de-1-h1 {
	  font-size: 20px;
	}
	.news-de-1 .text {
		font-size: 14px;
		padding: 15px 0 0px 0;
	}
	.news-de-1 .news-de-page {
    padding-top: 15px;
	}
	.text-fun {
	  padding: 0 3%;
	}
	.news-de-1 .news-de-page a:first-child{
		max-width: 100%;
		font-size: 18px;
	}
	.news-de-1 .news-de-page a:last-child {
    font-size: 14px;
    padding-bottom: 4px;
	}
	.text-fun .text-fun-h {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
	}
	.text-fun ul li {
    margin-bottom: 20px;
	}
}
/*新闻详情end*/

/*标题渐变css*/
@media (min-width: 1200px){
	.section_title .name {
		background-image: linear-gradient(75deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 33.33%, rgba(0, 0, 0, 0) 66.66%, rgba(0, 0, 0, 0) 100%);
		background-size: 300% 100%;
		background-position-x: 100%;
		background-clip: text;
		-webkit-background-clip: text;
		color: transparent;
	}
	.section_title.white .name {
		background-image: linear-gradient(75deg, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, .5) 33.33%, rgba(255, 255, 255, 0) 66.66%, rgba(255, 255, 255, 0) 100%);
		background-size: 300% 100%;
		background-position-x: 100%;
	}
	.section_title.animation-active .name,
	.section_title.animation-active .title_box .title {
		transition: all 5s linear;
		background-position-x: 0% !important;
	}
}

@media (min-width: 1200px){
	.section_title .name {
		background-image: linear-gradient(75deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 33.33%, rgba(0, 0, 0, 0) 66.66%, rgba(0, 0, 0, 0) 100%);
		background-size: 300% 100%;
		background-position-x: 100%;
		background-clip: text;
		-webkit-background-clip: text;
		color: transparent;
	}
	.section_title.blue .name {
		background-image: linear-gradient(75deg, rgba(20, 114, 181, 1) 0%, rgba(20, 114, 181, 1) 33.33%, rgba(20, 114, 181, 0) 66.66%, rgba(20, 114, 181, 0) 100%);
		background-size: 300% 100%;
		background-position-x: 100%;
	}
	.section_title.ccc .name {
		background-image: linear-gradient(75deg, rgba(153, 153, 153, 1) 0%, rgba(153, 153, 153, 1) 33.33%, rgba(153, 153, 153, 0) 66.66%, rgba(153, 153, 153, 0) 100%);
		background-size: 300% 100%;
		background-position-x: 100%;
	}


	.section_title.animation-active .name,
	.section_title.animation-active .title_box .title {
		transition: all 5s linear;
		background-position-x: 0% !important;
	}
}