﻿@charset "utf-8";
/* CSS Document */

/*--- whole ---*/
html {
	font-size: 100%;
}

body {
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	color: #666;
}

html,
body {
	height: 100%;
}

body {
	width: 100%;
	overflow-x: hidden;
}

table , table tr td {
	border: none;
	cellpadding: 0;
	cellspacing: 0;
}

.w1200 {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.line-clamp1 {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.line-clamp2 {
	display: -webkit-box;
	display: box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	box-orient: vertical;
}

.bg1 {
/* background: url(../images/bg1.jpg) left center no-repeat; *//* background-attachment:fixed; */
}

.color-white {
	color: #fff;
}

.pd0 {
	padding-bottom: 0 !important;
}

/*clearfix*/
.clearfix {
	*zoom: 1
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: ""
}

.clearfix:after {
	clear: both
}

.color-blue {
	color: #00b0b7;
}

.color333 {
	color: #333;
}

.d-black {
	display: block !important;
}

.bg-white {
	background-color: #fff !important;
}

a:hover {
	color: #00b0b7;
}

/*初始化按钮*/
.btn {
	display: inline-block;
	text-align: center;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: relative;
	cursor: pointer;
}

.btn span {
	display: inline-block;
}

.pb0 {
	padding-bottom: 0 !important;
}

.pd20 {
	padding-bottom: 20px !important;
}

.pd30 {
	padding-bottom: 30px !important;
}

/*通用img*/
img.rollover {
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
	filter: Alpha(opacity=0);
	z-index: 2;
}

img {
	max-width: 100%;
}

input.text {
	display: block;
	width: 100%;
	height: 100%;
	border: 0px;
	background: none;
}

.header .nav-icon {
	width: 9%;
	min-width: 50px;
	padding: 45px 10px 0;
	height: 50px;
	float: right;
	cursor: pointer;
	display: none;
}

.header.cur .nav-icon {
	padding-top: 25px;
}

.nav-icon a {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #666;
	position: relative;
}

.nav-icon a:before,
.nav-icon a:after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background-color: #666;
	position: absolute;
	left: 0px;
}

.nav-icon a:before {
	top: -10px;
}

.nav-icon a:after {
	bottom: -10px;
}

.nav-icon.cur a {
	-moz-animation: buttonAnimation 0.3s ease forwards;
	-webkit-animation: buttonAnimation 0.3s ease forwards;
	animation: buttonAnimation 0.3s ease forwards;
}

.nav-icon.cur a:before {
	-moz-animation: buttonAnimationBefore 0.3s ease forwards;
	-webkit-animation: buttonAnimationBefore 0.3s ease forwards;
	animation: buttonAnimationBefore 0.3s ease forwards;
}

.nav-icon.cur a:after {
	-moz-animation: buttonAnimationAfter 0.3s ease forwards;
	-webkit-animation: buttonAnimationAfter 0.3s ease forwards;
	animation: buttonAnimationAfter 0.3s ease forwards;
}

@-moz-keyframes buttonAnimationBefore {
	0% {
		-moz-transform: translateY(0px) rotate(0);
		transform: translateY(0px) rotate(0);
	}

	50% {
		-moz-transform: translateY(10px) rotate(0);
		transform: translateY(10px) rotate(0);
	}

	100% {
		-moz-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}
}

@-webkit-keyframes buttonAnimationBefore {
	0% {
		-webkit-transform: translateY(0px) rotate(0);
		transform: translateY(0px) rotate(0);
	}

	50% {
		-webkit-transform: translateY(10px) rotate(0);
		transform: translateY(10px) rotate(0);
	}

	100% {
		-webkit-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}
}

@keyframes buttonAnimationBefore {
	0% {
		-moz-transform: translateY(0px) rotate(0);
		-ms-transform: translateY(0px) rotate(0);
		-webkit-transform: translateY(0px) rotate(0);
		transform: translateY(0px) rotate(0);
	}

	50% {
		-moz-transform: translateY(10px) rotate(0);
		-ms-transform: translateY(10px) rotate(0);
		-webkit-transform: translateY(10px) rotate(0);
		transform: translateY(10px) rotate(0);
	}

	100% {
		-moz-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		-webkit-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}
}

@-moz-keyframes buttonAnimationAfter {
	0% {
		-moz-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-moz-transform: translateY(-10px) rotate(0);
		transform: translateY(-10px) rotate(0);
	}

	100% {
		-moz-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
	}
}

@-webkit-keyframes buttonAnimationAfter {
	0% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-webkit-transform: translateY(-10px) rotate(0);
		transform: translateY(-10px) rotate(0);
	}

	100% {
		-webkit-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
	}
}

@keyframes buttonAnimationAfter {
	0% {
		-moz-transform: translateY(0) rotate(0);
		-ms-transform: translateY(0) rotate(0);
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-moz-transform: translateY(-10px) rotate(0);
		-ms-transform: translateY(-10px) rotate(0);
		-webkit-transform: translateY(-10px) rotate(0);
		transform: translateY(-10px) rotate(0);
	}

	100% {
		-moz-transform: translateY(-10px) rotate(-45deg);
		-ms-transform: translateY(-10px) rotate(-45deg);
		-webkit-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
	}
}

@-moz-keyframes buttonAnimation {
	0% {
		background: #aaaaaa;
	}

	50% {
		background: rgba(255, 255, 255, 0);
	}

	100% {
		background: rgba(255, 255, 255, 0);
	}
}

@-webkit-keyframes buttonAnimation {
	0% {
		background: #aaaaaa;
	}

	50% {
		background: rgba(255, 255, 255, 0);
	}

	100% {
		background: rgba(255, 255, 255, 0);
	}
}

@keyframes buttonAnimation {
	0% {
		background: #aaaaaa;
	}

	50% {
		background: rgba(255, 255, 255, 0);
	}

	100% {
		background: rgba(255, 255, 255, 0);
	}
}

.banner {
	height: 100%;
	width: 100%;
}

.banner .swiper-slide .text {
	width: 695px;
	height: 220px;
	position: absolute;
	left: 50%;
	margin-left: -640px;
	z-index: 9;
	bottom: -220px;
	padding: 10px 45px;
	font-size: 18px;
	line-height: 48px;
	transition: bottom .5s ease-in-out;
	-moz-transition: bottom .5s ease-in-out;
	-webkit-transition: bottom .5s ease-in-out;
	color: #fff;
	transform: translateY(50%);
	-webkit-transform: translateY(50%);
}

.banner .swiper-slide .text h1 {
	font-size: 42px;
	line-height: 86px;
	font-weight: normal;
}

.banner .swiper-slide.swiper-slide-active .text {
	bottom: 50%;
	margin-bottom: 0px;
}

.banner .swiper-pagination {
	bottom: 40px !important;
}

.banner .swiper-pagination-bullet {
	width: 54px;
	height: 3px;
	background: #4e4e56;
	border-radius: 0;
}

.banner .swiper-pagination-bullet-active {
	background-color: #00b0b7 !important;
}

.wap-banner {
	height: 15rem;
	width: 100%;
	display: none;
}

.wap-banner .swiper-pagination {
	bottom: 40px !important;
}
.abUs-comHist .p-title .t{
	    padding: 22px 0;
		font-size: 36px;
		text-align: center;
	}
.wap-banner .swiper-pagination-bullet {
	width: 54px;
	height: 3px;
	background: #4e4e56;
	border-radius: 0;
}

.wap-banner .swiper-pagination-bullet-active {
	background-color: #00b0b7 !important;
}

.index-title {
	padding: 32px 0;
	height: auto;
	overflow: hidden;
	background-color: #fff;
}

.index-title h3.title {
	text-align: center;
	font-size: 32px;
	color: #333;
	font-weight: normal;
	position: relative;
	height: 100px;
	line-height: 100px;
	position: relative;
}

.index-title h3.title:after {
	position: absolute;
	width: 60px;
	height: 4px;
	background-color: #d4d4d4;
	content: '';
	left: 50%;
	margin-left: -30px;
	bottom: 0;
}

.index-title .con {
	max-width: 830px;
	margin: 0 auto;
	padding-top: 16px;
	line-height: 24px;
	text-align: center;
}

.index-pro {
	width: 100%;
	height: auto;
	overflow: hidden;
	background-color: #fff;
}

.index-pro dl {
	width: calc(50% - 4px);
	margin: 0 2px;
	display: block;
	float: left;
	background: #f1f1f1;
	padding: 24px;
	padding-left: 30px;
}

.index-pro dl:first-child {
	margin-left: -50%;
	transition: margin-left .5s ease-in-out;
	-moz-transition: margin-left .5s ease-in-out;
	-webkit-transition: margin-left .5s ease-in-out;
	transition-delay: .1s;
	-moz-transition-delay: .1s;
	-webkit-transition-delay: .1s;
	float: left;
}

