/*common start*/
body,
div,
ul,
li,
a,
img,
p,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
span,
input,
button,
textarea,
dl,
dt {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	border: 0;
	list-style: none;
	font-family: normal;
	font-weight: normal;
}

body {
	font-size: 14px;
	color: #111;
	overflow-x: hidden;
}

a img {
	border: 0;
}

em {
	font-style: normal;
}

body.head_on {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: #333;
	transition: all .3s;
}

* {
	box-sizing: border-box;
}

input,
select,
textarea {
	outline: none;
}

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

.wapper {
	width: 100%;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
}

.logo {
	width: 12%;
	margin-top: 8px;
}

@media only screen and (min-width: 1530px) {
	.wapper {
		width: 1530px;
		margin: 0 auto;
	}
}

:root {
	--primary-color: #0284c7;
	--font-color: #666;
	--main-white: #fff;
}

html {
	scroll-behavior: smooth;
	/* 平滑滚动 */
}

[id] {
	/* 所有带 id 的元素 */
	scroll-margin-top: 94px;
}



/* 轮播图通用 */
.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	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: center;
	align-items: center;
}

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

.overflow1 {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 100%;
	display: block;
}

.overflow2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.overflow3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.height {
	height: 94px;
}

/* 导航 */
.headerbox {
	width: 100%;
	margin: 0 auto;
	background: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
}

.headerbox .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.headerbox .header .menu ul li {
	position: relative;
	display: inline-block;
}

.headerbox .header .menu ul li a {
	font-size: 16px;
	padding: 35px 20px;
	color: #475569;
	display: flex;
	position: relative;
	text-decoration: none;
}

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

.headerbox .header .menu ul li .sub_menu {
	min-width: 200%;
	position: absolute;
	top: 140%;
	left: -50%;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	background: white;
	transition: all 400ms ease;
}

.headerbox .header .menu ul li:hover>dl {
	opacity: 1;
	visibility: visible;
	top: 100%;
}

.headerbox .header .menu ul li dd {
	position: relative;
	display: block;
	text-align: center;
	transition: all 400ms ease;
}

.headerbox .header .menu dl dd>.three_menu {
	min-width: 100%;
	position: absolute;
	left: 100%;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	background: white;
	transition: all 400ms ease;
}

.headerbox .header .menu dl dd:hover>.three_menu {
	opacity: 1;
	visibility: visible;
	top: 0px;
}

.headerbox .header .menu ul li dl dd a {
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #475569;
	text-align: left;
	display: block;
	padding: 15px 25px 15px 25px;
	position: relative;
	text-decoration: none;
	outline: none;
	text-align: center;
	text-transform: none;
	transition: all 400ms ease;
	border-bottom: 1px solid #f4f4f4;
}

.headerbox .header .menu ul li dl dd:hover {
	background-color: var(--primary-color);
}

.headerbox .header .menu ul li dl dd:hover>a {
	color: #fff;
}


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

.h_lan {
	margin-right: 16px;
}

.h_lan select {
	padding: 4px 12px;
	border: 1px solid #d1d5db;
	background: #f3f4f6;
	font-size: 14px;
	color: #334155;
	border-radius: 5px;
}

.h_btn {}

.h_btn a {
	display: inline-block;
	padding: 8px 16px;
	background: #0284c7;
	font-size: 16px;
	color: #fff;
	border-radius: 6px;
}





/*mMenu*/
.m_header {
	width: 100%;
}

.sp_header {
	height: 70px;
	overflow: hidden;
	background: var(--main-white);
	position: fixed;
	z-index: 999;
	width: 100%;
	display: none;
	top: 0;
	align-items: center;
	justify-content: space-between;
}

.sp_logo {
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
}

.sp_logo img {
	margin: auto;
	max-height: 50px;
}

.sp_nav {
	width: 50px;
	position: relative;
	cursor: pointer;
	height: 30px;
}

/* 横杠 */
.sp_nav span {
	display: block;
	background: #000000;
	width: 30px;
	height: 3px;
	position: absolute;
	left: 10px;
	transition: all ease 0.35s
}

.sp_nav span:nth-of-type(1) {
	top: 0px
}

.sp_nav span:nth-of-type(2) {
	top: 10px
}

.sp_nav span:nth-of-type(3) {
	top: 20px
}

