/*common start*/
:root {
	--primary-color: #00B050;
	--secondary-color: #fafcff;
	--third-color: #e6edfa;
	--fourth-color: #f0f5fb;
	--fifth-color: #27c770;
	--sixth-color: #f7f9fc;
	--main-color: #00B050;
	--main-color-white: #fff;
}

body, div, ul, li, a, img, p, dl, dt, dd, h1, h2, h3, h4, span, strong, input {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	border: 0;
	list-style: none;
}

body {
	font-size: 12px;
	color: #333;
	overflow-x: hidden;
}

a {
	color: #666;
}

	a:hover {
		color: var(--primary-color);
		text-decoration: none;
	}

p {
	line-height: 2em; /*padding: 5px 0; */
}

.clear {
	margin: 0;
	padding: 0;
	font-size: 0;
	clear: both;
}

.wapper1 {
	width: 79%;
	margin: 0 auto;
	min-width: 1000px;
}

input, textarea, select {
	outline: none;
}

img {
	object-fit: cover;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}

#lContent img, #lblContent img, .xiangxi_con img, .xiangqing img {
	width: auto !important;
	height: auto !important;
	max-width: 100%;
}

#lContent table, #lblContent table, .xiangxi_con table, .xiangqing table {
	border-collapse: collapse;
	margin: 0 auto;
}

@media(max-width:999px) {
	.wapper1 {
		width: 90%;
		min-width: 0;
	}
}
/*common end*/


.head {
	width: 100%;
	background: rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: fixed;
	z-index: 55;
	left: 0;
	top: 0;
	transition: all .3s ease;
}

.head2bg {
}

.head2 {
	height: 60px;
	transition: all .3s ease;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.head .logo {
	float: left;
	width: 18%;
	height: 102px;
	position: relative;
}

	.head .logo img {
		max-width: 100%;
		max-height: 90%;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto 0;
	}

	.head .logo .img1 {
		display: none;
	}

.head2 .rt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
/*menu*/
.head .menu {
	height: 60px;
	line-height: 60px;
}

	.head .menu > ul {
	}

		.head .menu > ul > li {
			float: left;
			padding: 0 .78vw;
		}

			.head .menu > ul > li.menu_down {
				position: relative;
			}

			.head .menu > ul > li > a {
				color: rgba(255,255,255,.9);
				display: block;
				font-size: 16px;
				font-weight: normal;
				position: relative;
			}

				.head .menu > ul > li > a:hover, .head .menu > ul > li:hover > a {
					color: #fff;
				}

				.head .menu > ul > li > a:before {
					content: "";
					width: 0;
					height: 2px;
					background: #fff;
					position: absolute;
					bottom: 0;
					left: 50%;
					transform: translateX(-50%);
					transition: all .3s ease;
				}

				.head .menu > ul > li > a:hover:before, .head .menu > ul > li:hover > a:before {
					width: 100%;
				}

			.head .menu > ul > li.menu_down > a:after {
				content: "\f0d7";
				font: normal normal normal 12px/1 FontAwesome;
				margin-left: 2px;
			}

			.head .menu > ul > li ul {
				width: fit-content;
				min-width: 100px;
				background: #fff;
				box-shadow: 0 0 10px rgba(0,0,0,.1);
				padding: 10px 0;
				position: absolute;
				top: 100%;
				left: 50%;
				transform: translateX(-50%);
				z-index: 5;
				display: none;
			}

				.head .menu > ul > li ul li {
					position: relative;
				}

					.head .menu > ul > li ul li a {
						color: #666;
						display: block;
						font-weight: normal;
						font-size: 14px;
						line-height: 24px;
						padding: 10px 5px;
						text-align: center;
						white-space: nowrap;
						position: relative;
					}

						.head .menu > ul > li ul li a:hover, .head .menu > ul > li > ul li:hover > a {
							color: var(--primary-color);
						}

					.head .menu > ul > li ul li ul {
						width: 100%;
						position: absolute;
						top: 0;
						left: 100%;
						transform: translateX(0);
						display: none;
					}

					.head .menu > ul > li ul li:hover > ul {
						display: block;
					}

.head.active1 {
	background: #fff;
	border-color: #ececec;
}

	.head.active1 .logo .img1 {
		display: block;
	}

	.head.active1 .logo .img2 {
		display: none;
	}

	.head.active1 .menu > ul > li > a {
		color: #999;
	}

		.head.active1 .menu > ul > li > a:hover, .head.active1 .menu > ul > li:hover > a {
			color: var(--primary-color);
		}

		.head.active1 .menu > ul > li > a:before {
			background: var(--primary-color);
		}

.head_height {
	height: 0;
}

@media(max-width:999px) {
	.head_height {
		height: 60px;
	}

	.head {
		background: #fff;
		border-color: #ececec;
	}

	.head2 {
		height: 60px !important;
	}

	.head .logo {
		float: left;
		width: 50%;
		height: 60px !important;
	}

		.head .logo .img1 {
			display: block;
		}

		.head .logo .img2 {
			display: none;
		}

	.head .menu {
		display: none;
	}
}
/**/
.head .nav_open {
	width: 24px;
	height: 20px;
	cursor: pointer;
	display: none;
	position: relative;
	margin-left: 15px;
}

	.head .nav_open i, .head .nav_open:before, .head .nav_open:after {
		width: 24px;
		height: 2px;
		background: #999;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all .3s ease;
	}

	.head .nav_open i {
		top: 50%;
		transform: translateX(-50%) translate(0, -50%);
	}

	.head .nav_open:before {
		content: "";
		top: 0px;
	}

	.head .nav_open:after {
		content: "";
		bottom: 0px;
	}

	.head .nav_open.active0 i {
		opacity: 0;
		visibility: hidden;
	}

	.head .nav_open.active0:before {
		transform: translateX(-50%) translateY(9px) rotate(45deg);
	}

	.head .nav_open.active0:after {
		transform: translateX(-50%) translateY(-9px) rotate(-45deg);
	}

.head .nav_box {
	width: 100%;
	height: calc(100% - 61px);
	border-top: 1px solid #ededed;
	position: fixed;
	left: 0;
	top: 60px;
	display: none;
}

.head .nav_close1 {
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 998;
}

.head .navbg {
	width: 100%;
	height: 100%;
	background: #fff;
	color: #333;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
}

.head .nav {
	position: relative;
}

.head .nav_close2 {
	display: none;
}

.head .nav_list {
	max-height: calc(100vh - 60px);
	overflow-y: auto;
}

	.head .nav_list ul {
	}

		.head .nav_list ul li {
			padding: 5px 5%;
		}

	.head .nav_list > ul > li {
		border-top: 1px solid rgba(255,255,255,0.05);
		border-bottom: 1px solid rgba(0,0,0,0.1);
		padding: 10px 5%;
	}

	.head .nav_list ul li span {
		display: block;
		position: relative;
	}

		.head .nav_list ul li span a {
			display: inline-block;
			font-size: 14px;
			line-height: 24px;
			position: relative;
			z-index: 2;
			color: #333;
		}

	.head .nav_list > ul > li > span a {
		font-size: 16px;
		line-height: 26px;
		font-weight: normal;
	}

	.head .nav_list ul li.nav_down > span:after {
		content: "\f107";
		font: normal normal normal 14px/1 FontAwesome;
		position: absolute;
		top: 6px;
		right: 0;
	}

	.head .nav_list ul li.nav_down.active1 > span:after {
		transform: rotate(180deg);
	}

	.head .nav_list ul li ul {
		padding: 5px 0 0 0;
		display: none;
	}

	.head .nav_list ul li.active1 > span > i {
		background-image: url(../images/ico_up1.png);
	}

@media(max-width:999px) {
	.head .nav_open {
		display: block;
	}
}

.banner_swiper {
	position: relative;
}

	.banner_swiper .swiper-container {
		width: 100%;
	}

		.banner_swiper .swiper-container .swiper-slide {
			position: relative;
		}

			.banner_swiper .swiper-container .swiper-slide img {
				display: block;
				width: 100%;
			}

			.banner_swiper .swiper-container .swiper-slide .banner_txt {
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				text-align: center;
				color: #fff;
			}

				.banner_swiper .swiper-container .swiper-slide .banner_txt .h2 {
					font-size: 4.16vw;
					line-height: 1.2em;
					font-weight: bold;
					text-shadow: 3px 3px 3px #000000;
				}

	.banner_swiper .swiper-pagination {
		bottom: 20px;
		height: 10px;
	}

		.banner_swiper .swiper-pagination .swiper-pagination-bullet {
			vertical-align: top;
			width: 10px;
			height: 10px;
			border-radius: 10px;
			background: #fff;
			opacity: .5;
			transition: all .3s ease;
		}

			.banner_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
				width: 30px;
				background: #fff;
				opacity: 1;
			}

	.banner_swiper .swiper-button-prev, .banner_swiper .swiper-button-next {
		text-align: center;
		width: 60px;
		height: 60px;
		line-height: 60px;
		margin-top: -30px;
		border-radius: 8px;
		background: rgba(0,0,0,.3);
		color: #fff;
		border-radius: 8px;
		font-size: 30px;
		opacity: 0;
		visibility: hidden;
		transition: all .3s ease;
	}

	.banner_swiper:hover .swiper-button-prev, .banner_swiper:hover .swiper-button-next {
		opacity: 1;
		visibility: visible;
	}

	.banner_swiper .swiper-button-prev:hover, .banner_swiper .swiper-button-next:hover {
		background: var(--primary-color);
	}

	.banner_swiper .swiper-button-prev {
		left: 5%;
	}

	.banner_swiper .swiper-button-next {
		right: 5%;
	}

