@charset "utf-8";
/* CSS Document */


@font-face {
	font-family: 'SourceHanSansCNRegular';
	src: url('../font/SourceHanSansCN-Regular.woff');
}

body {
	margin: 0;
	padding: 0;
	color: #333;
	font-family: "SourceHanSansCNRegular";
	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;
}

.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: 45vh;
	top: 0px;
	z-index: 100;
	/* text-shadow: 0px 0px white, 0px 1px #333; */
}

.banner ul li .content .title {
	font-size: 60px;
	text-align: center;
}

.banner ul li .content .title span {
	font-size: 12px;
	display: block;
	margin-top: 5px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.2);
}

.banner ul,
.banner ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/*导航蓝色部分*/
header {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 999999;
	background: #fff;
	transition: all .5s;
	-webkit-transition: all .5s;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}

header.active {
	background-color: #0163a6;
}

header .logo img {
	height: 45px;
}

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:nth-child(4) .submenu {
	display: none;
}

header nav li .title {
	padding: 0px 20px;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	height: 70px;
	;
}

header nav li:hover .title {
	background-color: #2E73BD;
	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);
	min-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: 176px;
}

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: left;
	padding: 0 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	height: 40px;
	font-weight: normal;
}

header nav li.no5 .submenu dd a {
	text-align: center;
	padding: 0px 10px;
}

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: #2E73BD;
}

.part_1 {
	padding: 120px 0;
}

.part_1 .container {
	align-items: stretch;
}

.part_1 .photo {
	float: left;
	width: calc(44% - 60px);
	margin-right: 60px;
}

.part_1 .box {
	flex: 1;
}

.part_1 .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.part_1 .box .more {
	padding: 5px 40px;
	display: inline-block;
	border: 1px solid #2e73bd;
	border-radius: 20px;
	color: #2e73bd;
}

.part_1 .box .more:hover {
	padding: 5px 40px;
	border: 1px solid #2e73bd;
	background-color: #2e73bd;
	border-radius: 20px;
	color: #fff;
}

.part_1 .box .list {
	margin: 40px 0 40px 0;
	display: flex;
	align-items: stretch;
}

.part_1 .box .list li {
	width: 25%;
	float: left;
	flex: 1;
	text-align: center;
	border-left: 1px solid #ddd;
	box-sizing: border-box;
	font-size: 12px;
	color: #aaa;
	padding: 0 12px;
}

.part_1 .box .list li:last-child {
	border-right: 1px solid #ddd;
}

.part_1 .box .list .txt span {
	display: block;
	font-family: "Bebas";
	font-size: 32px;
	font-weight: bold;
	color: #2e73bd;
	margin-right: 5px;
}

.part_1 .box .list .txt {
	color: #aaa;
	display: flex;
	align-items: self-end;
	line-height: 1;
	justify-content: center;
	margin-bottom: 10px;
}

.part_1 .box .desc {
	color: #8d8d8d;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

.index_bt {
	font-size: 30px;
	color: #333;
	line-height: 30px;
	font-weight: bold;
	margin-bottom: 20px;
	background-image: url(../images/title_line.jpg);
	background-position: bottom left;
	background-repeat: no-repeat;
	padding-bottom: 20px;
}


/*移动菜单*/
.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: #2e73bd;
	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;
}