.sp_nav_se span:nth-of-type(1) {
	top: 10px;
	transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
	width: 0
}

.sp_nav_se span:nth-of-type(3) {
	top: 10px;
	transform: rotate(-45deg)
}

.sjj_nav {
	position: fixed;
	z-index: 9999;
	background: var(--main-white);
	width: 100%;
	height: calc(100% - 70px);
	font-size: 14px;
	line-height: 40px;
	top: 70px;
	left: 0;
	overflow: auto;
	overflow-x: hidden;
	transition: top ease 0.35s;
	display: none;
	transition: all ease 0.35s
}

.nav_show {
	display: block;
}

.sjj_nav ul li i {
	position: absolute;
	top: 5px;
	right: 0px;
	height: 30px;
	padding: 0px 7px 0 7px;
}

.sjj_nav ul li i svg {
	transform: rotate(-90deg);
	transition: all ease 0.35s
}

.sjj_nav ul li .sjj_nav_i_se svg {
	transform: rotate(0deg)
}

.sjj_nav ul li {
	border-bottom: 1px dashed #ddd;
	;
	position: relative;
	line-height: 45px;
	font-size: 16px
}

.sjj_nav>ul>li:last-child {
	border-bottom: 1px dashed #ddd;
}

.sjj_nav ul li ul {
	display: none
}

.sjj_nav ul li a {
	color: var(--font-color);
	width: 100%;
	padding: 0 20px;
	display: block;
	box-sizing: border-box;
}

.sjj_nav ul li a:hover {
	color: #000000;
}

.sjj_nav ul li ul li a {
	color: var(--font-color);
	display: block;
	text-align: left;
}

.sjj_nav ul li i svg {
	width: 25px;
	height: 25px;
	fill: #333;
}

.sjj_nav ul li .sjj_nav_i_se svg {
	fill: #333;
}

.sjj_nav ul li ul li>ul {
	margin-left: 10px
}

.sjj_nav ul li ul li {
	border-top: none;
}

.sjj_nav ul li ul li a {
	padding: 0 30px;
}


.plr15 {
	padding-left: 15px;
	padding-right: 15px;
}

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

.bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.img_list2 {
	width: 100%;
	margin: 0 auto;
}

.img_list2 ul {
	display: flex;
	flex-wrap: wrap;
}

.img_list2 ul li {
	width: 50%;
	font-size: 0;
	padding: 0 15px;
}

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

.img_list3 {
	width: 100%;
	margin: 0 auto;
}

.img_list3 ul {
	display: flex;
	flex-wrap: wrap;
}

.img_list3 ul li {
	width: 33.33%;
	font-size: 0;
	padding: 0 15px;
}

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

.img_list4 {
	width: 100%;
	margin: 0 auto;
}

.img_list4 ul {
	display: flex;
	flex-wrap: wrap;
}

.img_list4 ul li {
	width: 25%;
	font-size: 0;
	padding: 0 15px;
}

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


.pd50 {
	padding: 50px 0;
}


