@charset "UTF-8";

html {
	width: 100%;
}

body {
	font-size: 16px;
	background: #fff;
	font-family: "Microsoft Yahei", "Arial", Verdana, Arial, sans-serif;
	line-height: 28px;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
}

ol,
ul,
li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #333;
	-webkit-tap-highlight-color: rgba(255, 0, 0, 0);
	transition: all .3s ease;
	cursor: pointer;
}

em,
i {
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
	font-weight: normal;
}

strong {
	font-weight: 800;
}

img {
	border: 0;
	height: auto;
	vertical-align: middle;
	/*display: block;*/
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,
textarea,
select,
button {
	border: 0;
	background: none;
	outline: 0;
	font-family: "Microsoft Yahei";
}

input[type="button"],
input[type="text"],
input[type="submit"] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

input,
input:focus,
input:active {
	user-select: text;
}

button:focus {
	outline: 0;
}

textarea {
	resize: none;
}

video {
	outline: none;
	display: block;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.clearfix:after {
	content: "";
	*zoom: 1;
	display: block;
	visibility: hidden;
	height: 0;
	clear: both;
	overflow: hidden;
}

.relative {
	position: relative;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.container {
	position: relative;
	width: 1400px;
	margin: 0 auto;
}

.w1600 {
	position: relative;
	width: 1600px;
	margin: 0 auto;
}

.w1400 {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.flex {
	display: flex;
	height: 100%;
}

.content_box {
	box-sizing: border-box;
	width: 100%;
	margin: auto;
	padding-top: 100px;
}

.pd50 {
	padding: 0 50px;
}


@font-face {
	font-family: impact;
	src: url(../fonts/impact.ttf);
}


/******************************** header start ***************************/
.header {
	padding: 0 70px;
	display: flex;
	position: absolute;
	top: 10px;
	left: 0;
	z-index: 9999;
	width: 100%;
	justify-content: space-between;
}

.h_logo {
	margin-top: 25px;
}

.h_nav {
	/* margin-left: auto; */
	margin-top: 30px;
	width: calc(100% - 680px);
}

.h_nav>ul {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
}

.h_nav>ul>li {
	position: relative;
}

.h_nav>ul>li>a {
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 30px;
	position: relative;
}

.h_nav>ul>li>a::after {
	content: "";
	display: block;
	width: 0%;
	height: 3px;
	background: #FDE686;
	position: absolute;
	top: -30px;
	left: 50%;
	transition: .3s;
}

.h_nav>ul>li:hover>a,
.h_nav>ul>li.active>a {
	color: #FDE686;
}

.h_nav>ul>li:hover>a::after,
.h_nav>ul>li.active>a::after {
	width: 120%;
	left: -10%;
}

.h_more {
	display: flex;
	margin-top: 30px;
}

.h_more .img {
	margin-right: 20px;
}

.h_more .desc img {
	position: relative;
	top: -2px;
	margin-right: 10px;
}

.h_more .desc p {
	font-size: 20px;
	color: #FDE686;
	line-height: 30px;
}

.subnav {
	width: 150px;
	background: #ffffff;
	font-size: 12px;
	text-align: left;
	position: absolute;
	left: -35px;
	top: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
	box-shadow: 0 0 16px -4px rgba(0, 0, 0, .3);
	margin-top: 20px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	z-index: 44;
}

.subnav ol {
	padding: 12px 0;
}

.subnav ol li {
	width: 100%;
	margin: 0 !important;
}

.subnav a {
	transition: .3s;
	padding: 0 10px;
	box-sizing: border-box;
	width: 100%;
	display: block;
	height: 50px;
	line-height: 50px;
	color: #333;
	font-size: 14px;
	text-align: center;
}

.subnav a:hover {
	background: #FF9D45;
	color: #fff !important;
}

.h_nav ul>li:hover .subnav {
	height: auto;
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}



.wap_header {
	width: 100%;
	height: 60px;
	padding: 0 12px;
	display: none;
	justify-content: space-between;
	align-items: center;
	background: #2FB1BF;
	position: fixed;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: 999999;
	box-sizing: border-box;
}

.wap_header .toggle {
	display: block;
	width: 25px;
	height: 24px;
	position: relative;
	z-index: 6;
}

.wap_header .toggle i {
	display: block;
	width: 25px;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 0;
	transition: all ease .35s;
}

.wap_header .toggle i:nth-of-type(1) {
	top: 0;
}

.wap_header .toggle i:nth-of-type(2) {
	top: 8px;
}

.wap_header .toggle i:nth-of-type(3) {
	top: 16px;
}

.wap_header .toggle.on i {
	background: #fff;
}

.wap_header .toggle.on i:nth-of-type(1) {
	top: 8px;
	transform: rotate(45deg);
}

.wap_header .toggle.on i:nth-of-type(2) {
	width: 0;
}

.wap_header .toggle.on i:nth-of-type(3) {
	top: 8px;
	transform: rotate(-45deg);
}

.wap_header #h60 {
	height: 60px;
}

.wap_header .maskbg {
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, .5);
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 3;
}

.wap_header .maskbg.on {
	display: block;
}

.wap_header .nav {
	width: 240px;
	background: #2FB1BF;
	height: 100vh;
	padding: 56px 0 20px 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 5;
	transform: translateX(100%);
	opacity: 0;
	transition: transform .4s, opacity .4s;
}

.wap_header .nav.open {
	transform: translateX(0);
	opacity: 1;
}

.wap_header .nav>ul {
	height: calc(100vh - 70px);
	margin: 0 auto;
	position: relative;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.wap_header .nav ul li {
	border-top: 1px solid rgba(255, 255, 255, .5);
	margin: 0 20px;
	line-height: 40px;
	font-size: 14px;
	position: relative;
}

.wap_header .nav>ul>li:first-child {
	border-top: 0 none;
}

.wap_header .nav ul li a {
	height: 60px;
	line-height: 60px;
	display: block;
	padding-right: 30px;
	font-size: 14px;
	color: #fff;
}

.wap_header .nav ul li a:active {
	color: #fff !important;
}

.wap_header .nav ul li ul {
	display: none;
}

.wap_header .nav ul li i {
	width: 30px;
	height: 60px;
	font-size: 16px;
	color: #9c9c9c;
	position: absolute;
	right: 0;
	top: 0;
	transition: transform .5s;
}

.wap_header .nav ul li i.down {
	color: #fff;
	transform: rotate(90deg);
}

.wap_header .nav ul li .icon {
	background: url(../images/yjt.png)no-repeat;
	background-size: 20px !important;
	background-position: center !important;
}

.wap_header .nav ul li ul li {
	margin-right: 0;
}

.wap_header .nav ul li ul li a {
	color: #fff;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
}

.wap_header .nav ul li ul li i {
	top: -10px;
}

.wap_header .logo {
	float: left;
	margin-top: 10px;
	position: relative;
	height: 40px;
}
.wap_header .logo a{display: block;height: 100%;}
.wap_header .logo img {
	height: 100%;
}

.wap_header .toggle {
	float: right;
	margin-top: 21px;
}

.wap_header .dropdown {
	float: right;
	margin-top: 18px;
	margin-right: 20px;
	position: relative;
}

.wap_header #dLabel {
	border: 1px solid #9C9C9C;
	background: none;
	color: #9C9C9C;
	padding: 2px 5px;
	font-size: 12px;
	position: relative;
}

.wap_header .dropdown-menu {
	background: #222;
	min-width: auto !important;
	text-align: center;
}

.wap_header .dropdown-menu li a {
	color: #9C9C9C !important;
	transition: .3s;
	font-size: 14px !important;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 0;
	margin: 2px 0 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 4px;
	-webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	width: 100%;
}

.open>.dropdown-menu {
	display: block;
}

.caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 4px dashed;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

/******************************** header end ***************************/






/******************************** banner start ***************************/
.banner {
	position: relative;
}

.banner .swiper {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.banner .swiper-slide {
	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;
}

.banner .swiper-slide img {
	width: 100%;
}

.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
	display: none;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
	width: 50px;
	height: 50px;
	top: 50%;
	margin-top: -25px;
	border-radius: 100%;
	border: 1px solid #FFFFFF;
	background-position: center !important;
	background-repeat: no-repeat !important;
	transition: .3s;
}

.banner .swiper-button-next:hover,
.banner .swiper-button-prev:hover {
	background-color: #1166DD;
	border-color: #1166DD;
}

.banner .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #FFFFFF;
	opacity: 0.5;
	border-radius: 5px;
	position: relative;
}

.banner .swiper-pagination-bullet-active {
	width: 14px;
	height: 14px;
	border-radius: 7px;
	opacity: 1;
	top: 2px;
}

.wap_banner {
	display: none;
}

/******************************** banner end ***************************/



.ind_tit {
	text-align: center;
	padding: 80px 0 120px;
}

.ind_tit p {
	font-size: 40px;
	font-weight: normal;
	color: #222222;
	line-height: 50px;
	display: block;
	margin-bottom: 32px;
}

.ind_tit p b {
	color: #F24D7C;
	font-weight: bold;
}

.ind_tit span {
	font-size: 20px;
	font-weight: bold;
	color: #F24D7C;
	line-height: 30px;
	display: block;
}

.ind_tit.yellow p {
	color: #FED426;
}

.ind_tit.yellow p b {
	color: #FED426;
}

.ind_tit.yellow span {
	color: #FFFFFF;
}

/******************************** sec1 start ***************************/
.sec1 {
	padding-bottom: 145px;
	background: #F6FCFE;
}

.sec1_list {
	display: flex;
}

.sec1_item {
	width: calc(20% - 25px);
	margin-right: 30px;
	background: #B88DFC;
	text-align: center;
	padding: 60px 12px 35px;
	border-radius: 10px;
	position: relative;
	z-index: 2;

}
.sec1_item span{
    transition: all 1s;

}
.sec1_item:hover span{
    transform: rotateX(360deg);
    color: yellow;
}

.sec1_item::before {
	content: "";
	display: block;
	position: absolute;
	left: 8px;
	top: 10px;
	width: 100%;
	height: 100%;
	background: rgba(184, 141, 252, 0.2);
	border-radius: 10px;
	z-index: 1;
}

.sec1_item:nth-of-type(even)::before {
	background: rgba(5, 171, 180, 0.2);
}

.sec1_item:nth-of-type(even) {
	background: #2FB1BF;
}

.sec1_item:nth-of-type(5n) {
	margin-right: 0;
}

.sec1_item .tit {
	font-size: 32px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 36px;
	text-shadow: 0px 5px 8px rgba(0, 0, 0, 0.19);
	position: relative;
	z-index: 9;
}

.sec1_item .tit .i {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 32px;
	height: 1px;
	background: #FFFFFF;
}

.sec1_item .tit .i1 {
	margin-bottom: 16px;
}

.sec1_item .tit .i2 {
	margin-top: 22px;
	margin-bottom: 32px;
}

.sec1_item .desc {
	font-size: 20px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 48px;
	text-shadow: 0px 5px 8px rgba(0, 0, 0, 0.19);
	position: relative;
	z-index: 9;
}

.sec1_item .desc span {
	display: inline-block;
}


.sec1_item:nth-of-type(1) .desc span {
	width: 100%;
}

.sec1_item:nth-of-type(3) .desc span:nth-of-type(1) {
	width: 100%;
}

.sec1_item:nth-of-type(3) .desc span:nth-of-type(2) {
	width: 100%;
}


/******************************** sec1 end ***************************/







/******************************** sec2 start ***************************/
.sec2 {
	background: url(../images/sec2_bg.jpg) center/cover;
	padding-bottom: 160px;
}

.sec2_box {
	display: flex;
	justify-content: space-between;
}

.sec2_box .img {
	width: 740px;
	padding-right: 10px;
	padding-bottom: 10px;
	position: relative;
}

.sec2_box .img::after {
	content: "";
	display: block;
	height: calc(100% - 10px);
	width: calc(100% - 10px);
	position: absolute;
	right: 0;
	bottom: 0;
	background: rgba(184, 141, 252, 0.6);
	border-radius: 120px 0px 160px 0px;
}

.sec2_box .img img {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 99;
	overflow: hidden;
	border-radius: 120px 0px 160px 0px;
	object-fit: cover;
	object-position: center;
}

.sec2_box .desc {
	width: calc(100% - 800px);
}

.sec2_box .desc .info {
	padding: 40px 0 100px;
	font-size: 16px;
	color: #333333;
	line-height: 38px;
	text-indent: 2em;
}

.sec2_box .desc .btns a {
	font-size: 18px;
	font-weight: bold;
	line-height: 46px;
	display: inline-block;
	text-align: center;
	padding: 0 40px;
	border-radius: 24px;
}

.sec2_box .desc .btns a.a1 {
	background: #F24D7C;
	border: 1px solid #F24D7C;
	color: #FFFFFF;
}

.sec2_box .desc .btns a.a2 {
	border: 1px solid #BFBFBF;
	color: #666666;
	margin-left: 10px;
}

.sec2_box .desc .btns a.a1:hover {
	border: 1px solid #BFBFBF;
	color: #666666;
	background: #fff;
}

.sec2_box .desc .btns a.a2:hover {
	background: #F24D7C;
	border: 1px solid #F24D7C;
	color: #FFFFFF;
}


/******************************** sec2 end ***************************/







/******************************** sec3 start ***************************/
.sec3 {
	/* background: url(../images/sec3_bg.jpg); */
	background: url(../images/8.5shouye_count.jpg);

	background-position: center top;
	background-size: cover;
}

.sec3_desc {
	width: 50%;
	padding: 150px 0 220px;
}

.sec3_desc .atit {
	font-size: 46px;
	font-weight: bold;
	color: #F24D7C;
	line-height: 66px;
	width: 88%;
}

.sec3_desc .btit {
	font-size: 18px;
	color: #434343;
	line-height: 30px;
	text-indent: 2em;
	margin: 35px 0 50px;
	width: 87%;
}

.sec3_desc .ctit {}

.sec3_desc .ctit a {
	line-height: 48px;
	width: 168px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #FFFFFF;
	background: #F24D7C;
	display: inline-block;
	border-radius: 24px;
}

.sec3_desc .ctit a.a1 {}

.sec3_desc .ctit a.a2 {
	background: #FFFFFF;
	color: #444444;
	margin-left: 10px;
}

.sec3_desc .ctit a.a1:hover {
	background: #fff;
	color: #444;
}

.sec3_desc .ctit a.a2:hover {
	background: #F24D7C;
	color: #fff;
}


.sec3_list {
	display: flex;
	justify-content: space-between;
	padding: 130px 0 180px;
}

.sec3_item {
	width: 380px;
	text-align: center;
}

.sec3_item .icon {
	display: block;
	margin: 0 auto;
	width: 186px;
	height: 186px;
	background-color: #33B7C6;
	border-radius: 50%;
	box-shadow: 0px 0px 0px 10px rgba(51, 183, 198, 0.15);
	background-image: url(../images/ind_icon1.png);
	background-repeat: no-repeat;
	transition: .3s;
}

.sec3_item .icon1 {
	background-position: 55px 55px !important;
}

.sec3_item .icon2 {
	background-position: -365px 55px !important;
}

.sec3_item .icon3 {
	background-position: -785px 50px !important;
}

.sec3_item .atit {
	font-size: 30px;
	font-weight: bold;
	color: #FC9627;
	line-height: 40px;
	margin: 55px 0 22px;
}

.sec3_item .btit {
	font-size: 16px;
	color: #555555;
	line-height: 28px;
}

.sec3_item:hover .icon {
	background-image: url(../images/ind_icon2.png);
}

/******************************** sec3 end ***************************/







/******************************** sec4 start ***************************/
.sec4 {
	background: url(../images/sec4_bg.jpg) center/cover;
	padding-bottom: 160px;
}

.sec4_list {
	display: flex;
	background: #FFFFFF;
	border-radius: 24px;
	overflow: hidden;
	margin-top: -30px;
}

.sec4_item {
	width: 100%;
	text-align: center;
	padding: 70px 0 50px;
}

.sec4_item+.sec4_item {
	border-left: 1px solid #E5E5E5;
}

.sec4_item .icon {}

.sec4_item .atit {
	font-size: 28px;
	font-weight: bold;
	color: #F24D7C;
	margin: 35px 0 25px;
}

.sec4_item .btit {
	font-size: 18px;
	color: #444444;
	line-height: 30px;
	max-width: 260px;
	margin: 0 auto 0;
}



/******************************** sec4 end ***************************/







/******************************** sec5 start ***************************/
.sec5 {
	background: url(../images/sec5_bg.jpg) center/cover;
	padding-bottom: 200px;
}

.xwzx_sel_list {
	display: flex;
	justify-content: center;
	margin: -50px 0 100px;
}

.xwzx_sel {
	display: block;
	width: 200px;
	text-align: center;
	height: 50px;
	line-height: 52px;
	background: #33B7C6;
	border-radius: 10px;
	font-size: 26px;
	color: #FFFFFF;
}

.xwzx_sel.active {
	background: #F24D7C;
}

.xwzx_sel+.xwzx_sel {
	margin-left: 15px;
}

.xwzx_list {
	display: none;
	justify-content: space-between;
}

.xwzx_list.active {
	display: flex;
}

.xw_box {
	width: 650px;
}

.zx_box {
	width: calc(100% - 750px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.xw_item {
	background: #F4F4F4;
}

.xw_item .img {
	overflow: hidden;
	height: 300px;
}

.xw_item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}

.xw_item .desc {
	padding: 25px 15px 35px;
}

.xw_item .desc .atit {
	font-size: 24px;
	font-weight: bold;
	color: #141414;
	line-height: 34px;
	transition: .3s;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.xw_item .desc .btit {
	font-size: 15px;
	font-weight: bold;
	color: #E158FF;
	line-height: 22px;
	margin: 16px 0 16px;
}

.xw_item .desc .ctit {
	font-size: 15px;
	color: #777777;
	line-height: 28px;
	height: 84px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.xw_item:hover img {
	transform: scale(1.05);
}

.xw_item:hover .desc .atit {
	color: #F24D7C;
}

.zx_item {
	background: #F4F4F4;
}

.zx_item a {
	display: flex;
}

.zx_item .img {
	width: 235px;
	height: 160px;
	overflow: hidden;
}

.zx_item .img img {
	height: 100%;
	width: 100%;
	object-position: center;
	object-fit: cover;
	overflow: hidden;
	transition: .5s;
}

.zx_item .desc {
	width: calc(100% - 235px);
	padding: 20px 10px 10px;
}

.zx_item .desc .atit {
	font-size: 18px;
	font-weight: bold;
	color: #000000;
	line-height: 26px;
	height: 52px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	transition: .3s;
}

.zx_item .desc .btit {
	font-size: 14px;
	color: #777777;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 6px 0 12px;
}

.zx_item .desc .ctit {
	display: block;
	background: url(../images/right.png);
	width: 48px;
	height: 9px;
}

.zx_item:hover img {
	transform: scale(1.05);
}

.zx_item:hover .desc .atit {
	color: #F24D7C;
}


/******************************** sec5 end ***************************/







/******************************** footer start ***************************/
.footer {
	/* background: url(../images/footer_bg.png); */
	background: url(../images/footer_new_img.png);

	background-position: center top;
	background-size: cover;
	margin-top: -80px;
	padding: 30px 0;
}

.foot1 {
	display: flex;
	padding: 100px 0 15px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.foot1 .f_nav {
	display: flex;
	/* width: calc(100% - 800px); */
	justify-content: center;
	/* margin-left: 176px; */
	margin-top: -60px;
}

.foot1 .f_nav dl {}

.foot1 .f_nav dl dt {
	font-size: 20px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 30px;
	margin-bottom: 20px;
}

.foot1 .f_nav dl dd a {
	font-size: 16px;
	color: #FFFFFF;
	line-height: 34px;
}

.foot1 .f_more {
	width: 400px;
	border-left: 1px solid rgba(255, 255, 255, .1);
	padding-left: 15px;
	margin-left: 50px;
	margin-right: 60px;
	margin-top: -60px;
	
}

.foot1 .f_more .text {
	display: flex;
	margin-bottom: 10px;
	max-width: 300px;
}

.foot1 .f_more .text img {
	width: 25px;
	height: 25px;
	display: block;
}

.foot1 .f_more .text p {
	width: calc(100% - 23px);
	display: block;
	padding-left: 15px;
	font-size: 18px;
	color: #FFFFFF;
	line-height: 26px;
}

.foot1 .f_more .text.fs16 p {
	font-size: 16px;
}

.foot1 .f_ewm {
	width: 540px;
}

.ewm_box {
	float: left;
}

.ewm {
	float: left;
}

.ewm .img {
	width: 147px;
	border-radius: 8px;
	overflow: hidden;
	margin: 0 auto;
}

.ewm img {
	width: 100%;
}

.ewm_box+.ewm_box {
	margin-left: 35px;
}

.ewm+.ewm {
	margin-left: 35px;
}

.ewm_box .tit {
	text-align: center;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 30px;
	height: 30px;
	width: 100%;
	display: block;
}

.foot2 {
	/* padding: 30px 0 70px; */
	padding-top: 10px;	
	/* margin-left: 176px; */
}

.foot2 a,
.foot2 span {
	font-size: 14px;
	color: #FFFFFF;
	line-height: 32px;
}



/******************************** footer end ***************************/






.ny_tit {
	text-align: center;
	padding: 200px 0 100px;
}

.ny_tit p {
	font-size: 40px;
	font-weight: bold;
	color: #22ACB3;
	line-height: 46px;
}

.ny_tit span {
	font-size: 20px;
	font-weight: bold;
	color: #E48DDE;
	line-height: 30px;
	display: block;
	margin: 32px 0 5px;
}

.ny_tit.gxkj {
	padding-top: 155px;
}

.ny_tit.gxkj span {
	color: #FD52F7;
}

.ny_tit span b {
	color: #767676;
}

.ny_tit i {
	display: inline-block;
	margin-right: 55px;
	width: 24px;
	height: 6px;
	background: #FED426;
	border-radius: 3px;
	position: relative;
}

.ny_tit i::after {
	content: "";
	display: inline-block;
	width: 52px;
	height: 6px;
	background: #2FB1BF;
	margin-left: 3px;
	border-radius: 3px;
	position: absolute;
	left: 100%;
	top: 0;
}

.ny_tit.white {
	padding-top: 90px;
	padding-bottom: 140px;
}

.ny_tit.white p {
	color: #fff;
}

.ny_tit.white span {
	color: #fff;
}

.ny_tit.white i::after {
	background: #fff;
}

/******************************** 版权登记 start ***************************/
.bqdj_banner {
	background: #2FB1BF;
	overflow: hidden;
	background: url(../images/bqfw2.jpg)center/cover;
}

.bqdj_banner .w1600 {
	height: 800px;
	padding: 100px 0 150px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bqdj_banner .desc {
	position: relative;
}

.bqdj_banner .desc p {
	font-size: 54px;
	font-weight: bold;
	color: #FDE686;
	line-height: 77px;
	position: relative;
}

/* .bqdj_banner .desc p::after{content: "";display: block;background: url(../images/badj_banner2.png);width: 375px;height: 481px;position: absolute;top: 50%;left: -30px;transform: translate(-50%,-50%);margin-top: 15px;} */
.bqdj_banner .desc span {
	font-size: 40px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 77px;
}

.bqdj_banner .img {
	text-align: right;
}

.bddj_ys_box {
	margin-top: -150px;
	margin-bottom: 150px;
}

.bqdj_ys_list {
	background: #FAEDB6;
	border-radius: 50px 50px 0px 0px;
	border: 20px solid #FDDE5F;
	padding: 25px 80px 30px;
	display: flex;
	justify-content: space-around;
}

.bqdj_ys_item {
	width: 186px;
	height: 186px;
	background: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	color: #18969E;
	line-height: 32px;
	box-shadow: 10px 0px 0px 0px rgba(58, 47, 0, 0.2);
}

.bqdj1_box {
	display: flex;
	justify-content: space-between;
}

.bqdj1_box .desc {}

.bqdj1_box .desc .atit {
	font-size: 45px;
	font-weight: bold;
	color: #E48DDE;
	line-height: 43px;
	-webkit-text-stroke: 2px #3E3D3D;
	text-stroke: 2px #3E3D3D;
	padding: 0 0 50px 50px;
}

.bqdj1_box .desc .btit {
	font-size: 18px;
	color: #464646;
	line-height: 38px;
	background: url(../images/dhk1.png);
	width: 1068px;
	height: 306px;
	padding: 105px 50px 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}

.bqdj2_box {
	position: relative;
}

.bqdj2_box img {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: block;
}

.bqdj2_box .desc {
	position: absolute;
	right: 15%;
	top: 15%;
}

.bqdj2_box .desc .bqdj2_item {
	background: #CAD4FD;
	border: 4px solid #7482BE;
	box-shadow: 0px 8px 8px 1px rgba(152, 152, 152, 0.63);
	border-radius: 50px;
	padding: 20px 30px 10px;
	max-width: 500px;
}

.bqdj2_box .desc .bqdj2_item+.bqdj2_item {
	margin-top: 70px;
}

.bqdj2_box .desc .bqdj2_item2 {
	background: #FBE9C2;
	border: 5px solid #FCC179;
}

.bqdj2_box .desc .bqdj2_item p {
	font-size: 37px;
	font-weight: bold;
	color: #323232;
	line-height: 37px;
	padding-bottom: 18px;
}

.bqdj2_box .desc .bqdj2_item span {
	font-size: 20px;
	color: #333333;
	line-height: 24px;
}


.bqdj3 {
	background: url(../images/bqdj3_bg.jpg) center/cover;
}

.bqdj3_box {
	display: flex;
	flex-wrap: wrap;
}

.bqdj3_item_box {
	width: 20%;
}

.bqdj3_item {
	height: 230px;
	width: 230px;
	border-radius: 100%;
	box-shadow: 0px 6px 16px 4px rgba(152, 152, 152, 0.06);
	border: 6px solid #22ACB3;
	padding: 28px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 80px;
	background: #fff;
	transition: .3s;
}

.bqdj3_item .atit {
	position: relative;
	height: 75px;
	width: 75px;
}

.bqdj3_item .atit .img {
	position: absolute;
	top: 0;
	left: 0;
}

.bqdj3_item .atit .img1 {
	opacity: 1;
	transition: .3s;
}

.bqdj3_item .atit .img2 {
	opacity: 0;
	transition: .3s;
}

.bqdj3_item .btit {
	font-size: 25px;
	font-weight: bold;
	color: #FCCE6E;
	line-height: 30px;
	margin-bottom: 25px;
	transition: .3s;
}

.bqdj3_item .ctit {
	font-size: 16px;
	color: #666666;
	line-height: 20px;
	height: 40px;
	transition: .3s;
}

.bqdj3_item .dtit {
	font-size: 25px;
	font-weight: bold;
	color: #FCCE6E;
	line-height: 36px;
	padding-top: 20px;
	transition: .3s;
}

.bqdj3_item:hover {
	background: #FEDD5C;
}

.bqdj3_item:hover .img1 {
	opacity: 0;
}

.bqdj3_item:hover .img2 {
	opacity: 1;
}

.bqdj3_item:hover .btit {
	/* color: #fff; */
	color: #B88DFF;
}

.bqdj3_item:hover .ctit {
	/* color: #fff; */
	color: #B88DFF;

}

.bqdj3_item:hover .dtit {
	color: #B88DFF;
}


.bqdj4_list {
	display: flex;
	border: 5px solid #2FB1BF;
	border-radius: 30px;
	background: #EAF9D0;
	overflow: hidden;
	margin-bottom: 250px;
}

.bqdj4_item {
	width: 25%;
	text-align: center;
	padding: 45px 10px 50px;
	transition: .3s;
	position: relative;
}

.bqdj4_item .atit {
	position: relative;
	width: 120px;
	height: 110px;
	margin: 0 auto;
}

.bqdj4_item .atit .img {
	position: absolute;
	top: 0;
	left: 0;
}

.bqdj4_item .atit .img1 {
	opacity: 1;
	transition: .3s;
}

.bqdj4_item .atit .img2 {
	opacity: 0;
	transition: .3s;
}

.bqdj4_item .btit {
	margin: 35px 0 0px;
	font-size: 24px;
	font-weight: bold;
	color: #4D4E4E;
	line-height: 46px;
	transition: .3s;
}

.bqdj4_item .ctit {
	font-size: 16px;
	color: #4D4E4E;
	line-height: 46px;
	transition: .3s;
}

.bqdj4_item+.bqdj4_item::before {
	content: "";
	display: block;
	width: 3px;
	height: 60%;
	position: absolute;
	left: -1px;
	top: 20%;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px 0px #a8a8a8;
}

.bqdj4_item:hover {
	background: #70C1CA;
}

.bqdj4_item:hover .img1 {
	opacity: 0;
}

.bqdj4_item:hover .img2 {
	opacity: 1;
}

.bqdj4_item:hover .btit {
	color: #fff;
}

.bqdj4_item:hover .ctit {
	color: #fff;
}


.bqdj5 {
	background: url(../images/bqdj5_bg.jpg) center/cover;
	padding-bottom: 130px;
}

.bqdj5 .ny_tit {
	padding-top: 80px;
}

.bqdj5_list {
	display: flex;
	justify-content: space-between;
}

.bqdj5_item {
	display: flex;
	background: #FFFFFF;
	border-radius: 30px;
	width: calc(33.333% - 60px);
	padding: 12px 10px;
}

.bqdj5_item .img {
	width: 158px;
}

.bqdj5_item .img img {
	width: 100%;
}

.bqdj5_item .desc {
	width: calc(100% - 158px);
	padding-left: 40px;
}

.bqdj5_item .desc p {
	font-size: 31px;
	color: #010101;
	line-height: 46px;
	display: block;
	padding: 25px 0 15px 15px;
}

.bqdj5_item .desc span {
	display: inline-block;
	line-height: 35px;
	background: #FED426;
	border-radius: 6px;
	padding: 0 15px;
	font-size: 20px;
	color: #2FB1BF;
	font-weight: bold;
}


.bqdj6_list {
	background: #FBFCDE;
	border: 5px solid #2FB1BF;
	border-radius: 30px;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding: 40px 0 60px;
}

.bqdj6_item {
	width: 50%;
	padding: 20px 50px;
	max-width: 680px;
}

.bqdj6_item .atit {
	font-size: 24px;
	font-weight: bold;
	color: #2FB1BF;
	line-height: 46px;
	position: relative;
}

.bqdj6_item .atit::after {}

.bqdj6_item .btit {
	font-size: 16px;
	color: #282727;
	line-height: 32px;
}

.bqdj6_item .btit span {
	display: inline-block;
	margin-right: 20px;
}

.bqdj6_item .ctit {
	text-align: right;
	padding-right: 100px;
}



.bqdj7 .mySwiper_bqdj7 {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.bqdj7 .swiper-slide {
	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;
}

.bqdj7_box {
	display: flex;
}

.bqdj7_box .img {
	width: 50%;
	text-align: center;
}

.bqdj7_box .desc {
	width: 50%;
	position: relative;
}

.bqdj7_item .atit {
	font-size: 34px;
	font-weight: bold;
	color: #32B4BE;
	line-height: 64px;
	padding: 0px 0px 30px 30px;
}

.bqdj7_item .btit {
	font-size: 22px;
	color: #2B2B2B;
	line-height: 50px;
}

.at7_box {
	position: relative;
	text-align: center;
}

.at7_box .swiper-button-next:after,
.at7_box .swiper-button-prev:after {
	display: none;
}

.at7_box .swiper-button-next,
.at7_box .swiper-button-prev {
	display: inline-block;
	height: 32px;
	width: 103px;
	border: 1px solid #FFD200;
	border-radius: 17px;
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	margin: 0;
	transition: .3s;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #FFD200;
}

.at7_box .swiper-button-next {
	background-image: url(../images/right1.png);
}

.at7_box .swiper-button-prev {
	background-image: url(../images/left1.png);
}

.at7_box .swiper-pagination {
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	margin: 0;
	display: inline-block;
}

.at7_box .swiper-pagination-bullet {
	background: #FFD200;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	width: 16px;
	height: 33px;
	transition: .3s;
	cursor: pointer;
	opacity: 1;
	margin: 0 3px;
}

.at7_box .swiper-pagination-bullet-active {
	width: 42px;
}

.at7_box .swiper-button-next:hover {
	background-image: url(../images/right2.png);
	background-color: rgba(255, 255, 255, 0);
}

.at7_box .swiper-button-prev:hover {
	background-image: url(../images/left2.png);
	background-color: rgba(255, 255, 255, 0);
}


.bqdj8_list {}

.bqdj8_item {
	display: flex;
}

.bqdj8_item .desc {
	width: 50%;
	background: #2FB1BF;
	border-radius: 100px 100px 0px 0px;
	padding: 80px 100px 50px 100px;
}

.bqdj8_item .desc .atit {
	font-size: 34px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 46px;
	margin-bottom: 20px;
}

.bqdj8_item .desc .atit b {
	color: #FED426;
}

.bqdj8_item .desc .btit {}

.bqdj8_item .desc .btit p {
	font-size: 18px;
	color: #FFFFFF;
	line-height: 44px;
	position: relative;
	padding-left: 25px;
}

.bqdj8_item .desc .btit p::after {
	content: "";
	display: block;
	height: 7px;
	width: 7px;
	background: #FFFFFF;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 18px;
}

.bqdj8_item .img {
	width: 50%;
}

.bqdj8_item .img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: right bottom;
}

.bqdj8_item:nth-of-type(even) {
	flex-direction: row-reverse;
}

.bqdj8_item:nth-of-type(even) .desc {
	border-radius: 0px 100px 100px 0px;
}


.bqdj9 {
	background: url(../images/bqdj9_bg.jpg) center/cover;
	padding-bottom: 350px;
}

.bqdj9_list {
	display: flex;
	justify-content: space-between;
}

.bqdj9_item {
	width: calc(20% - 40px);
	background: #99DAE1;
	border: 5px solid #2FB1BF;
	border-radius: 50px;
	padding: 30px 15px 25px;
	text-align: center;
	transition: .3s;
}

.bqdj9_item .icon {
	display: block;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	background-image: url(../images/bqdj91.png);
	background-repeat: no-repeat;
	background-color: #FFFFFF;
	transition: .3s;
	border-radius: 100%;
}

.bqdj9_item .icon1 {
	background-position: 25px 25px !important;
}

.bqdj9_item .icon2 {
	background-position: -155px 25px !important;
}

.bqdj9_item .icon3 {
	background-position: -340px 25px !important;
}

.bqdj9_item .icon4 {
	background-position: -528px 25px !important;
}

.bqdj9_item .icon5 {
	background-position: -708px 25px !important;
}

.bqdj9_item .atit {
	font-size: 38px;
	color: #FFFFFF;
	line-height: 40px;
	margin: 25px 0 14px;
	transition: .3s;
}

.bqdj9_item .btit {
	display: block;
	margin: 0 auto;
	width: 53px;
	height: 3px;
	background: #FFD800;
}

.bqdj9_item .ctit {
	font-size: 25px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 32px;
	margin-top: 22px;
	transition: .3s;
}

.bqdj9_item:hover {
	background: #9061F0;
	border-color: #9061F0;
}

.bqdj9_item:hover .icon {
	background-image: url(../images/bqdj92.png);
}

.bqdj9_item:hover {}

.bqdj9_item:hover {}

.wap_bqdj_banner {
	display: none;
}

.wap_bqdj_banner img {
	display: block;
	width: 100%;
}

/******************************** 版权登记 end ***************************/





/******************************** 高新科技企业 start ***************************/
.gxkj_banner {
	height: 900px;
	background: url(../images/gxkj_banner.jpg) center/cover;
}

.gxkj_banner .w1600 {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.gxkj_banner .atit {
	font-size: 100px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1;
}

.gxkj_banner .btit {
	font-size: 45px;
	color: #FDDF64;
	line-height: 1;
	margin: 60px 0 100px;
}

.gxkj_banner .ctit {
	display: flex;
}

.gxkj_banner .ctit a {
	display: block;
	width: 220px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 20px 0px 20px 0px;
	font-size: 30px;
	font-weight: bold;
}

.gxkj_banner .ctit .a1 {
	background: #DF69FD;
	color: #FFFFFF;
	cursor: pointer;
}

.gxkj_banner .ctit .a2 {
	margin-left: 150px;
	background: #FFFFFF;
	color: #2FB1BF;
}

.gxkj_banner .ctit .a1:hover {
	background: #FFFFFF;
	color: #2FB1BF;
}

.gxkj_banner .ctit .a2:hover {
	background: #DF69FD;
	color: #FFFFFF;
}

.gxkj_bdesc {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #FDE686;
	border-radius: 20px;
	padding: 30px 60px;
}

.gxkj_bdesc b {
	font-size: 25px;
	font-weight: bold;
	color: #DF69FD;
	line-height: 38px;
}

.gxkj_bdesc span {
	font-size: 20px;
	color: #DF69FD;
	line-height: 38px;
}


.gxkj1 {
	margin-top: 110px;
	background: #F8F6F6;
	padding-bottom: 110px;
}

.gxkj1 .ny_tit {
	padding: 100px 0 150px;
}

.gxkj1_box {
	display: flex;
}

.gxkj1_box .gxkj1_img {
	width: 630px;
	box-shadow: 0px 4px 16px 4px rgba(152, 152, 152, 0.35);
	border-radius: 30px 0px 0px 30px;
	overflow: hidden;
}

.gxkj1_box .gxkj1_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gxkj1_box .gxkj1_desc {
	width: calc(100% - 630px);
	padding-left: 55px;
}

.gxkj1_box .gxkj1_item {
	background: #FFFFFF;
	box-shadow: 0px 4px 16px 4px rgba(152, 152, 152, 0.35);
	border-radius: 0px 30px 0px 0px;
	padding: 55px 100px 40px 50px;
}

.gxkj1_box .gxkj1_item .atit {
	font-size: 34px;
	font-weight: bold;
	color: #44AC92;
	line-height: 30px;
}

.gxkj1_box .gxkj1_item .atit b {
	font-family: Impact;
	color: #88C3B5;
	padding-right: 10px;
	letter-spacing: 2px;
}

.gxkj1_box .gxkj1_item .btit {
	font-size: 20px;
	color: #444444;
	line-height: 30px;
	margin: 30px 0 55px;
}

.gxkj1_box .gxkj1_item .ctit {
	font-size: 20px;
	color: #444444;
	line-height: 40px;
	width: 200px;
}

.gxkj1_box .gxkj1_item .ctit p {
	position: relative;
	padding-left: 20px;
}

.gxkj1_box .gxkj1_item .ctit p:after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background: #44AC92;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 12px;
}

.gxkj1_box .gxkj1_item .dtit {
	display: block;
	width: 410px;
	height: 62px;
	line-height: 62px;
	background: #6BC1AD;
	border-radius: 31px;
	font-size: 30px;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	float: right;
	margin-top: -26px;
	transition: .3s;
}

.gxkj1_box .gxkj1_item .dtit:hover {
	background: #FDE686;
}

.gxkj1_box .gxkj1_item+.gxkj1_item {
	margin-top: 36px;
}

.gxkj2 {
	padding-bottom: 140px;
}

.gxkj2_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.gxkj2_item {
	background: #1EBBCC;
	box-shadow: 0px 6px 9px 4px rgba(79, 79, 79, 0.3);
	border-radius: 20px;
	text-align: center;
	width: calc(20% - 35px);
	margin-bottom: 120px;
	position: relative;
	padding: 85px 20px 40px 20px;
	transition: .3s;
	height: 375px;
}

.gxkj2_item .atit {
	background: url(../images/bq1.jpg);
	width: 49px;
	height: 67px;
	line-height: 60px;
	position: absolute;
	top: 0;
	left: 20px;
	font-size: 30px;
	font-weight: bold;
	color: #FFFFFF;
}

.gxkj2_item:nth-of-type(even) .atit {
	background: url(../images/bq2.jpg);
}

.gxkj2_item .btit {}

.gxkj2_item .ctit {
	font-size: 30px;
	font-weight: bold;
	color: #FCE791;
	text-shadow: 0px 0px 6px #4E4D4D;
	margin: 30px 0 50px;
}

.gxkj2_item .dtit {
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 24px;
}

.gxkj2_item:hover {
	transform: translateY(-10px);
}



.gxkj3 {
	background: url(../images/gxkj3_bg.png) center/cover;
	padding-bottom: 140px;
	margin-bottom: 160px;
}

.gxkj3_box {
	display: flex;
	max-width: 1560px;
	margin: 0 auto;
}

.gxkj3_1 {
	width: 21%;
}

.gxkj3_2 {
	width: 46%;
	padding: 0 17px;
}

.gxkj3_3 {
	width: 33%;
}

.gxkj3_item {
	position: relative;
	border: 2px solid #FFFFFF;
	overflow: hidden;
}

.gxkj3_item img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.gxkj3_item .desc {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(47, 177, 191, 0.89);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	transition: .3s;
}

.gxkj3_item .desc .atit {
	font-size: 22px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 46px;
}

.gxkj3_item .desc .btit {
	font-size: 22px;
	line-height: 22px;
	font-weight: bold;
	color: #37B8BC;
	padding: 9px 42px;
	background: #FFFFFF;
	border-radius: 8px;
	margin-top: 15px;
}

.gxkj3_item:hover .desc {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}

@media screen and (min-width:1199px) {
	.gxkj3_2_top .gxkj3_item .desc {
		visibility: visible;
		opacity: 1;
		height: auto;
		top: auto;
		bottom: 0;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 40px 35px 30px 35px;
	}

	.gxkj3_2_top .gxkj3_item .desc .btit {
		margin-top: 0;
	}
}

.gxkj3_22_item {
	width: calc(50% - 9px);
	float: left;
}

.gxkj3_22_item+.gxkj3_22_item {
	margin-left: 18px;
}

.gxkj3_1_item+.gxkj3_1_item {
	margin-top: 15px;
}

.gxkj3_2_bottom {
	margin-top: 17px;
}

.gxkj3_3_item+.gxkj3_3_item {
	margin-top: 14px;
}





.gxkj4 {
	background: #F2F2F2;
	padding-bottom: 110px;
	background: url(../images/gxjsqy_count4_bg_02.jpg);
	background-size: 100% 100%;
}

.gxkj4 .ny_tit {
	padding: 90px 0 150px;
}

.gxkj4_list {
	display: flex;
	justify-content: space-between;
}

.gxkj4_item {
	width: calc(50% - 25px);
	display: flex;
	background: #FEEA98;
	border: 5px solid #9D70F4;
	border-radius: 60px 5px 80px 5px;
	padding: 40px 40px 60px 40px;
}

.gxkj4_item .img {
	width: 136px;
}

.gxkj4_item .desc {
	width: calc(100% - 136px);
	padding-left: 50px;
}

.gxkj4_item .desc .atit {
	font-size: 35px;
	font-weight: bold;
	color: #2FB1BF;
	line-height: 46px;
	margin: 20px 0 20px;
}

.gxkj4_item .desc .btit {
	font-size: 20px;
	color: #2FB1BF;
}


.gxkj5 {
	padding-bottom: 190px;
	background: url(../images/gxjsqy_cunt5_bg_02.jpg) no-repeat;
	background-size: 100% 100%;
}

.gxkj5_list {
	display: flex;
	background: #FEEA98;
	padding: 0 40px;
	justify-content: space-between;
}

.gxkj5_item {
	width: calc(25% - 60px);
	background: #F9F9F9;
	border-radius: 15px;
	text-align: center;
	padding: 45px 20px 60px;
	transition: .3s;
}

.gxkj5_item .icon {
	display: block;
	margin: 0 auto;
	width: 87px;
	height: 87px;
	background-color: #FEEA98;
	border-radius: 50%;
	background-image: url(../images/gxkj5_icon1.png);
	background-repeat: no-repeat;
	transition: .3s;
}

.gxkj5_item .icon1 {
	background-position: 24px 20px !important;
}

.gxkj5_item .icon2 {
	background-position: -122px 20px !important;
}

.gxkj5_item .icon3 {
	background-position: -268px 20px !important;
}

.gxkj5_item .icon4 {
	background-position: -412px 20px !important;
}

.gxkj5_item .atit {
	display: inline-block;
	position: relative;
	font-size: 26px;
	font-weight: bold;
	color: #B667FA;
	line-height: 24px;
	margin: 28px 0 18px;
	transition: .3s;
}

.gxkj5_item .atit::after,
.gxkj5_item .atit::before {
	content: "";
	display: block;
	width: 15px;
	height: 3px;
	background: #595757;
	position: absolute;
	top: 10px;
	transition: .3s;
}

.gxkj5_item .atit::after {
	left: 100%;
	margin-left: 10px;
}

.gxkj5_item .atit::before {
	right: 100%;
	margin-right: 10px;
}

.gxkj5_item .btit {
	font-size: 18px;
	font-weight: bold;
	color: #B667FA;
	line-height: 28px;
	transition: .3s;
}

.gxkj5_item:hover {
	background: #2FB1BF;
}

.gxkj5_item:hover .icon {
	background-image: url(../images/gxkj5_icon2.png);
	background-color: #FFFFFF;
}

.gxkj5_item:hover .atit::after,
.gxkj5_item:hover .atit::before {
	background: #fff;
}

.gxkj5_item:hover .atit {
	color: #fff;
}

.gxkj5_item:hover .btit {
	color: #fff;
}



.gxkj6 {
	background: url(../images/gxkj6_bg.jpg);
	padding: 80px 0 250px;
	background-position: right bottom;
	background-size: cover;
}

.gxkj6_tit {
	position: relative;
	margin-bottom: 120px;
}

.gxkj6_tit b {
	/* position: relative; */
}

.gxkj6_tit .span {
	position: relative;
	display: inline-block;
	z-index: 99;
	font-size: 61px;
	font-weight: bold;
	color: #9061F0;
	line-height: 107px;
	background: linear-gradient(-80deg, #6467F5 0%, #DF69FD 45.751953125%, #EEB0FD 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

.gxkj6_tit .span::before {
	content: "";
	display: block;
	width: 80%;
	height: 6px;
	background: linear-gradient(269deg, #6467F5, #FE97DB, #EEB0FD);
	position: absolute;
	bottom: 0;
	right: 0;
}

.gxkj6_tit i {
	font-size: 61px;
	font-weight: bold;
}

.gxkj6_tit i::after {
	background: none;
	content: attr(data-text);
	left: 0px;
	position: absolute;
	text-shadow: 0px 6px 7px #939394;
	top: 40px;
	z-index: 1;
}

.gxkj6_list {
	display: flex;
	flex-wrap: wrap;
}

.gxkj6_item {
	background: #FFFFFF;
	box-shadow: 0px 10px 20px 0px rgba(39, 143, 154, 0.5);
	border-radius: 30px;
	padding: 40px 90px 50px 50px;
	max-width: 480px;
	margin-bottom: 20px;
	margin-right: 90px;
	height: 100%;
}

.gxkj6_item:nth-of-type(1),
.gxkj6_item:nth-of-type(3) {
	margin-top: 90px;
}

.gxkj6_item .atit {
	font-size: 36px;
	font-weight: bold;
	color: #9061F0;
	line-height: 36px;
	background: linear-gradient(-240deg, #6467F5 0%, #FE97DB 64%, #EEB0FD 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	margin-bottom: 35px;
}

.gxkj6_item .btit {
	font-size: 20px;
	font-weight: bold;
	color: #2FB1BF;
	line-height: 35px;
}



/******************************** 高新科技企业 end ***************************/





/* 尾部 */


/*  */
.space {
	margin-top: 20px;
}

.desc.space {
	transform: translateY(125px);
}





/* 留言框 */
.message {
	background: url(../images/new_footer_02.jpg) no-repeat;
	background-size: 100% 100%;
	height: 355px;
}

.message_content {
	padding-top: 44px;
}

.message_top {
	font-size: 34px;
	color: #B88DFC;
}

.message_mid {
	margin-top: 27px;
	margin-bottom: 39px;
}

.message_mid_form {
	display: flex;

}

.message_mid input[type="text"] {
	width: 260px;
	height: 66px;
	background: #FFFFFF;
	padding-left: 19px;
}

.message_mid input[type="submit"] {
	width: 260px;
	height: 66px;
	background: #B88DFC;
	color: white;
	font-weight: bold;
	font-size: 18px;
}

.input_1,
.input_2,
.input_4 {
	width: 260px;
	margin-right: 20px;

}

.input_3 {
	width: 550px;
	margin-right: 20px;

}

.message_mid :nth-child(3) input[type="text"] {
	width: 550px;

}


.message_bottom {
	font-size: 16px;
	color: #B88DFC;
}



.space_dl {
	margin: 0 30px 0 30px;
}

.fs16 {
	display: flex;
	margin-bottom: 10px;
	width: 400px;
	color: white;
}

/* 尾部 end */






@media screen and (max-width:2560px) {
	.sec3 {
		background-size: 100% 100%;
	}
	/* .foot2{
		margin-left: 450px;
	} */

}


@media screen and (max-width:1920px) {
	.sec3 {
		background-size: cover;
	}

	.sec3_list {
		padding-top: 185px;
	}

	.ind_tit {
		padding-top: 120px;
	}
	.space_dl{
		margin: 0 30px 0 30px;
	}
	/* .foot2{
		margin-left: 176px;
	} */
	.foot1 {
		padding-top: 80px ;
	}
}

@media screen and (max-width:1917px) {
	.space_dl{
		/* margin: 0 30px 0 20px; */
	}
}


@media screen and (max-width:1660px) {
	.w1600 {
		width: 1400px;
	}

	.header {
		padding: 0 50px;
	}

	.h_nav {
		width: calc(100% - 580px);
	}

	.zx_box {
		width: calc(100% - 700px);
	}

	.foot2 {
		padding: 30px 0 30px;
		text-align: center;
	}

	.ind_tit {
		padding: 80px 0 80px;
	}

	.bqdj1_box .desc .btit {
		width: 900px;
		background-size: 100% 100%;
	}

	.gxkj1_box .gxkj1_item {
		padding: 55px 50px 40px 50px;
	}

	.gxkj1_box .gxkj1_item .dtit {
		margin-top: 0;
	}


	.message_mid :nth-child(3) {
		width: 400px;
	}

	.message_mid :nth-child(3) input[type="text"] {
		width: 400px;
	}


	.message_content {
		margin-left: 200px;
	}

	.foot1 .f_nav {
		/* width: calc(100% - 1040px); */
		margin-left: 0;
	}

	.space_dl {
		margin: 0 20px 0 20px;
	}

	.foot1 .f_more {
		margin-left: 0;
		margin-right: 0;
	}
}

@media screen and (max-width:1460px) {
	.w1600 {
		width: 1200px;
	}

	.header {
		padding: 0 10px 0 30px;
	}

	.h_nav {
		width: calc(100% - 550px);
	}

	.sec1_item .tit {
		font-size: 26px;
	}

	.sec2_box .img {
		width: 600px;
	}

	.sec2_box .desc {
		width: calc(100% - 650px);
	}

	.sec2_box .desc .info {
		padding: 30px 0 50px;
		font-size: 15px;
		line-height: 32px;
	}

	.sec4_item .atit {
		font-size: 24px;
	}

	.sec4_item .btit {
		font-size: 16px;
		line-height: 24px;
	}

	.xwzx_sel_list {
		margin-bottom: 80px;
	}

	.xw_item .desc .atit {
		font-size: 20px;
		line-height: 30px;
		height: 60px;
	}

	.xw_box {
		width: 600px;
	}

	.zx_box {
		width: calc(100% - 650px);
	}

	.zx_item .desc .atit {
		font-size: 17px;
		line-height: 24px;
		height: 48px;
	}

	.ewm .img {
		width: 120px;
	}

	.foot1 .f_ewm {
		width: 480px;
	}

	.foot1 .f_more {
		width: 300px;
		margin-left: 20px;
		padding: 0 20px;
	}

	.foot1 .f_nav {
		/* width: calc(100% - 800px); */
	}

	.foot1 .f_more .text p {
		font-size: 16px;
	}

	.bqdj1_box .img {
		display: flex;
		align-items: center;
	}

	.bqdj1_box .img img {
		width: 100%;
	}

	.bqdj2_box .desc {
		right: 0;
	}

	.bqdj5_item {
		width: calc(33.33% - 30px);
	}

	.bqdj5_item .img {
		width: 120px;
	}

	.bqdj5_item .desc {
		padding-left: 20px;
		width: calc(100% - 120px);
	}

	.bqdj5_item .desc p {
		padding: 10px 0 15px 15px;
	}

	.bqdj8_item .desc {
		padding: 50px 50px 30px 50px;
	}

	.gxkj1_box .gxkj1_item .dtit {
		margin-top: 20px;
		width: 100%;
	}

	.gxkj2_item {
		width: calc(20% - 20px);
		margin-bottom: 40px;
	}

	.gxkj3_item .desc .atit {
		font-size: 20px;
	}

	.gxkj3_item .desc .btit {
		font-size: 20px;
	}

	.gxkj3_2_top .gxkj3_item .desc {
		padding: 20px 35px 20px 35px;
	}

	.gxkj5_item {
		width: calc(25% - 30px);
	}
}

@media screen and (max-width:1440px) {

	.message_content {
		margin-left: 0;
	}

	.foot1 .f_nav {
		/* width: calc(70% - 500px); */
	}

	.foot1 .f_more {
		margin-left: 0;
		margin-right: 130px;
	}

}



@media screen and (max-width:1360px) {
	.h_nav>ul>li>a {
		font-size: 15px;
	}

	.h_more .desc p {
		font-size: 18px;
	}

	.h_nav {
		width: calc(100% - 530px);
	}
}

@media screen and (max-width:1339px) {
	.message_mid {
		margin-bottom: 20px;
	}

	.message_mid_form {
		flex-wrap: wrap;
		justify-content: space-evenly;
		width: 75%;
		margin: 0 auto;
	}

	.message_mid input[type="text"] {
		width: 400px;
		height: 50px;
	}

	.input_1,
	.input_2,
	.input_3,
	.input_4 {
		width: 400px;
		height: 50px;
	}

	.message_mid input[type="submit"] {
		height: 50px;
		width: 400px;
	}

	.input_1,
	.input_2 {
		margin-bottom: 20px;
	}

}

@media screen and (max-width:1260px) {
	.w1600 {
		width: 1170px;
	}
}

@media screen  and (max-width:1220px){
	.foot1{
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.foot1 .f_nav {
		/* width: calc(100% - 755px); */
	}
	.f_ewm .clearfix{
		margin-top: 30px;
	}
}
@media screen and (max-width:1200px) {
	.input_1, .input_2, .input_3, .input_4 {
		width: 300px;
	}
	.message_mid input[type="text"] {
		width: 300px;
	}
	.message_mid input[type="submit"] {
		width: 300px;
	}
	.message_mid :nth-child(3) input[type="text"] {
		width: 300px;
	}
	.message_mid :nth-child(3) {
		width: 300px;
	}
	.foot1 .f_nav {
		/* width: calc(100% - 700px); */
	}
	
}

@media screen and (max-width:1199px) {
	.w1600 {
		width: 100%;
		padding: 0 20px;
	}

	.header {
		display: none;
	}

	.wap_header {
		display: block;
	}

	.ind_tit {
		padding: 80px 0 40px;
	}

	.ind_tit p {
		font-size: 28px;
		line-height: 40px;
		margin-bottom: 10px;
	}

	.ind_tit span {
		font-size: 18px;
	}

	.sec1_list {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.sec1_item {
		width: calc(50% - 10px);
		margin: 0 0 20px;
	}

	.sec1_item:last-child {
		width: 100%;
	}

	.sec1_item:nth-of-type(1) .desc span {
		width: auto;
	}

	.sec1_item:nth-of-type(3) .desc span:nth-of-type(1) {
		width: auto;
	}

	.sec1_item:nth-of-type(3) .desc span:nth-of-type(2) {
		width: auto;
	}

	.sec1_item .tit {
		font-size: 22px;
		line-height: 30px;
	}

	.sec1_item .tit .i1 {
		margin-bottom: 10px;
	}

	.sec1_item .tit .i2 {
		margin: 10px auto 20px;
	}

	.sec1_item {
		padding: 60px 10px 20px;
	}

	.sec1 {
		padding-bottom: 60px;
	}

	.sec2_box .img {
		width: 48%;
	}

	.sec2_box .img img {
		object-position: center left;
	}

	.sec2_box .desc {
		width: 48%;
	}

	.sec2 {
		padding-bottom: 80px;
	}

	.sec3_desc {
		padding: 100px 0 120px;
	}

	.sec3_desc .atit {
		font-size: 34px;
		line-height: 45px;
	}

	.sec3_desc .btit {
		font-size: 16px;
	}

	.sec3_desc .ctit a {
		width: 140px;
		line-height: 40px;
		font-size: 18px;
	}

	.sec3_list {
		padding: 0px 0 50px;
	}

	.sec3_item {
		width: 100%;
		padding: 0 20px;
	}

	.sec3_item .icon {
		zoom: .8;
	}

	.sec3_item .atit {
		font-size: 24px;
		line-height: 30px;
		margin: 30px 0 20px;
	}

	.sec3_item .btit {
		font-size: 14px;
		line-height: 20px;
	}

	.sec4_item {
		padding: 50px 15px 30px;
	}

	.sec4_item .btit {
		font-size: 14px;
		line-height: 20px;
	}

	.sec4_item .icon {
		zoom: .8;
	}

	.xwzx_sel_list {
		margin: 0 0 30px;
	}

	.xwzx_sel {
		font-size: 18px;
		width: 150px;
		line-height: 45px;
		height: 45px;
	}

	.xw_box {
		width: 400px;
	}

	.zx_box {
		width: calc(100% - 430px);
	}

	.xw_item .img {
		height: 200px;
	}

	.sec5 {
		padding-bottom: 150px;
	}

	.zx_item .img {
		width: 200px;
		height: 140px;
	}

	.zx_item .desc {
		width: calc(100% - 200px);
		padding: 15px 10px;
	}

	.zx_item .desc .atit {
		font-size: 16px;
		line-height: 20px;
		height: 40px;
	}

	.zx_item .desc .btit {
		font-size: 12px;
		line-height: 20px;
		height: 40px;
	}

	.foot1 {
		justify-content: center;
		display: none;
	}

	/* .foot1 .f_nav{display: none;} */
	/* .foot1 .f_ewm{display: none;} */
	/* .foot1 .f_more{display: none;} */
	.ft2_b {
		display: none;
	}

	.foot2 {
		padding: 40px 0 10px;
		text-align: center;
	}

	.foot2 a,
	.foot2 span {
		display: inline-block;
	}

	.bqdj_banner {
		display: none;
	}

	.wap_bqdj_banner {
		display: block;
	}

	.header_zw {
		display: block;
		width: 100%;
		height: 60px;
	}

	.bddj_ys_box {
		margin: 20px 0;
	}

	.bqdj_ys_list {
		padding: 25px;
	}

	.bqdj_ys_item {
		height: 120px;
		width: 120px;
		font-size: 17px;
		line-height: 24px;
	}

	.bqdj1_box {
		display: block;
	}

	.bqdj1_box .desc .atit {
		padding: 20px 0 20px;
		font-size: 30px;
		-webkit-text-stroke: 1px #747272;
	}

	.bqdj1_box .desc .btit {
		width: 100%;
		background: none;
		padding: 0;
		font-size: 16px;
		line-height: 30px;
		height: auto;
		overflow: initial;
		display: block;
	}

	.bqdj1_box .img {
		max-width: 498px;
		margin: 20px auto 0;
	}

	.ny_tit {
		padding: 60px 0 30px;
	}

	.ny_tit p {
		font-size: 28px;
		line-height: 36px;
	}

	.ny_tit span {
		font-size: 14px;
		line-height: 20px;
		margin: 10px 0 0px;
	}

	.bqdj2_box .desc {
		top: 0;
	}

	.bqdj2_box .desc .bqdj2_item {
		padding: 20px 20px;
	}

	.bqdj2_box .desc .bqdj2_item+.bqdj2_item {
		margin-top: 20px;
	}

	.bqdj2_box .desc .bqdj2_item p {
		font-size: 24px;
		line-height: 30px;
		padding-bottom: 0px;
	}

	.bqdj2_box .desc .bqdj2_item span {
		font-size: 16px;
	}

	.bqdj3_item_box {
		width: 33.33%;
	}

	.bqdj3_item {
		margin-bottom: 20px;
	}

	.bqdj3_item .atit {
		zoom: .8;
	}

	.bqdj3_item .btit {
		margin-bottom: 10px;
		font-size: 18px;
		line-height: 24px;
	}

	.bqdj3_item .ctit {
		font-size: 14px;
		line-height: 18px;
		height: 36px;
	}

	.bqdj3_item .dtit {
		font-size: 18px;
		line-height: 24px;
	}

	.bqdj4_list {
		margin-bottom: 100px;
	}

	.bqdj4_item .atit {
		zoom: .8;
	}

	.bqdj4_item .btit {
		margin: 20px 0 10px;
		font-size: 20px;
		line-height: 30px;
	}

	.bqdj4_item .ctit {
		font-size: 14px;
		line-height: 24px;
	}

	.bqdj5_item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 20px 10px;
	}

	.bqdj5_item .desc {
		padding: 0;
		width: 100%;
	}

	.bqdj5_item .desc p {
		padding: 10px 15px;
		font-size: 22px;
		line-height: 30px;
	}

	.bqdj5_item .desc span {
		font-size: 17px;
	}

	.bqdj5 {
		padding-bottom: 60px;
	}

	.bqdj6_list {
		padding: 0;
	}

	.bqdj6_item {
		padding: 20px 20px;
		width: 100%;
		max-width: none;
	}

	.bqdj6_item .ctit {
		padding-right: 0;
	}

	.bqdj7_box {
		display: block;
	}

	.at7_box {
		margin-top: 20px;
	}

	.bqdj7_item .atit {
		font-size: 30px;
		line-height: 40px;
		padding-bottom: 20px;
	}

	.bqdj7_item .btit {
		font-size: 16px;
		line-height: 30px;
	}

	.bqdj7_box .desc {
		width: 100%;
		margin: 0 0 40px;
	}

	.bqdj7_box .img {
		width: 100%;
		text-align: center;
	}

	.bqdj7_box .img img {
		max-width: 549px;
		width: 100%;
	}

	.bqdj8_item {
		display: block;
	}

	.bqdj8_list {
		background: #2FB1BF;
		border-radius: 80px;
	}

	.bqdj8_item .desc {
		width: 100%;
		background: none;
	}

	.bqdj8_item .img {
		width: 100%;
	}

	.bqdj8_item .desc .atit {
		font-size: 24px;
		line-height: 30px;
	}

	.bqdj8_item .desc .btit p {
		font-size: 17px;
		line-height: 30px;
		padding-left: 20px;
	}

	.bqdj8_item .desc .btit p::after {
		top: 12px;
	}

	.bqdj8_item .img {
		text-align: center;
		display: none;
	}

	.bqdj8_item .img img {
		max-width: 802px;
	}

	.bqdj8_item:nth-of-type(even) .desc {
		padding-top: 0px;
	}

	.bqdj9_list {
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.bqdj9_item {
		width: calc(33.33% - 20px);
		margin-bottom: 20px;
	}

	.bqdj9_item:nth-of-type(4),
	.bqdj9_item:nth-of-type(5) {
		width: calc(50% - 20px);
	}

	.bqdj9 {
		padding-bottom: 100px;
	}

	.gxkj_banner {
		height: 500px;
	}

	.gxkj_banner .atit {
		font-size: 60px;
	}

	.gxkj_banner .btit {
		font-size: 30px;
		margin: 20px 0 40px;
	}

	.gxkj_banner .ctit a {
		width: 160px;
		height: 50px;
		line-height: 50px;
		font-size: 20px;
	}

	.gxkj_bdesc {
		position: relative;
		margin-top: 40px;
	}

	.gxkj_bdesc b {
		font-size: 18px;
		line-height: 24px;
	}

	.gxkj_bdesc span {
		font-size: 16px;
		line-height: 24px;
	}

	.gxkj1 {
		margin-top: 40px;
	}

	.gxkj1 .ny_tit {
		padding: 60px 0 30px;
	}

	.gxkj1_box {
		display: block;
	}

	.gxkj1_img {
		display: none;
	}

	.gxkj1_box .gxkj1_desc {
		width: 100%;
		padding-left: 0;
	}

	.gxkj1_box .gxkj1_item {
		padding: 30px 20px;
	}

	.gxkj1_box .gxkj1_item .atit {
		font-size: 24px;
	}

	.gxkj1_box .gxkj1_item .btit {
		font-size: 16px;
		margin: 10px 0 20px;
	}

	.gxkj1_box .gxkj1_item .ctit {
		font-size: 16px;
		line-height: 28px;
	}

	.gxkj1_box .gxkj1_item .ctit p:after {
		top: 10px;
	}

	.gxkj1_box .gxkj1_item .dtit {
		height: 50px;
		line-height: 50px;
		font-size: 20px;
		max-width: 500px;
		margin: 20px auto 0;
		float: none;
	}

	.gxkj1 {
		padding-bottom: 50px;
	}

	.gxkj2_item {
		padding: 40px 10px 20px 10px;
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}

	.gxkj2_item .ctit {
		font-size: 24px;
		margin: 20px 0 20px;
	}

	.gxkj2_item .atit {
		font-size: 24px;
	}

	.gxkj2 {
		padding-bottom: 80px;
	}

	.gxkj3_box {
		display: block;
	}

	.gxkj3_1 {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

	.gxkj3_1 .gxkj3_item {
		width: calc(33.33% - 7px);
	}

	.gxkj3_1_item+.gxkj3_1_item {
		margin: 0;
	}

	.gxkj3_2 {
		width: 100%;
		margin: 10px 0;
		padding: 0;
		display: flex;
		justify-content: space-between;
	}

	.gxkj3_2_top {
		width: calc(66.6% - 3px);
	}

	.gxkj3_2_bottom {
		width: calc(33.3% - 7px);
		margin-top: 0;
	}

	.gxkj3_22_item {
		width: 100%;
		float: none;
	}

	.gxkj3_22_item+.gxkj3_22_item {
		margin-left: 0;
		margin-top: 5px;
	}

	.gxkj3_3 {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

	.gxkj3_3_item {
		width: calc(50% - 5px);
	}

	.gxkj3_3_item+.gxkj3_3_item {
		margin-top: 0;
	}

	.gxkj3_item .desc .btit {
		margin-top: 5px;
	}

	.gxkj3 {
		padding-bottom: 60px;
		margin-bottom: 60px;
	}

	.gxkj4 {
		padding-bottom: 60px;
	}

	.gxkj4 .ny_tit {
		padding: 60px 0 30px;
	}

	.gxkj4_item {
		padding: 20px 20px;
	}

	.gxkj4_item .desc {
		padding-left: 20px;
	}

	.gxkj4_item .desc .atit {
		font-size: 24px;
		line-height: 36px;
		margin-bottom: 10px;
	}

	.gxkj4_item .desc .btit {
		font-size: 16px;
		line-height: 24px;
	}

	.gxkj5 {
		padding-bottom: 60px;
	}

	.gxkj5_list {
		flex-wrap: wrap;
	}

	.gxkj5_item {
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}

	.gxkj5_list {
		padding: 20px;
	}

	.gxkj6 {
		padding: 60px 0 120px;
	}

	.gxkj6_tit {
		margin-bottom: 30px;
	}

	.gxkj6_tit .span {
		font-size: 40px;
		line-height: 70px;
	}

	.gxkj6_tit i {
		font-size: 40px;
		line-height: 70px;
	}

	.gxkj6_tit i::after {
		top: 0;
	}

	.gxkj6_list {
		justify-content: space-between;
	}

	.gxkj6_item {
		width: calc(50% - 5px);
		margin: 0 0 10px 0 !important;
		height: auto;
		max-width: none;
		padding: 30px 20px;
		border-radius: 10px;
	}

	.gxkj6_item .atit {
		font-size: 24px;
		line-height: 36px;
		margin-bottom: 10px;
	}

	.gxkj6_item .btit {
		font-size: 16px;
		line-height: 26px;
	}

	.input_1, .input_2 {
		width: 300px;
	}
}

@media screen and (max-width:1024px) {
	.header.needNone {
		display: none !important;
	}




	.message_content {
		margin-left: 70px;
	}
	.foot2 {
		/* margin-left: 50px; */
	}
	.footer{
		margin-top: -40px;
	}

}

@media screen and (max-width:922px) {
	.message_content{
		margin: 0;
	}
	.message_top,.message_bottom{
		text-align: center;
	}
}

/* @media screen and (max-width:979px) {

	.message_mid {
		margin-bottom: 20px;
	}

	.message_mid_form {
		flex-wrap: wrap;
		justify-content: space-evenly;
		width: 75%;
		margin: 0 auto;
	}

	.message_mid input[type="text"] {
		width: 300px;
		height: 50px;
	}

	.input_1,
	.input_2,
	.input_3,
	.input_4 {
		width: 300px;
		height: 50px;
	}

	.message_mid input[type="submit"] {
		height: 50px;
		width: 300px;
	}

	.input_1,
	.input_2 {
		margin-bottom: 20px;
	}

} */

@media screen and (max-width:899px) {
	.ind_tit {
		padding: 60px 0 20px;
	}

	.pc_banner {
		display: none;
	}

	.wap_banner {
		display: block;
	}

	.sec1_item {
		padding: 40px 10px 40px
	}

	.sec2_box {
		display: block;
	}

	.sec2_box .img {
		width: 100%;
	}

	.sec2_box .desc {
		width: 100%;
	}

	.sec2_box .desc .info {
		padding: 30px 30px 30px;
	}

	.sec2_box .desc .btns {
		text-align: center;
	}

	.sec2_box .desc .btns a {
		font-size: 16px;
	}

	.sec2 {
		padding-bottom: 60px;
	}

	.sec3 {
		background-position: left top;
	}

	.sec3_desc {
		width: 100%;
	}

	.sec3_desc .atit {
		font-size: 26px;
		line-height: 34px;
	}

	.sec3_desc .btit {
		margin: 20px 0 40px;
	}

	.sec3_item .icon {
		zoom: .5;
	}

	.sec3_item .atit {
		margin: 20px 0 10px;
	}

	.sec4_list {
		margin-top: 0;
		flex-wrap: wrap;
	}

	.sec4_item {
		width: 50%;
		padding: 30px 15px 30px;
	}

	.sec4_item:nth-of-type(3),
	.sec4_item:nth-of-type(4) {
		border-top: 1px solid #E5E5E5;
	}

	.sec4_item .icon {
		zoom: .6;
	}

	.xwzx_list.active {
		display: block;
	}

	.xw_box {
		width: 100%;
	}

	.xw_item .img {
		height: auto;
	}

	.xw_item .desc .ctit {
		font-size: 14px;
		line-height: 20px;
		height: 60px;
	}

	.xw_item .desc .btit {
		margin: 10px 0;
	}

	.zx_box {
		width: 100%;
	}

	.zx_item {
		margin-top: 10px;
	}

	.sec4 {
		padding-bottom: 60px;
	}

	.sec5 {
		padding-bottom: 100px;
	}

}

@media screen and (max-width:899px) {
	.message_mid_form{
		width: 100%;
	}
}
@media screen and (max-width:899px) {
	.gxkj2_item{
		height: auto;
	}
	.input_1, .input_2, .input_4 ,.input_3{
		margin-right: 0;
	}

}
@media screen and (max-width:749px) {
	.bqdj3_item {
		width: 180px;
		height: 180px;
	}

	.bqdj3_item .atit {
		zoom: .6;
	}

	.bqdj4_list {
		flex-wrap: wrap;
	}

	.bqdj4_item {
		width: 50%;
	}

	.bqdj4_item:nth-of-type(3)::after,
	.bqdj4_item:nth-of-type(4)::after {
		content: "";
		display: block;
		width: 60%;
		height: 3px;
		position: absolute;
		top: -1px;
		left: 20%;
		background: #FFFFFF;
		box-shadow: 0px 0px 10px 0px #a8a8a8;
	}

	.bqdj5_item {
		width: calc(33.333% - 10px);
	}

	.bqdj5_item .desc span {
		font-size: 14px;
	}

	.bqdj5_item .img {
		width: 100%;
		max-width: 120px;
	}

	.bqdj6_item .btit {
		font-size: 14px;
		line-height: 24px;
	}

	.bqdj6_item {
		padding: 20px 20px 0px;
	}

	.bqdj9_item .icon {
		zoom: .8;
	}

	.bqdj9_item .atit {
		font-size: 32px;
		line-height: 40px;
		margin: 10px 0;
	}

	.bqdj9_item .ctit {
		font-size: 18px;
		line-height: 24px;
		margin-top: 10px;
	}

	.bqdj8_item .desc .atit {
		margin-bottom: 5px;
	}

	.bqdj8_item .desc .btit p {
		font-size: 14px;
		line-height: 28px;
	}

	.bqdj8_item .desc .btit p::after {
		top: 10px;
	}

	.gxkj2_item .btit {
		zoom: .5;
	}

	.gxkj2_item .dtit {
		font-size: 14px;
		line-height: 20px;
	}

	.gxkj3_item .desc .atit {
		font-size: 17px;
		line-height: 30px;
	}

	.gxkj3_item .desc .btit {
		padding: 5px 40px;
		font-size: 17px;
	}

	.gxkj4_list {
		display: block;
	}

	.gxkj4_item {
		width: 100%;
	}

	.gxkj4_item+.gxkj4_item {
		margin-top: 10px;
	}

	.gxkj4_item .img {
		width: 80px;
	}

	.gxkj4_item .img img {
		width: 100%;
	}

	.gxkj4_item .desc {
		width: calc(100% - 80px);
	}

	.gxkj4_item .desc .atit {
		margin-top: 0;
	}

	.gxkj5_item {
		padding: 30px 15px 40px;
	}
}

@media screen and (max-width:699px) {
	.sec1_item .desc {
		font-size: 16px;
		line-height: 30px;
	}

	.sec3_item {
		padding: 0 5px;
	}

	.w1600 {
		padding: 0 10px;
	}

}

@media screen and (max-width:649px) {
	.bqdj_ys_list {
		flex-wrap: wrap;
		padding: 20px 20px 10px;
	}

	.bqdj_ys_item {
		margin-bottom: 10px;
	}

	.bqdj2_box img {
		display: none;
	}

	.bqdj2_box .desc {
		position: relative;
	}

	.bqdj3_box {
		justify-content: space-around;
	}

	.bqdj3_item_box {
		width: 50%;
	}

	.bqdj5_item .desc span {
		line-height: 20px;
		padding: 10px 15px;
	}

	.bqdj8_list {
		border-radius: 40px;
	}

	.bqdj8_item .desc {
		padding: 30px;
	}

	.bqdj9_item {
		width: calc(33.33% - 10px);
		margin-bottom: 10px;
	}

	.foot2 a,
	.foot2 span {
		line-height: 20px;
	}

	.gxkj6_tit .span {
		font-size: 30px;
		line-height: 70px;
	}

	.gxkj6_tit i {
		font-size: 30px;
		line-height: 70px;
	}

	.gxkj3_1 {
		display: block;
	}

	.gxkj3_1 .gxkj3_item {
		width: 100%;
		margin-bottom: 10px;
	}

	.gxkj3_2 {
		display: block;
	}

	.gxkj3_2_top {
		width: 100%;
	}

	.gxkj3_2_bottom {
		width: 100%;
	}

	.gxkj3_2_item {
		margin-bottom: 10px;
	}

	.gxkj3_3 {
		display: block;
	}

	.gxkj3_3_item {
		width: 100%;
		margin-bottom: 10px;
	}

	.gxkj_banner .atit {
		font-size: 40px;
	}

	.gxkj_banner .btit {
		font-size: 20px;
	}

	.gxkj_banner .ctit .a2 {
		margin-left: 40px;
	}

	.gxkj_bdesc {
		padding: 30px 20px;
	}
}

@media screen and (max-width:639px) {
	.input_1, .input_2,.input_3,.input_4 {
		width: 200px;
	}
	.message_mid :nth-child(3) input[type="text"] {
		width: 200px;
	}
	.message_mid :nth-child(3) {
		width: 200px;
	}
	.message_mid input[type="text"] {
		width: 200px;
	}
	.message_mid input[type="submit"] {
		width: 200px;
	}
}

@media screen and (max-width:499px) {
	.sec3_list {
		display: block;
	}

	.sec3_item {
		padding: 0;
		margin-bottom: 30px;
	}

	.gxkj5_item {
		width: 100%;
	}

	.gxkj6_item {
		width: 100%;
	}

	.gxkj2_item .atit {
		left: 10px;
		zoom: .7;
	}

}
@media screen and (max-width:425px) {
	.message_content {
		padding-top: 20px;
	}
	.input_1, .input_2,.input_3,.input_4 {
		width: 300px;
	}
	.message_mid :nth-child(3) input[type="text"] {
		width: 300px;
	}
	.message_mid :nth-child(3) {
		width: 300px;
	}
	.message_mid input[type="text"] {
		width: 300px;
	}
	.message_mid input[type="submit"] {
		width: 300px;
	}
	.input_1, .input_2, .input_3{
		margin-bottom: 10px;
	}
	.message {
		height: 450px;
	}
	.foot2{
		margin: 0;
	}
	.message_top{
		font-size: 30px;
	}
}

@media screen and (max-width:410px) {
	.gxkj_banner .ctit a {
		width: 140px;
	}

	.gxkj_banner .atit {
		font-size: 36px;
	}

	.gxkj_banner .ctit .a2 {
		margin-left: 20px;
	}
}
@media screen and (max-width:375px) {
	.message_top{
		font-size: 30px;
	}
	.message_bottom{
		font-size: 13px;
	}
	
}

@media screen and (max-width:320px) {
	.message_top{
		font-size: 26px;
	}
	.message_bottom{
		font-size: 11px;
	}
	.input_1, .input_2,.input_3, .input_4 {
		margin-right: 0;
	}
}


.wheader{
	position: relative;
    width: 1900px;
    margin: 0 auto;
}
@media screen and (max-width:1899px) {
	.wheader{
		width: 1600px;
	}

}
/* @media screen and (max-width:1660px) {
	.wheader{
		width: 1600px;
	}
} */

@media screen and (max-width:1599px) {
	.wheader{
		width: 1400px;
	}
}

@media screen and (max-width:1399px) {
	.wheader{
		width: 100%;
	}
}