@media(max-width:999px) {
	.banner_swiper .swiper-pagination {
		bottom: 10px;
		height: 6px;
	}

		.banner_swiper .swiper-pagination .swiper-pagination-bullet {
			width: 6px;
			height: 6px;
			border-radius: 6px;
		}

			.banner_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
				width: 20px;
			}

	.banner_swiper .swiper-button-prev, .banner_swiper .swiper-button-next {
		width: 40px;
		height: 40px;
		line-height: 40px;
		margin-top: -20px;
		font-size: 20px;
	}
}

.tit1 {
	text-align: center;
}

	.tit1 .h2 {
		font-size: 36px;
		line-height: 46px;
	}

	.tit1 .h3 {
		font-size: 14px;
		line-height: 24px;
		color: #999;
		margin-top: 45px;
	}

.con01bg {
	padding: 100px 0 50px 0;
	background: var(--secondary-color);
}

.con01 {
}

	.con01 .list {
		margin-top: 80px;
	}

		.con01 .list ul li {
			float: left;
			width: calc((100% - 60px)/3);
			margin: 0 0 30px 30px;
			transition: all .3s ease;
		}

			.con01 .list ul li:nth-child(3n-2) {
				margin-left: 0;
				clear: left;
			}

			.con01 .list ul li:hover {
				transform: translateY(-10px);
			}

			.con01 .list ul li .nr_box {
				border: 1px solid var(--third-color);
				background: #fff;
				box-shadow: 0px 8px 8px 0px rgba(230, 233, 240, 0.5);
				border-radius: 4px;
				padding: 30px 5%;
			}

			.con01 .list ul li .img {
				width: 50px;
				height: 50px;
				position: relative;
			}

				.con01 .list ul li .img img {
					max-width: 100%;
					max-height: 100%;
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					margin: auto auto;
				}

			.con01 .list ul li .txtbg {
				margin-top: 20px;
			}

			.con01 .list ul li .txt {
				color: #999;
			}

				.con01 .list ul li .txt .h2 {
					font-size: 20px;
					line-height: 30px;
					height: 30px;
					color: #333;
					margin-bottom: 15px;
					overflow: hidden;
					text-overflow: ellipsis;
					display: -webkit-box;
					-webkit-line-clamp: 1;
					-webkit-box-orient: vertical;
				}

			.con01 .list ul li:hover .txt .h2 {
				color: var(--primary-color);
			}

			.con01 .list ul li .txt .h3 {
				font-size: 14px;
				line-height: 24px;
				height: 144px;
				overflow: hidden;
				text-overflow: ellipsis;
				display: -webkit-box;
				-webkit-line-clamp: 6;
				-webkit-box-orient: vertical;
			}