/* bannerbox */
/* .bannerbox{width: 100%;}
.bannerbox .mySwiper1{width: 100%;}
.bannerbox .mySwiper1 .swiper-slide a{display: block;font-size: 0;width: 100%;}
.bannerbox .mySwiper1 .swiper-slide a img{width: 100%;}

.prev_btn,.next_btn{font-size: 20px;position: absolute;top: 50%;z-index: 9;line-height: 50px;height: 50px;width: 30px;text-align: center;transform: translateY(-50%);vertical-align: middle;cursor: pointer;color: white;background: rgba(0,0,0,.1);}
.prev_btn{left: 0;}
.next_btn{right: 0;}
.mySwiper1 .swiper-pagination-bullet {font-size: 0px;width: 14px;height: 14px;background-color: rgba(0,0,0,0.2);}
.mySwiper1 .swiper-pagination-bullet-active{background: var(--primary-color);} */
/* .bannerbox {
	width: 100%;
	margin: 0 auto;
	background: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 100%);
}

.banner {
	width: 100%;
	margin: 0 auto;
	max-width: 1464px;
}

.b_top {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 16px 0;
}

.b_top .textbox {
	width: 45%;
}

.b_top .imgbox {
	width: 48%;
	font-size: 0;
	border-radius: 10px;
	overflow: hidden;
}

.b_top .imgbox img {
	width: 100%;
}

.b_top .textbox h1 {
	font-size: 37px;
	color: #fff;
	font-weight: bold;
	letter-spacing: -1px;
	line-height: 49px;
}

.b_top .textbox h1 span {
	color: #bae6fd;
	font-weight: bold;
}

.b_top .textbox li {
	font-size: 20px;
	color: #fff;
	letter-spacing: -1px;
	line-height: 30px;
	margin-top: 20px;
}

.b_top .textbox p {
	font-size: 16px;
	color: #fff;
	letter-spacing: -1px;
	line-height: 30px;
}

.b_top .textbox .b_list {
	width: 100%;
	margin-top: 24px;
	overflow: hidden;
}

.b_top .textbox .b_list ul li {
	font-size: 20px;
	color: #dbeafe;
	line-height: 28px;
}

.b_bot {
	width: 100%;
	margin-top: 80px;
}

.b_bot p {
	text-align: center;
	font-size: 16px;
	color: #bfdbfe;
	margin-bottom: 24px;
}

.b_bot .bb_list {
	width: 100%;
}

.b_bot .bb_list ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
}

.b_bot .bb_list ul li {
	color: #bfdbfe;
	font-size: 14px;
	margin-top: 8px;
}

.fill-gray-50 {
	fill: #f9fafb;
}

.b_svg svg {
	height: 96px;
	width: 100%;
} */


