﻿/*通用类*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


body {
	margin: 0 auto;
	font-size: 14px;
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	background: #fff;
	text-align: justify;
	color: #010000;
	position: relative;
	line-height: 1.5;
}

h1,
h2,
h3 {
	font-weight: 500;
}

img {
	border: none;
}

a {
	cursor: pointer;
	color: #333;
	text-decoration: none !important;
	outline: none;
}

a:hover {
	color: #006bb7;
}

ul {
	list-style-type: none;
}

em {
	font-style: normal;
}

.lt {
	float: left;
}

.rt {
	float: right;
}

input.sub,
label {
	border: none;
	cursor: pointer;
}

input,
textarea {
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	outline: none;
}

table {
	border-collapse: collapse;
}

table td,
table th {
	padding: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #ccc;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #ccc;
}

div.clear {
	font: 0px Arial;
	line-height: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* 主代码开始开始*/

/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
	line-height: 1.5;
}

/* 头部样式 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: #fff;
	transition: all 0.3s ease;
	height: 80px;
	border-bottom: 1px solid #ddd;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 40px;
}

/* PC端导航样式 */
.daohang {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	z-index: 999;
	background: #fff;
}

.nav-pc {
	display: flex;
	margin-top: 80px;
	height: 70px;
	float: left;
}

.nav-item {
	position: relative;
	margin-right: 30px;
	height: 70px;
	padding-right: 20px;
	position: relative;
}

.nav-item.erji::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #333;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
}

.nav-item:hover::after {
	transform: translateY(-50%) rotate(180deg);
	border-top: 6px solid #23ae3e;
}

.nav-item>a {
	line-height: 70px;
}

.nav-item.hover>a {
	color: #23ae3e;

}

.nav-link {
	color: #333;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 0;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #23ae3e;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #23ae3e;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.ri_box {
	float: right;
	margin-top: 80px;
}

.ri_box a {
	height: 50px;
	margin-top: 10px;
	padding: 0 30px;
	padding-right: 60px;
	line-height: 50px;
	background-color: #23ae3e;
	border-radius: 25px;
	color: #fff;
	display: block;
	transition: all 0.3s ease;
	background-image: url(../images/jiantou.png);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: 90% center;
}

.ri_box a:hover {
	background-color: #444;
	color: #fff;
}

/* 子菜单样式 */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu-item {
	list-style: none;
}

.sub-menu-link {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 8px 20px;
	transition: all 0.3s ease;
}

.sub-menu-link:hover {
	background-color: #f5f5f5;
	color: #23ae3e;
}

/* 移动端菜单按钮 */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #333;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
	top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
	top: 10px;
}

.menu-toggle span:nth-child(4) {
	top: 20px;
}

/* 移动端导航样式 */
.nav-mobile {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 400px;
	height: 100vh;
	background-color: #fff;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	padding: 70px 0 30px;
}

.nav-mobile.active {
	right: 0;
}

.nav-mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

.nav-mobile-list {
	list-style: none;
}

.nav-mobile-item {
	border-bottom: 1px solid #eee;
}

.nav-mobile-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	padding-right: 50px;
	position: relative;
}

.nav-mobile-link.has-children::after {
	content: "";
}

.nav-mobile-link.active.has-children::after {
	content: "";
}

.nav-mobile-sublist {
	display: none;
	list-style: none;
	background-color: #f9f9f9;
}

.nav-mobile-sublist.active {
	display: block;
}

.nav-mobile-subitem {
	border-top: 1px solid #eee;
}

.nav-mobile-sublink {
	display: block;
	padding: 12px 20px 12px 40px;
	color: #666;
	text-decoration: none;
}