@media(max-width:999px) {
	.tit1 .h2 {
		font-size: 24px;
		line-height: 34px;
	}

	.tit1 .h3 {
		font-size: 14px;
		line-height: 24px;
		margin-top: 5px;
	}

	.con01bg {
		padding: 60px 0 30px 0;
	}

	.con01 .list {
		margin-top: 40px;
	}

		.con01 .list ul li {
			width: 100%;
			margin: 0 0 20px 0;
		}

			.con01 .list ul li .nr_box {
				padding: 30px 5%;
			}

			.con01 .list ul li .img {
				width: 50px;
				height: 50px;
			}

			.con01 .list ul li .txtbg {
				margin-top: 20px;
			}

			.con01 .list ul li .txt .h2 {
				font-size: 18px;
				line-height: 28px;
				height: 28px;
				margin-bottom: 15px;
			}

			.con01 .list ul li .txt .h3 {
				font-size: 14px;
				line-height: 24px;
				height: 144px;
			}
}

.more1 {
}

	.more1 span {
		display: inline-block;
		text-align: center;
		font-size: 14px;
		line-height: 44px;
		width: 100px;
		border-radius: 4px;
		background: var(--primary-color);
		color: #fff;
		transition: all .3s ease;
	}

		.more1 span:hover {
			background: var(--fifth-color);
		}

.con02bg {
	padding: 50px 0 100px 0;
	background: var(--secondary-color);
}

.con02 {
}

	.con02 .list {
		margin-top: 80px;
	}

.slideTxtBox_01 {
}

	.slideTxtBox_01 .hd {
		margin-bottom: 80px;
	}

		.slideTxtBox_01 .hd ul li {
			float: left;
			width: calc(100%/6);
			text-align: center;
			position: relative;
		}

			.slideTxtBox_01 .hd ul li:before {
				content: "";
				height: 50%;
				border-left: 1px dashed var(--fourth-color);
				position: absolute;
				left: 0;
				top: 50%;
				transform: translateY(-50%);
			}

			.slideTxtBox_01 .hd ul li:nth-child(1):before {
				display: none;
			}

			.slideTxtBox_01 .hd ul li a {
				display: block;
				border-bottom: 4px solid var(--fourth-color);
				padding: 35px 0;
			}

			.slideTxtBox_01 .hd ul li .img {
				margin: 0 auto;
				width: 50px;
				height: 50px;
				position: relative;
			}

				.slideTxtBox_01 .hd ul li .img img {
					max-width: 100%;
					max-height: 100%;
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					margin: auto auto;
				}

			.slideTxtBox_01 .hd ul li .h2 {
				font-size: 20px;
				line-height: 30px;
				margin-top: 10px;
				color: #333;
			}

			.slideTxtBox_01 .hd ul li.on a {
				border-color: var(--primary-color);
			}

	.slideTxtBox_01 .bd {
	}