.bannerbox{width: 100%;margin: 0 auto;padding: 404px 0;background-repeat: no-repeat;background-size: cover;background-position: center;}
.bannerbox .text{max-width: 1000px;}
.bannerbox .text h1{font-size: 60px;color: #0d3e67;font-weight: bold;margin-bottom: 10px;}
.bannerbox .text h3{font-size: 30px;color: #25674c;margin-bottom: 20px;}
.bannerbox .text .b_btn{width: 100%;}
.bannerbox .text .b_btn .btn1{background: linear-gradient(to right,#0c59a7,#0489de);width: 270px;height: 50px;border-radius: 50px;font-size: 20px;color: #fff;line-height: 50px;text-align: center;display: inline-block;}
.bannerbox .text .b_btn .btn2{margin-left: 8px;display: inline-block;height: 50px;border-radius: 50px;border: 1px solid #efefef;background: #fff;font-size: 20px;width: 180px;text-align: center;color: #0d3e67;line-height: 50px;}




/* footer */
.out_top {
	position: fixed;
	right: 32px;
	bottom: 32px;
	z-index: 999;
	width: 48px;
	height: 48px;
	background: var(--primary-color);
	font-size: 30px;
	color: #fff;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footerbox {
	width: 100%;
	margin: 0 auto;
}

.footer {
	width: 100%;
	margin: 0 auto;
	background: #0f172a;
	padding: 48px 16px;
}

.f_top {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 32px;
}

.f_top>ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

	.f_top > ul > li {
		width: 24%;
		font-size: 16px;
		color: #9ca3af;
		line-height: 2em;
	}

.f_top ul li h3 {
	font-size: 20px;
	color: #fff;
	margin-bottom: 24px;
	font-weight: 600;
}

.f_top ul li ul li p {
	font-size: 16px;
	color: #9ca3af;
}

.f_top ul li ul li a {
	font-size: 16px;
	color: #9ca3af;
	line-height: 2em;
}

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

.f_top ul li ul li i {
	margin-right: 10px;
	font-size: 20px;
	width: 20px;
}

.f_bot {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 32px;
	border-top: 1px solid #1f2937;
}

.f_bot p {
	font-size: 16px;
	color: #9ca3af;
}

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

.f_link a {
	margin-left: 24px;
	display: inline-block;
	font-size: 16px;
	color: #9ca3af;
}

.f_link a:first-child {
	margin-left: 0;
}


.i1_tit {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 60px;
	max-width: 670px;
}

.i1_tit h3 {
	font-size: 36px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 20px;
}

.i1_tit p {
	font-size: 16px;
	color: #475569;
}




/* 通用内页 */
.inbannerbox {
	position: relative;
	width: 100%;
	margin: 0 auto;
	font-size: 0;
}

.inbannerbox img {
	width: 100%;
}

.insidebox {
	width: 100%;
	margin: 0 auto;
}

.insidebox .inside {
	width: 100%;
	box-sizing: border-box;
}


/* ================首页样式========================= */
.index1box {
	width: 100%;
	margin: 0 auto;
}

.index1 {
	width: 100%;
	margin: 0 auto;
}

.i1_content {
	width: 100%;
	margin: 0 auto;
}

.i1_content>ul {
	display: flex;
	flex-wrap: wrap;
}

.i1_content>ul>li {
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	width: 23%;
	margin-left: 1%;
	margin-bottom: 30px;
	padding: 24px;
	border-radius: 10px;
	transition: all 0.5s;
}

.i1_content>ul>li:nth-child(3n) {
	margin-right: 0;
}

.i1_content>ul>li:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.i1_content ul li .inner {
	width: 100%;
}

.i1_content ul li .inner h3 {
	margin-bottom: 12px;
	font-size: 20px;
	color: #1e293b;
	font-weight: 600;
}

.i1_content ul li .inner .yuan {
	width: 100%;
	/*height: 64px;*/
	border-radius: 50%;
	background: #f0f9ff;
	margin-bottom: 24px;
}

.i1_content ul li .inner p {
	font-size: 16px;
	color: #475569;
	margin-bottom: 16px;
}

.i1_content ul li .inner .list {
	width: 100%;
	margin-bottom: 24px;
	height: 110px;
}

.i1_content ul li .inner .list ul li {
	font-size: 16px;
	color: #1e293b;
	margin-top: 8px;
}

.i1_content ul li .inner .list ul li i {
	margin-right: 8px;
	color: #22c55e;
}

.i1_content ul li .inner .more {
	width: 100%;
}

.i1_content ul li .inner .more a {
	font-size: 16px;
	color: #0284c7;
	font-weight: 600;
}

.i3_content ul li .more {
	width: 100%;
	margin: 0 0 14px 24px;
}

.i3_content ul li .more a {
	font-size: 16px;
	color: #0284c7;
	font-weight: 600;
}

.i3_content ul li .more1 a {
	font-size: 16px;
	color: #0284c7;
	font-weight: 600;
}

.i3_content ul li .more1 {
	width: 100%;
	margin: 14px 0 14px 24px;
}


.index2box {
	width: 100%;
	margin: 0 auto;
}

.index2 {
	width: 100%;
	margin: 0 auto;
}

.i2_content {
	width: 100%;
	margin: 0 auto;
}

.i2_content ul {
	display: flex;
	flex-wrap: wrap;
}

.i2_content ul li {
	width: 31%;
	margin-left: 2%;
	margin-bottom: 30px;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	padding: 24px;
	background-color: #fff;
	border-radius: 10px;
}

.i2_content ul li:nth-child(4n) {
	margin-right: 0;
}

.i2_content ul li .inner {
	width: 100%;
}

.i2_content ul li .inner .imgbox {
	width: 100%;
	font-size: 0;
}

.i2_content ul li .inner .imgbox img {
	width: 100%;
	height: 276px;
	object-fit: cover
}

.i2_content ul li .inner .num {
	margin-top: -32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.i2_content ul li .inner .num span {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--primary-color);
	border-radius: 50%;
	background-color: #e0f2fe;
	font-weight: bold;
}

.i2_content ul li .inner .textbox {
	width: 100%;
	text-align: center;
	margin-top: 24px;
	/* margin-bottom: 24px; */
}

.i2_content ul li .inner .textbox p {
	font-size: 20px;
	color: #1e293b;
	font-weight: bold;
}




.index3box {
	width: 100%;
	margin: 0 auto;
}

.index3 {
	width: 100%;
	margin: 0 auto;
}

.i3_content {
	width: 100%;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.i3_content ul {
	display: flex;
	flex-wrap: wrap;
}

.i3_content ul li {
	width: 32%;
	margin-right: 2%;
	margin-bottom: 30px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.i3_content ul li:nth-child(3n) {
	margin-right: 0;
}

.i3_content ul li .imgbox {
	width: 100%;
	font-size: 0;
	position: relative;
}

.i3_content ul li .imgbox img {
	width: 100%;
	height: 316px;
	object-fit: cover;
}

.i3_content ul li .imgbox .text {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 16px;
	background: linear-gradient(to top, rgb(0 0 0 / 0.7), transparent);
}

.i3_content ul li .imgbox .text h3 {
	font-size: 20px;
	color: #fff;
}

.i3_content ul li .imgbox .text p {
	font-size: 16px;
	color: #dbeafe;
}

.i3_content ul li .textbox {
	width: 100%;
	padding: 24px;
}

.i3_content ul li .textbox .desc {
	font-size: 16px;
	color: #475569;
	line-height: 24px;
	overflow: hidden;
	/* text-overflow: ellipsis; */
	display: -webkit-box;
	-webkit-line-clamp: 9;
	-webkit-box-orient: vertical;
}

.i3_content ul li .textbox .tag {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.i3_content ul li .textbox .tag span {
	display: inline-block;
	padding: 2px 10px;
	background: #dbeafe;
	font-size: 12px;
	color: #1e40af;
	margin-right: 8px;
}



img {
	max-width: 100%;
	width: auto;
}


.index4box {
	width: 100%;
	margin: 0 auto;
}

.index4 {
	width: 100%;
	margin: 0 auto;
}

.i4_content {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.i4_left {
	width: 48%;
}

.i4_right {
	width: 48%;
}

.i4_left .imgbox {
	width: 100%;
	font-size: 0;
}

.i4_left .imgbox img {
	width: 100%;
}

.i4_right .tit {
	width: 100%;
}

.i4_right .tit h3 {
	font-size: 24px;
	color: #1e293b;
	margin-bottom: 24px;
	font-weight: 600;
}

.i4_right .tit p {
	font-size: 16px;
	color: #475569;
	margin-bottom: 32px;
}

.i4_list {
	width: 100%;
}

.i4_list ul li {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.i4_list ul li .yuan {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: #e0f2fe;
	margin-right: 16px;
}

.i4_list ul li .textbox {
	flex: 1;
}

.i4_list ul li .textbox h3 {
	font-size: 18px;
	color: #1e293b;
	margin-bottom: 2px;
	font-weight: 600;
}

.i4_list ul li .textbox p {
	font-size: 16px;
	color: #475569;
}

.i4_bot {
	width: 100%;
	padding: 16px;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.i4_bot .tit {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.i4_bot .tit h3 {
	font-size: 16px;
	color: #1e293b;
}

.i4_bot .tit span {
	display: inline-block;
	padding: 4px 8px;
	background: #dcfce7;
	font-size: 12px;
	color: #166534;
	border-radius: 50px;
}

.i4_bot .imgbox {
	width: 100%;
	font-size: 0;
	padding: 16px 0;
	border-radius: 8px;
	overflow: hidden;
}

.i4_bot .imgbox img {
	width: 100%;
}

.i4_bot .i4_form {
	width: 100%;
	display: flex;
	align-items: center;
	border-radius: 10px;
	overflow: hidden;
}

.i4_bot .i4_form input {
	padding: 8px 16px;
	border: 1px solid #d1d5db;
	height: 42px;
	flex: 1;
}

.i4_bot .i4_form button {
	background: var(--primary-color);
	font-size: 20px;
	color: #fff;
	padding: 8px 16px;
	height: 42px;
}



.index5box {
	width: 100%;
	margin: 0 auto;
}

.index5 {
	width: 100%;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.i5_content {
	width: 100%;
	margin: 0 auto;
}

.i5_content ul {
	display: flex;
	flex-wrap: wrap;
}

.i5_content ul li:nth-child(3n) {
	margin-right: 2%;
}

.i5_content ul li {
	width: 31%;
	margin-right: 2%;
	margin-bottom: 30px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	padding: 24px;
}

.i5_content ul li .inner {
	width: 100%;
}

.i5_content ul li .top {
	width: 100%;
	margin-top: 16px;
}

.i5_content ul li .top p {
	font-size: 16px;
	color: #475569;
	margin-bottom: 24px;
}

.i5_content ul li .bot {
	width: 100%;
	display: flex;
	align-items: center;
}

.i5_content ul li .bot .yuan {
	width: 48px;
	height: 48px;
	background: #e5e7eb;
	margin-right: 16px;
	border-radius: 100px;
}

.i4_list ul li .yuan {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: #e0f2fe;
	margin-right: 16px;
}

.i5_content ul li .bot .text {
	flex: 1;
}

.i5_content ul li .bot .text h3 {
	font-size: 16px;
	color: #1e293b;
	margin-bottom: 2px;
	font-weight: 600;
}

.i5_content ul li .bot .text p {
	font-size: 14px;
	color: #64748b;
}



.index6box {
	width: 100%;
	margin: 0 auto;
}

.index6 {
	width: 100%;
	margin: 0 auto;
}
.i6_content{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.i6_left{width: 48%;}
.i6_right{width: 48%;font-size: 16px;color: #333;}
.i6_left .i6l_tit{width: 100%;margin-bottom: 30px;}
.i6_left .i6l_tit h3{font-size: 20px;color: #333;font-weight: 600;}
.i6_left .form{width: 100%;margin: 0 auto;}
.i6_left .form ul li{width: 100%;margin-bottom: 20px;}
.i6_left .form ul li:last-child{margin-bottom: 0;}
.i6_left .form ul li p{font-size: 16px;color: #333;margin-bottom: 8px;}
.i6_left .form ul li .i6_text,.i6_left .form ul li select,.i6_left .form ul li textarea{width: 100%;border: 1px solid #efefef;height: 40px;line-height: 40px;border-radius: 5px;font-size: 16px;color: #666;}
.i6_left .form ul li textarea{height: 200px;}
.i6_left .form ul li .tip{font-size: 14px;color: #000;}
.i6_left .form ul li .i6_btn{cursor: pointer;background: #0ea5e9;font-size: 16px;color: #fff;padding: 10px 30px;border-radius: 5px;}
.ys{font-size: 14px;color: #000;margin-top: 30px;}

.i6_right ul li{width: 100%;margin-bottom: 10px;display: flex;align-items: center;}
.i6_right ul li:last-child{margin-bottom: 0;}
.i6_right ul li .icon{font-size: 20px;margin-right: 10px;}
.i6_right ul li .icon img{width: 25px;}
.i6_right ul li p{font-size: 18px;color: #333;}












@media only screen and (max-width: 980px) {
	.headerbox {
		display: none;
	}

	.sp_header {
		display: flex;
	}

	.height {
		height: 70px;
	}

	.img_list2 ul li,
	.img_list3 ul li,
	.img_list4 ul li {
		width: 50%;
		margin-bottom: 15px;
	}

	.f_top>ul>li {
		width: 100%;
		margin-bottom: 20px;
	}

	/* .banner {
		padding: 0 15px;
	}

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

	.b_top .textbox h1 {
		font-size: 20px;
		line-height: 30px;
	}

	.b_top .imgbox {
		width: 100%;
	}

	.b_bot .bb_list ul {
		flex-wrap: wrap;
		gap: 20px;
	}

	.b_bot .bb_list ul li {
		margin-bottom: 10px;
	} */

	.i1_tit h3 {
		font-size: 30px;
	}

	.i1_content>ul {
		justify-content: space-between;
	}

	.i1_content>ul>li {
		width: 49%;
		margin-right: 0 !important;
	}

	.i2_content ul {
		justify-content: space-between;
	}

	.i2_content ul li {
		width: 49%;
		margin-right: 0 !important;
	}

	.i3_content ul {
		justify-content: space-between;
	}

	.i3_content ul li {
		width: 49%;
		margin-right: 0 !important;
	}

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

	.i4_right {
		width: 100%;
	}

	.i5_content ul {
		justify-content: space-between;
	}

	.i5_content ul li {
		width: 49%;
		margin-right: 0 !important;
	}

	.i6_left{width: 100%;margin-bottom: 30px;}
	.i6_right{width: 100%;}


	.bannerbox{padding: 150px 0;}
	.bannerbox .text h1{font-size: 35px;}
	.bannerbox .text h3{font-size: 20px;}
	.bannerbox .text .b_btn .btn1 {font-size: 16px;margin-bottom: 10px;}
	.bannerbox .text .b_btn .btn2{font-size: 16px;margin-bottom: 10px;}
}


@media only screen and (max-width: 680px) {

	.img_list2 ul li,
	.img_list3 ul li,
	.img_list4 ul li {
		width: 100%;
	}

	.i1_content>ul>li {
		width: 100%;
	}

	.i2_content ul li {
		width: 100%;
	}

	.i3_content ul li {
		width: 100%;
	}

	.i5_content ul li {
		width: 100%;
	}

}