@charset "utf-8";
/* CSS Document */

@font-face {
	font-family: 'iconfont';  /* Project id 2376408 */
	src: url('//at.alicdn.com/t/c/font_2376408_odumd99pd8.woff2?t=1728978700926') format('woff2'),
		 url('//at.alicdn.com/t/c/font_2376408_odumd99pd8.woff?t=1728978700926') format('woff'),
		 url('//at.alicdn.com/t/c/font_2376408_odumd99pd8.ttf?t=1728978700926') format('truetype');
  }

@font-face {
	font-family: 'AR';
	src: url('../fonts/AlibabaPuHuiTi-2-55-Regular.ttf');
}

@font-face {
	font-family: 'AM';
	src: url('../fonts/AlibabaPuHuiTi-2-65-Medium.ttf');
}

@font-face {
	font-family: 'Montserrat-B';
	src: url('../fonts/Montserrat-Bold.otf');
}

@font-face {
	font-family: 'Montserrat-H';
	src: url('../fonts/Montserrat-Hairline.otf');
}

@font-face {
	font-family: 'Montserrat-L';
	src: url('../fonts/Montserrat-Light.woff 2.ttf');
}

@font-face {
	font-family: 'Montserrat-R';
	src: url('../fonts/Montserrat-Regular 2.otf');
}

body {
	margin: 0;
	padding: 0;
	color: #333;
	font-family: "PingFangSC-Regular", "AR";
	font-size: 14px;
	line-height: 1.5;
	width: 100%;
	margin: 0px auto;
	overflow-x: auto;
}

a {
	color: #333;
	text-decoration: none;
}

a:hover {}

img {
	border: 0;
	display: inline;
	vertical-align: bottom;
	width: auto;
	height: auto;
	max-width: 100%;
}

div,
ul,
li,
dl,
dd,
span,
h1,
h2,
p,
h4,
h3 {
	margin: 0;
	padding: 0;
	list-style: none;
}
input,textarea{
	font-family: "PingFangSC-Regular", "AR";
}

.clear {
	clear: both;
}