.part_2 {
	padding: 100px 0;
	background-image: url(../images/section6_bg.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
}

.index_bt.no1 {
	text-align: center;
	background-position: bottom center;
}

.index_history {
	position: relative;
	margin: 50px 0px;
}

.index_history .btn {
	position: absolute;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px #a5a5a5 solid;
	color: #a5a5a5;
	font-size: 27px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	cursor: pointer;
}

.index_history .prev {
	left: -38px;
}

.index_history .next {
	right: -38px;
}

.index_history .btn:hover {
	color: #2e73bd;
	border: 2px #2e73bd solid;
}

.index_history:after {
	content: '';
	width: 100%;
	height: 1px;
	border-bottom: 2px dashed #333;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 10;
}

.index_history .list {
	width: 100%;
	overflow-x: auto;
	z-index: 99;
}

.index_history .list::-webkit-scrollbar {
	display: none;
}

.index_history .list::-webkit-scrollbar-thumb {
	display: none;
}

.index_history .list ul {
	height: 85px;
	width: 20000px;
}

.index_history .list ul li {
	width: 87px;
	float: left;
	font-size: 14px;
	cursor: pointer;
	color: #848484;
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	height: 85px;
	line-height: 1;
	display: flex;
	align-items: flex-start;
}

.index_history .list ul li:after {
	content: '';
	width: 15px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	height: 15px;
	border: 1px #848484 solid;
	position: absolute;
	border-radius: 100%;
	z-index: 20;
}

.index_history .list ul li:hover,
.index_history .list ul li.active {
	color: #2e73bd;
}

.index_history .list ul li:hover:after,
.index_history .list ul li.active:after {
	border: 1px #2e73bd solid;
	background-color: #2e73bd;
}

.index_history .list ul li:nth-child(2n) {
	align-items: flex-end;
}

.his_content {
	display: flex;
	align-items: center;
	justify-content: center;
}

.his_content .history {
	max-width: 500px;
	width: 90%;
	margin: 0px auto;
}

.his_content .box img {
	width: 100px;
	margin-right: 38px;
}

.his_content .box .cont {
	flex: 1;
	color: #333;
	font-size: 14px;
}

.his_content .box .cont .txt {
	font-size: 37px;
	color: #2e73bd;
	font-weight: bold;
	font-family: "Bebas";
	margin-bottom: 2px;
}

.part_3 {
	padding-top: 30px;
}

.part_3 ul {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}

.part_3 ul li {
	width: 33.3%;
}

.part_3 ul li a {
	color: #fff;
	display: block;
	overflow: hidden;
	position: relative;
}

.part_3 ul li a:before {
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	content: "";
	z-index: 10;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.part_3 ul li a .photo {
	padding-top: 350px;
	position: relative;
}

.part_3 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;
}

.part_3 ul li a:hover .photo img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.part_3 ul li a .content {
	z-index: 100;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	text-align: center;
}

.part_3 ul li a .content .iconfont {
	font-size: 52px;
	height: 56px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.part_3 .index_bt.no1 {
	margin-bottom: 40px;
}

.part_3 ul li a .content .icon-huishouzhanx {
	font-size: 65px;
}

.part_3 ul li a .content .icon-industry {
	font-size: 60px;
}

.part_3 ul li a .content .icon-guolu1 {
	padding-top: 10px;
}

.part_3 ul li a:hover {
	color: #ffbe00;
}

.part_3 ul li:hover a:before {
	background-color: rgba(0, 0, 0, 0.6);
}

/*新闻*/
.part_4 {
	width: 100%;
	height: auto;
	padding: 120px 0 100px 0;
	background-image: url(../images/index_new_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.part_4 .index_bt {
	margin-bottom: 60px;
}

.index_new {
	display: flex;
}

.index_new .new_l {
	width: 48%;
	height: 290px;
	margin-right: 4%;
	overflow: hidden;
}

.index_new .new_r {
	flex: 1;
	overflow: hidden;
}

.index_new .new_l ul,
.index_new .new_l ul li {
	width: 100%;
	height: 100%;
}

.index_new .new_l ul li a .photo {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
}

.index_new .new_l ul li a .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.index_new .new_l ul li a .photo {
	overflow: hidden;
	display: block;
}

.index_new .new_l ul li:hover a .photo img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.index_new .new_l ul li a {
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
}

.index_new .new_l ul li a .content {
	font-size: 16px;
	bottom: 5px;
	left: 5px;
	right: 5px;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 15px 20px;
	color: #fff;
}

.index_new .new_l ul li a .content .title {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

.index_new .new_l ul li a .content .date {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	display: block;
	color: #aaa;
	margin-top: 5px;
}

.index_new .new_r ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #ddd;
	padding-bottom: 17px;
	margin-bottom: 17px;
}

.index_new .new_r ul li .content {
	flex: 1;
	overflow: hidden;
}

.index_new .new_r ul li .tpright {
	width: 69px;
	margin-left: 8%;
	background-color: #fff;
	text-align: center;
	color: #8d8d8d;
}

.index_new .new_r ul li .tpright .big {
	font-size: 30px;
	line-height: 50px;
	background-color: #5070a1;
	width: 100%;
	display: block;
	height: 50px;
	color: #fff;
}

.index_new .new_r ul li .content .title a {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	font-size: 16px;
	color: #333;
}

.index_new .new_r ul li .content .desc {
	color: #8d8d8d;
	line-height: 1.7;
	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_new .new_r ul li:last-child {
	padding-bottom: 0px;
	margin-bottom: 0px;
	border-bottom: 0px;
}

/*底部*/
footer {
	padding: 80px 0 20px 0;
	background-color: #fff;
	color: #8d8d8d;
	line-height: 1.7;
}

footer .bottom {
	align-items: flex-start;
	margin-bottom: 80px;
}

footer .bottom .tpleft {
	width: 352px;
}

footer .bottom .tpleft img {
	height: 52px;
	width: auto;
	margin-bottom: 15px;
}

footer .bottom .f_menu {
	flex: 1;
	margin: 0px 5%;
}

footer .bottom .weix ul {
	display: flex;
	align-items: flex-start;
}

footer .bottom .weix ul li {
	width: 75px;
	margin-left: 10px;
	font-size: 12px;
	color: #bbb;
	text-align: center;
}

footer .bottom .weix ul li img {
	width: 100%;
}

footer .bottom .f_menu ul {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

footer .bottom .f_menu ul li {
	flex: 1;
}

footer .bottom .f_menu ul li .tit {
	font-size: 15px;
	color: #000;
	margin-bottom: 5px;
}

footer .bottom .f_menu ul li .sumbit a {
	color: #8d8d8d;
	display: block;
	line-height: 2;
}

footer .bottom .f_menu ul li.last {
	flex: none;
	width: 75%;
}

footer .bottom .f_menu ul li.last .sumbit {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}

footer .bottom .f_menu ul li.last .sumbit a {
	width: 50%;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

footer .bottom .f_menu ul li .sumbit a:hover {
	color: #2e73bd;
}

footer .bottom_2 {
	border-bottom: 1px solid #eee;
	font-size: 12px;
	padding: 10px 0;
	line-height: 20px;
}

footer .bottom_2 .online a {
	width: 24px;
	height: 24px;
	background-color: #bbb;
	color: #fff;
	margin-left: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	cursor: pointer;
}

footer .bottom_2 .online a:hover {
	background-color: #2e73bd;
}

footer .copyright {
	font-size: 12px;
	padding: 10px 0px;
}

footer .copyright a {
	color: #8d8d8d;
}

footer .copyright a:hover {
	color: #2e73bd;
}

.ny_banner {
	position: relative;
	padding: 180px 0;
	background-position: center;
	background-size: cover !important;
}

.top_2 {
	height: 70px;
}

/* .ny_banner img {
	width: 100%;
	height: auto;
	min-height: 120px;
	object-fit: cover;
	object-position: top center;
} */

.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.2);
}

.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 #2e73bd;
	display: inline-block;
	line-height: 35px;
	padding: 0 15px;
	border-radius: 8px 0;
	color: #2e73bd;
}

.n_part1 .about_threelass ul li a:hover,
.n_part1 .about_threelass ul li.active a {
	background-color: #2e73bd;
	color: #fff;
}

.n_part1 .local {
	color: #8d8d8d;
}

.n_part1 .local a {
	color: #8d8d8d;
}

.n_part1 .local .iconfont {
	margin-right: 3px;
	font-size: 18px;
}

.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 #2e73bd;
	display: inline-block;
	line-height: 35px;
	padding: 0 15px;
	border-radius: 8px 0;
	color: #2e73bd;
}

.about_class ul li.active a {
	background-color: #2e73bd;
	color: #fff;
}

.about_class ul li a:hover {
	border: 1px solid #2e73bd;
	display: inline-block;
	line-height: 35px;
	padding: 0 15px;
	border-radius: 8px 0;
	background-color: #2e73bd;
	color: #fff;
}


.about_one .about_js {
	line-height: 1.6;
}

.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 {}

.about_two .tpleft .index_bt {
	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: 33.3%;
	float: left;
	position: relative;
	height: 21vw;
}

.about_three ul li:nth-child(2),
.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: #2e73bd;

}

.about_three ul li:nth-child(1) {
	background-image: url(../images/about_c_li77.jpg);
	background-size: cover;
	background-position: center;
}

.about_three ul li:nth-child(3) {
	background-image: url(../images/about_c_li88.jpg);
	background-size: cover;
	background-position: center;
}

.about_three ul li:nth-child(5) {
	background-image: url(../images/about_c_li22.jpg);
	background-size: cover;
	background-position: center;
}


/* .about_three ul li:nth-child(3){
	background-image: url(../images/about_c_li33.jpg);
	background-size: cover;
	background-position: center;
}
.about_three ul li:nth-child(5) {
	background-image: url(../images/about_c_li55.jpg);
	background-size: cover;
	background-position: center;
} */


.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: flex-start;
}

.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
}