.con02_list {
	background: var(--fourth-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.con02_lt {
	width: 50%;
}

	.con02_lt .nr_box {
		padding: 0 5%;
	}

	.con02_lt .h2 {
		font-size: 30px;
		line-height: 40px;
		margin-bottom: 35px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
	}

	.con02_lt .h3 {
		font-size: 14px;
		line-height: 24px;
		color: #666;
		margin-bottom: 40px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

.con02_rt {
	width: 50%;
}

	.con02_rt .img {
	}

	.con02_rt img {
		display: block;
		width: 100%;
	}

@media(max-width:999px) {
	.more1 span {
		font-size: 12px;
		line-height: 32px;
		width: 100px;
	}

	.con02bg {
		padding: 30px 0 60px 0;
	}

	.con02 .list {
		margin-top: 40px;
	}

	.slideTxtBox_01 .hd {
		margin-bottom: 40px;
	}

		.slideTxtBox_01 .hd ul li {
			width: calc(100%/3);
		}

			.slideTxtBox_01 .hd ul li:nth-child(3n-2):before {
				display: none;
			}

			.slideTxtBox_01 .hd ul li a {
				border-bottom: 4px solid var(--fourth-color);
				padding: 15px 0;
			}

			.slideTxtBox_01 .hd ul li .img {
				margin: 0 auto;
				width: 50px;
				height: 50px;
				position: relative;
			}

				.slideTxtBox_01 .hd ul li .img img {
					max-width: 100%;
					max-height: 100%;
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					margin: auto auto;
				}

			.slideTxtBox_01 .hd ul li .h2 {
				font-size: 16px;
				line-height: 26px;
				margin-top: 5px;
			}

	.con02_list {
		display: block;
	}

	.con02_lt {
		width: 100%;
	}

		.con02_lt .nr_box {
			padding: 20px 5%;
		}

		.con02_lt .h2 {
			font-size: 20px;
			line-height: 30px;
			margin-bottom: 5px;
		}

		.con02_lt .h3 {
			font-size: 14px;
			line-height: 24px;
			margin-bottom: 10px;
		}

	.con02_rt {
		width: 100%;
	}
}

.more2 {
}

	.more2 span {
		display: inline-block;
		text-align: center;
		font-size: 16px;
		line-height: 26px;
	}

		.more2 span:hover {
			color: var(--primary-color);
		}

.con03bg {
}

.con03 {
}

	.con03 .list {
		margin-top: 80px;
	}

		.con03 .list ul li {
			margin-bottom: 100px;
		}

			.con03 .list ul li .nr_box {
				display: -webkit-box;
				display: -ms-flexbox;
				display: -webkit-flex;
				display: flex;
				-webkit-box-pack: center;
				-ms-flex-pack: center;
				-webkit-justify-content: space-between;
				justify-content: space-between;
				-webkit-box-align: center;
				-ms-flex-align: center;
				-webkit-align-items: center;
				align-items: center;
			}

			.con03 .list ul li:nth-child(2n) .nr_box {
				flex-direction: row-reverse;
			}

			.con03 .list ul li .imgbg {
				width: 58%;
			}

			.con03 .list ul li .img {
				padding-bottom: 56%;
				position: relative;
			}

				.con03 .list ul li .img img {
					width: 100%;
					height: 100%;
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					margin: auto auto;
				}

			.con03 .list ul li .txtbg {
				width: 42%;
				background: url(../images/bgright.png) center no-repeat;
				background-size: 100% 100%;
			}

			.con03 .list ul li:nth-child(2n) .txtbg {
				background-image: url(../images/bgleft.png);
			}

			.con03 .list ul li .txt {
				padding: 40px 10%;
				color: #666;
			}

				.con03 .list ul li .txt .h2 {
					font-size: 24px;
					line-height: 34px;
					color: #333;
				}

			.con03 .list ul li:hover .txt .h2 {
				color: var(--primary-color);
			}

			.con03 .list ul li .txt .h3 {
				font-size: 14px;
				line-height: 24px;
				margin-bottom: 45px;
			}

			.con03 .list ul li .txt .line1 {
				width: 30px;
				height: 2px;
				background: #b8becc;
				margin-top: 25px;
				margin-bottom: 30px;
			}

@media(max-width:999px) {
	.more2 span {
		font-size: 14px;
		line-height: 24px;
	}

	.con03bg {
		padding: 60px 0 20px 0;
	}

	.con03 .list {
		margin-top: 40px;
	}

		.con03 .list ul li {
			margin-bottom: 40px;
		}

			.con03 .list ul li .nr_box {
				display: block;
			}

			.con03 .list ul li .imgbg {
				width: 100%;
			}

			.con03 .list ul li .txtbg {
				width: 100%;
			}

			.con03 .list ul li .txt {
				padding: 20px 10%;
			}

				.con03 .list ul li .txt .h2 {
					font-size: 18px;
					line-height: 28px;
				}

				.con03 .list ul li .txt .h3 {
					font-size: 14px;
					line-height: 24px;
					margin-bottom: 10px;
				}

				.con03 .list ul li .txt .line1 {
					width: 30px;
					height: 2px;
					margin-top: 5px;
					margin-bottom: 10px;
				}
}

.con04bg {
	position: relative;
}

	.con04bg > img {
		display: block;
		width: 100%;
	}

	.con04bg .wapper1 {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

.con04 {
	color: #fff;
}

	.con04 .list {
	}

		.con04 .list .h2 {
			font-size: 36px;
			line-height: 46px;
			margin-bottom: 35px;
		}

		.con04 .list .h3 {
			font-size: 20px;
			line-height: 30px;
			margin-bottom: 25px;
		}

@media(max-width:999px) {
	.con04 .list .h2 {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 5px;
	}

	.con04 .list .h3 {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 10px;
		display: none;
	}
}

.con05bg {
	padding: 100px 0;
	background: var(--secondary-color);
}

.con05 {
}

	.con05 .list {
		margin-top: 60px;
		margin-bottom: 30px;
	}

		.con05 .list ul li {
			float: left;
			width: calc((100% - 60px)/3);
			margin: 0 0 30px 30px;
			transition: all .3s ease;
		}

			.con05 .list ul li:nth-child(3n-2) {
				margin-left: 0;
				clear: left;
			}

			.con05 .list ul li:hover {
				transform: translateY(-10px);
			}

			.con05 .list ul li .nr_box {
				padding: 40px 5%;
				border: 1px solid var(--third-color);
				border-top: 4px solid var(--secondary-color);
				background: var(--sixth-color);
				box-shadow: 0px 8px 8px 0px rgba(239, 242, 249, 0.5);
			}

			.con05 .list ul li:hover .nr_box {
				border-top-color: var(--primary-color);
				box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
			}

			.con05 .list ul li .txt {
				color: #666;
			}

				.con05 .list ul li .txt .date {
					font-size: 14px;
					line-height: 24px;
					color: #999;
					margin-bottom: 35px;
				}

				.con05 .list ul li .txt .h2 {
					font-size: 20px;
					line-height: 30px;
					height: 60px;
					color: #333;
					margin-bottom: 20px;
					overflow: hidden;
					text-overflow: ellipsis;
					display: -webkit-box;
					-webkit-line-clamp: 2;
					-webkit-box-orient: vertical;
				}

			.con05 .list ul li:hover .txt .h2 {
				color: var(--primary-color);
			}

			.con05 .list ul li .txt .h3 {
				font-size: 14px;
				line-height: 24px;
				height: 72px;
				margin-bottom: 25px;
				overflow: hidden;
				text-overflow: ellipsis;
				display: -webkit-box;
				-webkit-line-clamp: 3;
				-webkit-box-orient: vertical;
			}

			.con05 .list ul li .img {
				padding-bottom: 66%;
				position: relative;
				overflow: hidden;
			}

				.con05 .list ul li .img img {
					width: 100%;
					height: 100%;
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					margin: auto auto;
					transition: all .3s ease;
				}

			.con05 .list ul li:hover .img img {
				transform: scale(1.1);
			}

	.con05 .more1 {
		text-align: center;
	}

@media(max-width:999px) {
	.con05bg {
		padding: 60px 0;
	}

	.con05 .list {
		margin-top: 40px;
		margin-bottom: 20px;
	}

		.con05 .list ul li {
			width: 100%;
			margin: 0 0 20px 0;
		}

			.con05 .list ul li .nr_box {
				padding: 20px 5%;
			}

			.con05 .list ul li .txt .date {
				font-size: 14px;
				line-height: 24px;
				margin-bottom: 15px;
			}

			.con05 .list ul li .txt .h2 {
				font-size: 18px;
				line-height: 28px;
				height: auto;
				margin-bottom: 5px;
			}

			.con05 .list ul li .txt .h3 {
				font-size: 14px;
				line-height: 24px;
				height: auto;
				margin-bottom: 10px;
			}

			.con05 .list ul li:hover .img img {
				transform: scale(1.1);
			}
}

.con06bg {
	padding: 100px 0;
	background: url(../images/bg02.png) center no-repeat;
	background-size: cover;
}

.con06 {
}

	.con06 .list {
		margin-top: 60px;
		margin-bottom: 30px;
	}

		.con06 .list ul li {
			float: left;
			width: calc((100% - 90px)/4);
			margin: 0 0 30px 30px;
			transition: all .3s ease;
		}

			.con06 .list ul li:nth-child(4n-3) {
				margin-left: 0;
				clear: left;
			}

			.con06 .list ul li:hover {
				transform: translateY(-10px);
			}

			.con06 .list ul li .nr_box {
				border: 1px solid var(--third-color);
				background: var(--sixth-color);
				box-shadow: 0px 8px 8px 0px rgba(239, 242, 249, 0.5);
			}

			.con06 .list ul li:hover .nr_box {
				box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
			}

			.con06 .list ul li .txtbg {
				padding: 15px 5% 15px 20px;
			}

			.con06 .list ul li .txt {
				color: #666;
				position: relative;
			}

				.con06 .list ul li .txt:before {
					content: "";
					width: 7px;
					height: 7px;
					background: url(../images/round-2.png) center no-repeat;
					background-size: contain;
					position: absolute;
					left: -10px;
					top: 10px;
				}

				.con06 .list ul li .txt .h2 {
					font-size: 20px;
					line-height: 30px;
					height: 30px;
					color: #333;
					font-weight: bold;
					margin-bottom: 5px;
					overflow: hidden;
					text-overflow: ellipsis;
					display: -webkit-box;
					-webkit-line-clamp: 1;
					-webkit-box-orient: vertical;
				}

			.con06 .list ul li:hover .txt .h2 {
				color: var(--primary-color);
			}

			.con06 .list ul li .txt .h3 {
				font-size: 14px;
				line-height: 24px;
				height: 48px;
				overflow: hidden;
				text-overflow: ellipsis;
				display: -webkit-box;
				-webkit-line-clamp: 2;
				-webkit-box-orient: vertical;
			}

			.con06 .list ul li .img {
				padding-bottom: 72%;
				position: relative;
				overflow: hidden;
			}

				.con06 .list ul li .img img {
					width: 100%;
					height: 100%;
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					margin: auto auto;
					transition: all .3s ease;
				}

			.con06 .list ul li:hover .img img {
				transform: scale(1.1);
			}

	.con06 .more1 {
		text-align: center;
	}

@media(max-width:999px) {
	.con06bg {
		padding: 60px 0;
	}

	.con06 .list {
		margin-top: 40px;
		margin-bottom: 20px;
	}

		.con06 .list ul li {
			width: 100%;
			margin: 0 0 20px 0;
		}

			.con06 .list ul li .txtbg {
				padding: 15px 5% 15px 20px;
			}

			.con06 .list ul li .txt .h2 {
				font-size: 18px;
				line-height: 28px;
				height: auto;
				margin-bottom: 5px;
			}

			.con06 .list ul li .txt .h3 {
				font-size: 14px;
				line-height: 24px;
				height: auto;
			}
}

.foot {
	background: #222226;
	color: #999;
}

	.foot a {
		color: #999;
	}

		.foot a:hover {
			color: #fff;
		}

.foot1bg {
	padding: 60px 0;
}

.foot1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.foot .lt {
	width: 76%;
}

.foot .f_nav {
	font-size: 14px;
	line-height: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}

	.foot .f_nav dl {
	}

		.foot .f_nav dl dt {
			font-size: 16px;
			line-height: 26px;
			color: #fff;
			margin-bottom: 30px;
		}

		.foot .f_nav dl dd {
			margin-top: 5px;
		}

.foot .rt {
	width: 12%;
}

.foot .f_logo {
	text-align: center;
	margin-bottom: 30px;
}

	.foot .f_logo img {
		max-width: 100%;
	}

.foot .f_ewm {
	text-align: center;
}

	.foot .f_ewm img {
		display: block;
		margin: 0 auto;
		width: 60%;
	}

	.foot .f_ewm span {
		display: block;
		font-size: 14px;
		line-height: 24px;
		margin-top: 5px;
	}

.foot2bg {
}

.foot2 {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 20px 0;
}

.foot .f_info {
	font-size: 14px;
	line-height: 24px;
	text-align: center;
}

	.foot .f_info ul li {
	}

	.foot .f_info a {
		display: inline-block;
	}

@media(max-width:999px) {
	.foot1bg {
		padding: 30px 0;
	}

	.foot1 {
		display: block;
	}

	.foot .lt {
		width: 100%;
	}

	.foot .f_nav {
		font-size: 14px;
		line-height: 24px;
		display: block;
	}

		.foot .f_nav dl {
			display: none;
			margin-bottom: 20px;
		}

			.foot .f_nav dl.f_contact {
				display: block;
			}

			.foot .f_nav dl dt {
				font-size: 16px;
				line-height: 26px;
				margin-bottom: 10px;
			}

			.foot .f_nav dl dd {
				margin-top: 5px;
			}

	.foot .rt {
		width: 100%;
	}

	.foot .f_logo {
		margin-bottom: 30px;
		display: none;
	}

		.foot .f_logo img {
			max-width: 80%;
		}

	.foot .f_ewm img {
		width: 40%;
	}

	.foot .f_ewm span {
		font-size: 14px;
		line-height: 24px;
		margin-top: 5px;
	}

	.foot2 {
		padding: 15px 0;
	}

	.foot .f_info {
		font-size: 14px;
		line-height: 24px;
	}
}
/*Add------------------------------------------------------------------------------*/

.inbanner {
	position: relative;
}

	.inbanner img {
		display: block;
		width: 100%;
	}

.inbarbg {
	margin-top: 60px;
}

.inbar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.innav {
	font-size: 16px;
	line-height: 26px;
	border: 1px solid #ebebf0;
	background: #f2f2ff;
	border-radius: 50px;
}

	.innav ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}

		.innav ul li {
			width: 296px;
			height: 60px;
			display: flex;
			justify-content: center;
			align-items: center;
			position: relative;
			border-radius: 50px;
		}

			.innav ul li a {
				display: block;
			}

				.innav ul li a:hover {
					color: var(--primary-color);
				}

			.innav ul li.hover {
				background: var(--primary-color);
				color: #fff;
			}

				.innav ul li.hover > a {
					color: #fff;
				}

.weizhi {
	font-size: 14px;
	line-height: 44px;
	text-align: right;
}

	.weizhi i {
		margin-right: 5px;
	}

@media(max-width:999px) {
	.inbarbg {
		margin-top: 40px;
	}

	.inbar {
		display: block;
	}

	.innav {
		font-size: 14px;
		line-height: 18px;
		border-radius: 20px;
	}

		.innav ul {
			-webkit-justify-content: flex-start;
			justify-content: flex-start;
			flex-wrap: wrap;
		}

			.innav ul li {
				width: calc(100%/3);
				height: 40px;
			}

				.innav ul li:nth-child(3n-2) {
					margin-left: 0;
				}

	.weizhi {
		font-size: 14px;
		line-height: 24px;
		display: none;
	}
}

.insidebg {
	padding: 60px 0 80px 0;
}

.inside {
}

.inside_lt {
	float: left;
	width: 20%;
	position: sticky;
	top: 100px;
}

.side_a {
	background: #f5f5f5;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
	margin-bottom: 30px;
}

	.side_a .h1 {
		font-size: 20px;
		line-height: 30px;
		font-weight: bold;
		background: var(--primary-color);
		color: #fff;
		padding: 15px 10px;
		text-align: center;
	}

	.side_a > ul {
		padding: 0 15px;
	}

	.side_a ul li {
	}

	.side_a > ul > li {
		border-bottom: 1px solid #ebebeb;
	}

		.side_a > ul > li:last-child {
			border-bottom: none;
		}

	.side_a ul li span {
		display: block;
		padding: 15px 20px 15px 0;
		position: relative;
		cursor: pointer;
	}

		.side_a ul li span:hover, .side_a ul li.hover > span {
			color: var(--primary-color);
		}

	.side_a ul li.active1 > span {
	}

		.side_a ul li.active1 > span:hover {
		}

	.side_a ul li.has_sub > span:after {
		content: "\f105";
		font: normal normal normal 16px/1 FontAwesome;
		position: absolute;
		right: 0px;
		top: 50%;
		transform: translateY(-50%);
		transform-origin: center;
	}

	.side_a ul li.has_sub.active1 > span:after {
		content: "\f107";
	}

	.side_a ul li a {
		display: inline-block;
		color: #333;
		font-size: 14px;
	}

	.side_a > ul > li > span a {
		font-size: 16px;
	}

	.side_a ul li span:hover a, .side_a ul li.hover > span a {
		color: var(--primary-color);
	}

	.side_a ul li ul {
		padding: 0 0 10px 20px;
		display: none;
	}

		.side_a ul li ul li {
		}

			.side_a ul li ul li span {
				padding: 10px 20px 10px 0;
			}

			.side_a ul li ul li a {
			}

.inside_rt {
	float: right;
	width: 76%;
}

.inside_con {
}

@media(max-width:999px) {
	.insidebg {
		padding: 30px 0 60px 0
	}

	.inside_lt {
		width: 100%;
		position: static;
	}

	.inside_rt {
		float: right;
		width: 100%;
	}

	.inside_con {
	}
}

.aboutus1bg {
	padding: 100px 0;
	background: var(--secondary-color);
}

.aboutus1 {
}

	.aboutus1 .list {
		margin-top: 80px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
	}

.aboutus1_lt {
	width: 62%;
}

	.aboutus1_lt .txt {
		font-size: 14px;
		line-height: 2em;
	}

.aboutus1_rt {
	width: 34%;
	background: url(../images/about_zm.jpg) center no-repeat;
	background-size: cover;
}

	.aboutus1_rt .img {
	}

		.aboutus1_rt .img img {
			display: block;
			width: 100%;
		}

@media(max-width:999px) {
	.aboutus1bg {
		padding: 60px 0;
	}

	.aboutus1 .list {
		margin-top: 40px;
		display: block;
	}

	.aboutus1_lt {
		width: 100%;
		margin-bottom: 20px;
	}

		.aboutus1_lt .txt {
			font-size: 14px;
			line-height: 2em;
		}

	.aboutus1_rt {
		width: 100%;
	}
}

.aboutus2bg {
	padding: 100px 0;
	background: url(../images/about_bg01.png) center no-repeat;
	background-size: cover;
}

.aboutus2 {
}

	.aboutus2 .list {
		margin-top: 80px;
	}

		.aboutus2 .list ul {
			display: -webkit-box;
			display: -ms-flexbox;
			display: -webkit-flex;
			display: flex;
			-webkit-box-pack: center;
			-ms-flex-pack: center;
			-webkit-justify-content: space-between;
			justify-content: space-between;
			-webkit-box-align: center;
			-ms-flex-align: center;
			-webkit-align-items: center;
			align-items: center;
		}

			.aboutus2 .list ul li {
			}

				.aboutus2 .list ul li:nth-child(3n-2) {
					margin-left: 0;
					clear: left;
				}

				.aboutus2 .list ul li .nr_box {
					width: 20.84vw;
					height: 20.84vw;
					border-radius: 100%;
					background: rgba(242, 245, 250, 0.2);
					box-shadow: 0px 8px 8px 0px rgba(230, 233, 240, 0.5);
					display: flex;
					justify-content: center;
					align-items: center;
				}

				.aboutus2 .list ul li .txtbg {
					width: 18.75vw;
					height: 18.75vw;
					border-radius: 100%;
					background: rgba(242, 245, 250, 0.2);
					box-shadow: 0px 8px 8px 0px rgba(230, 233, 240, 0.5);
					border: 2px solid #ffffff;
					display: flex;
					justify-content: center;
					align-items: center;
				}

				.aboutus2 .list ul li .txt {
					text-align: center;
					width: 90%;
				}

					.aboutus2 .list ul li .txt .h2 {
						font-size: 14px;
						line-height: 24px;
					}

					.aboutus2 .list ul li .txt .h3 {
						font-size: 50px;
						line-height: 80px;
					}

						.aboutus2 .list ul li .txt .h3 strong {
							font-size: 80px;
							font-weight: normal;
						}

@media(max-width:999px) {
	.aboutus2bg {
		padding: 60px 0;
	}

	.aboutus2 .list {
		margin-top: 40px;
	}

		.aboutus2 .list ul {
			display: block;
		}

			.aboutus2 .list ul li {
				margin: 20px 0;
			}

				.aboutus2 .list ul li .nr_box {
					width: 80vw;
					height: 80vw;
					margin: 0 auto;
				}

				.aboutus2 .list ul li .txtbg {
					width: 64vw;
					height: 64vw;
				}

				.aboutus2 .list ul li .txt .h2 {
					font-size: 14px;
					line-height: 24px;
				}

				.aboutus2 .list ul li .txt .h3 {
					font-size: 50px;
					line-height: 80px;
				}

					.aboutus2 .list ul li .txt .h3 strong {
						font-size: 80px;
					}
}

.aboutus3bg {
	padding: 100px 0;
	background: var(--secondary-color);
}

.aboutus3 {
}

	.aboutus3 .list {
		margin-top: 80px;
	}

		.aboutus3 .list dl dd {
			float: left;
			width: calc((100% - 30px)/2);
			margin: 0 0 30px 30px;
		}

			.aboutus3 .list dl dd:nth-child(2n-1) {
				margin-left: 0;
				clear: left;
			}

			.aboutus3 .list dl dd .nr_box {
				border: 1px solid var(--third-color);
				background: #fff;
				box-shadow: 0px 8px 8px 0px rgba(239, 242, 249, 0.5);
			}

			.aboutus3 .list dl dd .img {
				padding-bottom: 56%;
				position: relative;
				overflow: hidden;
			}

				.aboutus3 .list dl dd .img img {
					width: 100%;
					height: 100%;
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					margin: auto auto;
				}

			.aboutus3 .list dl dd .txtbg {
				padding: 40px 5%;
			}

			.aboutus3 .list dl dd .txt {
			}

				.aboutus3 .list dl dd .txt .h2 {
					font-size: 36px;
					line-height: 46px;
					border-bottom: 1px dashed var(--third-color);
					padding-bottom: 30px;
					margin-bottom: 30px;
				}

				.aboutus3 .list dl dd .txt .h3 {
					font-size: 14px;
					line-height: 2em;
				}

					.aboutus3 .list dl dd .txt .h3 li {
						padding-left: 10px;
						background: url(../images/round.png) left top 10px no-repeat;
						background-size: 6px;
					}

@media(max-width:999px) {
	.aboutus3bg {
		padding: 60px 0;
	}

	.aboutus3 .list {
		margin-top: 40px;
	}

		.aboutus3 .list dl dd {
			width: 100%;
			margin: 0 0 20px 0;
		}

			.aboutus3 .list dl dd .txtbg {
				padding: 20px 5%;
			}

			.aboutus3 .list dl dd .txt .h2 {
				font-size: 18px;
				line-height: 28px;
				padding-bottom: 10px;
				margin-bottom: 10px;
			}

			.aboutus3 .list dl dd .txt .h3 {
				font-size: 14px;
				line-height: 2em;
			}
}

.aboutus4bg {
	padding: 120px 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.aboutus4 {
	color: #fff;
	text-align: center;
}

	.aboutus4 .list {
	}

		.aboutus4 .list .h2 {
			font-size: 36px;
			line-height: 46px;
			margin-bottom: 40px;
		}

		.aboutus4 .list .h3 {
			font-size: 14px;
			line-height: 24px;
		}

@media(max-width:999px) {
	.aboutus4bg {
		padding: 60px 0;
	}

	.aboutus4 .list .h2 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 10px;
	}

	.aboutus4 .list .h3 {
		font-size: 14px;
		line-height: 24px;
	}
}

.aboutus5bg {
	padding: 100px 0;
	background: #f2f5fa;
}

.aboutus5 {
}

	.aboutus5 .list {
		margin-top: 80px;
	}

.history_swiper {
	position: relative;
}

	.history_swiper:before {
		content: "";
		width: 100%;
		height: 1px;
		background: #c0c0cc;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.history_swiper .swiper-container {
		width: 100%;
	}

		.history_swiper .swiper-container .swiper-slide {
			position: relative;
			height: 400px;
			display: flex;
			justify-content: flex-start;
			align-items: center;
			flex-direction: column;
		}

			.history_swiper .swiper-container .swiper-slide:nth-child(2n) {
				justify-content: flex-end;
			}

			.history_swiper .swiper-container .swiper-slide:before {
				content: "";
				width: 22px;
				height: 23px;
				background: url(../images/his_dot1.png) center no-repeat;
				background-size: contain;
				position: absolute;
				left: -2px;
				top: 50%;
				transform: translateY(-50%);
				z-index: 2;
			}

			.history_swiper .swiper-container .swiper-slide .nr_box {
				background: url(../images/bg3.png) center no-repeat;
				background-size: 100% 100%;
				box-shadow: 0px 8px 8px 0px rgba(239, 242, 249, 0.5);
				width: 100%;
			}

				.history_swiper .swiper-container .swiper-slide .nr_box:before {
					content: "";
					width: 2px;
					height: 65px;
					background: #fff;
					position: absolute;
					left: 6px;
					top: 135px;
				}

			.history_swiper .swiper-container .swiper-slide:nth-child(2n) .nr_box:before {
				top: auto;
				bottom: 135px;
			}

			.history_swiper .swiper-container .swiper-slide .txtbg {
				height: 150px;
				display: flex;
				justify-content: center;
				align-items: center;
			}

			.history_swiper .swiper-container .swiper-slide .txt {
				font-size: 14px;
				line-height: 24px;
				width: 90%;
			}

				.history_swiper .swiper-container .swiper-slide .txt .h2 {
					font-size: 20px;
					line-height: 30px;
					border-bottom: 1px dashed #d0ddf5;
					padding-bottom: 5px;
					margin-bottom: 10px;
				}

				.history_swiper .swiper-container .swiper-slide .txt .h3 {
					font-size: 14px;
					line-height: 24px;
				}

					.history_swiper .swiper-container .swiper-slide .txt .h3 li {
						padding-left: 10px;
						background: url(../images/round.png) left top 10px no-repeat;
						background-size: 6px;
					}

	.history_swiper .swiper-pagination {
		bottom: 20px;
		height: 10px;
		display: none;
	}

		.history_swiper .swiper-pagination .swiper-pagination-bullet {
			vertical-align: top;
			width: 10px;
			height: 10px;
			border-radius: 10px;
			background: #fff;
			opacity: .5;
			transition: all .3s ease;
		}

			.history_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
				width: 30px;
				background: #fff;
				opacity: 1;
			}

	.history_swiper .swiper-button-prev, .history_swiper .swiper-button-next {
		text-align: center;
		width: 60px;
		height: 60px;
		line-height: 60px;
		margin-top: -30px;
		border-radius: 8px;
		background: rgba(0,0,0,.3);
		color: #fff;
		border-radius: 8px;
		font-size: 30px;
		opacity: 0;
		visibility: hidden;
		transition: all .3s ease;
		background-image: none !important;
	}

	.history_swiper:hover .swiper-button-prev, .history_swiper:hover .swiper-button-next {
		opacity: 1;
		visibility: visible;
	}

	.history_swiper .swiper-button-prev:hover, .history_swiper .swiper-button-next:hover {
		background: var(--primary-color);
	}

	.history_swiper .swiper-button-prev {
		left: 0%;
	}

	.history_swiper .swiper-button-next {
		right: 0%;
	}

@media(max-width:999px) {
	.aboutus5bg {
		padding: 60px 0;
	}

	.aboutus5 .list {
		margin-top: 40px;
	}

	.history_swiper .swiper-pagination {
		bottom: 10px;
		height: 6px;
	}

		.history_swiper .swiper-pagination .swiper-pagination-bullet {
			width: 6px;
			height: 6px;
			border-radius: 6px;
		}

			.history_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
				width: 20px;
			}

	.history_swiper .swiper-button-prev, .history_swiper .swiper-button-next {
		width: 40px;
		height: 40px;
		line-height: 40px;
		margin-top: -20px;
		font-size: 20px;
	}
}

.aboutus6bg {
	padding: 100px 0;
	background: #fbfcff;
}

.aboutus6 {
}

	.aboutus6 .list {
		margin-top: 80px;
	}

.honor_swiper {
	position: relative;
}

	.honor_swiper .swiper-container {
		width: 100%;
	}

		.honor_swiper .swiper-container .swiper-slide {
			position: relative;
		}

			.honor_swiper .swiper-container .swiper-slide .nr_box {
				border: 1px solid var(--third-color);
				background: #fff;
				box-shadow: 0px 8px 8px 0px rgba(239, 242, 249, 0.5);
			}

			.honor_swiper .swiper-container .swiper-slide .img {
				background: #1d1836;
				padding-bottom: 120%;
				position: relative;
			}

				.honor_swiper .swiper-container .swiper-slide .img img {
					max-width: 100%;
					max-height: 100%;
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					margin: auto auto;
				}

			.honor_swiper .swiper-container .swiper-slide .txtbg {
				height: 80px;
				display: flex;
				justify-content: center;
				align-items: center;
			}

			.honor_swiper .swiper-container .swiper-slide .txt {
				font-size: 14px;
				line-height: 24px;
			}

	.honor_swiper .swiper-pagination {
		bottom: 20px;
		height: 10px;
		display: none;
	}

		.honor_swiper .swiper-pagination .swiper-pagination-bullet {
			vertical-align: top;
			width: 10px;
			height: 10px;
			border-radius: 10px;
			background: #fff;
			opacity: .5;
			transition: all .3s ease;
		}

			.honor_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
				width: 30px;
				background: #fff;
				opacity: 1;
			}

	.honor_swiper .swiper-button-prev, .honor_swiper .swiper-button-next {
		text-align: center;
		width: 60px;
		height: 60px;
		line-height: 60px;
		margin-top: -30px;
		border-radius: 8px;
		background: rgba(0,0,0,.3);
		color: #fff;
		border-radius: 8px;
		font-size: 30px;
		opacity: 0;
		visibility: hidden;
		transition: all .3s ease;
		background-image: none !important;
	}

	.honor_swiper:hover .swiper-button-prev, .honor_swiper:hover .swiper-button-next {
		opacity: 1;
		visibility: visible;
	}

	.honor_swiper .swiper-button-prev:hover, .honor_swiper .swiper-button-next:hover {
		background: var(--primary-color);
	}

	.honor_swiper .swiper-button-prev {
		left: 0%;
	}

	.honor_swiper .swiper-button-next {
		right: 0%;
	}