/* 遮罩层 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

.submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 20px;
	color: #999;
	cursor: pointer;
	margin-left: auto;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.phone {
	padding-left: 50px;
	position: relative;
}

.phone::before {
	content: "";
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50px;
	width: 50px;
	height: 50px;
	background-image: url(../images/dianhua.png);
	background-repeat: no-repeat;
	background-size: 30px 30px;
	background-position-x: 10px;
	background-position-y: 8px;
	border: 1px solid #ddd;
}

.phone h3 {
	font-size: 14px;
	color: var(--theme-text-color);
	font-weight: normal;
	margin-bottom: 0;
}

.phone p {
	font-size: 24px;
	color: #23ae3e;
	font-weight: bold;
}

.banner {
	margin-top: 150px;
}

.banner .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
}

.banner img {
	display: block;
}

.fp_box_1 {
	padding: 100px 0;
}

.fp_box_1 .left {
	width: 44%;
	float: left;

}

.fp_box_1 .left h2 {
	font-size: 36px;
	color: var(--theme-text-color);
	font-weight: bold;
	margin-bottom: 20px;
	position: relative;
	padding-left: 100px;
}

.fp_box_1 .left h2::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50px;
	width: 80px;
	height: 1px;
	background-color: #444;
}

.fp_box_1 .left h2 span {
	color: #23ae3e;
}

.fp_box_1 .left p {
	font-size: 18px;
	color: var(--theme-text-color);
	line-height: 30px;
	margin-bottom: 20px;
	color: #999999;
}

.fp_box_1 .left .pic_text {
	margin-top: 50px;
	padding: 35px;
	background: url(../images/bg1.png) no-repeat;
	background-size: 100% 100%;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.fp_box_1 .left .pic_text:hover {
	margin-top: 40px;
}

.fp_box_1 .left .pic_text img {
	width: 100%;
}

.fp_box_1 .left .pic_text .text {
	padding: 20px;
}

.fp_box_1 .left .pic_text .text h3 {
	font-size: 24px;
	color: var(--theme-text-color);
	font-weight: bold;
	margin-bottom: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.fp_box_1 .left .pic_text .text h3:hover a {
	color: #23ae3e;
	text-decoration: none;
}

.fp_box_1 .left .pic_text .text p {
	font-size: 18px;
	color: var(--theme-text-color);
	line-height: 30px;
	margin-bottom: 20px;
	color: #999999;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 0;
}

.fp_box_1 .rii {
	float: right;
	width: 54%;
}

.fp_box_1 .rii .top .tu_text {
	float: left;
	width: 48%;
	margin-right: 2%;
	background: url(../images/bg1.png) no-repeat;
	background-size: 100% 100%;
	border-radius: 10px;
	padding: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.fp_box_1 .rii .top .tu_text:nth-child(2) {
	margin-right: 0;
	float: right;
	margin-top: 30px;
}

.fp_box_1 .rii .top .tu_text:hover {
	margin-top: -10px;
}

.fp_box_1 .rii .top .tu_text:nth-child(2):hover {
	margin-top: 10px;
}

.fp_box_1 .rii .top .tu_text img {
	width: 100%;
}

.fp_box_1 .rii .top .tu_text h3 {
	font-size: 24px;
	color: var(--theme-text-color);
	font-weight: bold;
	margin-bottom: 20px;

}

.fp_box_1 .rii .top .tu_text h3:hover a {
	color: #23ae3e;
}

.fp_box_1 .rii .xia_pic {
	margin-top: 30px;
	background: url(../images/bg1.png) no-repeat;
	background-size: 100% 100%;
	border-radius: 10px;
	padding: 20px;
	overflow: hidden;
	width: 90%;
	transition: all 0.3s ease;
	position: relative;
}

.fp_box_1 .rii .xia_pic img {
	float: right;
	width: 60%;
}

.fp_box_1 .rii .xia_pic h3 {
	width: 40%;
	float: left;
	margin-top: 120px;
}

.fp_box_1 .rii .xia_pic:hover {
	margin-top: 20px;
}

.fp_box_1 .rii .xia_pic h3:hover a {
	color: #23ae3e;
}

.fp_box_2 img {
	width: 100%;
	height: 700px;
	object-fit: cover;
}

.fp_box_2 .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
}

.fp_box_2 .swiper-slide {
	position: relative;
}

.fp_box_2 .swiper-slide .text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.fp_box_2 .swiper-slide .text .box_text {
	height: calc(90vh * 0.8);
	width: 55%;
	margin-top: 5%;

}

.fp_box_2 .swiper-slide .text .box_text .top {
	height: 60%;
	background: rgba(0, 0, 0, 0.5);
	padding: 50px;

}

.fp_box_2 .swiper-slide .text .box_text .top h3 {
	color: #fff;
	margin: 0;
	font-size: 50px;
}

.fp_box_2 .swiper-slide .text .box_text .top p {
	color: #fff;
	margin-top: 10px;
	font-size: 16px;
	color: #f5f5f5;
}

.fp_box_2 .swiper-slide .text .box_text .top ul li {
	margin-top: 30px;
}

.fp_box_2 .swiper-slide .text .box_text .top ul li h4 {
	color: #23ae3e;
	font-size: 18px;
}

.fp_box_2 .swiper-slide .text .box_text .top ul li p {
	padding-left: 40px;
	color: #f5f5f5;
	position: relative;
}

.fp_box_2 .swiper-slide .text .box_text .top ul li p::after {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 15px;
	background: #f5f5f5;
	font-size: 16px;
}

.fp_box_2 .swiper-slide .text .box_text .top ul li span {
	color: #f5f5f5;
	font-size: 16px;
	margin-top: 10px;
	display: block;
}

.link a {
	display: block;
}

.link a:nth-child(1) {
	width: 30%;
	float: left;
	height: 60px;
	background: #23ae3e;
	color: #fff;
	text-align: center;
	line-height: 60px;
}

.link a:nth-child(2) {
	width: 70%;
	float: left;
	height: 60px;
	background: #fff;
	color: #000;
	text-align: center;
	line-height: 60px;
}

.fp_box_3 {
	padding: 100px 0;
}

.title h3 {
	font-size: 36px;
	color: var(--theme-text-color);
	font-weight: bold;
	margin-bottom: 20px;
	position: relative;
	padding-left: 100px;
}

.title h3::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50px;
	width: 80px;
	height: 1px;
	background-color: #444;
}

.title h3 span {
	color: #23ae3e;
}

.title p {
	font-size: 18px;
	color: var(--theme-text-color);
	line-height: 30px;
	margin-bottom: 20px;
	color: #999999;
}

.fp_box_3 img {
	width: 100%;
}

.fp_box_3 .swiper-container {
	padding-bottom: 40px;
}

.fp_box_3 .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0px;
	left: 0;
	width: 100%;
}

.fp_box_3 .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	display: inline-block;
	border-radius: 100%;
	background: #f5f5f5;
	opacity: 1;
}

.fp_box_3 .swiper-pagination-bullet-active {
	opacity: 1;
	background: #000;
}

.fp_box_4 {
	padding: 100px 0;
	background: url(../images/bg2.png) no-repeat;
	background-size: 100% 100%;
}

.fp_box_4 .container>h3 {
	text-align: center;
	font-size: 42px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 50px;
}

.fp_box_4 ul li {
	width: 25%;
	float: left;
}

.fp_box_4 ul li h3 {
	display: inline-block;
	font-size: 42px;
	color: #23ae3e;
	font-weight: bold;
	margin-right: 5px;
}

.fp_box_4 ul li em {
	font-size: 16px;
}

.fp_box_4 .left {
	float: left;
	width: calc(64% - 20px);
	margin-top: 50px;
}

.fp_box_4 .left img {
	width: 100%;
}

.fp_box_4 .rii {
	width: 36%;
	float: right;
	margin-top: 50px;
}

.fp_box_4 .rii img {
	width: 100%;
	height: 248px;
	object-fit: cover;
}

.fp_box_4 .rii img:nth-child(2) {
	margin-top: 18px;
}

.fp_box_5 {
	background: url(../images/cc5.png) no-repeat;
	background-size: 100% 100%;
	padding: 50px 0;
}

.fp_box_5 .left {
	width: 60%;
	float: left;
}

.fp_box_5 .rii {
	width: 40%;
	float: right;
}

.fp_box_5 .left h3 {
	color: #fff;
	font-weight: bold;
}

.fp_box_5 .left p {
	color: #fff;
	font-size: 16px;
}

.fp_box_5 .rii h3 {
	color: #fff;
	font-weight: bold;
	padding-left: 40px;
	background: url(../images/baidianhua.png) no-repeat;
	background-size: 26px;
}

.fp_box_5 .rii p {
	color: #fff;
	font-size: 32px;
	font-weight: bold;
}

.fp_box_6 {
	padding: 100px 0;
}

.fp_box_6 .left {
	width: 48%;
	float: left;
	margin-top: 30px;
	position: relative;
}

.fp_box_6 .left .text {
	display: block;
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 30px;
}

.fp_box_6 .left .text .wenzi {
	position: absolute;
	bottom: 30px;
	left: 30px;
}

.fp_box_6 .left .text .wenzi h3 {
	color: #fff;
	font-size: 24px;
}

.fp_box_6 .left .text .wenzi p {
	color: #fff;
	font-size: 26px;
	font-weight: bold;
}

.fp_box_6 .left .text:hover .wenzi p {
	color: #23ae3e;
}

.fp_box_6 .left .text:hover {
	background: rgba(0, 0, 0, 0.3);
}

.fp_box_6 .rii {
	width: 50%;
	float: right;
	margin-top: 30px;
}

.fp_box_6 .rii h3 {
	margin-top: 0;
	font-size: 22px;
	line-height: 1.6;
	margin-bottom: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.fp_box_6 .rii .swiper-slide {
	background: #F8F8F8;
	padding: 40px;
	height: 495px;
}

.fp_box_6 .rii p {
	color: #999999;
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	border-top: 1px solid #ddd;
	padding-top: 20px;
}

.fp_box_6 .rii span {
	display: block;
	color: #666;
	margin-top: 60px;
	font-size: 18px;
}

footer {
	padding-top: 100px;
	background: url(../images/footer.png) no-repeat;
	background-size: 100% auto;
}

footer .top .left {
	width: 70%;
	float: left;
}

footer .top .left img {
	margin-bottom: 30px;
}

footer .top .left .zuo {
	width: 50%;
	float: left;
}

footer .top .left .you {
	width: 50%;
	float: left;
}

footer .top .left .zuo p {
	color: #fff;
	margin-top: 30px;
	font-size: 16px;
	padding-left: 40px;
	position: relative;
}

footer h3 {
	color: #fff;
}

footer .top .left .zuo p img {
	width: auto;
	height: 30px;
	position: absolute;
	top: -2px;
	left: 0;
}

footer .top .left .you a {
	display: block;
	color: #fff;
	margin-top: 23px;
	font-size: 16px;
}

footer .top .left .you a:hover {
	color: #23ae3e;
}

footer .top .rii {
	width: 30%;
	float: right;
}

footer .top .rii ul li {
	width: 50%;
	float: left;
}

footer .top .rii ul li:nth-child(2) {
	float: right;
}

footer .top .rii ul li a {
	display: block;
	color: #fff;
	margin-top: 23px;
	font-size: 16px;
}

footer .top .rii ul li a:hover {
	color: #23ae3e;
}

footer .top {
	padding-bottom: 50px;
}

.op {
	padding: 30px 0;
	color: #fff;
	text-align: center;
	font-size: 18px;
	border-top: 1px solid rgba(102, 102, 102, 0.64);
}

.op a {
	color: #fff;
	display: inline-block;
	margin-right: 15px;
}

.op a:hover {
	color: #23ae3e;
}

.banner_two {
	position: relative;
	height: 680px;
}

.banner_two .text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

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

.banner_two .text .left {
	width: 50%;
	float: left;
}

.banner_two .text .left p {
	margin-top: 150px;
	font-size: 18px;
	color: #fff;
}

.banner_two .text .left p a {
	color: #fff;
}

.banner_two .text .left h3 {
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	margin-top: 80px;
}

.banner_two .text .left span {
	display: block;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	text-align: left;
}

.banner_two .text .rii {
	width: 50%;
	float: right;
	margin-top: 400px;
}

.banner_two .text .rii p {
	color: #fff;
	line-height: 1.6;
	text-align: left;
	font-size: 16px;
	margin-bottom: 20px;
}

.gy_box_1 {
	padding: 100px 0;
}

.title_two {
	position: relative;
}

.title_two h3 {
	font-weight: bolder;
	color: #000;
	font-size: 36px;
	margin-bottom: 30px;
}

.title_two p {
	width: 75%;
	font-size: 16px;
	color: #666666;
}

.title_two a {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	background-color: transparent;
	font-size: 18px;
	font-weight: 600;
	line-height: 30px;
	fill: var(--e-global-color-blocksy_palette_8);
	color: var(--e-global-color-blocksy_palette_8);
	background-image: linear-gradient(90deg, #23AE3E 0%, #60B9D3 100%);
	border-radius: 80px 80px 80px 80px;
	padding: 15px 35px 15px 35px;
	color: #fff;
	padding-left: 60px;
}

.title_two a:hover {
	background-image: linear-gradient(90deg, #333 0%, #333 100%);
}

.title_two a img {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 15px;
	left: 20px;
}

.gy_box_1 .left {
	width: 48%;
	float: left;
}

.gy_box_1 .left img {
	width: 100%;
}

.gy_box_1 .left {
	width: 50%;
	float: left;
	margin-top: 30px;
}

.gy_box_1 .rii {
	width: 48%;
	float: right;
	margin-top: 30px;
}

.gy_box_1 .rii ul {
	margin: 0 -15px;
}

.gy_box_1 .rii ul li {
	width: 33.33%;
	float: left;
	padding: 0 10px;
}

.gy_box_1 .rii ul li img {
	width: 100%;
	height: 150px;
}

.gy_box_1 .rii ul li p {
	font-size: 18px;
	color: #666;
	text-align: center;
	margin: 10px 0;
	font-size: 16px;
}

.gy_box_1 h4 {
	margin: 50px 0;
	text-align: center;
	font-size: 24px;
}

.pic_list {
	margin: 0 -10px;
}

.pic_list li {
	width: 50%;
	float: left;
	padding: 0 10px;
	margin-bottom: 20px;
}

.pic_list li img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}

.gy_box_2 {
	padding: 100px 0;
	background: #F8F8F8;
}

.gy_box_2 h3 {
	font-size: 36px;
	font-weight: bolder;
	color: #000;
	margin-bottom: 30px;
	text-align: center;
}

.gy_box_2 p {
	font-size: 16px;
	color: #666666;
	margin-bottom: 20px;
}

.quanqiu {
	margin-top: 50px;
	animation: upDown 2s ease-in-out infinite;
}

/* 定义上下浮动动画 */
@keyframes upDown {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0);
	}
}