.container {
	margin: 0px auto;
	width: 90%;
	max-width: 1200px;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* {
	box-sizing: border-box;
}

.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex-center-y {
	display: flex;
	align-items: center;
}

* {
	box-sizing: border-box;
}

html.active {
	height: 100%;
	overflow: hidden;
}

/* 首页 */
.banner {
	width: 100%;
	height: 100vh;
}

.banner ul,
.banner ul li {
	width: 100%;
	height: 100%;
}

.banner ul li {
	position: relative;
	color: #fff;
}

.banner ul li .content {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	padding-top: 48vh;
	top: 0px;
	z-index: 100;
	text-shadow: 0px 0px white, 0px 1px #333;
}

.banner ul li .content .title {
	font-size: 3vw;
	width: 100%;
	text-align: center;
}

.banner ul li .content .title2 {
	font-size: 1.8vw;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
}

.banner ul,
.banner ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/*导航蓝色部分*/
header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0px;
	z-index: 999999;
	background: #fff;
	transition: all .5s;
	-webkit-transition: all .5s;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

header.active {
	background-color: #0163a6;
}

header .logo img {
	height: 25px;
}

header .container {
	display: flex;
	align-items: center;
	height: 70px;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 999;
}

header .rt {
	display: flex;
	align-items: center;
}

header nav ul {
	display: flex;
	align-iiems: center;
}

header nav li {
	margin: 0px 5px;
	display: flex;
	position: relative;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

header nav li .title {
	padding: 0px 25px;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	height: 70px;
	;
}

header nav li:hover .title {
	background-color: #2895c9;
	color: #fff;
}

header nav li .title .icon {
	background-image: url(../images/arrow.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 13px;
	height: 13px;
	margin-left: 3px;
}

header nav li .submenu {
	background: rgba(0, 0, 0, 0.4);
	width: 100%;
	position: absolute;
	top: 100%;
	z-index: 20;
	transform-origin: 50% 0;
	transform: scaleY(0) translateZ(0);
	opacity: 0;
	left: 0px;
	transition: transform 0.3s, opacity 0.3s;
	max-height: 80vh;
	overflow: auto;
}

header nav li.no5 .submenu {
	width: 126px;
}

header nav li:hover .submenu {
	transform: scaleY(1) translateZ(0);
	opacity: 1;
}

header nav li .submenu dd a {
	color: #fff;
	line-height: 40px;
	text-transform: none;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	font-size: 13px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	height: 40px;
	font-weight: normal;
}

header nav li .submenu dd a:hover {
	background: #f1ba19;
	color: #fff;
}

header nav li .submenu dd a:last-child {
	border-bottom: 0px;
}

header nav li .submenu::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	background: none;
	border-radius: 15px;
}

header nav li .submenu::-webkit-scrollbar-thumb {
	background: #333;
	scrollbar-arrow-color: #333;
	border-radius: 15px;
}

header .langer {
	color: #999;
	text-transform: uppercase;
	line-height: 1.2;
	margin-left: 10px;
}

header .langer .iconfont {
	margin-right: 5px;
}

header .langer:hover {
	color: #2895c9;
}

.top_2 {
	height: 70px;
}


/*移动菜单*/
.menubtn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 26px;
	height: 40px;
	right: 0px;
	z-index: 100;
	display: none;
	position: relative;
	margin-left: 15px;

}

.menubtn .name {
	font-size: 16px;
	left: -60px;
	font-weight: 500;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	position: absolute;
	font-weight: 600;
}

.menubtn .navbar-icons {
	height: 20px;
	width: 100%;
	position: relative;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

.menubtn .navbar-icons span {
	display: block;
	height: 2px;
	width: 100%;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: .25s ease-in-out;
	top: 0;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	background-color: #333;
	position: relative;
	border-radius: 5px;
}

.menubtn .navbar-icons span:first-child {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.menubtn .navbar-icons span:nth-child(2) {
	-webkit-transform-origin: left center;
	transform-origin: left center;
	width: 70%;
}

.menubtn .navbar-icons span:nth-child(3) {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.menubtn.open .navbar-icons span:first-child {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 1px;
}

.menubtn.open .navbar-icons span:nth-child(2) {
	opacity: 0;
}

.menubtn.open .navbar-icons span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 1px;
}

.menu-mc {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #2895c9;
	z-index: 500;
	transition: all .5s;
	-webkit-transition: all .5s;
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	padding-top: 85px;
	display: flex;
	flex-direction: column;
	display: none;

}

.menu-mc.active {
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.menu-mc .list {
	flex: 1;
	overflow: auto;
}

.menu-mc .list ul {
	padding: 0 24px;
}

.menu-mc .list ul li {
	line-height: 60px;
}

.menu-mc .list ul li .submenu {
	display: none;
}

.menu-mc .list ul li .title {
	border-bottom: 1px solid rgba(255, 255, 255, .19);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	color: #fff;
}

.menu-mc .list ul li .title .iconfont {
	font-size: 20px;
	margin-right: 5px;
}

.menu-mc .list ul li a {
	display: block;
	font-size: 15px;
	color: #fff;
}

.menu-mc .list ul li .submenu a {
	padding-left: 20px;
	line-height: 45px;
}

.menu-mc .list ul li .submenu a:hover {

	font-weight: 600;
}



/*底部*/
footer {
	padding: 64px 0 0 0;
	background-color: #f8f8f8;
	color: #b8b8b8;
	line-height: 1.7;
}

footer .bottom {
	align-items: flex-start;
	margin-bottom: 42px;
}

footer .bottom .tpright {
	display: flex;
	align-items: flex-start;
}

footer .bottom .tpleft {
	flex: 1;
}

footer .bottom .tpleft img {
	height: 30px;
	width: auto;
	margin-bottom: 15px;
}

footer .bottom .f_menu {
	flex: 1;
	margin-right: 50px;
}

footer .bottom .f_menu ul {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

footer .bottom .f_menu ul li {
	flex: 1;
	margin-left: 45px;
}

footer .bottom .f_menu ul li .sumbit {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

footer .bottom .f_menu ul li .tit {
	font-size: 16px;
	color: #666;
	margin-bottom: 22px;
	font-weight: bold;
}

footer .bottom .f_menu ul li.last {
	width: 200px;
	flex: none;
}

footer .bottom .f_menu ul li .sumbit a {
	color: #b8b8b8;
	display: block;
	line-height: 2;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

footer .bottom .f_menu ul li .sumbit>a {
	font-size: 14px;
	font-weight: bold;
	color: #666;
}

footer .bottom .f_menu ul li .sumbit a:hover {
	color: #2895c9;
}

footer .bottom .weix ul {
	display: flex;
	align-items: flex-start;
}

footer .bottom .weix ul li {
	width: 100px;
	margin-left: 15px;
	font-size: 12px;
	color: #666;
	text-align: center;
}

footer .bottom .weix ul li img {
	width: 100%;
}

footer .copyright .online {
	color: #000;
}

footer .copyright .online ul li {
	position: relative;
	margin-left: 10px;
}

footer .copyright .online ul li a {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-color: #969696;
	color: #fff;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

footer .copyright .online a:hover {
	background-color: #2895c9;
}

footer .copyright {
	font-size: 12px;
	padding: 15px 0px;
	border-top: 1px solid #ececec;
	flex-wrap: wrap;
}

footer .copyright .tpleft {
	color: #a6a6a6;
}

footer .copyright a {
	color: #a6a6a6;
}

footer .copyright .online {
	color: #000;
}

footer .copyright .online ul li .qr-wrap {
	width: 90px;
	height: 100px;
	background: #fff;
	position: absolute;
	left: -35px;
	bottom: calc(100% + 10px);
	display: none;
	text-align: center;
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
	z-index: 100;
}

footer .copyright .online ul li:hover .qr-wrap {
	display: block;
}

footer .copyright .online ul li .qr-wrap .qr-title {
	font-size: 10px;
	opacity: .7;
	color: #000;
	padding-top: 10px;
	line-height: 1.5;
}

footer .copyright .online ul li .qr-wrap .qr-img {
	width: 70px;
	height: 70px;
	margin: 0px auto;
}

footer .copyright .online ul li .qr-wrap .qr-img img {
	width: 100%;
}

footer .copyright .online ul li .qr-wrap:after {
	content: '';
	display: block;
	position: absolute;
	border: 10px solid rgba(255, 255, 255, 0);
	border-top: 15px solid rgba(255, 255, 255, 1);
	top: 94px;
	left: 35px;
}



/*首页*/
.dance {
	padding: 74px 0px;
}

.index_bt {
	text-align: center;
	color: #333;
	width: 100%;
	margin-bottom: 52px;
}

.index_bt .title {
	font-size: 30px;
	font-weight: bold;
	padding-bottom: 10px;
}

.index_bt .eng {
	color: #717173;
	text-transform: uppercase;

}

.index_bt .line {
	width: 80%;
	max-width: 400px;
	height: 1px;
	background-color: #ddd;
	margin: 20px auto 0px;
	position: relative;
}

.index_bt .line:before {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	top: -4px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	background-color: #2895c9;
}

.index_about {
	text-align: left;
}

.index_about .content {
	color: #666;
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 42px;
}

.index_about .content p {
	margin-bottom: 20px;
}

.index_about .desc {
	text-align: left;
}

.index_about .desc p {
	margin-bottom: 20px;
}

.index_about .pic {
	margin-bottom: 32px;
}

.index_about .pic img {
	width: 100%;
}

.index_about .blue {
	color: #2895c9;
	font-size: 16px;
}

.l_more {
	text-align: center;
}

.l_more a {
	display: inline-block;
	padding: 8px 50px;
	border: 2px solid #2895c9;
	color: #2895c9;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.l_more a:hover {
	background-color: #2895c9;
	color: #FFF;
}

.part_2 {
	background-color: #eee;
	width: 100%;
	overflow: hidden;
}

.index_product {
	position: relative;
}

.index_product:after {
	content: "\200B";
	display: block;
	height: 0px;
	overflow: hidden;
	clear: both;
}

.index_product ul li {
	float: left;
	width: 44%;
	text-align: center;
	background: #fff;
	box-shadow: 0 8px 30px #ddd;
}

.index_product ul li a {
	display: block;
}

/* 
.index_product ul li a .photo {
	position: relative;
	display: block;
	padding-top: 60%;
	width: 100%;
	overflow: hidden;
}

.index_product ul li a .photo img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.index_product ul li a:hover .photo img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
} */

.index_product ul li a .title {
	color: #333;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.index_product ul li a .desc {
	color: #636363;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

.index_product ul li .content {
	padding: 30px;
	opacity: 0.5;
	transition: all .5s;
}

.index_product ul li.swiper-slide-active .content {
	opacity: 1;
}

.index_product .btn {
	font-size: 36px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 30;
	cursor: pointer;
	color: #999;
}

.index_product .prev {
	left: -50px;
}

.index_product .next {
	right: -50px;
}

.index_product .next:before {
	display: block;
	transform: rotate(180deg);
	transform: rotateY(180deg);
}

.index_product .btn:hover {
	color: #2895c9;
}

.con_class {
	margin-bottom: 42px;
}

.con_class ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.con_class ul li a {
	display: inline-block;
	margin-right: 10px;
	white-space: nowrap;
	margin-bottom: 7px;
	color: #666;
	border: 1px solid #ddd;
	padding: 8px 20px;
	cursor: pointer;
}

.con_class ul li a:hover {
	color: #2895c9;
	border-color: #2895c9;
}

.index_bt.no1 {
	margin-bottom: 42px;
}

.conver_js {
	color: #FFF;
	background-color: #2895c9;
	margin-bottom: 52px;
}

.conver_js .content {
	padding: 26px 40px 40px 40px;
}

.conver_js .content .title {
	font-size: 18px;
	margin-bottom: 5px;
	font-weight: 500;
}

.conver_js .content .desc {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	line-height: 1.8;
}

.new_class {
	margin-bottom: 42px;
}

.new_class ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.new_class ul li {
	min-width: 100px;
	text-align: center;
	display: inline-block;
	margin-right: 10px;
	color: #666;
	border: 1px solid #ddd;
	padding: 8px 20px;
	cursor: pointer;
}

.new_class ul li:hover,
.new_class ul li.cur {
	color: #2895c9;
	border-color: #2895c9;
}

.index_new {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin-bottom: 52px;
}

.index_new .new_l {
	width: 45%;
	margin-right: 6%;
	background-color: #2895c9;
	color: #fff;
}

.index_new .new_r {
	flex: 1;
	overflow: hidden;
}

.index_new .new_l a {
	display: block;
	color: #fff;
}

.index_new .new_l a .photo {
	position: relative;
	display: block;
	padding-top: 60%;
	width: 100%;
	overflow: hidden;
}

.index_new .new_l a .photo img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.index_new .new_l a:hover .photo img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.index_new .new_l .content {
	padding: 20px 16px 16px 16px;
}

.index_new .new_l .content .title {
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	margin-bottom: 5px;
}

.index_new .new_l .content .desc {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	font-size: 12px;
	width: 70%;
}

.index_new .new_l .content .num {
	font-size: 12px;
	margin-top: 10px;
}

.news-more {
	display: flex;
	justify-content: center;
	align-items: center;
}

.index_new .new_r ul li a {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ddd;
	padding: 12px 0;
}

.index_new .new_r ul li a .num {
	font-size: 36px;
	color: #2895c9;
	font-weight: 600;
}

.index_new .new_r ul li a .content {
	flex: 1;
	margin-left: 15px;
	font-size: 15px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

.index_new .new_r ul li a .content p:nth-child(1) {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: bold;
	width: 100%;
	font-size: 15px;
}

.index_new .new_r ul li a .content p:nth-child(2) {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #b8b8b8;
	font-size: 13px;
	width: 100%;
}

.part_4 {
	padding-top: 4vw;
}

.p_list ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px 20px;
	align-items: stretch;
}

.p_list ul li a {
	height: 100px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p_list ul li a img {
	max-width: 80%;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.p_list ul li a:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.tabcontent_1 .new_m {
	display: none;
}

.tabcontent_1 .new_m.cur {
	display: block;
}

.nybanner {
	text-align: center;
	position: relative;
}

.nybanner img {
	min-height: 200px;
	object-fit: cover;
	object-position: top center;
	width: 100%;
}

.nybanner .content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-shadow: 0px 0px white, 0px 1px #333;
}

.nybanner .content .title {
	font-size: 37px;
	letter-spacing: 2px;
}

.nybanner .content .desc {
	font-size: 16px;
	text-align: center;
	width: 100%;
	max-width: 800px;
	margin: 15px auto 0px;
}

.ab_class {
	margin-bottom: 42px;
}

.ab_class ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.ab_class ul li a {
	display: inline-block;
	margin-right: 10px;
	white-space: nowrap;
	margin-bottom: 7px;
	color: #666;
	border: 1px solid #ddd;
	padding: 8px 20px;
	cursor: pointer;
}

.ab_class ul li a:hover,
.ab_class ul li.active a {
	color: #2895c9;
	border-color: #2895c9;
}

.sup_midd {
	display: flex;
	align-items: stretch;
	height: 506px;
	margin-bottom: 50px;
	overflow: hidden;
}

.sup_midd:last-child {
	margin-bottom: 0px;
}

.sup_midd .sup_left {
	width: 20%;
	height: 100%;
	background-color: #2895c9;
	color: #fff;
}

.sup_midd .sup_left ul {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.sup_midd .sup_left ul li {
	flex: 1;
	display: flex;
	cursor: pointer;
	padding: 0px 10px;
	text-align: center;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	position: relative;
}

.sup_midd .sup_left ul li:before {
	width: 60%;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	height: 1px;
	background-color: rgba(255, 255, 255, .6);
	position: absolute;
}

.sup_midd .sup_left ul li:last-child:before {
	display: none;
}

.sup_midd .sup_right {
	flex: 1;
	height: 100%;
	overflow: hidden;
}

.sup_midd .sup_right ul,
.sup_midd .sup_right ul li {
	height: 100%;
}

.sup_midd .sup_right ul li {
	position: relative;
}

.sup_midd .sup_right ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.sup_midd .sup_right ul li .xfk {
	position: absolute;
	width: 100%;
	padding: 20px 0 20px 4%;
	font-size: 16px;
	color: #FFF;
	background-color: rgba(0, 0, 0, .7);
	bottom: 0;
	z-index: 4;
	left: 0;
}

.tabcontent_1 .sup_list {
	display: none;
}

.tabcontent_1 .sup_list.cur {
	display: block;
}

.sup_midd .sup_right .tabcontent_1,
.sup_midd .sup_right .tabcontent_2,
.sup_midd .sup_right .tabcontent_3,
.sup_midd .sup_right .tabcontent_4 {
	width: 100%;
	height: 100%;
}

.tabcontent_2 .sup_list {
	display: none;
}

.tabcontent_2 .sup_list.cur {
	display: block;
}

.tabcontent_3 .sup_list {
	display: none;
}

.tabcontent_3 .sup_list.cur {
	display: block;
}

.tabcontent_4 .sup_list {
	display: none;
}

.tabcontent_4 .sup_list.cur {
	display: block;
}

.new_zs ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px 20px;
	align-items: stretch;
}

.new_zs ul li .photo a {
	position: relative;
	display: block;
	padding-top: 60%;
	width: 100%;
	overflow: hidden;
}

.new_zs ul li .photo a img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.new_zs ul li .photo a:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.new_tit {
	border-bottom: 1px solid #ddd;
	margin-bottom: 28px;
	color: #2895c9;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.new_tit.no1 {
	margin-bottom: 0px;
}

.new_tit .tpleft {
	padding: 10px 15px 10px 15px;
	display: inline-block;
	border-bottom: 3px #2895c9 solid;
	font-weight: bold;
}

.new_zs ul li .title {
	margin: 6px 0px 12px;
}

.new_zs ul li .title a {
	color: #333;
	font-weight: bold;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

.new_zs ul li .desc {
	color: #666;
	font-size: 12px;
	line-height: 1;
}

.new_zs ul li .desc .date {
	margin-left: 10px;
	padding-left: 10px;
	display: inline-block;
	border-left: 1px #666 solid;
}

.new_zs {
	margin-bottom: 50px;
}

.new_list ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
	border-bottom: 1px #999 dashed;
}

.new_list ul li a {
	flex: 1;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

.new_list ul li .date {
	color: #999;
}

/*翻页*/
.fany {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	text-transform: uppercase;
}

/*分页*/
.divid-a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 14px;
}

.divid-a a {
	background: #fff;
	color: #636363;
	font-size: 14px;
	min-width: 35px;
	padding: 0px 10px;
	height: 29px;
	cursor: pointer;
	margin: 5px 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px #eaeaea solid;
	border-radius: 5px;

}

.divid-a span {
	margin: 5px 10px;
}

.divid-a .active,
.divid-a a:hover {
	color: #fff;
	background: #2895c9;
	border: 1px #2895c9 solid;
}

.divid-a .up {
	font-family: "黑体";
}

.nybanner.no1 .content .title {
	color: #333;
	text-shadow: 0px 0px white, 0px 1px #fff;
}

.nybanner.no2 .content {
	color: #333;
	text-shadow: 0px 0px white, 0px 1px #fff;
	text-align: left;
}

.nybanner.no2 .content .title {
	font-weight: bold;
}

.nybanner.no2 .content .infor {
	font-size: 30px;
	letter-spacing: 2px;
}

/*人才招聘*/
.c_notice {}

.c_notice ul li {
	font-size: 18px;
	border-bottom: 1px #efefef solid;
}

.c_notice ul li .title {
	height: 64px;
	padding: 0px 35px;
	color: #333;
	cursor: pointer;
	font-weight: 600;
}

.c_notice ul li .title:hover {
	background: #eee;
}

.c_notice ul li:last-child {
	margin-bottom: 0px;
}

.c_notice ul li .title .tpleft .iconfont {
	margin-right: 15px;
	color: #999;
	font-size: 20px;
	font-weight: normal;
}

.c_notice ul li .content {
	color: #666666;
	font-size: 14px;
	line-height: 1.8;
	display: none;
}

.c_notice ul li .content .box {
	padding: 46px 45px;
}

.c_notice ul li .content .lab {
	border-bottom: 1px #efefef solid;
	padding-bottom: 35px;
	flex-wrap: wrap;
	margin-bottom: 35px;
}

.c_notice ul li .content .lab span {
	width: 25%;
}

.c_notice ul li .content .c_name {
	font-weight: 600;
	margin-bottom: 7px;
}

.c_notice ul li.active {
	background: #fff;
	box-shadow: 0 0 10px 0 rgb(0 104 183 / 12%);
}

.c_notice ul li.active .title {
	background: #2895c9;
	color: #fff;
}

.c_notice ul li.active .title .tpleft .iconfont {
	color: #fff;
}

.c_notice ul li.active .title .jiahao {
	display: block;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	font-size: 18px;
}

.Investment {}

.Investment ul li {
	background: #f5f6fa;
	display: flex;
	align-items: stretch;
}

.Investment ul li .photo {
	position: relative;
	display: block;
	width: 50%;
	overflow: hidden;
}

.Investment ul li .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.Investment ul li .photo:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.Investment ul li .box {
	flex: 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 25px 0px;
	justify-content: center;
}

.Investment ul li .box .content {
	width: 85%;
}

.Investment ul li .box .content .title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.Investment ul li .box .content .desc {
	line-height: 1.8;
	color: #666;
}

.Investment ul li:nth-child(2n) {
	flex-direction: row-reverse;
}

.fh_banner {
	background-image: url(../images/contact_bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 40px 0px;
	color: #fff;
	margin: 70px 0px;
}

.fh_banner .desc {
	font-size: 20px;
	text-align: center;
	line-height: 2;
	width: 100%;
}

.contact_1 .title {
	font-size: 20px;
	margin-bottom: 5px;
}

.contact_1 .con_box {
	flex-wrap: wrap;
	align-items: flex-start;
}

.contact_1 .con_box form {
	flex: 1;
	overflow: hidden;
}

.contact_1 .con_box .con_left {
	line-height: 2;
	margin-right: 39px;
	width: 202px;
}

.contact_1 .con_box .con_right {
	flex: 1;
	overflow: hidden;
}

.contact_1 .con_box .con_right ul {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.contact_1 .con_box .con_right ul li {
	width: 32.6%;
	display: flex;
	flex-direction: column;
}

.contact_1 .con_box .con_right ul li .formbit {
	width: 100%;
	line-height: 24px;
	height: 40px;
	line-height: normal;
	padding: 0px 12px;
	width: 100%;
	background: #f3f3f3;
	margin-bottom: 8px;
	border-radius: 10px;
	font-size: 12px;
	border: 0px;
	outline: none;
}

.contact_1 .con_box .con_right ul li .formbit::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.contact_1 .con_box .con_right ul li:last-child .formbit {
	margin-bottom: 0px;
}

.contact_1 .con_box .con_right ul li .formbit1 {
	width: 100%;
	height: 100%;
	min-height: 80px;
	line-height: 24px;
	line-height: normal;
	padding: 12px 12px;
	width: 100%;
	background: #f3f3f3;
	margin-bottom: 8px;
	border-radius: 10px;
	border: 0px;
	outline: none;
	font-family: "Montserrat", "微软雅黑", Arial;
}

.contact_1 .con_box .con_right ul li .formbit1::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.contact_1 .con_box .con_right ul {
	margin-bottom: 10px;
}

.contact_1 .con_box .con_right .infor {
	font-size: 12px;
}

.contact_1 .con_box .con_right .infor .red {
	color: #F78B03;
	margin-right: 7px;
	font-size: 18px;
	margin-top: 5px;
}

.contact_1 .con_box .con_right .infor .lab {
	margin-left: 10px;
	display: flex;
	align-items: center;
	line-height: 1;
}

.contact_1 .con_box .con_right .sumbit {
	width: 120px;
	height: 40px;
	line-height: normal;
	text-align: center;
	background-color: #2895c9;
	color: #fff;
	border-radius: 10px;
	border: 0px;
	cursor: pointer;
	outline: none;
}

.contact_1 .con_box .con_right .sumbit:hover {
	background-color: #0d7cb1;
}

.tech_list ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px 20px;
	align-items: stretch;
}

.tech_list ul li {
	background-color: #f5f6fa;
	border-radius: 10px;
	padding: 38px 30px;
	text-align: center;
	color: #666;
}

.tech_list ul li .iconfont {
	width: 85px;
	height: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px auto;
	border-radius: 100%;
	background-color: #2895c9;
	color: #fff;
	font-size: 48px;
}

.tech_list ul li .title {
	font-size: 18px;
	color: #333;
	font-weight: bold;
	margin: 20px 0px 15px;
}

.tech_list {
	margin-bottom: 80px;
}

.tech_case {
	margin-bottom: 80px;
}

.tech_case ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px 20px;
	align-items: stretch;
}

.tech_case ul li {
	border-radius: 10px;
	overflow: hidden;
}

.tech_case ul li .photo {
	width: 100%;
	padding-top: 60%;
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
}

.tech_case ul li .photo img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.tech_case ul li:hover .photo img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.tech_case ul li .photo:before {
	position: absolute;
	bottom: 0;
	content: "";
	width: 100%;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, .7), transparent);
	height: 200px;
	border-radius: 12px;
	z-index: 10;
}

.tech_case ul li .xfk {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	padding: 15px;
	color: #fff;
	z-index: 20;
}

.expert_1 ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px 20px;
	align-items: stretch;
}

.expert_1 ul li {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.expert_1 ul li a {
	display: block;
}

.expert_1 ul li .photo {
	width: 100%;
	position: relative;
	padding-top: 130%;
}

.expert_1 ul li .photo img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: center center;
	transition: all .9s;
	-webkit-transition: all .9s;
}

.expert_1 ul li:hover .photo img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.expert_1 ul li .xfk {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding: 28px 25px;
	color: #fff;
	border-radius: 35px 0px 0 0;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.expert_1 ul li .xfk .title {
	font-size: 20px;
	margin-bottom: 5px;
}

.expert_1 ul li .xfk .lab {
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

.expert_1 ul li .xfk .desc {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	display: none;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	margin-top: 10px;
}

.expert_1 ul li:hover .xfk {
	background-color: rgba(40, 149, 201, 0.8);
}

.expert_1 ul li:hover .xfk .desc {
	display: block;
	display: -webkit-box;
}

.index_bt.ceshi .line {
	margin-top: 10px;
	margin-bottom: 15px;
}

.index_bt.ceshi .infor {
	color: #666;
	max-width: 850px;
	width: 100%;
	margin: 0px auto;
	line-height: 1.7;
}

.w_sector {
	margin-bottom: 30px;
}

.w_sector:after {
	content: "\200B";
	display: block;
	height: 0px;
	overflow: hidden;
	clear: both;
}

.w_sector .fadeInUp {
	transition-delay: .6s;
	-webkit-transition-delay: .6s;
}

.w_sector ul li {
	width: 25%;
	float: left;
	position: relative;
	color: #fff;
	overflow: hidden;
	transition: all .5s;
}

.w_sector ul li .pic {
	height: 400px;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.w_sector ul li .content {
	position: absolute;
	width: 80%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	top: 100px;
}

.w_sector ul li .content .big_t {
	margin-bottom: 35px;
	position: relative;
	line-height: 1;
}

.w_sector ul li .content .big_t:before {
	width: 4px;
	height: 100%;
	position: absolute;
	left: -18px;
	bottom: 0px;
	background-color: #fff;
	content: '';
	transition: height .5s;
}

.w_sector ul li .content .big_t .title {
	font-size: 20px;
	margin-bottom: 7px;
}

.w_sector ul li .content .big_t .eng {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.w_sector ul li .content .desc {
	font-size: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	margin-bottom: 33px;
	opacity: 0;
	line-height: 1.7;
	transition: all .5s;
}

.w_sector ul li .content .more {
	border-radius: 25px;
	width: 145px;
	height: 47px;
	border: 2px #6baf6d solid;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #6baf6d;
	opacity: 0;
	transition: all .5s;
	margin-left: 100px;
}

.w_sector ul li .content .more:hover {
	background: #6baf6d;
	color: #fff;
}

.w_sector ul li.active {
	width: 50%;
}

.w_sector ul li.active:before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.5);
	content: '';
}

.w_sector ul li.active .desc {
	opacity: 1;
}

.w_sector ul li.active .content .more {
	opacity: 1;
	margin-left: 0px;
}

.w_sector ul li.active .content {
	width: 84%;
}

.w_sector ul li.active .content .big_t:before {
	width: 4px;
	height: 200px;
}

.zt_desc {
	margin-bottom: 80px;
	line-height: 1.7;
	text-indent: 2em;
}

.join_2 {
	background-image: url(../images/ind6_b.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 80px 0px;
}

.industry ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px 20px;
	align-items: stretch;
}

.industry ul li {
	background-color: #86c6df;
	border-radius: 10px;
	padding: 38px 30px;
	text-align: center;
	color: #ffff;
	overflow: hidden;
}

.industry ul li .iconfont {
	width: 85px;
	height: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px auto;
	color: #fff;
	font-size: 48px;
}

.industry ul li .title {
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	margin: 20px 0px 15px;
}

.industry ul li:nth-child(1) {
	background-color: #074cee;
}

.industry ul li:nth-child(2) {
	background-color: #4b78e0;
}

.industry ul li .icon-hangkonghangtian {
	font-size: 55px;
}

.industry ul li .icon-yiyaobaojian {
	font-size: 46px;
}

.join_3 {
	padding: 80px 0px;
}

.sewage {}

.sewage ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 25px 25px;
	align-items: stretch;
}

.sewage ul li {
	box-shadow: rgb(0 0 0 / 10%) 0px 0px 18px 0px;
	background-color: #fff;
	border-radius: 5px;
}

.sewage ul li .title {
	padding: 15px 20px;
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.sewage ul li .desc {
	padding: 20px 20px 30px;
	color: #666;
	line-height: 1.7;
}

.sewage ul li .photo {
	position: relative;
	display: block;
	padding-top: 60%;
	width: 100%;
	overflow: hidden;
}

.sewage ul li .photo img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.sewage ul li:hover .photo img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.tabcontent_1 .floor {
	display: none;
}

.tabcontent_1 .floor.cur {
	display: block;
}

.join_4 {
	background-color: #f8f8f8;
	padding: 80px 0px;
	margin-bottom: 80px;
}

.join_book {
	background-color: #f8f8f8;
	padding: 80px 40px 80px;
}

.join_book ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch;
}

.join_book ul form {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch;
}


.join_book ul li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.join_book ul li.no1 {
	width: 47%;
	line-height: 42px;
}

.join_book ul li label {
	width: 100px;
	text-align: right;
	display: inline-block;
	padding-right: 10px;
	font-size: 16px;
}

.join_book ul li .formbit {
	flex: 1;
	overflow: hidden;
	padding: 5px 8px;
	height: 42px;
	line-height: normal;
	border: 0px;
	outline: none;
}

.join_book ul li .formbit::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.join_book ul li label span {
	color: #ff0000;
}

.join_book ul li.no2 {
	width: 100%;
}

.join_book ul li.no2 .formbit2 {
	flex: 1;
	padding: 10px 12px;
	height: 100px;
	line-height: normal;
	border: 0px;
	outline: none;
	font-family: "Montserrat", "微软雅黑", Arial;
}

.join_book ul li .formbit2::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.join_book ul li .code {
	width: 112px;
	height: 42px;
	margin-left: 12px;
}

.join_book ul li .code img {
	width: 100%;
	height: 100%;
}

.join_book ul li.last {
	width: 100%;
	margin-bottom: 0px;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.join_book ul li.last button {
	padding: 0px 30px;
	height: 42px;
	text-align: center;
	line-height: normal;
	background-color: #2895c9;
	color: #FFF;
	font-size: 18px;
	text-align: center;
	display: inline-block;
	border: 0px;
	cursor: pointer;
}

.index_about.no3 {
	padding-bottom: 50px;
}

.sewage.no1 ul {
	grid-template-columns: repeat(5, 1fr);
}

.newsxq {
	width: 100%;
	overflow: hidden;
	/* padding: 5vw 8vw; */
}

.newsxq .contain {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.newsxq-wrap {
	width: calc(100% - 400px);
	padding-right: 82px;
	border-right: 1px solid #e5e5e5;
	padding-bottom: 20px;
}

.newsxq-place {
	width: 100%;
	font-size: 0;
	padding-left: 24px;
	background: url('../images/newsxqHome.png') no-repeat left center;
}

.newsxq-place a {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	color: #c6c6c6;
	height: 16px;
	line-height: 18px;
	transition: all .4s ease;
}

.newsxq-place a::after {
	content: "/";
	margin: 0 10px;
	color: #c6c6c6;
}

.newsxq-place a:hover {
	color: #163F95;
}

.newsxq-place a:last-child::after {
	display: none;
}

.newsxq-place a:last-child {
	color: #888;
	pointer-events: none;
	max-width: 40%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.newsxq-cont {
	width: 100%;
	padding: 50px 0 60px;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 42px;
}

.newsxq-cont .title {
	width: 100%;
}

.newsxq-cont .title h1 {
	font-size: 40px;
	color: #000;
}

.newsxq-cont .title p {
	font-size: 16px;
	color: #888;
	line-height: 1;
	margin-top: 16px;
}

.newsxq-cont .text {
	width: 100%;
	margin-top: 50px;
	font-size: 16px;
	color: #666;
	line-height: 28px;
	text-indent: 2em;
}

.newsxq-cont .text img {
	max-width: 100%;
	margin: 0 auto;
}

.newsxq-cont .text p br {
	content: "";
	display: block;
	height: 24px;
}

.newsxq-btn {
	width: 100%;
	padding-right: 224px;
	position: relative;
}

.newsxq-btn .prev,
.newsxq-btn .next {
	display: flex;
	width: 100%;
	align-items: center;
	height: 38px;
	font-size: 16px;
	color: #888;
	white-space: nowrap;
}

.newsxq-btn .prev a,
.newsxq-btn .next a {
	display: inline-block;
	position: relative;
	max-width: 100%;
	transition: all .4s ease;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.newsxq-btn .prev a::after,
.newsxq-btn .next a::after {
	content: "";
	width: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #163F95;
	transition: all .6s ease;
	height: 1px;
}

.newsxq-btn .prev a:hover,
.newsxq-btn .next a:hover {
	color: #163F95;
}

.newsxq-btn .prev a:hover::after,
.newsxq-btn .next a:hover::after {
	width: 100%;
}

.newsxq-btn .back {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 152px;
	height: 50px;
	border-radius: 25px;
	background: #4A92C7;
	right: 0;
	top: 50%;
	margin-top: -25px;
	transition: all .4s ease;
}

.newsxq-btn .back span {
	font-size: 16px;
	color: #fff;
	padding-left: 30px;
	background: url('../images/newsxqBack.png') no-repeat left center;
}

.newsxq-btn .back:hover {
	box-shadow: 0 4px 20px 4px rgba(74, 146, 199, .5);
}

.newsxq-side {
	width: 400px;
	padding-left: 42px;
}

.newsxq-side-title {
	font-size: 24px;
	color: #333;
}

.newsxq-side-list {
	width: 100%;
	margin-top: 40px;
}

.newsxq-side-list a {
	font-size: 16px;
	color: #666;
	line-height: 24px;
	max-height: 24px;
	padding-left: 18px;
	margin-top: 34px;
	background: url('../images/newsxqArr.png') no-repeat left top 6px;
	transition: all .4s ease;
	overflow: hidden;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
}

.newsxq-side-list a:first-child {
	margin-top: 0;
}

.newsxq-side-list a:hover {
	color: #ae0002;
	background-image: url('../images/newsxqArrH.png');
}


.pagepn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wrap {
	margin: 5vw 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.wrap a {
	background: #fff;
	color: #636363;
	font-size: 14px;
	min-width: 35px;
	padding: 0px 10px;
	height: 29px;
	cursor: pointer;
	margin: 5px 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px #eaeaea solid;
	border-radius: 5px;
}

.wrap a i {
	font-size: 18px;
}

.wrap .on {
	background: #2895c9;
	color: #ffffff;
}

.wrap a:hover {
	color: #fff;
	background: #2895c9;
	border: 1px #2895c9 solid;
}






.about_one {
	padding: 80px 0px;
	color: #8d8d8d;
	background-image: url(../images/index_dBg.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.index_bt.dance {
	margin-bottom: 40px;
}

.about_class ul li {
	margin-right: 10px;
}

.about_class ul li a {}

.about_class ul li a {
	border: 1px solid #4792C6;
	display: inline-block;
	line-height: 35px;
	padding: 0 15px;
	border-radius: 8px 0;
	color: #4792C6;
}

.about_class ul li.active a {
	background-color: #4792C6;
	color: #fff;
}

.about_class ul li a:hover {
	border: 1px solid #4792C6;
	display: inline-block;
	line-height: 35px;
	padding: 0 15px;
	border-radius: 8px 0;
	background-color: #4792C6;
	color: #fff;
}


.index_bt2 {
	font-size: 30px;
	color: #333;
	line-height: 30px;
	font-weight: bold;
	margin-bottom: 50px;
	background-image: url(../images/title_line.jpg);
	background-position: bottom center;
	background-repeat: no-repeat;
	padding-bottom: 20px;
	text-align: center;
}

.about_one .about_js p {
	line-height: 1.6;
	text-indent: 2em;
}

.about_two {
	padding: 60px 0px;
}

.about_two .tpleft {
	flex: 1;
	padding-top: 5%;
}

.about_two .tpleft .box {
	font-size: 16px;
	line-height: 2;
}

.about_two .tpleft .box .item {}

.index_bt2 {
	margin-bottom: 40px;
}

.about_two .container {
	display: flex;
	align-items: flex-start;
}

.about_two .right_map {
	width: 60%;
	margin-left: 5%;
	position: relative;
}

.about_two .right_map .dot {
	position: absolute;
	width: 10px;
	height: 10px;
	background: #C83424;
	border-radius: 50%;
	z-index: 5;
	cursor: pointer;
}

.about_two .right_map .dot:after {
	position: absolute;
	content: "";
	z-index: 101;
	width: 100%;
	height: 100%;
	background: #C83424;
	border-radius: 50%;
	overflow: hidden;
}

.about_two .right_map .dotName {
	z-index: 100;
	position: absolute;
	width: 30px;
	left: -7px;
	top: -20px;
	font-size: 12px;
}

.about_two .right_map .dot .wave {
	width: 0;
	height: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.wave1 {
	animation: wave 5s 0s infinite;
}

.wave2 {
	animation: wave 5s 3s infinite;
}

.wave3 {
	animation: wave 5s 6s infinite;
}

.wave4 {
	animation: wave 5s 9s infinite;
}

.wave5 {
	animation: wave 6s 0s infinite;
}

.wave6 {
	animation: wave 6s 4s infinite;
}

.wave7 {
	animation: wave 6s 8s infinite;
}

.wave8 {
	animation: wave 6s 12s infinite;
}

@keyframes wave {
	0% {
		width: 15px;
		height: 15px;
		opacity: 1;
		background: #e4e4e4;
		border-radius: 100%;
	}

	100% {
		width: 170px;
		height: 170px;
		opacity: 0;
		background: #e4e4e4;
		border-radius: 100%;
	}
}

@-webkit-keyframes wave {
	0% {
		width: 15px;
		height: 15px;
		opacity: 1;
		background: #e4e4e4;
		border-radius: 100%;
	}

	100% {
		width: 170px;
		height: 170px;
		opacity: 0;
		background: #e4e4e4;
		border-radius: 100%;
	}
}

.about_two .right_map .dot1 {
	top: 44.5%;
	right: 13.3%;
}

.about_two .right_map .dot1 .dotName {
	top: -5px;
	left: -27px;
}

.about_two .right_map .dot2 {
	top: 10.5%;
	right: 22%;
}

.about_two .right_map .dot2 .dotName {
	top: -5px;
	left: 13px;
}

.about_two .right_map .dot3 {
	top: 41%;
	right: 54.5%;
}

.about_two .right_map .dot4 {
	top: 24%;
	left: 10%;
}

.about_two .right_map .dot4 .dotName {
	width: 100px;
	left: -16px;
}

.about_two .right_map .dot5 {
	top: 49%;
	right: 4.8%;
}

.about_two .right_map .dot5 .dotName {
	top: -5px;
	left: 13px;
}

.about_two .right_map .dot6 {
	top: 55%;
	right: 40.8%;
}

.about_two .right_map .dot7 {
	top: 79%;
	right: 20.8%;
}

.about_three {
	padding: 80px 0px;
	/* background-color: #fafafa; */
}

.about_three ul {
	width: 100%;
	overflow: hidden;
	background-image: url(../images/about_cBg.jpg);
	background-position: center;
	background-size: cover;
}

.about_three ul li {
	width: 25%;
	float: left;
	position: relative;
	height: 16vw;
}

.about_three ul li:nth-child(1),
.about_three ul li:nth-child(4),
.about_three ul li:nth-child(6) {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.9);
}

.about_three ul li:nth-child(2)::after,
.about_three ul li:nth-child(7)::after {
	content: "";
	position: absolute;
	left: 0;
	width: 14px;
	height: 28px;
	background-image: url(../images/jt.png);
	background-size: 100%;
	top: 50%;
	margin-top: -14px;
	z-index: 2;

}

.about_three ul li .p1 {
	font-size: 1.56vw;
	color: #333;
	position: relative;
	margin-bottom: 2vw;
}

.about_three ul li .p1::after {
	content: "";
	position: absolute;
	width: 30px;
	height: 3px;
	bottom: -6px;
	left: 50%;
	margin-left: -15px;
	background: #4792C6;

}

.about_three ul li:nth-child(2) {
	background-image: url(../images/about_c_li2.jpg);
	background-size: cover;
	background-position: center;
}

.about_three ul li:nth-child(7) {
	background-image: url(../images/about_c_li7.jpg);
	background-size: cover;
	background-position: center;
}

.about_three ul li:nth-child(8) {
	background-image: url(../images/about_c_li8.jpg);
	background-size: cover;
	background-position: center;
}

.about_three ul li:nth-child(3),
.about_three ul li:nth-child(5) {
	background: rgba(46, 115, 189, 0.9);
}

.about_three ul li:nth-child(3) p {
	color: #fff;
	font-size: 2.5vw;
	font-family: 'Montserrat-H';
	line-height: 1;
	transform: rotate(90deg);
	position: absolute;
	left: -4.2vw;
	font-weight: 300;
	top: 4vw;
}

.about_three ul li:nth-child(5) p {
	color: #fff;
	font-size: 2.5vw;
	font-family: 'Montserrat-H';
	line-height: 0.9;
	position: absolute;
	font-weight: 300;
	left: -1px;
	bottom: -2px;
}

.swiper-pagination-bullet {
	background-color: #fff;
}

.swiper-pagination-bullet-active {
	background-color: #009844;
	opacity: 1;
}

.history .swiper-slide {
	transition: none !important;
	-webkit-transition: none !important;
}

.history .swiper-slide-active {
	transition: opacity 400ms !important;
	-webkit-transition: opacity 400ms !important;
}

.about_one .box {
	display: flex;
	align-items: center;
}

.about_one .box .photo {
	float: left;
	width: calc(50% - 40px);
	margin-right: 40px;
}

.about_one .box .tpright {
	flex: 1;
}

.part_21 {
	background-color: #eee;
	width: 100%;
	overflow: hidden;
	padding: 80px 0px
}

.ryjs {
	width: 100%;
	text-align: center;
	margin-bottom: 3vw;
	font-size: 15px;
}

.about_d {
	padding: 80px 0px;
}

.about_d .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.about_d .left {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 20px 20px;
	align-items: stretch;
	width: 40%;
}

.about_d .right {
	width: calc(60% - 20px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.about_d .right p {
	width: 80%;
	text-align: center;
}


.about_d .right .imgBox {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px 20px;
	align-items: stretch;
	margin-top: 20px;
}

.bottom_add {
	width: 100%;
	background-image: url(../images/ldbg.jpg);
	background-attachment: fixed;
	background-size: cover;
	padding: 30px 0;
	text-align: center;
}

.bottom_add span {
	color: #fff;
	letter-spacing: 18px;
	text-indent: 25px;
	display: block;
}

.bottom_add p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.3);
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
}








.index_product {
	position: relative;
}

.index_product:after {
	content: "\200B";
	display: block;
	height: 0px;
	overflow: hidden;
	clear: both;
}

.index_product ul li {
	float: left;
	width: 44%;
	text-align: center;
	background: #fff;
	box-shadow: 0 8px 30px #ddd;
}

.index_product ul li a {
	display: block;
}

.index_product ul li a .photo {
	position: relative;
	display: block;
	/* padding-top: 65%; */
	width: 100%;
	height: 300px;
	overflow: hidden;
	padding: 30px 0;
}

.index_product ul li a .photo img {
	width: auto;
	max-height: 100%;
	/* position: absolute;
	top: 0px;
	left: 0px; */
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.index_product ul li a:hover .photo img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.index_product ul li a .title {
	color: #333;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.index_product ul li a .desc {
	color: #636363;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

.index_product ul li .content {
	padding: 12px;
	opacity: 0.5;
	transition: all .5s;
}

.index_product ul li.swiper-slide-active .content {
	opacity: 1;
}

.index_product .btn {
	font-size: 36px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 30;
	cursor: pointer;
	color: #999;
}

.index_product .prev {
	left: -50px;
}

.index_product .next {
	right: -50px;
}

.index_product .next:before {
	display: block;
	transform: rotate(180deg);
	transform: rotateY(180deg);
}

.index_product .btn:hover {
	color: #2895c9;
}

.about_four {
	background-Attachment: fixed;
	background-image: url(../images/about_e.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 80px 0px;
}

.about_four {
	color: #fff;
}

.about_four .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.about_four .index_bt {
	color: #fff;
	background-position: bottom center;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.about_four .index_bt .eng {
	color: #ccc;
}

.about_four .desc {
	width: 100%;
	max-width: 500px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 16px;
}

.about_four .infor {
	font-size: 20px;
	letter-spacing: 2px;
}

.about_four .infor span {
	font-size: 40px;
	font-weight: bold;
	color: #f1ba19;
}

.about_two {
	width: 100%;
	overflow: hidden;
}

.ny_banner {
	position: relative;
	padding: 180px 0;
	background-position: center;
	background-size: cover !important;
}

.top_2 {
	height: 70px;
}

.ny_banner .content {
	/* position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 30; */
	font-size: 40px;
	color: #fff;
	text-align: center;
}

.ny_banner .content span {
	font-size: 12px;
	display: block;
	margin-top: 5px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}


.n_part1 {
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
	overflow: hidden;
}

.n_part1 .about_threelass ul li {
	margin-right: 10px;
}

.n_part1 .about_threelass ul li a {
	border: 1px solid #4792C6;
	display: inline-block;
	line-height: 35px;
	padding: 0 15px;
	border-radius: 8px 0;
	color: #4792C6;
}

.n_part1 .about_threelass ul li a:hover,
.n_part1 .about_threelass ul li.active a {
	background-color: #4792C6;
	color: #fff;
}

.n_part1 .local {
	color: #8d8d8d;
}

.n_part1 .local a {
	color: #8d8d8d;
}

.n_part1 .local .iconfont {
	margin-right: 3px;
	font-size: 18px;
}

.main_1 {
	background: #fbfbfb;
}

.cen_m {
	padding: 80px 0px;
}

.cont_one {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.cont_one .tpleft {
	width: 45%;
	color: #8d8d8d;
}

.cont_one .tpleft .index_bt {
	font-weight: bold;
	font-size: 30px;
	text-align: left;
	margin-bottom: 0;
}

.cont_one .tpleft .lab {}

.cont_one .tpleft .list ul li {
	border-bottom: 1px solid #eee;
	padding: 40px 0;
	display: flex;
	align-items: flex-start;
}

.cont_one .tpleft .list ul li .iconfont {
	font-size: 24px;
	margin-right: 10px;
}

.cont_one .tpleft .list ul li .title {
	font-size: 16px;
	color: #000;
}

.cont_one .tpleft .list ul li .cont {
	flex: 1;
	line-height: 2;
	overflow: hidden;
}

.cont_one .ditu {
	width: 47%;
	height: 500px;
}

.proBox {
	width: 66%;
	min-width: 1200px;
	overflow: hidden;
	padding: 50px 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.proBox_r {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px 20px;
	align-items: stretch;
}

.proBox_r2 {
	width: Calc(100% - 350px);
	overflow: hidden;
	margin-top: 20px;
}

.proBox_r li {
	float: left;
	overflow: hidden;
	cursor: pointer;
}

.proBox_r li:nth-child(3n) {
	margin-right: 0;
}

.proBox_r li .proImgBox {
	width: 100%;
	overflow: hidden;
	height: 220px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F6F6F6;
	margin-bottom: 10px;
}

.proBox_r li .proListImg {
	width: 80%;
	height: 80%;
	background-position: center;
	background-size: cover;
	transition: all 0.9s;
}

.proBox_r li:hover .proListImg {
	transform: scale(1.1);
}

.proBox_r li p {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #888888;
	width: 100%;
	line-height: 20px;
	font-size: 12px;
}

.proBox_r li .proListName {
	/* font-family: 'Montserrat-B'; */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	font-size: 14px;
	margin-top: 5px;
}

/* pro */
.proRight {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
}

.proRight .title {
	background: #F6F6F6;
	border-radius: 8px;
	font-size: 22px;
    font-family: 'Montserrat-R';
    width: 100%;
    padding: 12px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pro_a {
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

.pro_a .left {
	width: calc(100% - 310px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.pro_a .left img {
	width: 70%;
}

.pro_a .right {
	background: #F6F6F6;
	padding: 40px;
	overflow: hidden;
	width: 280px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.pro_a .right img {
	width: 70px;
	margin-bottom: 12px;
}

.cst {
	margin-bottom: 50px;
	width: 100%;
	overflow: hidden;
}

.cst table {
	border-collapse: separate;
	border-spacing: 20px;
	table-layout: fixed;
	width: 100%;
}

.cst table th {
	border-top: 3px solid #333;
	color: #df6b77;
	text-align: left;
	font-size: 16px;
	border-bottom: 1px dashed #df6b77;
	padding: 10px 0;
}

.cst table td {
	border-bottom: 1px solid #333;
	padding-bottom: 15px;
}

.hotProBox {
	width: 100%;
	overflow: hidden;
	padding: 100px 0;
	background: #F2F2F2;
}

.hotPro {
	width: 66%;
	min-width: 1200px;
	overflow: hidden;
	margin: 0 auto;
}

.hotProBox .title {
	font-size: 40px;
	text-align: center;
	margin-bottom: 40px;
	line-height: 1.5;
}

.hotPro .proBox_r {
	width: 100%;
}


.proImgBox img {
	max-width: 80%;
	max-height: 80%;
	transition: all 0.9s;
}

.proImgBox:hover img {
	transform: scale(1.1);
}

.index_pro {
	background: #fbfbfb;
	width: 100%;
	padding-top: 3vw;
}

.ZhShsj-bg {
	height: 770px;
	position: relative;
	background-color: #000000;
}

.ZhShsj-bg::after {
	content: "";
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.ZhShsj-bg>img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all .4s ease;
	object-fit: cover;
}

.ZhShsj-bg>img.active {
	opacity: 1;
}

.ZhShsj-list {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	z-index: 2;
}

.ZhShsj-list .list {
	flex: 1;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-right: 1px solid rgba(255, 255, 255, .2);
	position: relative;
}

.ZhShsj-list .list .title {
	font-size: 30px;
	color: #fff;
	font-family: 'AM';
}

.ZhShsj-list .list:last-child {
	border-right: 0px solid rgba(255, 255, 255, .2);
}

.ZhShsj-list .list:nth-child(1)::after {
	content: '';
	position: absolute;
	left: -1px;
	height: 60px;
	top: -60px;
	width: 1px;
	background: #fff;
	animation: scroll2 2.1s linear infinite;
}

.ZhShsj-list .list:nth-child(2)::after {
	content: '';
	position: absolute;
	left: -1px;
	height: 60px;
	top: -60px;
	width: 1px;
	background: #fff;
	animation: scroll2 2s 1.2s linear infinite;
}

.ZhShsj-list .list:nth-child(3)::after {
	content: '';
	position: absolute;
	left: -1px;
	height: 60px;
	top: -60px;
	width: 1px;
	background: #fff;
	animation: scroll2 1.8s 0.7s linear infinite;
}

.ZhShsj-list .list:nth-child(4)::after {
	content: '';
	position: absolute;
	left: -1px;
	height: 60px;
	top: -60px;
	width: 1px;
	background: #fff;
	animation: scroll2 2.1s linear infinite;
}

.ZhShsj-list .list:nth-child(6)::after {
	content: '';
	position: absolute;
	left: -1px;
	height: 60px;
	top: -60px;
	width: 1px;
	background: #fff;
	animation: scroll2 2s 1.2s linear infinite;
}

.ZhShsj-list .list:nth-child(5)::after {
	content: '';
	position: absolute;
	left: -1px;
	height: 60px;
	top: -60px;
	width: 1px;
	background: #fff;
	animation: scroll2 1.8s 0.7s linear infinite;
}

.ZhShsj-list .list:nth-child(7)::after {
	content: '';
	position: absolute;
	left: -1px;
	height: 60px;
	top: -60px;
	width: 1px;
	background: #fff;
	animation: scroll2 2.1s linear infinite;
}

.ZhShsj-list .list:nth-child(7)::before {
	content: '';
	position: absolute;
	right: -1px;
	height: 60px;
	top: -60px;
	width: 1px;
	background: #fff;
	animation: scroll2 2.1s linear infinite;
}

@keyframes scroll2 {
	0% {
		top: 0;
	}

	60% {
		top: 100%;
	}

	100% {
		top: 100%;
	}
}

.ZhShyt-list {
	justify-content: space-between;
	padding: 0px 265px;
}

.ZhShyt-list .list {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ZhShyt-muen {
	margin-right: -20px;
}

.ZhShyt-muen .list {
	width: calc(100%/3 - 20px);
	margin-right: 20px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.ZhShyt-muen .list>img {
	height: 300px;
	transition: all .4s ease;
}

.ZhShyt-muen .list:hover>img {
	transform: scale(1.04);
}

.ZhShyt-muen .list .show {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 50%;
	background-image: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0px 15px 22px 15px;
}


.indww {
	width: 100%;
	overflow: hidden;
	background: url(../images/indww_bg.jpg) center no-repeat;
	background-size: cover;
	border-bottom: 1px solid #303133;
	position: relative;
	z-index: 999;
	padding: 4vw 0;
}

.indww-btn {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2vw;
}

.indww-btn .btn {
	width: 145px;
	height: 35px;
	margin: 0px 5px;
	border: 1px solid rgba(255, 255, 255, .5);
	color: #fff;
	border-radius: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .4s ease;
}

.indww-btn .btn i {
	margin-left: 10px;
}

.indww-cont {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.indww-cont .title {
	font-size: 30px;
	color: #fff;
	font-family: "AM";
}

.indww-btn .btn:hover {
	background-color: #2895c9;
	color: #fff;
	border: 0px;
}



.allMid {
	width: 66%;
	min-width: 1200px;
	margin: 0 auto;
}

.index_part4 {
	width: 100%;
	overflow: hidden;
	margin-top: 50px;
	position: relative;
	z-index: 2;
}

.index_part4 .btm {
	width: 100%;
	overflow: hidden;
	margin-bottom: 30px;
	padding-top: 10px;
}

.index_part4 .btm li {
	width: calc(33.33% - 8px);
	margin-right: 12px;
	overflow: hidden;
	float: left;
}

.index_part4 .btm li:last-child {
	margin-right: 0;
}

.proListBtm .btm {
	margin-bottom: 0px;
}

.proListBtm .index_p4ImgBox {
	height: 200px;
}

.proListBtm .index_p4ImgBox .d2 div p:nth-child(1) {
	font-size: 25px;
}

.proListBtm .index_p4ImgBox .d2 div p:nth-child(2) {
	font-size: 14px;
}

.index_p4ImgBox {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 300px;
}

.index_p4ImgBox .d1 {
	height: 100%;
	width: 100%;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	transition: all 0.9s;
}

.index_p4ImgBox .d2 {
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	color: #fff;
	transition: all 0.2s linear 0s;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 25px 20px;
}

.index_p4Title {
	height: 40px;
	border-bottom: 1px solid #ddd;
	padding: 0 20px;
	width: 100%;
	color: #969696;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.index_p4Title b {
	font-family: 'Montserrat-b';
	margin-right: 5px;
}

.index_part4 li:hover .d2 {
	opacity: 1;
}

.index_part4 li {
	transition: all 0.3s;
}

.index_part4 li:hover .index_p4ImgBox .d1 {
	transform: scale(1.1);
}

.index_p4ImgBox .d2 div p:nth-child(1) {
	width: 100%;
	overflow: hidden;
	font-size: 35px;
	font-family: 'Montserrat-b';
	line-height: 1.2;
	text-transform: uppercase;
}

.index_p4ImgBox .d2 div p:nth-child(2) {
	width: 100%;
	overflow: hidden;
	font-size: 35px;
	font-family: 'Montserrat-L';
	line-height: 1.2;
	text-transform: uppercase;
}

.index_p4ImgBox .d2 a {
	border: 2px solid #fff;
	background: none;
	border-radius: 3px;
	padding: 0px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	color: #fff;
}

.index_p4ImgBox .d2 a:hover {
	background: #fff;
	color: #333;
}

.index_p4ImgBox .d2 a i {
	font-size: 16px;
	margin-left: 3px;
}



.messageBox {
	width: 100%;
	background-image: url(../images/messageBg.jpg);
	background-position: center;
	background-size: cover;
	padding:4vw 0;
  }
  
  .messageBox form {
	width: 100%;
  }
  
  .messageBox .contact-text {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
  }
  
  .messageBox .contact-text input {
	width: calc(33.3% - 20px);
	margin-right: 30px;
	height: 30px;
	padding: 1.2vw;
	font-size: 16px;
	border: 1px solid #e2e2e2;
  }
  
  .messageBox .contact-text input:last-child {
	margin-right: 0;
  }
  
  .messageBox .contact-text textarea {
	width: 100%;
	padding: 1.2vw;
	height: 10vw;
	font-size: 16px;
	border: 1px solid #e2e2e2;
	resize: none;
  }
  
  .contact-sub {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .contact-sub button {
	margin: auto;
	margin-top: 3vw;
	width: 12.5vw;
	display: block;
	background-color: #2895c9;
	border: 1px solid #2895c9;
	color: #FFF;
	font-size: 16px;
	cursor: pointer;
	height: 2.86458vw;
	line-height: 2.86458vw;
	text-align: center;
	transition: 0.5s;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .contact-sub button i {
	font-size: 22px;
	margin-left: 15px;
	transform: rotate(-45deg);
  }
  
  .contact-sub button:hover {
	background-color: #fff;
	color: #2895c9;
  }
  
  .contact-sub button:hover i {
	transform: rotate(0);
  }
  







@media screen and (max-width: 1200px) {

	.menubtn,
	.menu-mc {
		display: flex;
	}

	header .rt nav {
		display: none;
	}

	footer .bottom .f_menu {
		display: none;
	}

	footer .bottom {
		align-items: center;
	}

	.w_sector ul li .content .desc {
		font-size: 14px;
	}

	.w_sector ul li .content .big_t .eng {
		font-size: 14px;
	}
}

@media screen and (max-width: 1000px) {
	.c_notice ul li {
		font-size: 16px;
	}

	.c_notice ul li .content .box {
		padding: 25px;
	}

	.c_notice ul li .content .lab span {
		width: 50%;
		line-height: 2;
	}

	.c_notice ul li .content .lab {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.c_notice ul li .title {
		height: 54px;
	}

	.c_notice ul li .title .tpleft .iconfont {
		margin-right: 10px;
	}

	.Investment ul li {
		flex-direction: column;
		margin-bottom: 30px;
	}

	.Investment ul li .photo {
		width: 100%;
	}

	.Investment ul li:nth-child(2n) {
		flex-direction: column;
	}

	.Investment ul li .box .content .title {
		font-size: 16px;
	}

	.Investment ul li:last-child {
		margin-bottom: 0px;
	}

	.tech_list ul li .iconfont {
		width: 65px;
		height: 65px;
		font-size: 38px;
	}

	.expert_1 ul li .xfk .title {
		font-size: 16px;
	}

	.expert_1 ul li .xfk {
		padding: 18px 15px;
	}

	.sewage ul {
		grid-template-columns: repeat(2, 1fr);
	}

	.sewage.no1 ul {
		grid-template-columns: repeat(3, 1fr);
	}

}

@media screen and (max-width: 850px) {
	.w_sector ul li .pic {
		height: 450px;
	}

	.w_sector ul li .content .more {
		width: 115px;
		height: 35px;
		font-size: 14px;
	}

	.w_sector ul li {
		width: 100%;
	}

	.w_sector ul li.active {
		width: 100%;
	}

	.w_sector ul li .pic {
		height: 300px;
	}

	.w_sector ul li .content {
		top: 50px;
	}

	.w_sector ul li .content .big_t {
		margin-bottom: 20px;
	}

	.w_sector ul li .content .desc {
		-webkit-line-clamp: 4;
	}

	.join_book ul li.no1 {
		width: 100%;
	}

	.join_book ul li label {
		font-size: 14px;
	}

	.join_book ul li.last {
		justify-content: center;
	}

	.join_book ul li.last button {
		font-size: 16px;
	}

}

@media screen and (max-width: 767px) {
	header .logo img {
		height: 20px;
	}

	header .container {
		height: 60px;
	}

	.banner ul li .content .title {
		font-size: 20px;
	}
	.banner ul li .content .title2{
		font-size:14px;
	}
	.banner ul li .content {
		padding-top: 13vh;
	}

	.index_bt {
		margin-bottom: 32px;
	}

	.index_bt.no1 {
		margin-bottom: 32px;
	}

	.index_about .pic {
		margin-bottom: 25px;
	}

	.dance {
		padding: 50px 0px;
	}

	.index_bt .title {
		padding-bottom: 0px;
	}

	.con_class {
		margin-bottom: 20px;
	}

	.ab_class {
		margin-bottom: 20px;
	}

	.conver_js .content {
		padding: 20px 20px 20px 30px;
	}

	.conver_js {
		margin-bottom: 32px;
	}

	.new_class {
		margin-bottom: 30px;
	}

	.con_class ul li a {
		min-width: 140px;
		text-align: center;
	}

	.ab_class ul li a {
		min-width: 100px;
		text-align: center;
	}

	.index_new {
		flex-wrap: wrap;
	}

	.index_new .new_l {
		width: 100%;
		margin-bottom: 15px;
		margin-right: 0px;
	}

	.index_new .new_r {
		flex: none;
		width: 100%;
	}

	.index_new .new_r ul li a .num {
		font-size: 30px;
	}

	.index_new {
		margin-bottom: 35px;
	}

	.p_list ul {
		grid-template-columns: repeat(2, 1fr);
	}

	.p_list ul li a {
		height: 80px;
	}

	footer .copyright .tpleft {
		margin-bottom: 10px;
	}

	footer {
		padding: 30px 0px 20px;
	}

	footer .copyright {
		padding-bottom: 0px;
	}

	footer .bottom {
		margin-bottom: 20px;
	}

	footer .bottom .tpleft img {
		height: 25px;
	}

	.index_product ul li a .title {
		font-size: 18px;
	}

	.index_product ul li .content {
		padding: 20px;
	}

	.sup_midd {
		height: 270px;
	}

	.sup_midd .sup_left ul li {
		font-size: 12px;
	}

	.sup_midd .sup_left {
		width: 25%;
	}

	.sup_midd .sup_right ul li .xfk {
		font-size: 14px;
		padding: 10px 4%;
	}

	.new_zs {
		margin-bottom: 30px;
	}

	.new_zs ul {
		grid-template-columns: repeat(2, 1fr);
	}

	.nybanner .content .title {
		font-size: 22px;
	}

	.fany {
		margin-top: 30px;
	}

	.c_notice ul li .title {
		padding: 0px 20px;
	}

	.nybanner .content .desc {
		font-size: 12px;
	}

	.top_2 {
		height: 60px;
	}

	.fh_banner {
		margin: 40px 0px;
	}

	.fh_banner .desc {
		font-size: 16px;
	}

	.contact_1 .con_box {
		flex-direction: column;
	}

	.contact_1 .con_box .con_left {
		width: 100%;
		text-align: center;
		margin-right: 0px;
		margin-bottom: 20px;
	}

	.contact_1 .con_box .con_right ul {
		flex-direction: column;
	}

	.contact_1 .con_box .con_right ul li {
		width: 100%;
	}

	.contact_1 .con_box .con_right .infor {
		flex-direction: column;
	}

	.contact_1 .con_box .con_right {
		flex: none;
		width: 100%;
	}

	.contact_1 .con_box .con_right .infor .lab {
		width: 100%;
		margin-bottom: 10px;
	}

	.tech_list ul {
		grid-template-columns: repeat(1, 1fr);
	}

	.tech_list {
		margin-bottom: 50px;
	}

	.tech_case ul {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px 10px;
	}

	.tech_case {
		margin-bottom: 50px;
	}

	.expert_1 ul {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px 10px;
	}

	.nybanner.no2 .content .infor {
		font-size: 16px;
	}

	.industry ul {
		grid-template-columns: repeat(1, 1fr);
	}

	.industry ul li .iconfont {
		width: 65px;
		height: 65px;
	}

	.join_2 {
		padding: 50px 0px;
	}

	.join_3 {
		padding: 50px 0px;
	}

	.zt_desc {
		margin-bottom: 50px;
	}

	.join_4 {
		padding: 50px 0px;
		margin-bottom: 50px;
	}

	.join_book {
		padding: 40px 20px;
	}

	.join_book ul li label {
		width: 80px;
	}

	.index_about.no3 {
		padding-bottom: 10px;
	}
	.banner {
		width: 100%;
		height: 30vh;
	}
	.ZhShsj-bg{
		height: 350px;
	}
	.ZhShsj-list .list .title{
		font-size:20px;
	}
	.indww-btn{
		display: flex;flex-direction: column;align-items: center;justify-content:center;
	}
	.indww-btn .btn{
		margin-bottom:12px;
	}

	.ny_banner{padding:80px 0;}

	.n_part1 .local{
		display: none;
	}
	.n_part1{padding:0;}

	.n_part1 .about_class ul{
		overflow-x: scroll;
		display: block;
		width: max-content;
	}
	.about_class ul li{
		float: left;
	}

	.n_part1 .container{
		overflow-x: scroll;
		padding:20px 12px;
	}
	.container{
		width: 100%;
		padding:0 12px;
	}
	.allMid{
		width: 100%;
		min-width: 0;
		padding:0 12px;
	}
	.about_one .box{
		display: flex;flex-direction: column;align-items: center;justify-content:center;
	}
	.about_one .box .photo{
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.about_three ul li{
		width: 50%;
		float: left;
		position: relative;
		height: 200px;
	}
	.about_three ul li p{
		font-size:14px;
	}
	.about_three ul li .p1{
		font-size:18px;
	}
	.about_three ul li:nth-child(3) p {
		font-size: 25px;
		left: -47px;
		top: 46px;
	}

	.about_three ul li:nth-child(5) p{
		font-size:25px;
	}
	.about_d .container{
		display: flex;flex-direction: column;align-items: center;justify-content:center;    flex-flow: column-reverse;
	}
	.about_d .right{
		width: 100%;
	}
	.about_d .left{
		width: 100%;
		margin-top:20px;
	}
	.about_d .right p{
		width: 100%;
	}
	.proListBtm .index_p4ImgBox{
		height: 80px;
	}

	.index_p4Title{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		font-size: 12px;
		padding: 0;
		height: auto;
		padding: 5px 0;
	}

	.proBox{
		width: 100%;
		min-width: 0;
		padding:0 12px;
	}

	.proBox_r{
   		grid-template-columns: repeat(1, 1fr);
	}

	.proBox_r li .proImgBox{
		height: 250px;
	}
	.pro_a{
		display: flex;flex-direction: column;align-items: center;justify-content:center; 
	}
	.pro_a .left{
		width: 100%;
		margin-bottom: 30px;
	}
	.pro_a .left img{
		width: 100%;
	}
	.pro_a .right{
		width: 100%;
		padding:12px;
		display:flex;justify-content:flex-start;align-items:center;flex-direction: row;
	}
	.pro_a .right img{
		width: 40px;
		margin-right: 20px;
	}
	.cst{
		overflow-x: scroll;
	}
	.cst table th{
		width: 200px;
	}
	.hotPro{
		width: 100%;
		min-width: 0;
		padding:0 12px;
	}
	.hotProBox .title{
		font-size:25px;
		text-align: center;
	}
	.hotPro .proBox_r{
		grid-template-columns: repeat(2, 1fr);
	}
	.newsxq .contain{
		display: flex;flex-direction: column;align-items: center;justify-content:center;     flex-wrap: nowrap;
	}
	.newsxq-wrap{
		width: 100%;
		padding-right: 0;
		border:none;
	}
	.newsxq-cont .title h1{
		font-size:30px;
	}
	.newsxq-btn{
		padding-right: 0;;
	}
	.newsxq-btn .back{
		position: relative;
	}
	.newsxq-btn .back{
		margin-top:20px;
	}
	.newsxq-side{
		width: 100%;
		padding:0;
		border-top:1px solid #e5e5e5;
		margin-top:30px;
		padding-top:30px;
	}
	.newsxq-side-title{
		text-align: center;
	}
	.cont_one{
		display: flex;flex-direction: column;align-items: center;justify-content:center;
		padding: 30px 0;
	}
	.cont_one .tpleft{
		width: 100%;
	}
	.cont_one .ditu{
		width: 100%;
		height: 250px;
	}
	.cont_one .tpleft .index_bt{
		font-size:22px;
	}
	.cont_one .tpleft .list ul li{
		padding:20px 0;
	}
	.c_notice ul li .content .box div,.c_notice ul li .content .box p{
		max-width: 100% !important;
	}
	.messageBox .contact-text input{
		width: 100%;
		margin-right: 0;
		margin-bottom:12px;
		height: 40px;
		padding: 12px;
		font-size: 14px;
	}
	.messageBox .contact-text{
		margin-bottom:0;
	}
	.messageBox .contact-text textarea{
		padding: 12px;
		height: 150px;
		font-size: 14px;
	}
	.contact-sub button{
		margin-top: 30px;
		width: 150px;
		background-color: #2895c9;
		border: 1px solid #2895c9;
		color: #FFF;
		font-size: 14px;
		cursor: pointer;
		height: 40px;
		line-height: 1.5;
	}
	.messageBox{
		padding:40px 0;
	}

}

@media screen and (max-width: 600px) {
	footer .bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.index_product ul li {
		width: 80%;
	}

	footer .bottom .weix {
		margin-top: 20px;
	}

	footer .bottom .weix ul li {
		margin-left: 0px;
		margin-right: 15px;
	}

}

@media screen and (max-width: 450px) {
	.sewage ul {
		grid-template-columns: repeat(1, 1fr);
	}

	.sewage.no1 ul {
		grid-template-columns: repeat(1, 1fr);
	}
}