.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/5df97e8cdee2a.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 80px 0px;
}

.about_four {
	color: #fff;
}

.about_four .index_bt {
	color: #fff;
}

.about_four .desc {
	width: 100%;
	max-width: 500px;
	margin-bottom: 20px;
	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;
}

.news_list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.news_list ul li {
	width: 48%;
	padding: 22px 0;
	border-bottom: 1px dotted #ddd;
	display: flex;
	align-items: flex-start;
}

.news_list ul li .photo {
	width: 160px;
	margin-right: 20px;
}

.news_list ul li .photo a {
	display: block;
	height: 100px;
	overflow: hidden;
}

.news_list ul li .photo a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.news_list ul li .photo a:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.news_list ul li .content {
	flex: 1;
	overflow: hidden;
}

.news_list ul li .content .title a {
	font-size: 16px;
	color: #333;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}

.cen_m {
	padding: 80px 0px;
}

.news_list ul li .content .date {
	margin: 5px 0px;
	color: rgba(0, 0, 0, 0.3);
	font-size: 13px;
	font-weight: bold;
}

.news_list ul li .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;
	color: #8d8d8d;
}

.news_list ul li .content .title a:hover {
	color: #2e73bd;
}

.news_list ul li:nth-child(1),
.news_list ul li:nth-child(2) {
	border-top: 1px dotted #ddd;
}