.index-pro dl:last-child {
	float: right;
	margin-right: -50%;
	transition: margin-right .5s ease-in-out;
	-moz-transition: margin-right .5s ease-in-out;
	-webkit-transition: margin-right .5s ease-in-out;
	transition-delay: .1s;
	-moz-transition-delay: .1s;
	-webkit-transition-delay: .1s;
}

.index-pro.cur dl:first-child {
	margin-left: 0;
}

.index-pro.cur dl:last-child {
	margin-right: 0;
}

.index-pro dl dd {
	width: 33%;
	float: left;
}

.index-pro dl dd h3 {
	height: 45px;
	line-height: 45px;
	font-size: 36px;
	text-transform: uppercase;
}

.index-pro dl dd .con {
	height: 44px;
	line-height: 22px;
	overflow: hidden;
}

.index-pro dl dd .link {
	padding: 30px 0;
	height: auto;
	overflow: hidden;
}

.index-pro dl dd .link a {
	height: 42px;
	line-height: 40px;
	display: inline-block;
	width: calc(50% - 12px);
	min-width: 130px;
	max-width: 150px;
	float: left;
	margin: 6px 12px;
	margin-left: 0;
	border: solid 1px #747a7a;
	border-radius: 20px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 60px;
	background-color: #f1f1f1;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
}

.index-pro dl dd .link a.a1 {
	background-image: url(../images/i1.png);
}

.index-pro dl dd .link a.a2 {
	background-image: url(../images/i2.png);
}

.index-pro dl dd .link a.a3 {
	background-image: url(../images/i3.png);
}

.index-pro dl dd .link a.a4 {
	background-image: url(../images/i4.png);
}

.index-pro dl dd .link a:hover {
	background-color: #00b0b7;
	color: #fff;
	border-color: #00b0b7;
}

.index-pro dl dd .link a.a1:hover {
	background-image: url(../images/i1-1.png);
}

.index-pro dl dd .link a.a2:hover {
	background-image: url(../images/i2-1.png);
}

.index-pro dl dd .link a.a3:hover {
	background-image: url(../images/i3-1.png);
}

.index-pro dl dd .link a.a4:hover {
	background-image: url(../images/i4-1.png);
}

.index-pro dl dt {
	width: 55.5%;
	float: right;
}

.index-pro dl dd a.more {
	background: url(../images/more.png) right center no-repeat;
	height: 20px;
	line-height: 20px;
	display: block;
	float: left;
	padding-right: 25px;
}

.index-gallery {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #fff;
	padding-bottom: 100px;
	background: #f1f1f1;
	position: relative;
}

.index-gallery .swiper-slide {
	width: 25%;
	float: left;
}

.index-gallery ul li {
	width: 100%;
	float: left;
	position: relative;
	text-align: center;
	border: solid 1px #fff;
}

.index-gallery ul li img {
	width: 100%;
}

.index-gallery ul li .con {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(8, 85, 166, .9);
	opacity: 0;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

.index-gallery ul li:hover .con {
	opacity: 1;
}

.index-gallery ul li .con p {
	color: #fff;
	font-size: 24px;
	line-height: 36px;
	height: 72px;
	overflow: hidden;
}

.index-gallery ul li .con .more {
	background: url(../images/m.png) 68px center no-repeat;
	width: 104px;
	height: 40px;
	border-radius: 20px;
	line-height: 40px;
	display: inline-block;
	background-color: rgba(0, 189, 188, 1);
	padding-left: 20px;
	color: rgba(255,255,255, .8);
	margin-top: 30px;
	text-align: left;
}

.index-gallery ul li .con .more:hover {
	background-color: rgba(0, 189, 188, .8);
}

.index-gallery ul li .content {
	position: absolute;
	height: 142px;
	padding: 0 40px;
	width: 100%;
	top: 50%;
	margin-top: -71px;
}

.index-gallery .more-list {
	position: absolute;
	width: 210px;
	height: 50px;
	bottom: 25px;
	left: 50%;
	margin-left: -105px;
}

.index-gallery .swiper-button-prev,
.index-gallery .swiper-button-next {
	width: 50px;
	height: 50px;
	border-radius: 4px;
	margin-top: -25px;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
}

.index-gallery .swiper-button-prev:hover,
.index-gallery .swiper-button-next:hover {
	background-color: #00b0b7;
	6
}

.index-gallery a.more {
	width: 92px;
	height: 50px;
	line-height: 50px;
	display: block;
	margin: 0 auto;
	background: url(../images/more2.png) center center no-repeat #fff;
	border-radius: 4px;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
}

.index-gallery a.more:hover {
	background-color: #00b0b7;
}

.index-gallery .swiper-button-prev {
	background: url(../images/left.png) center center no-repeat #fff;
	left: 0;
}

.index-gallery .swiper-button-next {
	background: url(../images/right.png) center center no-repeat #fff;
	right: 0;
}

.index-about {
	width: 100%;
	background-color: #fff;
}

.index-about-lists {
	margin-top: 36px;
	height: auto;
	overflow: hidden;
	border: 1px solid #eee;
}

.index-about-lists dl {
	width: 20%;
	float: left;
}

.index-about-lists dl dt {
	width: 100%;
	height: 210px;
	position: relative;
}

.index-about-lists dl .ofH {
	height: 100%;
}

.index-about-lists dl dt img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.index-about-lists dl dd {
	height: 210px;
	padding: 50px 20px;
	text-align: left;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
}

.index-about-lists dl dd .con {
	text-align: left;
	height: 44px;
	line-height: 22px;
	padding-top: 0;
	overflow: hidden;
	margin-top: 12px;
}

.index-about-lists dl dd .con a:hover {
	color: #fff;
}

.index-about-lists dl dd h3 {
	font-weight: normal;
	font-size: 18px;
}

.index-about-lists dl dd h3 a:hover {
	color: #fff;
}

.index-about-lists dl:hover dd {
	background-color: #00b0b7;
	color: #fff;
	border-top: solid 1px #66d0d4;
}

.index-about-lists dl:nth-child(2n):hover dd {
	border-top: none;
	border-bottom: solid 1px #66d0d4;
}

.index-about-lists dl dt:before {
	position: absolute;
	content: '';
	left: 22px;
	bottom: -1px;
	background: url(../images/icon.png) no-repeat;
	width: 18px;
	height: 8px;
	z-index: 99;
	display: none;
}

.index-about-lists dl:nth-child(2n) dt:before {
	top: -1px;
	transform: rotate(180deg);
}

.index-about-lists dl:hover dt:before {
	display: block;
}

.index-vod {
	height: 450px;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin: 20px 0 0;
}

.index-vod .bg {
	width: 100%;
	height: 100%;
/*background-repeat:no-repeat;background-position:center center;background-size:cover;background-attachment:fixed;background-image:url(../images/bg1.jpg);*/
	position: absolute;
	top: 0px;
	left: 0px;
	object-fit: cover;
}

.index-vod .vod-btn {
	width: 260px;
	height: 80px;
	line-height: 80px;
	background-color: rgba(0, 0, 0, .2);
	background-image: url(../images/vod.png);
	background-position: 22px center;
	background-repeat: no-repeat;
	position: absolute;
	left: 50%;
	margin-left: -130px;
	margin-top: -40px;
	top: 50%;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
	border: 1px solid #fff;
	z-index: 2;
}

.index-vod .vod-btn:hover {
	background-color: #00b0b7;
}

.index-vod .vod-btn a {
	padding-left: 84px;
	display: block;
	color: #fff;
	font-size: 18px;
}

.index-vod .bg {
	transform: matrix(1.1, 0, 0, 1.1, 0, 0);
	-webkit-transition: all 0.4s ease 1.2s;
	-moz-transition: all 0.4s ease 1.2s;
	-ms-transition: all 0.4s ease 1.2s;
	-o-transition: all 0.4s ease 1.2s;
	transition: all 0.4s ease 1.2s;
}

.index-vod.active .bg {
	transition-delay: 0.4s !important;
	transform: matrix(1.0, 0, 0, 1.0, 0, 0);
	-webkit-transition: all 7.0s ease;
	-moz-transition: all 7.0s ease;
	-ms-transition: all 7.0s ease;
	-o-transition: all 7.0s ease;
	transition: all 7.0s ease;
}

.index-news {
	background: #fff;
	height: auto;
	overflow: hidden;
}

.index-news .lists {
	padding-bottom: 40px;
	height: auto;
	overflow: hidden;
}

.index-news .lists .item {
	width: calc(50% - 40px);
	margin: 25px 20px;
	float: left;
}

.index-news .lists .item dl {
	width: 100%;
}

.index-news .lists dl dt {
	width: 36%;
	float: left;
}

.index-news .lists dl dd {
	width: 61.6%;
	float: right;
}

.index-news .lists dl dd h3 {
	line-height: 22px;
	font-size: 18px;
	font-weight: normal;
}

.index-news .lists dl dd .con {
	height: 52px;
	margin-top: 6px;
	border-bottom: solid 1px #e5e5e5;
}

.index-news .lists dl dd .con .content {
	height: 44px;
	line-height: 22px;
	overflow: hidden;
}

.index-news .lists dl dd a.more {
	display: block;
	float: left;
	background: url(../images/right.png) right center no-repeat;
	padding-right: 22px;
	margin-top: 8px;
}

.index-news .lists .item:nth-child(2n+1) dl {
	transition: margin-left .5s ease-in-out;
	-moz-transition: margin-left .5s ease-in-out;
	-webkit-transition: margin-left .5s ease-in-out;
	margin-left: -100%;
}

.index-news .lists .item:nth-child(2n+2) dl {
	transition: margin-left .5s ease-in-out;
	-moz-transition: margin-left .5s ease-in-out;
	-left-transition: margin-left .5s ease-in-out;
	margin-left: 104%;
}

.index-news .lists.cur .item:nth-child(2n+1) dl {
	margin-left: 0;
}

.index-news .lists.cur .item:nth-child(2n+2) dl {
	margin-left: 0;
}

.ny-main {
	padding: 0 0 40px 0;
	height: auto;
	overflow: hidden;
	
}
.f9f9{
	background: #f9f9f9;
}
.pro-type {
	padding: 36px 0;
	height: auto;
	overflow: hidden;
	border-bottom: solid 1px #e5e5e5;
}

.pro-type span {
	display: inline-block;
	width: 110px;
	color: #00b0b7;
	font-size: 16px;
}

.pro-type ul li {
	padding: 10px 0;
}

.pro-type ul li a {
	padding: 0 16px;
	margin: 0 8px;
	border: solid 1px #c6c6c6;
	border-radius: 16px;
	line-height: 32px;
	display: inline-block;
}
.mt20{
	margin-top: 30px;
}
.pro-type ul li a.cur,
.pro-type ul li a:hover {
	background-color: #00b0b7;
	border-color: #00b0b7;
	color: #fff !important;
}

.pro-lists {
	padding:10px 0 30px 0;
	width: 75%;
	float: right;
	background: #fff;

}

.pro-lists ul li {
	width: calc(33.33% - 30px);
	margin: 15px;
	position: relative;
	float: left;
}

.pro-lists ul li ol{
	padding: 5px;
	height: 70px;
}
.pro-lists ul li ol dd span{
	color: #00b0b7;
}

.pro-lists ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: solid 1px #e5e5e5;
}