.gy_box_3 {
	margin-bottom: 60px;
	padding-bottom: 50px;
	position: relative;
}

.gy_box_3 img {
	width: 100%;
}

.gy_box_3 .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: -20px;
	left: 0;
	width: 100%;
}

.gy_box_3 .swiper-pagination {
	width: 100%;
	margin-top: 20px;
}

.gy_box_3 .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	display: inline-block;
	border-radius: 100%;
	background: #333;
	opacity: 0.7;
	margin: 0 5px;
}

.gy_box_3 .swiper-pagination-bullet-active {
	opacity: 1;
	background: #000;
}

.banner_two1 {
	height: 355px;
}

.banner_two.banner_two1 .text .left p {
	margin-top: 50px;
	font-size: 18px;
	color: #fff;
}

.cp_box_1 {
	padding: 100px 0;
}

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

.cp_box_1 ul li {
	margin-bottom: 30px;
}

.cp_box_1 ul li .pic {
	width: 100%;
	height: 245px;
	overflow: hidden;
	position: relative;
}

.cp_box_1 ul li .pic img {
	transition: all 0.5s;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cp_box_1 ul li .pic:hover img {
	transform: scale(1.1);
}

.cp_box_1 ul li p {
	min-height: 100px;
	font-size: 16px;
	text-align: center;
	padding-top: 20px;
}

.banner_two2 {
	height: 590px;
}

.xq_box_1 .container {
	background: #fff;
	margin-top: -400px;
	position: relative;
	z-index: 22;
	border-radius: 20px;
	padding: 45px;
}

.xq_box_1 em {
	color: #999999;
	font-size: 16px;
	margin-bottom: 30px;
	display: block;
}

.xq_box_1 em a {
	color: #999999;
}

.xq_box_1 .left {
	width: 45%;
	float: left;
}

.xq_box_1 .rii {
	width: 55%;
	float: left;
	padding-left: 40px;
	padding-right: 0;
}

.xq_box_1 .rii h3 {
	position: relative;
	padding-left: 20px;
	font-weight: bold;
	color: #333;
	margin-bottom: 30px;
}

.xq_box_1 .rii h3::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 30px;
	background: #23AE3E;

}

.xq_box_1 .rii p {
	font-size: 14px;
}

.xq_box_1 .rii span {
	display: block;
	ont-size: 14px;
}

.xq_box_1 .rii i {
	font-style: normal;
	color: #23AE3E;
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	display: block;
}

.xq_box_1 .rii a {
	display: block;
	width: 160px;
	height: 52px;
	margin-top: 50px;
	border-radius: 0 30px 30px 0;
	text-align: center;
	line-height: 52px;
	color: #fff;
	background: #23AE3E url(../images/xiaoxi.png) no-repeat;
	background-size: 25px 25px;
	background-position: 10px center;
	transition: all 0.3s ease;

}

.xq_box_1 .rii a:hover {
	margin-left: 10px;
}

.xq_box_2 .left {
	width: 70%;
	float: left;
}

.table {
	margin-top: 30px;
	margin: 50px 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	border-radius: 10px;
	padding-bottom: 50px;
}

.table h3 {
	display: block;
	padding-left: 35px;
	background: url(../images/wenzhang.png) no-repeat left center;
	background-size: 30px;
}