/*翻页*/
.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: #2e73bd;
	border: 1px #2e73bd solid;
}

.divid-a .up {
	font-family: "黑体";
}

.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: 27px;
	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;
}

.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: 300;
}

.cont_one .tpleft .lab {}

.cont_one .tpleft .list ul li {
	border-bottom: 1px solid #eee;
	padding: 30px 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;
}

.product_m {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.product_m .pro_left {
	width: 250px;
}

.product_m .pro_right {
	width: calc(96% - 250px);
	margin-left: 4%;
}

.product_m .pro_left ul li:nth-child(1) {
	border-top: 1px solid #666;
}

.product_m .pro_left ul li {
	border-bottom: 1px solid #666;
	line-height: 40px;
}

.product_m .pro_left ul li .title {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.product_m .pro_left ul li .title .iconfont:before {
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	display: block;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.product_m .pro_left ul li .box {
	padding-bottom: 40px;
	display: none;
}

.product_m .pro_left ul li dl dd a {
	color: #8d8d8d;
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 20px;
}

.product_m .pro_left ul li dl dd a:before {
	position: absolute;
	content: "";
	left: 0px;
	width: 8px;
	height: 8px;
	border: 2px solid #cccccc;
}

.product_m .pro_left ul li.active .title {
	color: #2e73bd;
}

.product_m .pro_left ul li.active .title .iconfont:before {
	transform: rotate(-0deg);
	-webkit-transform: rotate(-0deg);
}

.product_m .pro_left ul li dl dd a:hover {
	color: #2e73bd;
}

.pro_list ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 25px 25px;
	align-items: stretch;
}

.pro_list ul li {
	background-color: #fff;
	box-shadow: 0px 3px 13px rgb(0 0 0 / 12%);
}

.pro_list ul li a {
	display: block;
	padding: 15px;
	/* padding-bottom: 25px; */
}

.pro_list ul li a .photo {
	position: relative;
	display: block;
	padding-top: 90%;
	width: 100%;
	overflow: hidden;
}

.pro_list 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;
}

.pro_list ul li a:hover .photo img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.pro_list ul li a .title {
	font-size: 16px;
	margin-top: 5px;
	cursor: pointer;
}

.pro_list ul li a:hover .title {
	color: #2e73bd;
}

.pro_list ul li a .desc {
	color: #999;
}

.seting ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.seting ul li {
	background-color: #fff;
	margin-bottom: 35px;
	box-shadow: 0px 3px 13px rgb(0 0 0 / 12%);
	width: calc(50% - 10px);
	margin-right: 20px;
}

.seting ul li:nth-child(2n) {
	margin-right: 0;
}

.seting ul li a {
	display: block;
}

.seting ul li a .photo {
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
	height: 250px;
}

.seting ul li a .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}
.seting ul li a .photo video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .5s;
	-webkit-transition: all .5s;
}