@media(max-width:999px) {
	.aboutus6bg {
		padding: 60px 0;
	}

	.aboutus6 .list {
		margin-top: 40px;
	}

	.honor_swiper .swiper-pagination {
		bottom: 10px;
		height: 6px;
	}

		.honor_swiper .swiper-pagination .swiper-pagination-bullet {
			width: 6px;
			height: 6px;
			border-radius: 6px;
		}

			.honor_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
				width: 20px;
			}

	.honor_swiper .swiper-button-prev, .honor_swiper .swiper-button-next {
		width: 40px;
		height: 40px;
		line-height: 40px;
		margin-top: -20px;
		font-size: 20px;
	}
}

.join1 {
}

	.join1 ul li {
		margin-bottom: 20px;
	}

		.join1 ul li .txt1 {
			border: 2px solid #ffffff;
			background: var(--secondary-color);
			box-shadow: 0px 8px 8px 0px rgba(230, 233, 240, 0.5);
			padding: 30px 5% 30px 3%;
			cursor: pointer;
			position: relative;
		}

			.join1 ul li .txt1 .h2 {
				font-size: 20px;
				line-height: 30px;
				margin-bottom: 5px;
			}

			.join1 ul li .txt1 .h3 {
				font-size: 14px;
				line-height: 24px;
				word-break: break-word;
			}

			.join1 ul li .txt1 .btn {
				position: absolute;
				right: 3%;
				top: 50%;
				transform: translateY(-50%);
				color: var(--primary-color);
				font-size: 15px;
				line-height: 22px;
			}

				.join1 ul li .txt1 .btn .s2 {
					display: none;
				}

		.join1 ul li.active1 .txt1 .btn .s1 {
			display: none;
		}

		.join1 ul li.active1 .txt1 .btn .s2 {
			display: block;
		}

		.join1 ul li .txt2 {
			background: #f5f7fa;
			padding: 20px 3%;
			font-size: 16px;
			line-height: 24px;
			display: none;
		}

@media(max-width:999px) {
	.join1 ul li .txt1 {
		padding: 30px 18% 30px 3%;
	}

		.join1 ul li .txt1 .h2 {
			font-size: 18px;
			line-height: 28px;
			margin-bottom: 5px;
		}

		.join1 ul li .txt1 .h3 {
			font-size: 14px;
			line-height: 24px;
		}

	.join1 ul li .txt2 {
		padding: 20px 3%;
		font-size: 14px;
		line-height: 24px;
	}
}