.table a {
	display: block;
	line-height: 50px;
	color: #666;
	font-size: 16px;
	border-bottom: 1px dashed #ddd;
	padding-left: 30px;
	background: url(../images/arrow-right-s-line.png) no-repeat left center;
	background-size: 20px;
	transition: all 0.3s ease;
	width: 48%;
	float: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

}

.table a:nth-child(2n) {
	float: right;
}

.table a:hover {
	color: #23ae3e;
	padding-left: 40px;
}

.xq_box_2 .rii {
	width: 25%;
	float: right;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.xq_box_2 .rii img {
	width: 100%;
}

.xq_box_2 .rii .cp_list {
	padding: 20px;
}

.xq_box_2 .rii h3 {
	width: 100%;
	height: 80px;
	color: #fff;
	text-align: center;
	background: linear-gradient(to right, #56AC58, #71B5BF);
	line-height: 80px;
	border-radius: 10px;
}

.xq_box_2 .rii .cp_list p {
	margin: 20px 0;
	text-align: center;
	font-size: 15px;
}

.banner_two2 {
	height: 650px;
}

.banner_two.banner_two2 .text .left p {
	margin-top: 70px;
	font-size: 18px;
	color: #fff;
}

.zc_list {
	width: 100%;
	background: #fff;
	margin-top: 80px;
	padding: 30px 40px;
	border-radius: 20px;
	border-bottom: 5px solid #23ae3e;
}

.zc_list ul li {
	width: 16.6666%;
	float: left;
	text-align: center;
	padding: 0 30px;
	font-size: 18px;
	position: relative;
}

.zc_list ul li img {
	height: 70px;
	display: block;
	margin: 0 auto;
	margin-bottom: 15px;
}

.zc_list ul li::after {
	content: '';
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 25px;
	background: url(../images/jiantouyou.png) no-repeat;
	background-size: 100% 100%;
}

.zc_list ul li:nth-child(6)::after {
	display: none;
}

.fw_box_1 {
	padding: 100px 0;
}

.fw_box_1 .top .left {
	width: 40%;
	float: left;
}

.fw_box_1 h2 {
	margin-bottom: 50px;
	text-align: center;
	font-size: 50px;
	font-weight: bold;
}

.title_t h3 {
	font-family: "Helvetica", Sans-serif;
	font-size: 80px;
	font-weight: 700;
	line-height: 60px;
	color: #23AE3E30;
}

.title_t span {
	display: block;
	padding: 20px 0;
	padding-left: 20px;
	color: #fff;
	font-size: 30px;
	margin-top: -40px;
	position: relative;
	z-index: 2;
	border-radius: 0 30px 30px 0;
	background: linear-gradient(to right, #56AC58, #71B5BF);
	margin-bottom: 30px;
}

.title_t p {
	font-size: 16px;
	margin-bottom: 20px;
	padding-left: 30px;
	background: url(../images/kuaijin.png) no-repeat;
	background-size: 20px 20px;
}

.fw_box_1 .top .rii {
	width: 60%;
	float: right;
	position: relative;
	padding-left: 50px;
}

.fw_box_1 .top .rii img:nth-child(1) {
	width: 70%;
	float: left;
	border-radius: 20px;
}

.fw_box_1 .top .rii img:nth-child(2) {
	position: absolute;
	right: 0px;
	bottom: 0;
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 20px;
}

.fw_box_1 .xia {
	margin-top: 80px;
}

.fw_box_1 .xia .left {
	width: 56%;
	float: left;
	padding-right: 50px;
}

.fw_box_1 .xia .rii {
	width: 44%;
	float: right;
}

.fw_box_1 .xia .left img {
	width: 100%;
	border-radius: 20px;
}

.fw_box_1 .xia .rii ul {
	margin: 0 -5px;
}

.fw_box_1 .xia .rii ul li {
	width: 33.33%;
	float: left;
	padding: 0 5px;
	margin-bottom: 20px;
}

.fw_box_1 .xia .rii ul li img {
	width: 100%;
}

.fw_box_2 {
	background: url(../images/nm6.png) no-repeat;
	background-size: 100% 100%;
	padding: 75px;
}

.fw_box_2 .title_t {
	width: 50%;
}

.fw_box_2 .title_t p {
	color: #fff;
}

.fw_box_2 ul {
	padding: 20px 10px;
	background: #fff;
	width: 50%;
	margin-bottom: 50px;
}

.fw_box_2 ul {
	margin: 0 -15px;
}

.fw_box_2 ul li {
	width: 50%;
	float: left;
	padding: 0 10px;
}

.fw_box_2 ul li img {
	width: 100%;

}

.fw_box_3 {
	padding: 80px 0;
}

.fw_box_3 .left {
	width: 40%;
	float: left;
	padding-right: 30px;
	padding-top: 60px;
}

.fw_box_3 .rii {
	float: right;
	width: 55%;
}

.fw_box_3 .rii img {
	border-radius: 10px;
}

.fw_box_4 {
	text-align: center;
	padding: 80px 0;
	background: #F8F8F8;
}

.fw_box_4 h3 {
	font-size: 40px;
	margin-bottom: 60px;
}

.fw_box_4 img {
	width: 60%;
}

.banner_two6 {
	height: 750px;
	background: url(../images/banner6.png) no-repeat fixed;
}

.tuwen_bn .left-d {
	width: 50%;
	float: left;
}

.tuwen_bn .left-d img {
	width: 100%;
}

.tuwen_bn .you-d {
	width: 50%;
	float: right;
}

.tuwen_bn .you-d .top {
	padding: 0 30px;
}

.tuwen_bn .you-d .top h3 {
	color: #fff;
	font-size: 40px;
	margin: 10px 0;
}

.tuwen_bn .you-d .top span {
	color: #f6f6f6;
	font-size: 18px;
	margin: 30px 0;
	display: block;
}

.tuwen_bn .you-d .text-d {
	background: #fff;
	padding: 30px;
	height: 345px;
}

.tuwen_bn .you-d .text-d h4 {
	font-size: 30px;
	font-weight: bold;

}

.tuwen_bn .you-d .text-d span {
	display: block;
	margin: 20px 0;
	font-size: 16px;
	color: #999;
}

.tuwen_bn .you-d .text-d p {
	font-size: 15px;
	color: #666;
}

.tuwen_bn .you-d .text-d a {
	display: inline-block;
	margin-top: 30px;
	background: linear-gradient(to right, #56AC58, #71B5BF);
	padding: 15px 40px;
	border-radius: 10px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	float: right;
}

.banner_two.banner_two6 .text .left p {
	margin-top: 50px;
	font-size: 18px;
	margin-bottom: 50px;
	color: #fff;
}

.news_box_1 {
	padding: 100px 0;
}

.news_box_1 ul {
	margin: 0 -20px;
}

.news_box_1 ul li {
	width: 50%;
	float: left;
	padding: 0 20px;
	margin-bottom: 50px;
}

.news_box_1 ul li .pic {
	width: 45%;
	float: left;
	height: 200px;
	overflow: hidden;
	border-radius: 10px;
}

.news_box_1 ul li:hover {
	transition: all 0.5s;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.news_box_1 ul li .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;

}

.news_box_1 ul li:hover .pic img {
	transform: scale(1.1);

}

.news_box_1 ul li .text {
	float: right;
	width: 55%;
	padding: 0 20px;
	position: relative;
	padding-bottom: 50px;
}

.news_box_1 ul li .text h3 {
	font-size: 18px;
	font-weight: bold;
	/* 显示一行多余点省略号 */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news_box_1 ul li:hover .text h3 a {
	color: #56AC58;

}

.news_box_1 ul li .text p {
	font-size: 16px;
	color: #666;
	/* 显示两行多余点省略号 */
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin: 20px 0;
}

.news_box_1 ul li .text span {
	font-size: 14px;
	color: #999;

}

.news_box_1 ul li .text .more {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 14px;
	color: #fff;
	display: block;
	background: linear-gradient(to right, #56AC58, #71B5BF);
	width: 100px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 10px;
}

.banner_two7 {
	height: 750px;
}

.xin_gy {
	margin-top: 100px;
}

.xin_gy .leftf {
	float: left;
	padding-right: 30px;
}

.xin_gy .leftf p {
	font-size: 18px;
	color: #fff;
	padding-left: 40px;
	position: relative;
	margin-bottom: 20px;
}

.xin_gy .leftf p img {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);

}

.xin_gy .right {
	float: left;
}

.xin_gy .right .erweima {
	float: left;
	margin-left: 60px;
	text-align: center;
	font-size: 18px;
	color: #fff;
	transition: all 0.5s;
}

.xin_gy .right .erweima img {
	margin-bottom: 20px;
}

.xin_gy .right .erweima:hover {
	margin-top: -10px;
}

.lx_box_1 {
	padding: 100px 0;
	padding-bottom: 70px;
}

.lx_box_1 h3 {
	font-size: 38px;
	margin-bottom: 30px;
}

.lx_box_1 span {
	font-size: 18px;
	color: #666666;
}

.lx_box_1 ul {
	margin: 40px -15px;
}

.lx_box_1 ul li {
	width: 25%;
	padding: 0 15px;
	float: left;
}

.lx_box_1 ul li>div {
	padding: 30px;
	border: 1px solid #23ae3e;
	border-radius: 10px;
	text-align: center;
}

.lx_box_1 ul li>div img {
	height: 50px;
	margin-bottom: 20px;
}

.lx_box_1 ul li>div h4 {
	font-size: 24px;
	margin-bottom: 20px;
}

.lx_box_1 ul li>div p {
	font-size: 18px;
	color: #666666;
}

.ditu_box {
	text-align: center;
}

.ditu_box h3 {
	font-size: 38px;
	margin-bottom: 30px;
}

.ditu_box span {
	font-size: 18px;
	color: #666666;
	display: block;
	margin-bottom: 50px;
}












@media only screen and (max-width:1400px) {
	.header-container {
		max-width: 1220px;
	}

	.nav-item {
		margin-left: 20px;
	}

	.fp_box_2 .swiper-slide .text .box_text {
		height: calc(100vh * 0.8);
		width: 55%;
		margin-top: 4%;
	}

	.fp_box_1 .rii .top .tu_text:nth-child(2) {
		margin-right: 0;
		float: right;
		margin-top: 0;
	}

	.fp_box_4 .rii img {
		width: 100%;
		height: 209px;
		object-fit: cover;
	}

	.fp_box_6 .rii .swiper-slide {
		background: #F8F8F8;
		padding: 40px;
		height: 422px;
	}

	.fp_box_6 .rii span {
		display: block;
		color: #666;
		margin-top: 0;
		font-size: 18px;
	}

	footer {
		padding-top: 100px;
		background: url(../images/footer.png) no-repeat;
		background-size: 100% 100%;
	}

	.cp_box_1 ul li .pic {
		height: 200px;
	}

	.fw_box_1 .top .rii img:nth-child(2) {
		width: 180px;
	}

	.banner_two .text .left h3 {
		color: #fff;
		font-size: 35px;
		font-weight: bold;
		margin-top: 80px;
	}

	.banner_two .text .left span {
		display: block;
		color: #fff;
		font-size: 14px;
		text-transform: uppercase;
		text-align: left;
	}

	.zc_list ul li img {
		height: 55px;
		display: block;
		margin: 0 auto;
		margin-bottom: 15px;
	}

	.fw_box_1 h2 {
		margin-bottom: 50px;
		text-align: center;
		font-size: 38px;
		font-weight: bold;
	}

	.title_t p {
		font-size: 14px;
		margin-bottom: 20px;
		padding-left: 30px;
	}

	.title_t span {
		display: block;
		padding: 15px 0;
		padding-left: 17px;
		color: #fff;
		font-size: 25px;
		margin-top: -40px;
		position: relative;
		z-index: 2;
		border-radius: 0 30px 30px 0;
		background: linear-gradient(to right, #56AC58, #71B5BF);
		margin-bottom: 20px;
	}.tuwen_bn .you-d .top h3 {
    color: #fff;
    font-size: 26px;
    margin: 10px 0;
}.tuwen_bn .you-d .top span {
    color: #f6f6f6;
    font-size: 14px;
    margin: 20px 0;
    display: block;
}.tuwen_bn .you-d .text-d h4 {
    font-size: 22px;
    font-weight: bold;
}.tuwen_bn .you-d .text-d p {
    font-size: 14px;
    color: #666;
}.tuwen_bn .you-d .text-d {
    background: #fff;
    padding: 30px;
    height: 319px;
}.tuwen_bn .you-d .text-d a {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(to right, #56AC58, #71B5BF);
    padding: 8px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    text-align: center;
    float: right;
}
}

@media only screen and (max-width:1200px) {
	.header-container {
		max-width: 960px;
	}

	.nav-item {
		margin-left: 0px;
		margin-right: 20px;
	}

	.ri_box a {
		padding: 0 10px;
	}

	.fp_box_1 {
		padding: 40px 0;
	}

	.fp_box_1 .left h2 {
		font-size: 25px;
	}

	.fp_box_1 .left p {
		font-size: 14px;
	}

	.fp_box_1 .left .pic_text {
		margin-top: 20px;
		padding: 10px;
	}

	.fp_box_1 .left .pic_text img {
		width: 80%;
		display: block;
		margin: 0 auto;
	}

	.fp_box_1 .left .pic_text .text h3 {
		font-size: 18px;
	}

	.fp_box_1 .left .pic_text .text p {
		font-size: 14px;
	}

	.fp_box_1 .left .pic_text:hover {
		margin-top: -10px;
	}

	.fp_box_1 .rii .top .tu_text h3 {
		font-size: 14px;
	}

	.fp_box_1 .rii .xia_pic h3 {
		width: 40%;
		float: left;
		font-size: 18px;
		margin-top: 72px;
	}

	.fp_box_1 .rii .top .tu_text:nth-child(2):hover {
		margin-top: -10px;
	}

	.fp_box_2 img {
		height: 580px;
	}

	.fp_box_2 .swiper-slide .text .box_text {
		height: calc(80vh * 0.8);
		width: 55%;
		margin-top: 4%;
	}

	.fp_box_2 .swiper-slide .text .box_text .top h3 {
		color: #fff;
		margin: 0;
		font-size: 28px;
	}

	.fp_box_2 .swiper-slide .text .box_text .top p {
		color: #fff;
		margin-top: 10px;
		font-size: 12px;
		color: #f5f5f5;
	}

	.fp_box_2 .swiper-slide .text .box_text .top ul li h4 {
		color: #23ae3e;
		font-size: 14px;
	}

	.fp_box_2 .swiper-slide .text .box_text .top ul li span {
		color: #f5f5f5;
		font-size: 12px;
		margin-top: 10px;
		display: block;
	}

	.fp_box_2 .swiper-slide .text .box_text .top ul li {
		margin-top: 20px;
	}

	.fp_box_3 .swiper-button-next,
	.swiper-button-prev {
		top: 40%;
	}

	.fp_box_3 {
		padding: 50px 0;
	}

	.title h3 {
		font-size: 25px;
		color: var(--theme-text-color);
		font-weight: bold;
		margin-bottom: 20px;
		position: relative;
		padding-left: 100px;
	}

	.title p {
		font-size: 14px;
		color: var(--theme-text-color);
		line-height: 30px;
		margin-bottom: 20px;
		color: #999999;
	}

	.fp_box_4 .container>h3 {
		text-align: center;
		font-size: 30px;
		font-weight: 700;
		line-height: 60px;
		margin-bottom: 0px;
	}

	.fp_box_4 {
		padding: 50px 0;
	}

	.fp_box_4 ul li h3 {
		display: inline-block;
		font-size: 28px;
		color: #23ae3e;
		font-weight: bold;
		margin-right: 5px;
	}

	.fp_box_4 .rii img {
		width: 100%;
		height: 166px;
		object-fit: cover;
	}

	.fp_box_5 .left {
		width: 50%;
		float: left;
	}

	.fp_box_5 .rii {
		width: 50%;
		float: right;
	}

	.fp_box_5 .rii p {
		color: #fff;
		font-size: 24px;
		font-weight: bold;
	}

	.fp_box_6 {
		padding: 50px 0;
	}

	.fp_box_6 .rii .swiper-slide {
		background: #F8F8F8;
		padding: 10px;
		height: 340px;
	}

	.fp_box_6 .rii h3 {
		margin-top: 0;
		font-size: 18px;
		line-height: 1.6;
		margin-bottom: 15px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.fp_box_6 .rii p {
		color: #999999;
		font-size: 13px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 7;
		-webkit-box-orient: vertical;
		border-top: 1px solid #ddd;
		padding-top: 25px;
	}

	.fp_box_6 .rii span {
		display: block;
		color: #666;
		margin-top: 30px;
		font-size: 14px;
	}

	.fp_box_6 .left .text .wenzi p {
		color: #fff;
		font-size: 16px;
		font-weight: bold;
	}

	.fp_box_6 .left .text .wenzi h3 {
		color: #fff;
		font-size: 18px;
	}

	footer .top .left img {
		margin-bottom: 0;
		max-width: 80%;
	}

	footer .top .left .zuo p {
		color: #fff;
		margin-top: 30px;
		font-size: 12px;
		padding-left: 40px;
		position: relative;
	}

	footer .top .left .you a {
		display: block;
		color: #fff;
		margin-top: 23px;
		font-size: 12px;
	}

	footer .top .rii ul li a {
		display: block;
		color: #fff;
		margin-top: 23px;
		font-size: 12px;
	}

	footer {
		padding-top: 50px;
	}

	.op {
		padding: 30px 0;
		color: #fff;
		text-align: center;
		font-size: 14px;
		border-top: 1px solid rgba(102, 102, 102, 0.64);
	}

	.cp_box_1 ul li .pic {
		height: 160px;
	}

	.cp_box_1 ul li p {
		min-height: 40px;
		font-size: 14px;
		padding-top: 10px;
	}

	.xq_box_1 .rii p {
		font-size: 12px;
		margin: 3px 0;
	}

	.xq_box_1 .rii h3 {
		position: relative;
		padding-left: 20px;
		font-weight: bold;
		color: #333;
		margin-bottom: 10px;
	}

	.xq_box_1 .rii a {
		margin-top: 20px;
	}

	.xq_box_2 .rii h3 {
		width: 100%;
		height: 65px;
		color: #fff;
		text-align: center;
		background: linear-gradient(to right, #56AC58, #71B5BF);
		line-height: 65px;
		border-radius: 5px;
	}

	.banner_two .text .left h3 {
		color: #fff;
		font-size: 28px;
		font-weight: bold;
		margin-top: 80px;
	}

	.zc_list {
		width: 100%;
		background: #fff;
		margin-top: 80px;
		padding: 15px 20px;
		border-radius: 20px;
		border-bottom: 5px solid #23ae3e;
	}

	.zc_list ul li {
		width: 16.6666%;
		float: left;
		text-align: center;
		padding: 0 30px;
		font-size: 12px;
		position: relative;
	}

	.fw_box_1 .top .rii img:nth-child(2) {
		display: none;
	}

	.fw_box_1 .top .rii img:nth-child(1) {
		width: 100%;
		float: left;
		border-radius: 20px;
	}

	.title_t p {
		font-size: 10px;
		margin-bottom: 20px;
		padding-left: 30px;
	}

	.title_t span {
		display: block;
		padding: 10px 0;
		padding-left: 17px;
		color: #fff;
		font-size: 18px;
		margin-top: -40px;
		position: relative;
		z-index: 2;
		border-radius: 0 30px 30px 0;
		background: linear-gradient(to right, #56AC58, #71B5BF);
		margin-bottom: 20px;
	}

	.gy_box_1 .rii ul li img {
		width: 100%;
		height: 100px;
	}

	.pic_list li img {
		width: 100%;
		height: 280px;
		object-fit: cover;
	}
	.xin_gy .right .erweima {
    float: left;
    margin-left: 20px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    transition: all 0.5s;
}
	.xin_gy .right .erweima img{
		width: 150px;
		height: 150px;
	}.lx_box_1 ul li>div h4 {
    font-size: 18px;
    margin-bottom: 20px;
}.lx_box_1 ul li>div p {
    font-size: 10px;
    color: #666666;
}
.banner_two7{
	height: 500px !important;
	background-size: auto 100% !important;

}
    .tuwen_bn .you-d .text-d {
        background: #fff;
        padding: 15px;
        height: 232px;
    }    .tuwen_bn .you-d .text-d h4 {
        font-size: 14px;
        font-weight: bold;
    }.tuwen_bn .you-d .text-d span {
    display: block;
    margin: 10px 0;
    font-size: 12px;
    color: #999;
}.tuwen_bn .you-d .text-d p {
        font-size: 12px;
        color: #666;
    }.news_box_1 ul li .pic {
    width: 45%;
    float: left;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
}.news_box_1 ul li .text p {
    font-size: 16px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 10px 0;
}.news_box_1 ul li .text .more {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    color: #fff;
    display: block;
    background: linear-gradient(to right, #56AC58, #71B5BF);
    width: 80px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
}
}

@media only screen and (max-width: 1000px) {
	.header-container {
		max-width: 720px;
	}

	.nav-item {
		margin-left: 15px;
	}

	.nav-link {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.nav-pc {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.header-container {
		padding: 10px 15px;
	}

	.logo img {
		height: 30px;
	}

	.phone {
		display: none;
	}

	.ri_box {
		display: none;
	}

	.banner {
		margin-top: 60px;
	}

	.header {
		height: 60px;
	}

	.logo {
		margin-top: 6px;
	}

	.banner .swiper-button-next,
	.swiper-button-prev {
		position: absolute;
		top: 50%;
		width: 20px;
		height: 36px;
		margin-top: -22px;
		z-index: 10;
		cursor: pointer;
		-moz-background-size: 27px 44px;
		-webkit-background-size: 27px 44px;
		background-size: 27px 28px;
		background-position: center;
		background-repeat: no-repeat;
	}

	.banner .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}

	.fp_box_1 {
		padding: 30px 0;
	}

	.fp_box_1 .left {
		width: 100%;
		float: left;
	}

	.fp_box_1 .rii {
		float: right;
		width: 100%;
		margin-top: 20px;
	}

	.fp_box_1 .rii .top .tu_text h3 {
		font-size: 12px;
		text-align: left;
	}

	.fp_box_1 .rii .xia_pic {
		width: 100%;
		margin-top: 20px;
	}

	.fp_box_2 img {
		height: 400px;
	}

	.fp_box_2 .swiper-slide .text .box_text {
		height: 100%;
		width: 100%;
		margin-top: 5%;
	}

	.fp_box_2 .swiper-slide .text .box_text .top {
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		padding: 10px;
	}

	.fp_box_2 .swiper-slide .text .box_text .top h3 {
		color: #fff;
		margin: 0;
		font-size: 20px;
		margin-top: 20px;
	}

	.fp_box_2 .swiper-slide .text .box_text .top p {
		color: #fff;
		margin-top: 10px;
		font-size: 8px;
		color: #f5f5f5;
	}

	.fp_box_2 .swiper-slide .text .box_text .top ul li h4 {
		color: #23ae3e;
		font-size: 12px;
		margin: 5px 0;
	}

	.fp_box_2 .swiper-slide .text .box_text .top ul li span {
		color: #f5f5f5;
		font-size: 8px;
		margin-top: 10px;
		display: block;
	}

	.link a:nth-child(1) {
		width: 30%;
		float: left;
		height: 40px;
		background: #23ae3e;
		color: #fff;
		text-align: center;
		line-height: 40px;
	}

	.link a:nth-child(2) {
		height: 40px;
		line-height: 40px;
	}

	.fp_box_2 .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}

	.fp_box_3 {
		padding: 30px 0;
	}

	.fp_box_3 .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}

	.fp_box_4 {
		padding: 30px 0;
	}

	.fp_box_4 .container>h3 {
		text-align: center;
		font-size: 17px;
		font-weight: 700;
		line-height: 1;
		margin-bottom: 0px;
	}

	.fp_box_4 ul li h3 {
		display: block;
		text-align: center;
	}

	.fp_box_4 ul li em {
		font-size: 8px;
	}

	.fp_box_4 .left {
		float: left;
		width: 100%;
		margin-top: 30px;
	}

	.fp_box_4 .rii {
		width: 100%;
		float: right;
		margin-top: 20px;
	}

	.fp_box_4 .rii img {
		height: auto;
	}

	.fp_box_5 {
		padding: 20px 0;
	}

	.fp_box_5 .left {
		width: 100%;
		float: left;

	}

	.fp_box_5 .rii {
		width: 100%;
		float: right;
	}

	.fp_box_5 .left h3 {
		font-size: 16px;
	}

	.fp_box_5 .rii h3 {
		color: #fff;
		font-weight: bold;
		padding-left: 30px;
	}

	.fp_box_5 .rii p {
		color: #fff;
		font-size: 20px;
		font-weight: bold;
	}

	.fp_box_6 {
		padding: 20px 0;
	}

	.fp_box_6 .left {
		width: 100%;
		float: left;
		margin-top: 0;
		position: relative;
	}

	.fp_box_6 .rii {
		width: 100%;
		float: right;
		margin-top: 30px;
	}

	footer .top .left {
		width: 100%;
		float: left;
	}

	footer .top .left .zuo p {
		color: #fff;
		margin-top: 15px;
		font-size: 12px;
		padding-left: 30px;
		position: relative;
	}

	footer .top .left .zuo p img {
		width: auto;
		height: 24px;
		position: absolute;
		top: -2px;
		left: 0;
	}

	footer h3 {
		margin-top: 0;
		font-size: 16px;
	}

	footer .top .left .zuo {
		width: 100%;
		float: left;
		margin-bottom: 30px;
	}

	footer .top .left .you {
		width: 100%;
		float: left;
	}

	footer .top .rii {
		width: 100%;
		float: right;
		margin-top: 30px;
	}

	.op {
		padding: 15px 0;
		color: #fff;
		text-align: center;
		font-size: 12px;
		border-top: 1px solid rgba(102, 102, 102, 0.64);
	}

	footer {
		background-size: auto 100%;
	}

	footer .top .left img {
		margin-bottom: 20px;
		max-width: 60%;
		display: block;
	}

	.banner_two1 {
		height: 200px;
	}

	.banner_two.banner_two1 .text .left p {
		margin-top: 30px;
		font-size: 14px;
	}

	.banner_two.banner_two1 .text .left h3 {
		color: #fff;
		font-size: 20px;
		font-weight: bold;
		margin-top: 20px;
	}

	.banner_two.banner_two1 .text .left {
		width: 100%;
		float: left;
	}

	.banner_two.banner_two1 .text .left span {
		display: block;
		color: #fff;
		font-size: 12px;
		text-transform: uppercase;
		text-align: left;
	}

	.cp_box_1 {
		padding: 30px 0;
	}

	.cp_box_1 ul {
		margin-left: -10px;
		margin-right: -10px;
	}

	.cp_box_1 ul li {
		margin-bottom: 10px;
		width: 50%;
		float: left;
		padding: 0 5px;
	}

	.cp_box_1 ul li .pic {
		height: 120px;
	}

	.banner_two2 {
		height: 300px;
	}

	.xq_box_1 .container {
		background: #fff;
		margin-top: -200px;
		position: relative;
		z-index: 22;
		border-radius: 10px;
		padding: 15px;
	}

	.xq_box_1 em {
		color: #999999;
		font-size: 12px;
		margin-bottom: 30px;
		display: block;
	}

	.xq_box_1 .left {
		width: 100%;
		float: left;
	}

	.xq_box_1 .rii {
		width: 100%;
		float: left;
		padding-left: 0px;
		padding-right: 0;
	}

	.xq_box_1 .rii h3 {
		font-size: 18px;
	}

	.xq_box_1 .rii h3::after {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 3px;
		height: 15px;
		background: #23AE3E;
	}

	.xq_box_1 .rii p {
		font-size: 10px;
		margin: 3px 0;
	}

	.xq_box_1 .rii i {
		font-style: normal;
		color: #23AE3E;
		font-size: 18px;
		font-weight: 700;
		line-height: 30px;
		display: block;
		margin-top: 15px;
	}

	.xq_box_2 .left {
		width: 100%;
		float: left;
	}

	.table a {
		width: 100%;
		font-size: 14px;
	}

	.xq_box_2 .rii {
		width: 100%;
		float: right;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0);
	}

	.table {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.banner_two.banner_two22 .text .left {
		width: 100%;
		float: left;
	}

	.banner_two.banner_two22 .text .left p {
		margin-top: 20px;
		font-size: 12px;
		color: #fff;
	}

	.banner_two.banner_two22 .text .left h3 {
		color: #fff;
		font-size: 18px;
		font-weight: bold;
		margin-top: 20px;
	}

	.banner_two.banner_two22 .text .left span {
		display: block;
		color: #fff;
		font-size: 12px;
		text-transform: uppercase;
		text-align: left;
	}

	.zc_list ul li img {
		height: 30px;
		display: block;
		margin: 0 auto;
		margin-bottom: 10px;
	}

	.zc_list ul li {
		width: 16.6666%;
		float: left;
		text-align: center;
		padding: 0 5px;
		font-size: 12px;
		position: relative;
	}

	.zc_list ul li::after {
		display: none;
	}

	.zc_list {
		width: 100%;
		background: #fff;
		margin-top: 30px;
		padding: 5px 10px;
		border-radius: 10px;
		border-bottom: 2px solid #23ae3e;
	}

	.fw_box_1 {
		padding: 0 0 30px 0;
	}

	.fw_box_1 h2 {
		margin-bottom: 20px;
		text-align: center;
		font-size: 22px;
		font-weight: bold;
	}

	.fw_box_1 .top .left {
		width: 100%;
		float: left;
	}

	.fw_box_1 .top .rii {
		width: 100%;
		float: right;
		position: relative;
		padding-left: 0px;
	}

	.fw_box_1 .xia .rii {
		width: 100%;
		float: none;
	}

	.fw_box_1 .xia .left {
		width: 100%;
		float: none;
		padding-right: 0px;
	}

	.fw_box_1 .xia {
		margin-top: 20px;
	}

	.fw_box_1 .xia .left img {
		border-radius: 5px;
	}

	.fw_box_1 .top .rii img:nth-child(1) {

		border-radius: 5px;
	}

	.fw_box_2 {
		background: url(../images/nm6.png) no-repeat;
		background-size: auto 100%;
		padding: 20px;
	}

	.fw_box_2 .title_t {
		width: 100%;
	}

	.fw_box_2 ul {
		width: 100%;
	}

	.fw_box_3 .left {
		width: 100%;
		float: left;
		padding-right: 0px;
		padding-top: 0px;
	}

	.fw_box_3 .rii {
		float: right;
		width: 100%;
	}

	.fw_box_3 {
		padding: 15px 0;
	}

	.fw_box_4 {
		text-align: center;
		padding: 20px 0;
		background: #F8F8F8;
	}

	.fw_box_4 h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}.banner_two11 {
		position: relative;
		height: 300px;
	}

	.banner_two.banner_two11 .text .left p {
		margin-top: 30px;
		font-size: 14px;
		color: #fff;
	}

	.banner_two.banner_two11 .text .left {
		width: 100%;
		float: left;
	}

	.banner_two.banner_two11 .text .left h3 {
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		margin-top: 30px;
	}    .banner_two .text .left span {
        display: block;
        color: #fff;
        font-size: 8px;
        text-transform: uppercase;
        text-align: left;
    }
    
	.gy_box_1 {
		padding: 20px 0;
	}.title_two h3 {
    font-weight: bolder;
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
}.title_two p {
    width: 100%;
    font-size: 12px;
    color: #666666;
	padding-bottom: 50px;
}.title_two a {
    position: absolute;
    top: auto;
	bottom: 0;
    right: 0;
    display: block;
    background-color: transparent;
    font-size: 12px;
    font-weight: 600;
    line-height: 25px;
    background-image: linear-gradient(90deg, #23AE3E 0%, #60B9D3 100%);
    border-radius: 20px;
    padding: 10px 10px 10px 10px;
    color: #fff;
    padding-left: 60px;
}.title_two a img {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 8px;
    left: 20px;
}.banner_two .text .rii {
    width: 100%;
    float: left;
    margin-top: 20px;
}.banner_two .text .rii p {
    color: #fff;
    line-height: 1.6;
    text-align: left;
    font-size: 12px;
    margin-bottom: 20px;
}
.banner_two .text .rii p {
        color: #fff;
        line-height: 1.6;
        text-align: left;
        font-size: 10px;
        margin-bottom: 20px;
    }.gy_box_1 .left {
    width: 100%;
    float: left;
    margin-top: 10px;
}.gy_box_1 .rii {
    width: 100%;
    float: right;
    margin-top: 30px;
}.gy_box_1 .rii ul li {
    width: 50%;
    float: left;
    padding: 0 10px;
}.gy_box_1 .rii ul li img {
        width: 100%;
        height: auto;
    }.gy_box_1 h4 {
    margin: 20px 0;
    text-align: center;
    font-size: 18px;
}.pic_list li {
    width: 100%;
    float: left;
    padding: 0 10px;
    margin-bottom: 20px;
}.pic_list li img{
	height: auto;
}.gy_box_2 {
    padding: 20px 0;
    background: #F8F8F8;
}.gy_box_2 h3 {
    font-size: 22px;
    font-weight: bolder;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}.gy_box_2 p {
    font-size: 12px;
    color: #666666;
    margin-bottom: 20px;
}.gy_box_3 .swiper-pagination-bullet{
	width: 8px;
	height: 8px;
}.gy_box_3 {
    margin-bottom: 0;
    padding-bottom: 50px;
    position: relative;
}
.xin_gy {
    margin-top: 20px;
}.xin_gy .leftf p {
    font-size: 10px;
    color: #fff;
    padding-left: 26px;
    position: relative;
    margin-bottom: 20px;
}.xin_gy .right .erweima img {
        width: 90px;
        height: 90px;
		margin-bottom: 20px;
    }.xin_gy .right .erweima{
		font-size: 12px;
	}.lx_box_1 {
    padding: 20px 0;
    padding-bottom: 20px;
}.lx_box_1 h3 {
    font-size: 20px;
    margin-bottom: 10px;
}.lx_box_1 span {
    font-size: 12px;
    color: #666666;
}.lx_box_1 ul li {
    width: 50%;
    padding: 0 5px;
    float: left;
	margin-top: 20px;
}.lx_box_1 ul{
	margin: 0;
}.lx_box_1 ul li>div {
    padding: 10px;
    border: 1px solid #23ae3e;
    border-radius: 10px;
    text-align: center;
}.ditu_box h3 {
    font-size: 24px;
    margin-bottom: 18px;
}.ditu_box span {
    font-size: 14px;
    color: #666666;
    display: block;
    margin-bottom: 30px;
}.banner_two.banner_two6 .text .left p {
    margin-top: 50px;
    font-size: 14px;
    margin-bottom: 50px;
    color: #fff;
}.banner_two .text .left {
    width: 100%;
    float: left;
}
.tuwen_bn .left-d {
    width: 100%;
    float: left;
}.tuwen_bn .you-d {
    width: 100%;
    float: right;
}.tuwen_bn .you-d .top {
    padding: 0 0px;
	margin-top: 10px;
}
.tuwen_bn .left-d img{
	height: 220px;
	border-radius: 5px;
}
    .tuwen_bn .you-d .text-d {
        background: #fff;
        padding: 15px;
        height: auto;
		padding-bottom: 80px;
    }    .banner_two.banner_two6 .text .left p {
        margin-top: 20px;
        font-size: 14px;
        margin-bottom: 20px;
        color: #fff;
    }
	.banner_two6{
		height: 700px;
	}.news_box_1 {
    padding: 30px 0;
}.news_box_1 ul li {
    width: 100%;
    float: left;
    padding: 0 10px;
    margin-bottom: 20px;
}
}