.seting ul li a:hover .photo img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}

.seting ul li a .title {
	font-size: 16px;
	padding: 15px 20px 30px;
}

.seting ul li a:hover .title {
	color: #2e73bd;
}


.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: #2e73bd;
	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(63, 113, 185, .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;
}


@media screen and (max-width: 1200px) {

	.menubtn,
	.menu-mc {
		display: flex;
	}

	header .rt nav {
		display: none;
	}

	.part_1 .photo {
		margin-right: 5%;
	}

	footer .bottom .f_menu {
		display: none;
	}

	footer .bottom {
		align-items: center;
	}
}

@media screen and (max-width: 1000px) {
	.ny_banner .content {
		font-size: 24px;
	}

	.n_part1 .about_class {
		display: none;
	}

	.about_two .tpleft .box {
		font-size: 16px;
	}
}

@media screen and (max-width: 850px) {
	.cont_one {
		flex-direction: column;
	}

	.cont_one .tpleft {
		width: 100%;
		margin-bottom: 25px;
	}

	.cont_one .ditu {
		width: 100%;
	}

	.product_m {
		flex-direction: column;
	}

	.product_m .pro_left {
		width: 100%;
		margin-bottom: 35px;
		display: none;
	}

	.product_m .pro_right {
		margin-left: 0px;
		width: 100%;
		flex: none;
	}
}