.pro-lists ul li .con {
	padding: 18px;
	text-align: center;
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 167, 174, .8);
	opacity: 0;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}
.pro-lists ul li .con1{
	position: absolute;
	top: 34%;
	width: 100%;
	left: 0;
}
.pro-lists ul li:hover .con {
	opacity: 1;
}

.pro-lists ul li .con .more {
	border-radius: 16px;
	width: 106px;
	height: 32px;
	line-height: 32px;
	display: inline-block;
	padding-left: 22px;
	text-align: left;
	background: url(../images/m.png) 68px center no-repeat rgba(0, 189, 182, 1);
	margin-top: 10px;
}

.pro-lists ul li .con .more:hover {
	color: #fff;
	background-color: rgba(0, 189, 182, .8)
}

.pro-lists ul li .con h3 {
	line-height: 42px;
	font-size: 22px;
	font-weight: normal;
}

.pro-lists ul li .con .content {
	line-height: 28px;
	height: 112px;
}

.proview {
	width: 100%;
 /*height: 100%;*/
	height: 670px;
	min-height: 400px;
	position: relative;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
	overflow: hidden;
}

.proview.pro-view1 {
	height: 100%;
}

.pro-view1 {
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.pro-view1 .content {
	max-width: 830px;
	min-height: 320px;
	position: relative;
	top: -300px;
 /*position: absolute; left: 50%;top:50%; transform:translate(-50%,-80%);-webkit-transform:translateY(-50%,-80%);*/
	transition: all .5s ease-in-out .2s;
	-moz-transition: all .5s ease-in-out .2s;
	-webkit-transition: all .5s ease-in-out .2s;
	opacity: 0;
	margin: 0 auto !important;
}

.pro-view1.cur .content {
/*transform:translate(-50%,-50%);-webkit-transform:translateY(-50%,-50%);*/
	top: 100px;
	opacity: 1;
}

.pro-view1 .content h3 {
	font-size: 32px;
	font-weight: normal;
	padding: 12px 0;
}

.pro-view1 .content .con {
	line-height: 30px;
	font-size: 16px;
	padding: 12px 0 24px 0;
}

.pro-view1 .content .list {
	line-height: 30px;
}

.pro-view1 .content .list i {
	padding-right: 24px;
}

.pro-view1 .content .list a {
	color: rgba(0, 189, 188, 1);
	padding: 0 6px;
}

.pro-view1 .content .list a:hover {
	color: rgba(0, 189, 188, .8);
}

.pro-view2 {
	background-color: #f5f6f1;
}

.pro-view-type2 .w1200 {
	height: 100%;
}

.pro-view-type2 .left {
	width: 50%;
	position: relative;
	height: 100%;
}

.pro-view-type2 .left .content {
	position: absolute;
	width: 100%;
	left: -150%;
	top: 50%;
	transform: translateY(-50%);
	transition: left .8s ease-in-out;
	-moz-transition: left .8s ease-in-out;
	-webkit-transition: left .8s ease-in-out;
}

.pro-view-type2 .left .content h3 {
	padding: 12px 0;
	font-size: 36px;
	line-height: 50px;
	font-weight: normal;
}

.pro-view-type2 .left .content {
	line-height: 30px;
	font-size: 16px;
	padding: 12px 0 24px 0;
}

.pro-view-type2 .left .content .li {
	height: 82px;
	padding-top: 24px;
}

.pro-view-type2 .left .content .li dl {
	float: left;
}

.pro-view-type2 .left .content .li dl dt,
.pro-view-type2 .left .content .li dl dd {
	float: left;
}

.pro-view-type2 .left .content .li dl dd {
	padding: 0 32px 0 10px;
}

.pro-view-type2 .left .content .li dl dd h3 {
	font-size: 36px;
	font-weight: normal;
	color: #00b0b7;
}

.pro-view-type2.cur .left .content {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.pro-view-type2 .right {
	width: 43%;
	position: relative;
	height: 100%;
}

.pro-view-type2 .right .img-box {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	right: -200%;
	transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-webkit-transition: all .8s ease-in-out;
}

.pro-view-type2.cur .right .img-box {
	right: 0;
}

.pro-view-type1 .left,
.pro-view-type1 .right {
	height: 100%;
	position: relative;
}

.pro-view-type1 .w1200 {
	height: 100%;
}

.pro-view-type1 .left {
	width: 50%;
}

.pro-view-type1 .left .img-box {
	width: 100%;
	position: absolute;
	left: -200%;
	top: 50%;
	transform: translateY(-50%);
	transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-webkit-transition: all .8s ease-in-out;
}

.pro-view-type1 .right {
	width: 48%;
	text-align: right;
}

.pro-view-type1 .right .content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -200%;
	transition: right .8s ease-in-out;
	-moz-transition: right .8s ease-in-out;
	-webkit-transition: right .8s ease-in-out;
}

.pro-view-type1 .right .content h3 {
	padding: 12px 0;
	font-size: 36px;
	font-weight: normal;
}

.pro-view-type1 .right .content .con {
	padding: 12px 0;
	line-height: 30px;
}

.pro-view3 {
	color: #fff;
}

.pro-view-type1.cur .left .img-box {
	left: 0;
}

.pro-view-type1.cur .right .content {
	right: 0;
}

.pro-view4 {
	background-color: #fff;
}

.pro-view5 {
	background: #f5f6f1;
	padding: 36px 0;
}

.pro-view5 .w1200 {
	height: 100%;
}

.pro-view5 .content {
	max-width: 920px;
	margin: 0 auto;
	line-height: 30px;
	font-size: 16px;
	text-align: center;
}

.pro-view5 .content h3 {
	padding: 12px 0;
	font-size: 36px;
	font-weight: normal;
}

.pro-view5 .content .li {
	text-align: center;
	padding-top: 24px;
}

.pro-view5 .content .li dl {
	display: inline-block;
}

.pro-view5 .content .li dl dt,
.pro-view5 .content .li dl dd {
	float: left;
}

.pro-view5 .content .li dl dd {
	padding: 10px 32px 0 10px;
	text-align: left;
}

.pro-view9 {
	background-color: #fff;
}

.pro-view9 .box {
	position: relative;
	padding-bottom: 30%;
}

.pro-view9 .pic {
	text-align: center;
	position: absolute;
	padding-top: 50%;
	width: 100%;
	transition: padding-top .8s ease-in-out;
	-moz-transition: padding-top .8s ease-in-out;
	-webkit-transition: padding-top .8s ease-in-out;
}

.pro-view9.cur .pic {
	text-align: center;
	position: absolute;
	padding-top: 0;
	width: 100%;
}

.pro-view5 .list {
	max-width: 1026px;
	margin: 0 auto;
	padding-top: 36px;
}

.pro-view5 .list ul li {
	display: block;
	width: calc(33.33% - 12px);
	margin: 0 6px;
	float: left;
	position: relative;
	overflow-x: hidden;
}

.pro-view5 .list ul li:nth-child(1) img {
	margin-left: -100%;
}

.pro-view5 .list ul li:nth-child(2) img {
	margin-top: -100%;
}

.pro-view5 .list ul li:nth-child(3) img {
	margin-left: 100%;
}

.pro-view5 .list.cur ul li:nth-child(1) img {
	margin-left: 0;
}

.pro-view5 .list.cur ul li:nth-child(2) img {
	margin-top: 0;
}

.pro-view5 .list.cur ul li:nth-child(3) img {
	margin-left: 0;
}

.pro-view5 .box {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.pro-view6 .w1200 {
	height: 100%;
	position: relative;
}

.pro-view6 .content {
	width: 100%;
	text-align: right;
	line-height: 30px;
	right: -80%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	transition: right .8s ease-in-out;
	-moz-transition: right .8s ease-in-out;
	-webkit-transition: right .8s ease-in-out;
}

.proview h3 {
	font-size: 36px;
	padding: 12px 0;
	font-weight: normal;
}

.pro-view6.cur .content {
	right: 0;
}

.pro-view7,
.pro-view8 {
	background-color: #f5f6f1;
	color: #666;
}

.pro-detail {
	padding: 36px 0;
}

.pro-detail h3 {
	font-size: 36px;
	padding: 12px 0;
	font-weight: normal;
	text-align: center;
}

.pro-detail .con {
	padding: 20px 0;
}

.pro-view2-1 {
	background-color: #fff;
}

.ny-current {
	border-bottom: solid 1px #eaeaea;
}

.cur-nav {
	border-left: solid 1px #eaeaea;
}

.cur-nav ul li {
	float: left;
}

.cur-nav ul li a {
	display: block;
	padding: 0 18px;
	line-height: 65px;
	border-right: solid 1px #eaeaea;
}

.cur-nav ul li.cur a {
	color: #fff;
	background-color: #00b0b7;
	position: relative;
}

.cur-nav ul li.cur a:after {
	position: absolute;
	width: 24px;
	height: 10px;
	background: url(../images/down.png) no-repeat;
	left: 50%;
	margin-left: -12px;
	bottom: -10px;
	content: '';
	z-index: 2;
}

.ny-current .curr {
	line-height: 65px;
	background: url(../images/cur.png) left center no-repeat;
	padding-left: 24px;
}

.support1 {
	padding-top: 40px;
}

.support1 .box {
	height: auto;
	overflow: hidden;
	background: url(../images/tel.png) right bottom no-repeat #f8f8f8;
}

h3.sup-title {
	font-size: 36px;
	padding: 30px 0;
	font-weight: normal;
	text-align: center;
}

.support1 .item {
	width: 50%;
}

.support1-le {
	padding: 20px 32px;
	background-color: #00b0b7;
}

.support1-le h3 {
	font-weight: normal;
	font-size: 18px;
	line-height: 42px;
	color: #fff;
	border-bottom: solid 1px #66d0d3;
}

.support1-le .list {
	height: auto;
	overflow: hidden;
	padding: 6px 0;
}

.support1-le .list ul li {
	display: inline-block;
	float: left;
	margin: 6px 0;
	line-height: 32px;
	color: #fff;
	padding-right: 20px;
}

.support1-ri {
	padding: 20px 40px;
	font-size: 16px;
	line-height: 30px;
}

.support1-ri h3 {
	font-size: 18px;
	line-height: 42px;
	padding-bottom: 12px;
	font-weight: normal;
}

.support2 {
	background: url(../images/support2.jpg) top center no-repeat;
	margin-top: 70px;
	padding: 50px 0;
	padding-bottom: 150px;
}

.support2 .box {
	max-width: 800px;
	border: solid 2px #fff;
	margin: 0 auto;
	margin-top: 30px;
	padding: 3% 7%;
	background-color: rgba(0,0,0, .15);
	line-height: 28px;
	font-size: 18px;
	text-align: center;
}

.support3 {
	padding: 50px 0;
}

.support3 dl {
	border: solid 1px #e9e9e9;
	width: calc(33.33% - 32px);
	margin: 0 16px;
	float: left;
	text-align: center;
}

.support3 dl dt {
	background-color: #f7f7f7;
	border-bottom: solid 1px #e9e9e9;
	height: 132px;
	line-height: 132px;
}

.support3 dl dd {
	padding: 22px;
	height: 148px;
	line-height: 26px;
	color: #585858;
	overflow: hidden;
}

.support4 {
	background-color: #f9f9f9;
	padding: 40px 0;
}

.support4 .item dl {
	margin: 10px 0;
	width: 100%;
	float: left;
}

.support4 .item dl dt {
	padding: 0 40px 0 0;
	height: 50px;
	line-height: 48px;
	border: solid 1px #dedede;
	cursor: pointer;
	font-size: 16px;
	position: relative;
	overflow: hidden;
}

.support4 .item dl dt i {
	background-color: #dedede;
	width: 50px;
	display: block;
	float: left;
	text-align: center;
	margin-right: 20px;
	border-right: solid 1px #dedede;
}

.support4 .item dl dd {
	background-color: #fff;
	padding: 20px 70px;
	line-height: 22px;
	display: none;
}

.support4 .item  h3 {
	color: #00b0b6;
	font-size: 16px;
}

.support4 .item dl.cur dt {
	color: #fff;
	background-color: #00b0b6;
}

.support4 .item dl.cur dt i {
	color: #fff;
	background-color: #00b0b6;
}

.support4 .item dl.cur dd {
	display: block;
}

.support4 .swiper-container {
	max-width: 1200px;
	margin: 0 auto;
}

.support4 .swiper-pagination {
	position: static;
	padding-top: 20px;
	text-align: center;
	width: 100%;
}

.support4 .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 4px;
	background: #dedede;
	border-radius: 0;
	border-radius: 5px;
}

.support4 .swiper-pagination-bullet-active {
	background-color: #00b0b7 !important;
}

.ny-banner {
	display: block;
}

.ny-banner img {
	height: 100%;
	object-fit: cover;
}

.wap-ny-banner {
	display: none;
}

.wap-ny-banner img {
	height: 100%;
	object-fit: cover;
}

.support4 .item dl dt:after {
	content: "";
	display: block;
	width: 29px;
	height: 100%;
	background: url(../images/icon-dd3.png) no-repeat center center;
	position: absolute;
	right: 10px;
	top: 0px;
}

.support4 .item dl.cur dt:after {
	background-image: url(../images/icon-dd3-2.png);
}

.ny-nav {
	max-width: 1200px;
	margin: 0 auto;
}

.download {
	padding-top: 50px;
}

.dl-type {
	padding-bottom: 34px;
	border-bottom: solid 1px #eaeaea;
	text-align: center;
}

.dl-type ul li {
	height: 56px;
	line-height: 54px;
	text-align: center;
	border: solid 1px #eaeaea;
	display: inline-block;
	border-radius: 26px;
	padding: 0 46px;
	margin: 0 10px;
	cursor: pointer;
	font-size: 18px;
}

.dl-type ul li.cur {
	background-color: #00b0b6;
	color: #fff;
}

.dl-type ul li.cur a:hover {
	color: #fff !important;
}

.download .lists {
}

.download .lists .box {
	width: 100%;
	overflow: hidden;
	overflow-x: auto;
}

.download .lists table {
	width: 1200px;
}

.download .lists table tr td {
	line-height: 48px;
	background: #f1f1f1;
	padding: 0 20px;
	border-bottom: solid 10px #fff;
	transition: background-color .2s ease-in-out;
	-moz-transition: background-color .2s ease-in-out;
	-webkit-transition: background-color .2s ease-in-out;
}

.download .lists table tr td a.down {
	background: url(../images/down-1.png) right center no-repeat;
	height: 48px;
	display: inline-block;
	padding-right: 35px;
	font-style: normal;
	cursor: pointer;
}

.download .lists table tr:hover td {
	color: #fff;
	background-color: #00b0b6;
}

.download .lists table tr:hover td a.down {
	background: url(../images/down-2.png) right center no-repeat;
	color: #fff !important;
}

.download h3.title {
	height: 75px;
	padding-top: 25px;
	line-height: 50px;
	font-size: 24px;
	font-weight: normal;
}

.popup-down {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	; width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
	z-index: 99;
}

.popup-down .box {
	width: 600px;
	height: 460px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border: solid 10px #00b0b6;
	box-shadow: 0 0 10px rgba(0,0,0, .5);
	padding: 60px;
}

.popup-down .box .tip {
	background-color: #eee;
	padding: 16px;
	line-height: 28px;
}

.popup-down .box .tip h3 {
	text-align: center;
	font-weight: normal;
	color: #333;
}

.popup-down .box table tr td {
	text-align: center;
}

.popup-down .box .txt {
	width: 100%;
	height: 40px;
	line-height: 38px;
	border: solid 1px #cacaca;
	padding: 0 10px;
}

.popup-down .box .btn {
	width: 72px;
	height: 22px;
	border: none;
	background-color: #ededed;
	transition: background-color .2s ease-in-out;
	-moz-transition: background-color .2s ease-in-out;
	-webkit-transition: background-color .2s ease-in-out;
	margin: 0 4px;
}

.popup-down .box .btn:hover {
	background-color: #00b2b6;
	color: #fff;
}

.popup-down .box .close {
	width: 28px;
	height: 28px;
	background: url(../images/close.png) no-repeat;
	position: absolute;
	right: 36px;
	top: 36px;
	cursor: pointer;
}

.ny-main2 {
	background-color: #f9f9f9;
	padding: 32px 0 42px 0;
}

.ny-main2 .lists dl {
	display: block;
	width: 100%;
	float: left;
	padding: 22px;
	background-color: #fff;
	height: auto;
	overflow: hidden;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
	margin: 12px 0;
}

.ny-main2 .lists dl dt {
	width: 25%;
	float: left;
}

.ny-main2 .lists dl dd {
	width: 72%;
	float: right;
}

.ny-main2 .lists dl dd .left {
	float: left;
	width: 82%;
}

.ny-main2 .lists dl dd .left h3 {
	line-height: 48px;
	font-size: 22px;
	font-weight: normal;
	overflow: hidden;
}

.ny-main2 .lists dl dd .left .con {
	height: 48px;
	line-height: 24px;
	overflow: hidden;
}

.ny-main2 .lists dl dd .right {
	margin-top: 35px;
	width: 15%;
	float: right;
}

.ny-main2 .lists dl dd .right p {
	text-align: center;
	font-size: 18px;
	padding-top: 5px;
}

.ny-main2 .lists dl dd .right p:nth-child(1) {
	font-size: 60px;
	position: relative;
}

.ny-main2 .lists dl dd .right p:nth-child(1):after {
	position: absolute;
	width: 68px;
	height: 1px;
	background-color: #1a1a1a;
	left: 50%;
	margin-left: -34px;
	bottom: 0;
	content: '';
}

.ny-main2 .lists dl dd a.more {
	width: 110px;
	height: 34px;
	line-height: 32px;
	border: solid 1px #ddd;
	display: inline-block;
	text-align: center;
	border-radius: 16px;
	margin-top: 60px;
}




.ny-main2 .lists dl dd a.more:hover {
	border-color: #01afb6;
	background: #01afb6;
	color: #fff;
}


.new-view {
	background-color: #fff;
	padding: 22px 48px;
}

.new-view-title {
	text-align: center;
	border-bottom: solid 1px #e5e5e5;
	line-height: 30px;
	padding: 10px 0 16px 0;
}

.new-view-title .line {
	padding: 0 10px;
	color: #d3d3d3;
}

.new-view-title h3 {
	padding: 8px;
	line-height: 32px;
	font-size: 22px;
	font-weight: normal;
	color: #333;
}

.view-container {
	line-height: 24px;
	padding: 16px 0 36px 0;
	border-bottom: solid 1px #e5e5e5;
}

.view-page {
	position: relative;
	height: 98px;
	padding: 30px 0;
}

.view-page .prev,
.view-page .back,
.view-page .next {
	font-size: 14px;
	width: 162px;
	height: 38px;
	border: solid 1px #e5e5e5;
	line-height: 38px;
	position: absolute;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
}

.view-page .prev {
	left: 0;
}

.view-page .prev a {
	background: url(../images/le.png) 12px center no-repeat;
	padding-left: 36px;
}

.view-page .next a {
	text-align: center;
}

.view-page a {
	display: block;
}

.view-page .back {
	left: 50%;
	margin-left: -80px;
	width: 137px;
}

.view-page .next {
	right: 0;
}

.view-page .next a {
	background: url(../images/ri.png) 90% center no-repeat;
}

.view-page .prev:hover a {
	color: #fff;
	background: url(../images/le-white.png) 12px center no-repeat #01afb6;
	color: #fff;
}

.view-page .next:hover a {
	color: #fff;
	background: url(../images/ri-white.png) 90% center no-repeat #01afb6;
	color: #fff;
}

.view-page .back a {
	background: url(../images/back.png) 16px center no-repeat #01afb6;
	color: #fff;
	text-align: center;
}

.view-page .back a:hover {
	background: url(../images/back.png) 16px center no-repeat #01afb6;
	color: #fff;
}

.pic-lists {
}

.pic-lists ul li {
	float: left;
	position: relative;
	width: calc(33.33%  - 28px);
	margin: 14px;
}

.pic-lists ul li img {
	width: 100%;
}

.pic-lists ul li .con {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(8, 85, 166, .9);
	line-height: 28px;
	font-size: 18px;
	text-align: center;
	color: #fff;
	opacity: 0;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

.pic-lists ul li:hover .con {
	opacity: 1;
	cursor: pointer;
}

.pic-lists ul li .con .box {
	width: 90%;
	background: url(../images/tb1.png) bottom center no-repeat;
	padding-bottom: 60px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	-webkit-transform: translate(-50%, -50%);
	z-index: 1;
	-moz-transform: translate(-50%, -50%);
	z-index: 1;
}

.contact1 {
	padding: 45px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.contact1 dl {
	width: 100%;
}

.contact1 dl dt {
	width: 50%;
	float: left;
}

.contact1 dl dd {
	padding: 25px 38px;
	width: 50%;
	float: left;
	border: 1px solid #eee;
}

.contact1 dl dd h3 {
	line-height: 30px;
	padding: 15px 0;
	font-weight: normal;
	border-bottom: solid 1px #e2e2e2;
	font-size: 18px;
	color: #333;
	padding-top: 20px;
}

.contact1 dl dd .con {
	margin-top: 8px;
}

.contact1 dl dd ul li {
	padding: 8px 0;
	padding-left: 24px;
	line-height: 24px;
}

.contact1 dl dd ul li.tel {
	background: url(../images/c-tel.jpg) left 12px no-repeat;
}

.contact1 dl dd ul li.tel2 {
	background: url(../images/c-tel2.jpg) left 12px no-repeat;
}

.contact1 dl dd ul li.email {
	background: url(../images/c-email.jpg) left 12px no-repeat;
}

.contact1 dl dd ul li.addr {
	background: url(../images/c-addr.jpg) left 12px no-repeat;
}

.map {
	margin-bottom: 60px;
}

.feedback {
	background-color: #f9f9f9;
	padding: 30px 0;
}

.feedback h3 {
	font-size: 18px;
	font-weight: normal;
	color: #333;
}

.feedback h3.title {
	font-size: 36px;
	padding: 30px 0;
	font-weight: normal;
	text-align: center;
	border-bottom: solid 1px #e5e5e5;
}

.feedback table tr td {
	padding: 12px 0;
}

.feedback .txt {
	background: #fff;
	width: 100%;
	border: none;
	height: 45px;
	line-height: 45px;
	padding: 0 16px;
	border: solid 1px #e5e5e5;
}

.feedback .txt.txt1 {
	width: calc(50% - 12px);
}

.feedback .select {
	width: calc(50% - 12px);
	background: #fff;
	border: none;
	height: 45px;
	padding: 0 16px;
	border: solid 1px #e5e5e5;
}

.feedback .tarea {
	width: 100%;
	height: 180px;
	border: none;
	padding: 20px;
	border: solid 1px #e5e5e5;
}

.feedback .con h3 {
	padding: 12px 0;
}

.feedback .con span {
	display: inline-block;
	border: solid 1px #e5e5e5;
	background-color: #fff;
	height: 36px;
	line-height: 34px;
	padding: 0 16px;
	border-radius: 18px;
	cursor: pointer;
	margin: 0 6px;
}

.feedback .con span.cur {
	background-color: #00b0b6;
	border-color: #00b0b6;
	color: #fff;
}

.feedback .btn-td {
	text-align: center;
}

.feedback .btn-td .btn {
	width: 156px;
	height: 44px;
	line-height: 44px;
	background: rgba(0, 176, 182, 1);
	margin: 0 auto;
	display: inline-block;
	color: #fff;
	font-size: 18px;
}

.feedback .btn-td .btn:hover {
	background-color: rgba(0, 176, 182, 0.8);
}

.gallery {
	padding-top: 45px !important;
}

.gallery ul li {
	float: left;
	position: relative;
	width: calc(33.33%  - 28px);
	margin: 14px;
}

.gallery ul li img {
	width: 100%;
}

.gallery ul li .con {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(8, 85, 166, .9);
	line-height: 28px;
	font-size: 18px;
	text-align: center;
	color: #fff;
	opacity: 0;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

.gallery ul li:hover .con {
	opacity: 1;
	cursor: pointer;
}

.gallery ul li .con .box {
	width: 90%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	-webkit-transform: translate(-50%, -50%);
	z-index: 1;
	-moz-transform: translate(-50%, -50%);
	z-index: 1;
}

.gallery ul li .con .box .line-clamp2 {
	height: 48px;
	line-height: 24px;
	overflow: hidden;
}

.gallery ul li .con .box .more {
	border: solid 1px #e5e5e5;
	width: 104px;
	height: 40px;
	line-height: 38px;
	background: url(../images/ri-white.png) 70px center no-repeat;
	border-radius: 20px;
	padding-left: 16px;
	text-align: left;
	display: inline-block;
	font-size: 16px;
	color: #fff;
	margin-top: 40px;
}

.gallery ul li .con .box .more:hover {
	background-color: #00bdb6;
	border-color: #00bdb6;
}

.case-view1 {
	line-height: 24px;
	padding: 20px 0;
}

.case-view1 h3 {
	font-size: 18px;
	font-weight: normal;
	line-height: 42px;
}

.case-view2 {
	background-color: #f9f9f9;
	padding-top: 16px;
}

.case-view2 h3 {
	padding: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 28px;
	font-weight: normal;
	border-bottom: solid 1px #e5e5e5;
}

.case-view2 .lists {
	max-width: 1200px;
	margin: 0 auto;
	padding: 28px 66px 62px 66px;
	position: relative;
}

.case-view2 .lists .item {
	width: calc(33.33% - 20px);
	margin: 0 10px;
	float: left;
	border: solid 1px #ebebeb;
}

.case-view2 .swiper-button-prev,
.case-view2 .swiper-button-next {
	top: 50%;
	margin-top: -44px;
	width: 56px;
	height: 56px;
}

.case-view2 .swiper-button-prev {
	background: url(../images/left2-1.png);
}

.case-view2 .swiper-button-next {
	background: url(../images/right2-1.png);
	right: 10px;
}

.case-view2 .swiper-button-prev.swiper-button-disabled {
	background: url(../images/left2.png);
}

.case-view2 .swiper-button-next.swiper-button-disabled {
	background: url(../images/right2.png);
}
.ny-nav_out{
    line-height: 65px;
}
h3.ab-title {
	text-align: center;
	color: #333;
	font-weight: normal;
	font-size: 36px;
	font-weight: normal;
	padding: 22px 0;
	position: relative;
}

h3.ab-title:after {
	position: absolute;
	width: 60px;
	height: 4px;
	background: #eaeaea;
	left: 50%;
	margin-left: -30px;
	bottom: 0;
	content: '';
}

.about1 {
	padding: 46px 0 56px 0;
}

.about1 .left {
	width: 49%;
	float: left;
}

.about1 .box {
	padding-top: 42px;
}

.about1 .content {
	height: 335px;
	overflow: hidden;
	overflow-y: auto;
	width: 49%;
	float: right;
	line-height: 24px;
}

.about2 {
	background: url(../images/ab2.jpg) top center no-repeat;
	height: 700px;
	padding: 45px 0;
}

.about2 .box {
	padding-top: 45px;
	max-width: 1224px;
	margin: 0 auto;
}

.about2 .box .item {
	height: 224px;
	width: calc(50% - 24px);
	float: left;
	background-color: #fff;
	margin: 12px;
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.about2 .box .item dl dt {
	text-align: center;
	height: 88px;
	line-height: 88px;
}

.about2 .box .item dl dd {
	padding-top: 12px;
	text-align: center;
	line-height: 22px;
}

.about2 .box .item .content {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #00b0b6;
	padding: 22px 40px;
	color: #fff;
	line-height: 22px;
	transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	opacity: 0;
	cursor: pointer;
}

.about2 .box .item:hover .content {
	opacity: 1;
}

.about2 .box .item .content h3 {
	font-size: 18px;
	font-weight: normal;
	padding: 10px 0;
	position: relative;
}

.about2 .box .item .content h3:after {
	width: 48px;
	height: 3px;
	background-color: #fff;
	left: 0;
	bottom: 0;
	position: absolute;
	content: ''
}

.about2 .box .item .content .con {
	height: 142px;
	overflow: hidden;
	padding-top: 8px;
	display: -webkit-box;
	display: box;
	-webkit-line-clamp: 6;
	line-clamp: 6;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	color: rgba(255,255,255, .8);
}

.ab-type {
	padding: 48px 0;
	height: 248px;
	position: relative;
	text-align: center;
}

.ab-type span {
	width: 152px;
	height: 152px;
	background-color: #fff;
	border: solid 1px #d4d4d4;
	display: inline-block;
	border-radius: 50%;
	margin: 0 40px;
	background-repeat: no-repeat;
	background-position: center center;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
	cursor: pointer;
}

.ab-type span.cur {
	background-color: #00b0b6;
	border-color: #00b0b6;
	position: relative;
}

.ab-type span.cur:before {
	width: 172px;
	height: 172px;
	border: solid 1px #00b0b6;
	position: absolute;
	left: -11px;
	top: -11px;
	content: '';
	border-radius: 50%;
}

.ab-type span:nth-child(1) {
	background-image: url(../images/ab3-1.png);
}

.ab-type span.cur:nth-child(1) {
	background-image: url(../images/ab3-1-w.png);
}

.ab-type span:nth-child(2) {
	background-image: url(../images/ab3-2.png);
}

.ab-type span.cur:nth-child(2) {
	background-image: url(../images/ab3-2-w.png);
}

.ab-type span:nth-child(3) {
	background-image: url(../images/ab3-3.png);
}

.ab-type span.cur:nth-child(3) {
	background-image: url(../images/ab3-3-w.png);
}

.ab-type span:nth-child(4) {
	background-image: url(../images/ab3-4.png);
}

.ab-type span.cur:nth-child(4) {
	background-image: url(../images/ab3-4-w.png);
}

.ab-type span:nth-child(5) {
	background-image: url(../images/ab3-5.png);
}

.ab-type span.cur:nth-child(5) {
	background-image: url(../images/ab3-5-w.png);
}

.ab-type:before {
	height: 2px;
	top: 124px;
	background-color: #d4d4d4;
	position: absolute;
	left: 0;
	width: 100%;
	content: ''
}

.about3 {
	height: auto;
	overflow: hidden;
	padding: 45px 0;
}

.about3 .ab3-content {
	text-align: center;
	font-size: 18px;
}

.about3 .ab3-content h3 {
	font-size: 24px;
	font-weight: normal;
	color: #00b0b7;
	line-height: 48px;
}

.about3 .ab3-content .content {
	display: none;
}

.about4 {
	background-color: #f9f9f9;
	padding: 45px 0;
}

.about4 .detail {
	text-align: center;
	font-size: 18px;
	padding: 25px 0;
}

.about4 .lists {
	padding: 0 40px;
	padding-top: 20px;
}

.about4 .lists .item {
	width: calc(25% - 32px);
	margin: 0 16px;
}

.about4 .lists .item dl dt {
	width: 100%;
	border: solid 5px #f1f1f1;
	border-radius: 50%;
	overflow: hidden;
}

.about4 .lists .item dl:hover dt {
	border-color: #7cd4d7;
}

.about4 .lists .item dl dt img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about4 .lists .item dl dd {
	text-align: center;
	padding-top: 20px;
	line-height: 30px;
}

.about4 .lists .item dl dd h3 {
	font-size: 18px;
	font-weight: normal;
	line-height: 36px;
	position: relative;
}

.about4 .lists .item dl dd h3:after {
	position: absolute;
	width: 40px;
	height: 2px;
	background-color: #d0d0d0;
	left: 50%;
	margin-left: -20px;
	bottom: 0;
	content: '';
}

.about4 .lists .swiper-button-prev {
	background: url(../images/swiper1-l.png) no-repeat center center / cover;
	top: 55%;
}

.about4 .lists .swiper-button-prev:hover {
	background-image: url(../images/swiper1-l2.png)
}

.about4 .lists .swiper-button-next {
	background: url(../images/swiper1-r.png) no-repeat center center / cover;
	top: 55%;
}

.about4 .lists .swiper-button-next:hover {
	background-image: url(../images/swiper1-r2.png)
}

.honor-lists {
	padding-bottom: 20px !important;
	border-top: solid 1px #e5e5e5;
	padding-top: 20px !important;
}

.honor-lists dl {
	width: calc(25% - 18px);
	float: left;
	margin: 9px;
}

.honor-lists dl dt {
	padding: 25px 40px;
	background-color: #fff;
}

.honor-lists dl dt img {
	width: 100%;
}

.honor-lists dl dd {
	text-align: center;
	height: 40px;
	padding: 10px 0;
	line-height: 20px;
}

.honor-lists dl:hover dt {
	box-shadow: 0 0 20px rgba(0, 0, 0, .2)
}

.honor-lists dl:hover dd {
	color: #00b0b6;
}
.about5 { background: url(../images/history.jpg) top center no-repeat; background-size:cover; color: #fff; padding: 45px 0 68px 0; } 

.hist-wrapper{padding:0 225px;position:relative; margin-top:25px;} 
.hist-wrapper .histSwiper-prev, 
.hist-wrapper .histSwiper-next{display:block;width:225px;height:100%;position:absolute;top:0px;}
.hist-wrapper .histSwiper-prev{left:0px;background:url(../images/left2-1.png) no-repeat center center;}
.hist-wrapper .histSwiper-prev.swiper-button-disabled { background:url(../images/left2.png) no-repeat center center; }
.hist-wrapper .histSwiper-next{right:0px;background:url(../images/right2-1.png) no-repeat center center;}
.hist-wrapper .histSwiper-next.swiper-button-disabled { background:url(../images/right2.png) no-repeat center center; }
.hist-wrapper .swiper-slide table{width:100%;border:0px;}
.hist-wrapper .swiper-slide table tr td:first-child{ width:318px;text-align:center;vertical-align:middle;color:#ffffff;font-size:60px;}
.hist-wrapper .swiper-slide table tr td{ height:248px;vertical-align:middle;color:#ffffff;font-size:20px;overflow:hidden; padding: 0 10px;} 
.hist-list{width:100%;height:90px;margin-top:10px;background:url(../images/bg-hintLine2.png) repeat-x left top;position:relative;overflow:hidden;} 
.hist-list .w1200{overflow:hidden;}
.hist-list ul{background:url(../images/bg-hintLine.png) repeat-x left top;} 
.hist-list ul li{width:122px;padding-top:55px;text-align:center;font-size:28px;color:#a4b9d8;float:left;margin-left:60px;}
.hist-list ul li.cur{background:url(../images/hist-cur.png) no-repeat center top;font-size:36px;color:#ffffff;}


.equipment {
	padding: 50px 0!important;
}

.equipment1,
.equipment2 {
	max-width: 1200px;
	margin: 0 auto;
}

.equipment1 .item {
	position: relative;
}

.equipment1 .item .content {
	position: absolute;
	height: 70px;
	line-height: 70px;
	padding: 0 5%;
	z-index: 1;
	width: 100%;
	background-color: rgba(0,0,0, .6);
	left: 0;
	bottom: 0;
	font-size: 18px;
	color: #fff;
}

.equipment2 {
	position: relative;
	margin-top: 6px !important;
	height: auto;
	overflow: hidden;
}

.equipment2 .swiper-container {
	width: calc(100% - 60px)
} 
/*.equipment2 .item { width: calc(20% - 4px); margin: 0 2px; height: 120px; }*/
.equipment2 .item img {
	width: 100%;
	height: 120px;
	object-fit: cover;
}

.equipment2 .swiper-button-prev,
.equipment2 .swiper-button-next {
	width: 28px;
	height: 120px;
	top: 0;
	margin-top: 0;
}

.equipment2 .swiper-button-prev {
	background: url(../images/ale2.jpg) no-repeat;
	left: 0;
}

.equipment2 .swiper-button-next {
	background: url(../images/ari2.jpg) no-repeat;
	right: 0;
}

.equipment2 .swiper-button-next.swiper-button-disabled {
	background: url(../images/ari.jpg) no-repeat;
}

.equipment2 .swiper-button-prev.swiper-button-disabled {
	background: url(../images/ale.jpg) no-repeat;
}

.equip-min {
	display: block;
	position: relative;
}

.equip-min:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	position: absolute;
	top: 0px;
	left: 0px;
}

.equip-min.cur:after {
	display: none;
}
/*.equip-min span{display:block;width:100px;height:100px;font-size:20px;color:#fff;text-align:center;position:absolute;top:0px;left:0px;z-index:2;}*/


.ctUs-map {
	width: 100%;
	border: 1px solid #bed2c8;
	position: relative;
	overflow: hidden;
	margin: .14rem auto 0;
}

.ctUs-map img {
	max-width: none;
}

.Container-wrapper {
	position: relative;
	left: 0px;
	width: 100%;
	height: auto;
}

/*发展历程*/
.abUs-comHist {
	padding: 50px 0 0;
	background: url(../images/auCh-bg.jpg) no-repeat top center / 100% 579px;
}

.abUs-comHist .p-title .t {
	color: #fff;
}

.abUs-comHist .p-title .s {
	background: #e50012;
}

/*大*/
.auCHist-man {
	width: 928px;
	padding: 0 0 246px;
	position: relative;
	margin: 60px auto ;
}

.auCHist-man .swiper-container {
	padding: 69px 0 0;
}

.auCHist-man .auCHman-box {
	display: block;
	height: 72px;
	text-align: center;
	color: #fff;
	background: url(../images/auCHist-bg.png) no-repeat center 68px;
	position: relative;
}

.auCHman-box .year {
	line-height: 28px;
	font-size: 16px;
}

.auCHman-box:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #fff;
	position: absolute;
	left: 50%;
	margin-left: -4px;
	bottom: 0px;
}

.auCHman-box:after {
	content: "";
	display: block;
	width: 1px;
	height: 9px;
	background: #fff;
	position: absolute;
	left: 50%;
	margin-left: -1px;
	bottom: 11px;
}

.auCHman-box.cur .year {
	width: 77px;
	height: 77px;
	line-height: 77px;
	background: rgba(229,0,18,.75);
	border-radius: 100%;
	position: absolute;
	top: -53px;
	left: 50%;
	margin-left: -38.5px;
}

.auCHman-box.cur .year:after {
	content: "";
	display: block;
	width: 109px;
	height: 109px;
	background: rgba(229,0,18,.25);
	border-radius: 100%;
	position: absolute;
	top: -16px;
	left: -16px;
	z-index: -1;
}

.auCHman-box.cur:before,
.auCHman-box.cur:after {
	background: #e50012;
}

.auCHman-box.cur:after {
	height: 30px;
	z-index: 2;
}

.auCHistManSwiper-prev,
.auCHistManSwiper-next {
	display: block;
	width: 11px;
	height: 21px;
	position: absolute;
	top: 70px;
}

.auCHistManSwiper-prev {
	left: -58px;
	background: url(../images/swiper2-l.png) no-repeat center center;
}

.auCHistManSwiper-next {
	right: -58px;
	background: url(../images/swiper2-r.png) no-repeat center center;
}

.auCHist-man:before,
.auCHist-man:after {
	content: "";
	display: block;
	width: 26px;
	height: 24px;
	background: url(../images/auCHist-orn1.png) no-repeat center center;
	position: absolute;
	top: 125px;
}

.auCHist-man:before {
	left: -103px;
}

.auCHist-man:after {
	right: -103px;
}

.auCHist-man .orn1,
.auCHist-man .orn2 {
	display: block;
	height: 1px;
	background: rgba(255,255,255,.3);
	position: absolute;
	top: 137px;
}

/*小*/
.auCHist-min {
	width: 1000px;
	position: relative;
	margin: -151px auto 0;
	z-index: 2;
}

.auCHist-min .swiper-container {
	padding: 0 0 69px;
}

.auCHist-min .swiper-container .swiper-slide {
	padding: 0 10px;
}

.auCHmin-box {
	display: block;
	padding: 0 6.851851851851852% 0 41.6666%;
	background: #fff url(../images/auCHistMin-bg.jpg) no-repeat center center / cover;
	box-shadow: 0 4px 20px rgba(162,162,162,.24);
	position: relative;
}

.auCHmin-box .auCHmin-img {
	display: block;
	width: 38.7037037037037%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0px;
	top: 0px;
}

.auCHmin-box .auCHmin-block {
	padding: 61px 0 51px;
	min-height: 284px;
}

.auCHmin-block li {
	padding: 0 0 0 37px;
	line-height: 29px;
	color: #666666;
	position: relative;
	margin: 9px 0 0;
}

.auCHmin-block li:first-child {
	margin: 0px;
}

.auCHmin-block li:before {
	content: "";
	display: block;
	width: 13px;
	height: 1px;
	background: #afafaf;
	position: absolute;
	left: 0px;
	top: 14px;
}



/*网站地图*/
.web-map {
	padding: .57rem 0 .64rem;
}

.wMap-top {
	line-height: 47px;
	text-align: center;
	font-weight: 600;
	font-size: 32px;
	color: #333;
	padding: 0 0 .15rem;
	border-bottom: 1px solid #e5e5e5;
}

.wMap-list {
	width: 104.25%;
	margin: 0 0 0 -4.25%;
}

.wMap-list li {
	width: 33.333%;
	padding: 0 0 0 4.25%;
	float: left;
	margin: .4rem 0 0;
}

.wMap-list .wMap-box {
	padding: .23rem .3rem .22rem;
	color: #333333;
	border: 1px solid #e5e5e5;
	border-radius: 15px;
}

.wMap-box .top {
	line-height: 25px;
	font-size: 18px;
	padding: 0 0 .2rem;
	text-align: center;
	border-bottom: 1px solid #e5e5e5;
	margin: 0 0 .13rem;
}

.wMap-box a {
	display: block;
	width: 50%;
	padding: .05rem 0;
	line-height: 24px;
	color: #666666;
	float: left;
}

.abUs-media-box {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 10;
	display: none;
}

.abUs-media-box .abUs-media-close {
	display: block;
	width: 28px;
	height: 28px;
	background: url(../images/close.png) no-repeat center center;
	position: absolute;
	top: -38px;
	right: -38px;
	cursor: pointer;
}

.abUs-media-box .abUs-media-container {
	width: 700px;
	height: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -200px 0 0 -350px;
	z-index: 10;
}

.abUs-media-container iframe {
	width: 100%;
	height: 100%;
}

@media all and (max-width:1260px) {

	.abUs-media-box .abUs-media-container {
		width: 90%;
		left: 5%;
		margin-left: 0px;
	}
}

@media all and (max-width:980px) {

	.abUs-media-box .abUs-media-container {
		width: 100%;
		height: 100%;
		left: 0px;
		top: 0px;
		margin: 0px;
	}

	.abUs-media-box .abUs-media-close {
		top: 4%;
		right: 4%;
		z-index: 2;
	}
}

.wap-banner .text {
	width: 100%;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 40%;
	left: 0px;
}

.wap-banner .text h1 {
	line-height: 28px;
	font-size: 18px;
	font-weight: normal;
}

.wap-banner .text p {
	line-height: 22px;
	font-size: 14px;
	padding: 0 10%;
	margin: 10px 0 0;
}

/*精彩瞬间*/
.wdfInfo-modal {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.9);
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9999;
	display: none;
}

.wdfInfo-modal-container {
	padding: 38px 38px 0;
	width: 863px;
	height: 596px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -298px 0 0 -431px;
}

.wdfInfo-modal-close {
	display: block;
	width: 33px;
	height: 33px;
	background: url(../images/icon-close.png) no-repeat center center;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 2;
}

.wdfInfo-modal-container .swiper-slide img {
	width: 100%;
}

.wdfInfoSwiper-prev,
.wdfInfoSwiper-next {
	display: block;
	width: 76px;
	height: 76px;
	position: absolute;
	top: 50%;
	margin-top: -38px;
	z-index: 10;
}

.wdfInfoSwiper-prev {
	left: -93px;
	background: url(../images/swiper2-l.png) no-repeat center center / cover;
}

.wdfInfoSwiper-next {
	right: -93px;
	background: url(../images/swiper2-r.png) no-repeat center center / cover;
}

.wdfInfo-modal-container .swiper-pagination {
	padding: 0 38px 0 0;
	width: 100%;
	color: #666666;
	text-align: right;
	font-size: 14px;
	position: absolute;
	bottom: 15px !important;
	right: 0px;
}

@media all and (max-width:1100px) {

	.wdfInfoSwiper-prev {
		left: 0px;
	}

	.wdfInfoSwiper-next {
		right: 0px;
	}
	.Hnav .Hname{
	    font-size:14px;
	    
	}
	.Hnav>li{
	    margin:0 0 0 .3rem;
	    
	}
	
	.auCHistManSwiper-prev{
	    left:0px;
	    
	}
	.auCHistManSwiper-next{
	    right:0px;
	    
	}
	.auCHist-min{
	    width:100%;
	    padding:0 4%;
	    
	}

}
  
}
@media all and (max-width:980px) {

	.wdfInfo-modal-container {
		padding: 0 10%;
		width: 100%;
		height: 100%;
		top: 0px;
		left: 0px;
		margin: 0px;
	}
	.auCHist-man{
	    width:100%;
	    padding:0px;
	    margin:1rem 0 0;
	    
	}

	.wdfInfoSwiper-prev, 
	.wdfInfoSwiper-next {
		width: 40px;
		height: 40px;
	}

	.wdfInfoSwiper-prev {
		left: 10px;
	}

	.wdfInfoSwiper-next {
		right: 10px;
	}

	.wdfInfo-modal-container .swiper-container {
		width: 80%;
		height: auto;
		position: absolute;
		left: 10%;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
}

.rtn-top {
	display: block;
	width: 40px;
	height: 40px;
	background: url(../images/icon-rtn.png) no-repeat center center;
	position: fixed;
	right: 4%;
	bottom: 8%;
	z-index: 100;
	opacity: 0;
}

.rtn-top.cur {
	opacity: 1;
}

.abUs-media-btn img {
	transition: none !important;
	-webkit-transition: none !important;
	transform: scale(1) !important;
	-webkit-transform: scale(1) !important;
	background: url(../images/v.png)no-repeat;
}

.abUs-media-btn img:hover {
	background: url(../images/v2.png)no-repeat;
}

.pInfo_table_box {
	position: relative;
}

.pInfo_table_box table {
	width: 100%;
	border-collapse: collapse;
}

.pInfo_table_box table th,
.pInfo_table_box table tr td {
	padding: 0 0 0 .3rem;
	height: 38px;
	font-weight: normal;
	text-align: left;
	vertical-align: middle;
	border: 1px solid #e1e1e1;
}

.pInfo_table_box table th {
	background: #f8f8f8;
}

@media all and (max-width:980px) {
    
	.abUs-comHist .p-title .t{
	    padding: 15px 0;
		font-size: 24px;
		text-align: center;
	}
	.pInfo_table_box {
		overflow-x: auto;
	}

	.pInfo_table_box table {
		width: 980px;
	}
	.auCHmin-box {
	padding: 0px;
}

.auCHmin-box .auCHmin-img {
	width: 100%;
	height: auto;
	position: relative;
}

.auCHmin-box .auCHmin-block {
	min-height: 0px;
	padding: 1rem 4%;
}

.IFTcase-box .IFTcase-right {
	font-size: 12px;
	line-height: 18px;
}

.abUs-comHist {
	padding: .5rem 0;
	background-size: cover;
}

.auCHist-man {
	width: 100%;
	padding: 0px;
	margin: 0;
}

.auCHman-box.cur .year {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	margin-left: -25px;
	top: -33px;
}

.auCHman-box.cur .year:after {
	width: 70px;
	height: 70px;
	top: -10px;
	left: -10px;
}

.auCHist-min {
	margin: 1.2rem 0 0;
}

.auCHist-min .swiper-container {
	padding: 0px 0 1rem;
}
}

.pro-view1-type2 {
	color: #fff;
}

.pro-view1-type2 .list {
	margin: 15px 0 0;
}

.pro-view1-type2 .list a {
	margin: 0 4px
}

.ny-banner {
	overflow: hidden;
}

.ny-banner img {
	width: 1920px;
 
	object-fit: cover;
	max-width: none;
	position: relative;
	left: 50%;
	margin-left: -960px;
}

@media all and (max-width:1230px) {
	.ny-banner img {
		width: 1900px;
		margin-left: -950px;
	}
}

@media all and (max-width:1210px) {
	.ny-banner img {
		width: 1870px;
		margin-left: -935px;
	}
}

@media all and (max-width:1190px) {
	.ny-banner img {
		width: 1840px;
		margin-left: -920px;
	}
}

@media all and (max-width:1170px) {
	.ny-banner img {
		width: 1810px;
		margin-left: -905px;
	}
}

@media all and (max-width:1150px) {
	.ny-banner img {
		width: 1780px;
		margin-left: -890px;
	}
}

@media all and (max-width:1130px) {
	.ny-banner img {
		width: 1750px;
		margin-left: -875px;
	}
}

@media all and (max-width:1110px) {
	.ny-banner img {
		width: 1720px;
		margin-left: -860px;
	}
}

@media all and (max-width:1090px) {
	.ny-banner img {
		width: 1690px;
		margin-left: -845px;
	}
}

.container-flink {
	padding: 10px 0;
	line-height: 24px;
	font-size: 12px;
	color: #fff;
	background: #333;
	border-bottom: solid 1px #424242;
}

.container-flink a {
	display: inline-block;
	margin: 0 10px 0 0;
	opacity: .8;
}

.container-flink a:hover {
	opacity: 1;
}