@media screen and (max-width: 767px) {
	header .logo img {
		height: 40px;
	}

	header .container {
		height: 60px;
	}

	.ny_banner {
		padding: 80px 0;
	}

	.top_2 {
		height: 60px;
	}

	.banner ul li .content .title {
		font-size: 30px;
	}

	.part_1 {
		padding: 50px 0px;
	}

	.part_1 .container {
		flex-direction: column;
	}

	.part_1 .photo {
		width: 100%;
		margin-bottom: 5%;
		margin-right: 0px;
	}

	.index_bt {
		font-size: 25px;
	}

	.part_2 {
		padding: 50px 0px;
	}

	.index_history {
		margin: 70px 0px;
	}

	.part_2 .container {
		width: 85%;
	}

	.index_history .btn {
		width: 25px;
		height: 25px;
		font-size: 20px;
	}

	.index_history .prev {
		left: -28px;
	}

	.index_history .next {
		right: -28px;
	}

	.index_history .list ul li {
		width: 74px;
	}

	.his_content .box img {
		width: 60px;
	}

	.his_content .box .cont .txt {
		font-size: 27px;
	}

	.part_3 .index_bt.no1 {
		margin-bottom: 25px;
	}

	.part_3 ul li a .content {
		font-size: 16px;
	}

	.part_3 ul li {
		width: 33.3%;
	}

	.part_4 {
		padding: 50px 0px;
	}

	.part_4 .index_bt {
		margin-bottom: 30px;
	}

	.index_new {
		flex-direction: column;
	}

	.index_new .new_l {
		width: 100%;
		margin-right: 0px;
		margin-bottom: 5%;
	}

	footer .bottom_2 .tpright {
		display: none;
	}

	footer .copyright {
		flex-direction: column;
		align-items: flex-start;
	}

	footer .bottom {
		margin-bottom: 30px;
	}

	footer {
		padding-top: 50px;
	}

	.about_three ul li {
		width: 100%;
        height: 52vw;
		text-align: center;
	}

	.about_three ul li:nth-child(3) p {
		font-size: 20px;
		left: -38px;
		top: 43px;
	}

	.about_three ul li:nth-child(5) p {
		font-size: 20px;
		left: -1px;
		bottom: 0px;
	}

	.about_three ul li p {
		font-size: 12px;
	}

	.about_three ul li .p1 {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.about_three ul li .p1::after {
		bottom: -7px;
	}

	.about_three {
		padding: 50px 0px;
	}

	.index_bt.dance {
		margin-bottom: 28px;
	}

	.about_one {
		padding: 50px 0px;
	}

	.about_two {
		padding: 50px 0px;

	}

	.about_two .container {
		flex-direction: column;
	}

	.about_two .tpleft {
		padding-top: 0px;
	}

	.about_two .right_map {
		width: 100%;
		margin-left: 0px;
	}

	.about_two .tpleft .index_bt {
		margin-bottom: 25px;
	}

	.n_part1 {
		padding: 10px 0px;
	}

	.about_one .box {
		flex-direction: column;
	}

	.about_one .box .photo {
		width: 100%;
		margin-right: 0px;
		margin-bottom: 25px;
	}

	.part_21 {
		padding: 50px 0px;
	}

	.about_two .tpleft .box {
		font-size: 14px;
	}

	.about_four {
		padding: 60px 0px;
	}

	.about_four .desc {
		font-size: 14px;
	}

	.about_four .infor {
		font-size: 18px;
	}

	.news_list ul li {
		width: 100%;
	}

	.cont_one .tpleft .list ul li {
		padding: 20px 0px;
	}

	.pro_list ul {
		grid-template-columns: repeat(1, 1fr);
	}

	.pro_list ul li a .title {
		font-size: 15px;
	}

	.seting ul li a .title {
		font-size: 15px;
	}
	.newsxq .contain{
		display: flex;flex-direction: column;align-items: flex-start;justify-content:center;
	}
	.newsxq-wrap{
		width: 100%;
		padding-right:0;
		border-right: none;
	}
	.newsxq-cont .title h1{
		font-size: 22px;
	}
	.newsxq-cont .text{
		text-indent: 0;
	}
	.newsxq-btn{
		padding:0;
	}
	.newsxq-btn .back{
		position: relative;
		margin-top:20px;
	}
	.newsxq-side{
		display: none;
	}
}

@media screen and (max-width: 600px) {
	footer .bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	footer .bottom .weix {
		margin-top: 25px;
	}

	footer .bottom .weix ul li {
		margin-left: 0px;
		margin-right: 10px;
	}

	.his_content .history {
		width: 100%;
	}

	.index_product ul li a .title {
		font-size: 18px;
	}

	.index_product ul li .content {
		padding: 20px;
	}

	.cen_m {
		padding: 40px 0px;
	}

	.fany {
		margin-top: 30px;
	}

	.bottom_add span {
		letter-spacing: 15px;
		text-indent: 0px;
	}
}

@media screen and (max-width: 600px) {
	.index_product ul li {
		width: 80%;
	}
	
	.seting ul li {
		width: 100%;
		margin-right:0px;
	}
}

@media screen and (max-width: 450px) {
	.part_1 .box .list {
		margin: 15px 0px;
		flex-wrap: wrap;
	}

	.part_1 .box .list li {
		width: 50%;
		flex: none;
		margin: 10px 0px;
	}

	.part_1 .box .list li:nth-child(2n) {
		border-right: 1px solid #ddd;
	}

	.part_3 ul li {
		width: 100%;
	}

	.part_3 ul li a .content {
		font-size: 18px;
	}

	.news_list ul li .photo {
		width: 120px;
		height: 90px;
	}
}



.fzzl_part1_box {
	width: 100%;
	overflow: hidden;
	background-image: url(../images/fzzl_img.png);
	background-size: cover;
	background-position: center center;
	padding: 80px 0;
}

.fzzl_part1 {
	width: 66%;
	min-width: 1200px;
	overflow: hidden;
	margin: 0 auto;
}

.fzzl_part1_p1 {
	font-size: 40px;
	line-height: 45px;
	color: #0E6EB8;
	text-align: center;
	font-weight: 500;
}

.fzzl_part1_p2 {
	margin-top: 30px;
	text-align: center;
}

.sjz_box {
	margin-top: 30px;
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sjz_box .main {
	width: 48%;
	float: left;
}

.time-axis {
	margin: 0;
	padding: 0;
	position: relative;
}

.time-axis:before {
	content: '';
	position: absolute;
	left: 93px;
	top: 15px;
	width: 1px;
	height: 100%;
	background-color: #E4E4E4;
}

.time-axis2 {
	margin: 0;
	padding: 0;
	position: relative;
}

.time-axis2:before {
	content: '';
	position: absolute;
	left: 93px;
	top: 15px;
	width: 1px;
	height: 100%;
	background-color: #E4E4E4;
}

.time-axis-item {
	list-style: none;
	padding-left: 150px;
	position: relative;
	line-height: 45px;
	font-size: 14px;
	color: #141414;
}

.time-axis-achievement {
	margin: 0;
	line-height: 25px;
}

.time-axis-date {
	position: absolute;
	left: 0;
	top: 0;
	color: #0E6EB8;
	font-family: 'dinprob';
	font-weight: 500;
	display: inline-block;
	width: 52px;
	text-align: right;
}

.time-axis-date span {
	position: absolute;
	right: -49px;
	top: 35%;
	display: block;
	width: 13px;
	height: 13px;
	border: 1px solid #ccc;
	border-radius: 100%;
	background-color: #fff;
}

.time-axis-date span:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 7px;
	height: 7px;
	margin: auto;
	background-color: #ccc;
	border: 1px solid #ccc;
	border-radius: 100%;
}

.time-axis2 .time-axis-item:last-child .time-axis-date span {
	border-color: #0E6EB8;
}

.time-axis2 .time-axis-item:last-child .time-axis-date span:after {
	background-color: #0E6EB8;
	border-color: #0E6EB8;
}

.time-axis-title {
	line-height: 25px;
	padding: 10px 0;
}


.zxhw {
	background-image: url(../images/zxhw.jpg);
	background-position: center;
	background-size: cover;
	height: 80vh;
}

.zxhw .index_bt {
	color: #fff;
}

.zxhw .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.zxhw .container p {
	color: #fff;
	font-size: 16px;
}


@media screen and (max-width: 1200px) {
	.fzzl_part1 {
		width: 100%;
		min-width: 0;
		padding: 0 12px;
	}

	.sjz_box {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.sjz_box .main {
		width: 100%;
	}

}