html,
body {
	padding: 0;
	margin: 0;
	font-family: "Microsoft YaHei", "微软雅黑", "arial", "tahoma", "MicrosoftJhengHei", "sans-serif";
	font-size: 0.9vw;
	color: #333;
	width: 100%;
	height: 100%;
}

@font-face {
	font-family: "iconfont";
	/* Project id  */
	src: url('../fonts/iconfont.ttf?t=1635922021824') format('truetype');
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-youjiantou:before {
	content: "\e622";
}

.icon-down:before {
	content: "\e649";
}

.wrap {
	margin: 0 10vw;
}

.wrap2 {
	width: 90%;
	margin: 0 auto;
}

.showDiv {
	display: none;
}

.clearfixed {
	clear: both;
}

a {
	color: #333;
	transition: all 0.5s;
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style: none;
}


input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #c3c3c3;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #c3c3c3;
}


input:-ms-input-placeholder,
textarea::-ms-textarea-placeholder {
	/* Internet Explorer 10-11 */
	color: #c3c3c3;
}


.fl {
	float: left;
}

.fr {
	float: right;
}

.arrow-bottom {
	font-size: 0;
	line-height: 0;
	border-width: 10px;
	border-color: red;
	border-bottom-width: 0;
	border-style: dashed;
	border-top-style: solid;
	border-left-color: transparent;
	border-right-color: transparent;
}

/* 向右的箭头 */

.arrow-right {
	font-size: 0;
	line-height: 0;
	border-width: 10px;
	border-color: #f7f7f7;
	border-right-width: 0;
	border-style: dashed;
	border-left-style: solid;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
	outline: none;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0;
}

a:hover {
	color: #479700;
}

img {
	max-width: 100%;

}

.imgDiv {
	overflow: hidden;
}

.imgDiv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
}

.mask:hover .imgDiv img {
	transform: scale(1.1);
}


input:focus,
button:focus,
textarea:focus {
	outline: none;
}

.ovh {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ovh2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.ovh3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.ovh4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.ovh5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

/**导航菜单**/
header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: #fff;
	height: 5.2vw;
	transition: all 0.5s;
	border-bottom: 1px #ccc solid;
	/* box-shadow: 0 0 5px #ECEDEE; */
	/*overflow: hidden;*/
}

header.header2 {
	background: none;
	border-bottom: 1px #666 solid;
	box-shadow: none;
}

header .logo a {
	/* height: 54px; */
	position: relative;
	z-index: 999;
	display: flex;
	/* justify-content: center; */
	align-items: center;
	margin-top: 1.4vw;

}

header .logo img {
	max-height: 100%;
	width: 11.77vw;
}

header.on-fixed {
	position: fixed;
	top: 0;
	left: 0;
	background: #FFFFFF;
	box-shadow: 0 0 10px #ccc;
}


header.on-fixed .rightDiv .menu>ul>li>a {
	color: #000;
}

header .rightDiv {
	float: right;
}

header .rightDiv .menu {
	text-align: right;
	position: relative;
	height: 5.2vw;
}

header .rightDiv .menu>ul {
	display: inline-block !important;
	/*overflow: hidden;*/
}

header .rightDiv .menu>ul>li {
	float: left;
	position: relative;
	padding: 0 1.25vw;
	/*width: 126px;*/
}


header .rightDiv .menu>ul>li>a {
	height: 5.2vw;
	display: block;
	/* justify-content: center; */
	/* align-items: center; */
	text-align: center;
	color: #333;
	position: relative;
	font-size: 1.04vw;
	line-height: 5.2vw;
}


/* header .rightDiv .menu>ul>li:last-child img {
	margin-right: 10px;
}

header .rightDiv .menu>ul>li:last-child>a {
	color: #999;
}
 */

header .rightDiv .menu>ul>li>a::after {
	content: "";
	width: 0;
	height: 3px;
	background: #479700;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: .5s;
}

header .rightDiv .menu>ul>li>a img {
	display: block;
	position: absolute;
	bottom: 15px;
	transform: translate(-50%, 0);
	left: 50%;
	width: 0;
	transition: all 0.3s;
}

header .rightDiv .menu>ul>li>a.now img,
header .rightDiv .menu>ul>li:hover>a img {
	width: 100%;
}

header .rightDiv .menu>ul>li>a:hover,
header .rightDiv .menu>ul>li>a.now {
	color: #479700;
}

header .rightDiv .menu>ul>li:hover>a::after,
header .rightDiv .menu>ul>li>a.now::after {
	width: 100%;
}

/* 
header .rightDiv .menu>ul>li:hover a span,
header .rightDiv .menu>ul>li:focus a span,
header .rightDiv .menu>ul>li.on a span,
header .rightDiv .menu>ul>li.active a span {
	display: block;
	width: 20px;
	height: 2px;
	background: #009a44;
	margin: 0 auto;
	margin-top: 1rem;

	/* background: #3fba9e;
	border-bottom: 2px #3fba9e solid; */
}

header .rightDiv .menu>ul>li:hover>a,
header .rightDiv .menu>ul>li:focus>a,
header .rightDiv .menu>ul>li.on>a,
header .rightDiv .menu>ul>li.active>a {
	color: #479700;
}

header .rightDiv .menu ul li div.down_list {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0.625rem;
	margin-top: -0.65rem;
	display: none;
}

header .rightDiv .menu ul li div.down_list ul li a {
	text-align: center;
	display: block;
}

header .mbtn {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: url(../img/menu1.svg) no-repeat center center;
	background-size: 70%;
	position: absolute;
	top: 0;
	right: 0;
	display: none;
	z-index: 9999;
}


header .mbtn:active {
	opacity: .8;
}

header.header2 .rightDiv .menu>ul>li>a {
	color: #FFFFFF;
	margin: 0 2px;
	position: relative;
	text-transform: capitalize;
}

/* header.header2 .rightDiv .menu>ul>li:hover>a {
	border-bottom: 2px #FFFFFF solid;
}
 */
/* header.header2 .rightDiv .menu>ul>li>a.now {
	border-bottom: 2px #FFFFFF solid;
} */

/* header.header2 .rightDiv .menu>ul>li>ul>li:hover a {
	border-bottom: none;
} */

/* header .rightDiv .menu>ul>li:last-child>a {
	padding: 0;
	margin: 0;
	margin-top: 2.5rem;
	margin-left: 1rem;
}
 */
body.on-menu header .mbtn {
	background: url(../img/menu-hide1.svg) no-repeat center center;
	background-size: 40%;
	z-index: 9999;
}

.menu,
.menu ul li,
.menu ul li a,
.menu #menu-button {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	display: block;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}


.menu #menu-button {
	display: none
}

.menu {
	width: auto;
}

#menu-line {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	background: #b3c9e2;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-ms-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out
}

.menu>ul>li {
	float: left;
}


/*.menu.align-center>ul{font-size:0;text-align:center}
.menu.align-center>ul>li{display:inline-block;float:none}
.menu.align-center ul ul{text-align:left}
.menu.align-right>ul>li{float:right}
.menu.align-right ul ul{text-align:right}*/
.menu>ul>li>a {
	padding: 0;
	font-size: 1vw;
	text-decoration: none;
	text-transform: uppercase;
	color: #333;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease
}

.menu>ul>li:hover>a,
.menu>ul>li.active>a {
	color: #fff;
}

/* .menu>ul>li.has-sub>a {
	padding-right: 20px;
} */

/*.menu>ul>li.has-sub>a::after{position:absolute;top:50%;margin-top:-6px;right:-15px;width:8px;height:8px;border-bottom:1px solid #000;border-right:1px solid #000;content:"";-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:border-color .2s ease;-moz-transition:border-color .2s ease;-ms-transition:border-color .2s ease;-o-transition:border-color .2s ease;transition:border-color .2s ease}*/
/* .menu>ul>li.has-sub>a::after {
	position: absolute;
	top: 50%;
	margin-top: -3px;
	right: 0;
	width: 10px;
	height: 6px;
	content: "";
	 background: url(../img/xia.png) no-repeat; */
/*} */
.menu ul li {
	/* overflow: hidden; */
}

.menu ul li:hover {
	/* overflow: visible; */
}

/*.menu>ul>li.has-sub:hover>a::after,.menu>ul>li.has-sub.on>a::after{border-color:#fff}*/
.menu ul ul {}

/* .menu ul li:hover>ul {
	display: block;
}
 */
/*.menu.align-right li:hover>ul{right:0}*/
.menu ul ul ul {
	right: 100%;
	top: 0;
	width: 100%;
}

.menu ul ul li:hover>ul {
	margin-left: 0;
}


/*.menu.align-right ul ul ul{margin-left:0;margin-right:100%}*/
.menu>ul>li>ul {

	width: 120px;
	/* margin-left: -8px; */
	text-align: center;
	top: 5.2vw;
	position: absolute;
	z-index: 99;
	display: none;
	transition: all 0.5s;
	left: 50%;
	transform: translate(-50%, 0);
	background: rgba(0, 0, 0, 0.7);
	/* background: rgba(71, 151, 0, 0.7); */
}

.menu ul ul .ul {
	background: rgba(255, 255, 255, 1);
	/* border-radius: 6px; */
	box-shadow: 0px 5px 5px rgba(0, 0, 0, .1);
}

.menu>ul>li>ul>li {
	-webkit-transition: height .2s ease;
	-moz-transition: height .2s ease;
	-ms-transition: height .2s ease;
	-o-transition: height .2s ease;
	transition: height .2s ease;
	/* text-align: center; */
}

/*.menu ul ul li:first-child{border-radius: 6px 6px 0 0;}*/

/*.menu ul ul li a{padding:10px;width: width: 100%;;font-size:15px;text-decoration:none;color:#666666;-webkit-transition:color .2s ease;-moz-transition:color .2s ease;-ms-transition:color .2s ease;-o-transition:color .2s ease;transition:color .2s ease}
.menu ul ul li:hover>a,.menu ul ul li a:hover{color:#81D8D0;background: #F9F9F9;}*/
.menu>ul>li>ul>li {
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
	padding: 5px 0;
}

.menu>ul>li>ul>li:hover a {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* .menu ul ul li:hover a span {
	display: inline-block;
	width: 10px;
	height: 2px;
	background: #fff;
	margin-right: 3px;
}
 */
.menu ul ul li>a:hover,
.menu ul ul li a:hover {
	/* color: #f05a59; */
	border: 0;
	/* background: rgba(71, 151, 0, 0.7); */
}

.menu ul ul li:last-child>a {
	border: 0;
}


.bannerIndex,
.banner_nei {
	margin-top: 5.2vw;
	position: relative;

}

.bannerIndex .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #479700;
	opacity: 0.6;
	border-radius: 0;
	border-radius: 50%;
	transition: all 0.5s;
}

.bannerIndex .swiper-button-white {
	opacity: 0.6;
	background-size: 70%;
	z-index: 99;
}


.bannerIndex .swiper-pagination-bullet-active {
	width: 40px;
	background: #479700;
	opacity: 1;
	border-radius: 10px;
}

.bannerIndex img {
	min-height: 25vw;
	object-fit: cover;
}

.bannerIndex p.more {
	width: 110px;

	border: 1px #fff solid;
	text-align: center;
}

.bannerIndex p.more:hover {
	background: #204e9e;
	color: #fff;
	border: 1px #204e9e solid;
}

.bannerIndex .swiper-pagination {
	color: #fff;
	font-size: 1.4vw;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.search {
	margin-top: 1.7vw;
	width: 11.5vw;
	margin-left: 1.5vw;
	overflow: hidden;
}

.search form {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.search form input {
	width: calc(100% - 2.2vw);
	border: solid 1px #ababab;
	border-right: 0;
	border-radius: 0.8vw 0 0 0.8vw;
	font-size: 0.83vw;
	padding: 0 0.5vw;
}

.search form button {
	width: 2.2vw;
	background-color: #25a55f;
	border-radius: 0 0.8vw 0.8vw 0;
	border: 0;
	cursor: pointer;
}

.search form button img {
	width: 60%;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%233ba86f'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
	right: auto
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%233ba86f'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
	left: auto
}

.zsDiv {
	width: 80%;
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.zsDiv .swiper-pagination {
	text-align: right;
	padding-right: 1vw;
}

.zsDiv .swiper-button-prev {
	width: 1.77vw;
	height: 1.77vw;
	background-color: #ffffff;
	border-radius: 50%;
	background-size: 40%;
	left: auto;
	right: 8vw;
	top: -1.25vw;
	opacity: 0.8;
	box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.3);
}

.zsDiv .swiper-button-next {
	top: -1.25vw;
	right: 5vw;
	width: 1.77vw;
	height: 1.77vw;
	background-color: #ffffff;
	border-radius: 50%;
	background-size: 40%;
	opacity: 0.8;
	box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.3);
}

.indexDiv1 .content {
	width: 67%;
}

.title .cn {
	font-size: 2.39vw;
}

.title .en {
	font-size: 1.66vw;
	opacity: 0.2;
	margin-top: 1vw;
}

.indexDiv1 .title1 {
	width: 21.5vw;
	height: 26.35vw;
	background-color: #25a55f;
	padding: 3vw 1.8vw;
	padding-bottom: 1.8vw;
}

.logoImg {
	position: absolute;
	right: 0;
	bottom: 34px;
}

.indexDiv1 .content ul li {
	padding: 0.5vw 1.45vw;
	font-size: 1.35vw;
	cursor: pointer;
}

.indexDiv1 .content ul {
	display: flex;
	align-items: center;
	border-bottom: 1px #ddd solid;
}

.indexDiv1 .content ul li.active {
	background-color: #346473;
	color: #e9f679;
}

.indexDiv1 .content .textDiv {
	width: 32.39vw;
	height: 14.9vw;
	background-color: #f7f7f7;
	padding: 2.08vw 2.5vw;
	right: 5.2vw;
	position: absolute;
	bottom: 3.64vw;
}

.indexDiv1 .content {
	height: 31.25vw;
}

.indexDiv1 .content .swiper-container {
	position: absolute;
	left: 0;
	top: 4.25vw;
	width: 100%;

}

.indexDiv1 .content .swiper-slide img {
	width: 52.7vw;
	height: 31.25vw;
	object-fit: cover;
}

.indexDiv1 .content .textDiv .txt {
	margin-top: 1vw;
}

.indexDiv1 .content .swiper-button-prev {
	width: 2vw;
	height: 2vw;
	background-color: #346473;
	right: 11vw;
	left: auto;
	bottom: 5vw;
	top: auto;
	background-size: 40%;

}

.indexDiv1 .content .swiper-button-next {
	width: 2vw;
	height: 2vw;
	background-color: #346473;
	right: 8vw;
	left: auto;
	bottom: 5vw;
	top: auto;
	background-size: 40%;

}

.indexDiv2 .swiper-slide a{
 display: block;
 width: 100%;
}

.indexDiv2 .content {
	padding-top: 1.833vw;
	margin-top: 2.5vw;
	background: url(../img/index3.jpg) no-repeat center top;
	background-size: 100%;
}


.indexDiv2 .content .textDiv {
	/* border-top: 0.6vw #fff solid; */
	background: #fff;
	position: relative;
	box-shadow: 0 0 0.8vw #999;
	padding-top: 0.6vw;
}

.indexDiv2 .content .textDiv .wenzi {
	padding: 1.833vw;
}

.indexDiv2 .content .textDiv .imgDiv {
	height: 14.58vw;
}

.time {
	text-align: right;
	margin-top: 1vw;
}

.indexDiv2 .swiper-slide-prev .textDiv {
	border-bottom: 0.6vw #346473 solid;
	box-shadow: 0 0 0.5vw #ccc;
}

.indexDiv2 .swiper-slide-next .textDiv {
	border-bottom: 0.6vw #346473 solid;
}

.indexDiv2 .swiper-slide-active .textDiv {
	border-bottom: 0.6vw #346473 solid;
	/* border-top: 0.6vw #fff solid; */
	padding-top: 3vw;
}

.indexDiv2 .swiper-slide {
	padding-bottom: 5.8vw;
}

.indexDiv2 .swiper-slide {
	/* 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;
	transition: 300ms;
	transform: scale(0.9);
}

.indexDiv2 .swiper-slide-active,
.indexDiv2 .swiper-slide-duplicate-active {
	transform: scale(1.25);
	z-index: 9999;
}

.indexDiv2 .swiper-slide-active .textDiv .imgDiv {
	height: 16vw;
}

.indexDiv2 .swiper-slide-active .textDiv .wenzi {
	transform: scale(0.9);
	padding-bottom: 1.2vw;
}

/* .indexDiv2 .swiper-slide-active .textDiv::after{
	content: "";
	position: absolute;
	bottom: 0;
	width: 53%;
	height:  0.6vw;
	background: #346473;	
	left: 0;
	bottom: 0vw;
	margin: 0 auto;
	transform: rotate(25deg);
}
.indexDiv2 .swiper-slide-active .textDiv::before{
	content: "";
	position: absolute;
	bottom: 0;
	width: 53%;
	height:  0.6vw;
	background: #346473;	
	right: 0;
	bottom: 0vw;
	margin: 0 auto;
	transform: rotate(-25deg);
} */
.indexDiv2 .swiper-slide-active .textDiv {
	transform: scale(0.9);
}

.indexDiv2 .swiper-slide-active .textDiv .wenzi {
	padding-top: 1vw;
}

.indexDiv2 .swiper-button-prev,
.indexDiv2 .swiper-button-next {
	width: 3.64vw;
	height: 3.64vw;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 3px 2px 7px 0px rgba(0, 0, 0, 0.2);
	top: 24%;
	background-size: 30%;
}

.indexDiv2 .swiper-button-prev {
	left: -1.2vw;
}

.indexDiv2 .swiper-button-next {
	right: -1.2vw;
}

.indexDiv3 .title {
	padding-bottom: 1vw;
	border-bottom: 1px #333 solid;
	width: 80%;
	margin: 0 auto;
}

.indexDiv3 .swiper-pagination {
	text-align: right;
}

.wzImg {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 17.39vw;
	height: 13.8vw;
}

a.more {
	width: 9.73vw;
	height: 2.08vw;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #3ba86f;
	color: #3ba86f;
	margin-top: 2vw;
}

.indexDiv3 .content {
	padding: 1vw 0;
}

.pageDiv {
	position: absolute;
	bottom: 2vw;
	left: 0;
	right: 0;
	display: flex;
	justify-content: flex-end;
}

.pageDiv .swiper-pagination-bullet {
	width: 0.5vw;
	height: 0.5vw;
	border-radius: 0;
	margin: 0 2px;
	background: #fff;
	opacity: 1;
}

.pageDiv .swiper-pagination-bullet-active {
	background: #3ba86f;
}

.indexDiv3 .swiper-slide .wenzi {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	z-index: 9;
}

.indexDiv3 .swiper-slide .wenzi .textDiv {
	height: 100%;
	width: 27.7vw;
	padding: 3vw 2vw;
	background: rgba(255, 255, 255, .7);
}

.indexDiv3 .swiper-slide>img {
	height: 22vw;
	object-fit: cover;
}

.indexDiv3 {
	margin-top: -3vw;
}

.indexDiv3 .line {
	height: 1vw;
	margin-bottom: 0.5vw;
}

.indexDiv3 .bt {
	color: #346473;
}

.title2 .en {
	margin-left: 0.6vw;
}

.date {
	color: #e1e1e1;
}

.date .big {
	font-size: 2.76vw;
	margin-bottom: 0.5vw;
	line-height: 2.76vw;
}

.indexDiv4 .tuijianDiv {
	width: 36.875vw;
	background: #fff;
}

.indexDiv4 .tuijianDiv .imgDiv {
	height: 19vw;
}

.indexDiv4 .tuijianDiv .wenzi {
	padding: 1vw;
}

.indexDiv4 .newsList {
	width: 39.583vw;
}

.indexDiv4 .newsList li {
	margin-bottom: 0.5vw;
}

.indexDiv4 .newsList li:last-child {
	margin-bottom: 0;
}

.indexDiv4 .newsList li .textDiv {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 0.75vw 0;
}

.indexDiv4 .newsList li .textDiv .date {
	width: 6.25vw;
	text-align: center;
}

.indexDiv4 .newsList li .textDiv .n_txt {
	width: calc(100% - 7vw);
	padding-right: 1.5vw;
}

.tabDiv ul.tab {
	display: flex;
	align-items: center;
}

.tabDiv ul.tab li {
	padding: 0.5vw 1.45vw;
	font-size: 1.35vw;
	cursor: pointer;
}

.tabDiv {
	border-bottom: 0.8vw;
	border-bottom: 1px #ccc solid;
	margin-bottom: 1.5vw;
}

.indexDiv4 {
	background: #f4f4f4;
	position: relative;
	padding-bottom: 3.8vw;
}

.indexDiv4 .wrap {
	position: relative;
	z-index: 9;
}

.bgImg {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}



.tabDiv ul.tab li.active {
	background-color: #346473;
	color: #e9f679;
}

footer .line {
	width: 100%;
	height: 1px;
	background: #346473;
}

.footer {
	background-color: #346473;
	padding-top: 2vw;
	padding-bottom: 2.5vw;
}

.banquan a {
	color: #fff;
}

.banquan a:hover {
	text-decoration: underline;
}

footer .backTop {
	width: 3.85vw;
	height: 3.85vw;
	position: absolute;
	background: #fff;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 5px #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -1.5vw;
}

footer .backTop img {
	width: 50%;
}

.ewmDiv img {
	width: 5.72vw;
}

.tel_bott img {
	width: 12.39vw;
}

.erjiDiv {
	position: fixed;
	top: 5.2vw;
	background: rgba(0, 0, 0, .8);
	width: 100%;
	height: 25vw;
	left: 0;
	padding: 2.25vw 0;
	display: none;
}

.tDiv {
	width: 20%;
	height: 21vw;
	text-align: left;
	border-right: 1px rgba(255, 255, 255, .3) solid;
}

.erjiDiv .wrap {
	display: flex;
	justify-content: space-between;
}

.imgLink {
	width: 55%;
}

.tDiv ul {
	display: block;
}

.tDiv ul li a {
	color: #fff;
	display: block;
	padding: 0.5vw 0;
}

.tDiv ul li a:hover {
	color: #25a55f;
}

.imgLink ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.imgLink ul li {
	width: 42%;
	text-align: left;
	margin-bottom: 0.5vw;
}

.imgLink ul li img {
	height: 8.3vw;
	width: 100%;
	object-fit: cover;
	margin-bottom: 0.5vw;
}

.imgLink.third ul li {
	width: 30%;
}

.imgLink ul li a {
	text-align: left;
}

.imgLink ul li a:hover .fw {
	color: #25a55f;
}

.menu>ul>li:hover .erjiDiv {
	display: block;
}

.menu>ul>li .imgLink ul.zx_list li {
	width: 100%;
}

.menu>ul>li .imgLink ul.zx_list li a:hover,
.menu>ul>li .imgLink ul.zx_list li:hover .fw {
	color: #25a55f !important;
}

.menu>ul>li .imgLink ul.zx_list li a:hover .opc5 {
	opacity: 1;
}

.menu>ul>li .imgLink ul.zx_list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff !important;
}

.menu>ul>li .imgLink ul.zx_list li a p {
	width: calc(100% - 6vw);
}

.s_list ul li {
	width: 47%;
}

.s_list ul li .textDiv {
	border: 1px #fff solid;
	padding: 1vw;
}

.s_list ul li {
	margin-bottom: 1.5vw;
}

.listDiv {
	width: calc(100% - 19.8vw);
}

.navDiv {
	width: 15.78vw;
	padding-top: 1.5vw;
}

.b_num {
	font-size: 2.15vw;
}

.lvDiv1 .date {
	width: 5.10vw;
	height: 5.10vw;
	background-color: #25a55f;
	z-index: 9;
	color: #fff;
}

.lvDiv1 .listDiv .imgDiv {
	height: 22.24vw;
	width: 100%;
	border: solid 2px #346473;
}

.lvDiv1 .conDiv {
	padding: 2.6vw 1.3vw;
}

.biaoqian span {
	display: inline-block;
	margin-right: 0.5vw;
	padding: 0.2vw 0.5vw;
	background-color: #e4e4e4;
	color: #858585;
}

.moreDiv {
	display: flex;
	align-items: center;
}

.moreDiv img {
	margin-right: 0.2vw;
	margin-left: 0.5vw;
}

.lvDiv1 .listDiv ul li .wenzi {
	padding: 2vw 0;
}

.serDiv {
	border-bottom: 1px #ccc solid;
	padding-bottom: 0.5vw;
}

.serDiv form {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.serDiv form input {
	width: calc(100% - 1vw);
	padding-right: 0.5vw;
	border: 0;
}

.serDiv form button {
	width: 1vw;
	height: 1vw;
	background: none;
	border: 0;
	padding: 0;
}

.serDiv form button img {
	width: 90%;
}

.title_erji {
	padding-bottom: 0.5vw;
	border-bottom: 1px #ccc solid;
	position: relative;
}

.title_erji:before {
	content: "";
	position: absolute;
	height: 3px;
	width: 11.35vw;
	bottom: -2px;
	left: 0;
	background-color: #25a55f;
}

.erjiNav ul li a {
	display: block;
	padding: 0.85vw 0;
	border-bottom: 1px #ccc solid;
}

.fenlei a {
	display: inline-block;
	padding: 0.1vw 0.65vw;
	border: solid 1px #e4e4e4;
	color: #858585;
	margin-bottom: 0.5vw;
	margin-right: 0.5vw;
}

.fenlei a:hover {
	background-color: #25a55f;
	border: solid 1px #e4e4e4;
	color: #fff;
}

.u_like ul li {
	margin-top: 1vw;
}

.u_like ul li .ovh2 {
	height: 2.58vw;
}

.u_like ul li .txt {
	width: calc(100% - 5.53vw);
}

.u_like ul li .imgDiv {
	width: 4.53vw;
	height: 4.53vw;
}

.fenye {
	margin-bottom: 2vw;
}

.fenye ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fenye ul li {
	display: flex;
	margin-bottom: 0 !important;
	margin: 0 0.2vw;
	border: solid 1px #888888;
	min-width: 1.9vw;
	height: 1.9vw;
	align-items: center;
	justify-content: center;	
}

.fenye ul li a {
	display: flex;
	opacity: 0.7;
	min-width: 1.9vw;
	height: 1.9vw;
	padding: 0 0.25vw;
	align-items: center;
	justify-content: center;
}

.fenye ul li a:hover {
	border: solid 1px #25a55f;
}

.linkPage {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 1vw;
}

.linkPage input {
	border: solid 1px #888888;
	opacity: 0.7;
	padding: 0 0.15vw;
	width: 2vw;
	height: 2vw;
	margin: 0 0.5vw;
}

.linkPage button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 2vw;
	height: 2vw;
	border: solid 1px #888888;
	opacity: 0.7;
	background: #fff;
	margin-left: 1vw;
}


.title_erji.bor0:before {
	display: none;
}

.lx_list ul li {
	display: flex;
	justify-content: space-between;
	line-height: 2vw;
	padding-right: 1.5vw;
}

.lx_list ul li p:first-child {
	width: 3.25vw;
}

.lx_list ul li p:nth-child(2) {
	width: calc(100% - 3.25vw);
}

.newsDiv1 .listDiv li {
	margin-bottom: 2.5vw;
}

.newsDiv1 .listDiv li .textDiv {
	display: flex;
	justify-content: space-between;
}

.newsDiv1 .listDiv li .textDiv .imgDiv {
	width: 19.11vw;
	height: 11.19vw;
}

.newsDiv1 .listDiv li .textDiv .wenzi {
	width: calc(100% - 21vw);
	border-bottom: 1px #ccc solid;
}

.weizhi {
	text-align: right;
	margin-bottom: 1.6vw;
}

.weizhi {
	padding-bottom: 0.8vw;
	border-bottom: 1px #ccc solid;
}

.weizhi a {
	font-size: 0.937vw;
	color: #999;
}

.detail_bt {
	padding: 1.8vw 0;
	padding-bottom: 1.8vw;
	border-bottom: 1px #d4d4d4 solid;
}

.xinxi p {
	margin: 0 0.5vw;
}

.pDiv {
	width: 23.02vw;
	border-top: 0.4vw #25a55f solid;
	padding: 1vw;
	background-color: #f3f5f7;
	box-shadow: 5px 3px 9px 0px rgba(0, 0, 0, 0.15);
}

.p_title {
	padding-bottom: 0.5vw;
	margin-bottom: 0.8vw;
}

.p_title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1.5vw;
	height: 3px;
	background-color: #25a55f;
}

.pnDiv {
	margin-bottom: 3vw;
}

.pnDiv .time {
	padding-left: 1vw;
	border-left: 1px #ccc solid;
	text-align: left;
}

.s_nav_erji ul li {
	width: 20%;
}

.s_nav_erji ul {
	display: flex;
	align-items: center;
	justify-content: initial;
	flex-wrap: wrap;

}

.s_nav_erji ul li a {
	padding: 0.8vw 0;
	display: block;
	font-size: ;
	color: #fff;
	text-align: center;
}

.s_nav_erji ul li a:hover,
.s_nav_erji ul li a.now {
	background-color: #2d8469;
}

.s_nav_erji {
	background-color: #346473;
}

.s_title {
	color: #346473;
}

.s_title p {
	margin: 0 0.2vw;
}

.s_title .line {
	position: relative;
	width: 12.5vw;
	height: 1px;
	background-color: #346473;
	margin: 0 auto;
	margin-top: 1vw;
}

.s_title .line:before {
	content: "";
	position: absolute;
	left: 0;
	width: 30%;
	bottom: -1px;
	height: 3px;
	background-color: #346473;
}

.selutionDiv1 .swiper-container {
	width: 92%;
}

.selutionDiv1 .swiper-button-black {
	opacity: 0.3;
	background-size: 100%;
}

.selutionDiv1 .wenzi {
	margin: 1vw;
}

.selutionDiv1 .textDiv {
	background-color: #f9f9f9;
	box-shadow: 0.03vw 0.02vw 0.75vw 0px rgba(0, 0, 0, 0.1);
	padding-bottom: 0.2vw;
}

.selutionDiv1 .swiper-slide {
	padding: 0.5vw;
}

.selutionDiv2 .content {
	padding: 3vw 2.5vw;
	background-color: #f9f9f9;
	border: solid 1px #e3e3e3;
}

.selutionDiv3 form li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-items: flex-start;
	margin-bottom: 1.5vw;
}

.selutionDiv3 form li input {
	width: 12.44vw;
	height: 2.08vw;
	background-color: #f5f5f5;
	border-radius: 10px;
	border: solid 1px #e3e3e3;
	padding: 0 0.5vw;
	margin-left: 0.5vw;
}

.selutionDiv3 form li textarea {
	width: 74.8vw;
	border: solid 1px #e3e3e3;
	height: 16.67vw;
	background-color: #f5f5f5;
	border-radius: 10px;
}

.selutionDiv3 form button {
	width: 7.44vw;
	height: 2.12vw;
	background-color: #25a55f;
	border-radius: 10px;
	display: block;
	border: 0;
	margin: 0 auto;
	margin-top: 1.5vw;
	color: #fff;
	margin-bottom: 4vw;
}

.selutionDiv3 form .button {
	width: 7.44vw;
	height: 2.12vw;
	background-color: #25a55f;
	border-radius: 10px;
	display: block;
	border: 0;
	margin: 0 auto;
	margin-top: 1.5vw;
	color: #fff;
	margin-bottom: 4vw;
}

.fw_title {
	color: #346473;
}

.service_js .content {
	padding: 1.25vw 1.6vw;
	background-color: #efefef;
	display: flex;
	justify-content: space-between;
}

.service_js .content .textDiv {
	width: calc(100% - 33.33vw);
}

.service_js .content .imgDiv {
	width: 31.4vw;
	border: 0.5vw #fff solid;
	border-radius: 0.5vw;

}

.s_more {
	display: flex;
	width: 7.13vw;
	height: 2.08vw;
	border: solid 1px #858585;
}

.zc_title .line {
	width: 2.55vw;
	height: 0.25vw;
	background-color: #25a55f;
	border-radius: 2px;
	margin: 0 auto;
	margin-top: 0.5vw;
}

.zcDiv2 .tab li {
	border: solid 2px #b3b3b3;
	padding: 0.25vw 0.85vw;
	margin: 0 0.85vw;
	position: relative;
}

.zcDiv2 .tab li.active {
	color: #25a55f;
	border: solid 2px #25a55f;
}

.zcDiv2 .tab li.active:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -0.6vw;
	width: 1vw;
	height: 2px;
	background: #25a55f;
}

.zcDiv2 .col-lg-4 {
	margin-bottom: 2vw;
}

.zcDiv2 .col-lg-4 .textDiv {
	position: relative;
	padding-bottom: 1.88vw;
}

.zcDiv2 .col-lg-4 .textDiv::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 80%;
	margin: 0 auto;
	height: 1px;
	background: #ccc;
	margin: 0 auto;
	left: 0;
	right: 0;
}

.zcDiv2 .col-lg-4 .textDiv:hover::after {
	background: #346473;
}

.zcDiv2 .col-lg-4 .textDiv:hover .f3 {
	color: #25a55f;
}

.zcDiv2 .imgBox .more_ab {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 9;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 165, 95, .7);
	opacity: 0;
	transition: all 0.5s;
}

.zcDiv2 .textDiv:hover .imgBox .more_ab {
	opacity: 1;
}


.fenye2 ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fenye2 ul li p,
.fenye2 ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0.25vw;
	background-color: #ffffff;
	border: solid 1px #d9d9d9;
	padding: 0.1vw 0.55vw;
	min-width: 1.53vw;
}

.fenye2 ul li a:hover,
.fenye2 ul li a.now {
	background-color: #25a55f;
	color: #fff;
}

.zcDiv3 form ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #f7f7f7;
	padding: 1.6vw 3vw;
}

.zcDiv3 form ul li {
	width: 48%;
	display: flex;
	align-items: center;
	color: #858585;
	margin-bottom: 2.5vw;
}

.zcDiv3 form ul li:last-child {
	margin-bottom: 0;
}

.zcDiv3 form ul li .edit {
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 1px #c4c4c4;
	border-radius: 0.9vw;
}

.zcDiv3 form ul li .edit a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.85vw;
	height: 3.59vw;
	width: 3.59vw;
	background-color: #eee;
	border-radius: 0.9vw 0px 0px 0.9vw;
	color: #999;
}

.zcDiv3 form ul li .edit a.jianNum {
	border-radius: 0px 0.9vw 0.9vw 0px;
}

.zcDiv3 form ul li .edit input {
	width: 15.5vw;
	background: #fff;
	height: 3.59vw;
	border: 0;
	text-align: center;
}

.zcDiv3 form ul li select {
	width: 22.91vw;
	height: 3.59vw;
	background-color: #ffffff;
	border-radius: 0.8vw;
	border: solid 1px #bababa;
	color: #858585;
	padding: 0 0.8vw;
	outline: none;
	font-size: 1.25vw;
}

.zcDiv3 form ul li input {
	width: 22.91vw;
	height: 3.59vw;
	background-color: #ffffff;
	border-radius: 0.8vw;
	border: solid 1px #bababa;
	color: #858585;
	padding: 0 0.8vw;
	outline: none;
	font-size: 1.25vw;
}

.zcDiv3 form ul li label {
	width: 10vw;
}

.tsDiv textarea {
	width: 100%;
	height: 15vw;
	background-color: #f9f9f9;
	border: solid 1px #c4c4c4;
	padding: 1vw;
}

.zcDiv3 form button {
	width: 7.44vw;
	height: 2.12vw;
	background-color: #25a55f;
	border-radius: 10px;
	display: block;
	border: 0;
	margin: 0 auto;
	margin-top: 1.5vw;
	color: #fff;
	margin-bottom: 4vw;
}

.zcDiv3 form .button {
	width: 7.44vw;
	height: 2.12vw;
	background-color: #25a55f;
	border-radius: 10px;
	display: block;
	border: 0;
	margin: 0 auto;
	margin-top: 1.5vw;
	color: #fff;
	margin-bottom: 4vw;
}

.proXqDiv1 .content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.proXqDiv1 .content .imgDiv {
	width: 31.04vw;
	height: 30.05vw;
}

.proXqDiv1 .content .textDiv {
	width: 45.26vw;
}

.proXqDiv1 .content .textDiv .tab {
	display: flex;
	align-items: center;
}

.proXqDiv1 .content .textDiv .tab li {
	padding: 0.5vw 2vw;
	text-align: center;
	border: solid 1px #e9e9e9;
	cursor: pointer;
	border-bottom: 0;
}

.proXqDiv1 .content .textDiv .tab li.active {
	border: 0;
	background-color: #25a55f;
	color: #fff;
}

.proXqDiv1 .content #tabCon {
	border: solid 1px #e9e9e9;
	border-top: 2px #25a55f solid;
	padding: 1.5vw;
	min-height: 22vw;
}

.proXqDiv1 .content .guige ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.proXqDiv1 .content .guige ul li {
	width: 45%;
	margin-bottom: 1vw;
	display: flex;
}

.proXqDiv1 .content .guige ul li p:nth-child(2) {
	width: calc(100% - 6vw);
}

.xgTitle {
	border-bottom: 1px #ccc solid;
}

.xgTitle p {
	width: 8vw;
	height: 3vw;
	text-align: center;
	color: #fff;
	line-height: 3vw;
	background: #25a55f;
	position: relative;
}

.xgTitle p::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: -0.5vw;
	font-size: 0;
	line-height: 0;
	border-width: 10px;
	border-color: #25a55f;
	border-bottom-width: 0;
	border-style: dashed;
	border-top-style: solid;
	border-left-color: transparent;
	border-right-color: transparent;
}

.xgDiv .swiper-button-white {
	width: 2.5vw;
	height: 2.5vw;
	background-color: rgba(0, 0, 0, 0.5);
	background-size: 40%;
	top: 40%;
}

.xgDiv .swiper-button-prev {
	left: -1vw;
}

.xgDiv .swiper-button-next {
	right: -1vw;
}

.xgDiv .textDiv .wenzi {
	padding: 1vw;
}

.xgDiv {
	margin-bottom: 4vw;
}

.xgDiv .textDiv .imgDiv {
	box-shadow: 3px 2px 7px 0px rgba(0, 0, 0, 0.15);
	height: 17.86vw;
}

.title_lx {
	color: #346473;
}

.title_lx .line {
	width: 3.5vw;
	height: 0.15vw;
	background-color: #a8a8a8;
	margin: 0 auto;
	margin-top: 0.5vw;
}

.contactDiv1 ul li {
	max-width: 32%;
	display: flex;
	align-items: center;
	justify-content: initial;
}


.contactDiv1 ul {
	display: flex;
	justify-content: space-between;

}

.contactDiv1 ul li .txt {
	color: #346473;
	font-family: BebasNeue;
}

.contactDiv1 ul li img {
	margin: 1vw 0;
	width: 1.875vw;
	height: 1.875vw;
	margin-bottom: 0.85vw;
	margin-right: 1vw;
}

.mapDiv {
	height: 38vw;
	box-shadow: 6px 4px 17px 2px rgba(0, 0, 0, 0.1);
}

.contactDiv1 {
	padding-bottom: 6.58vw;
}

.contactDiv1::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	height: 30%;
	z-index: -1;
	background-color: #d4d4d4;
}

.contactDiv2 ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contactDiv2 ul li {
	position: relative;
	cursor: pointer;
}
.contactDiv2 ul li>img{
	width: 4.166vw;
}

.contactDiv2 ul li .ewmDiv_hide {
	width: 9.58vw;
	height: 9.58vw;
	background-color: #ffffff;
	position: absolute;
	top: 50%;
	right: -11.5vw;
	transform: translate(0, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	border: #25a55f 0.25vw solid;
	box-shadow: 3px 2px 5px 0px rgba(0, 0, 0, 0.2);
	display: none;
}

.contactDiv2 ul li .ewmDiv_hide:before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	border-top: 0.8vw transparent solid;
	border-right: 1vw #25a55f solid;
	border-bottom: 0.8vw transparent solid;
	border-left: 20px transparent solid;
	left: -2.2vw;
	z-index: 9;
}

.contactDiv2 ul li .ewmDiv_hide img {
	max-width: 100%;
	max-height: 100%;
}

.contactDiv2 ul li:last-child .ewmDiv_hide {
	width: 9.58vw;
	height: 9.58vw;
	background-color: #ffffff;
	position: absolute;
	top: 50%;
	left: -11.5vw;
	right: auto;
	transform: translate(0, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	border: #25a55f 0.25vw solid;
	box-shadow: 3px 2px 5px 0px rgba(0, 0, 0, 0.2);
	display: none;

}

.contactDiv2 ul li:last-child .ewmDiv_hide:before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%) rotate(180deg);
	border-top: 0.8vw transparent solid;
	border-right: 1vw #25a55f solid;
	border-bottom: 0.8vw transparent solid;
	border-left: 1vw transparent solid;
	right: -2.2vw;
	z-index: 9;
	left: auto;
}

.contactDiv2 ul li:hover .ewmDiv_hide {
	display: flex;
}

.contactDiv2 {
	padding: 7.5vw 0;
}

.contactDiv3 .content ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contactDiv3 .content ul li {
	width: 48%;
	margin-bottom: 3vw;
}

.contactDiv3 .content ul li p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 3vw;
	padding: 0 1vw;
	background-color: #f9f9f9;
	border: solid 1px #c4c4c4;
}

.contactDiv3 .content ul li p input {
	width: calc(100% - 2vw);
	border: 0;
	background: none;
}

.contactDiv3 .content ul li:last-child {
	width: 100%;
}

.contactDiv3 .content ul li .ly {
	width: 100%;
	height: 8vw;
	background-color: #f9f9f9;
	border: solid 1px #c4c4c4;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 1vw;
}

.contactDiv3 .content ul li .ly textarea {
	width: calc(100% - 2vw);
	height: 6.5vw;
	background: none;
	border: 0;
}

.contactDiv3 .content ul li .ly img {
	margin-top: 0.2vw;
}

.btnDiv button {
	width: 6.8vw;
	height: 3vw;
	background-color: #346473;
	border: solid 1px #c4c4c4;
	border: 0;
	color: #fff;
	margin-left: 1.5vw;
}

.btnDiv .button {
	width: 6.8vw;
	height: 3vw;
	background-color: #346473;
	border: solid 1px #c4c4c4;
	border: 0;
	color: #fff;
	margin-left: 1.5vw;
}

.btnDiv .yzm {
	border: solid 1px #c4c4c4;
	height: 3vw;
	border-left: 0;
}

.btnDiv .yzm input {
	height: 3vw;
	width: 10vw;
	border: 0;
	border: solid 1px #c4c4c4;
}

.btnDiv .yzm img {
	height: 3vw;
}

.btnDiv {
	margin-bottom: 4vw;
}

.kp_title {
	color: #346473;
	position: relative;
}

.kp_title:before {
	width: 35%;
	height: 1px;
	background: #ccc;
	top: 50%;
	left: 0;
	content: "";
	position: absolute;
}

.kp_title::after {
	width: 35%;
	height: 1px;
	background: #ccc;
	top: 50%;
	right: 0;
	content: "";
	position: absolute;
}

.kepuDiv2 .content {
	display: flex;
	justify-content: space-between;
}

.kepuDiv2 .content .tjDiv {
	width: 36.45vw;
}

.kepuDiv2 .content .tjDiv .wenzi {
	padding: 1vw;
	background-color: #f7f7f7;
	border: solid 1px #d4d4d4;
}

.kepuDiv2 .content .kpList {
	width: 40.1vw;
}

.kpList li {
	padding-bottom: 1vw;
	margin-bottom: 1vw;
	border-bottom: 1px #ccc solid;
}

.kepuDiv3 .col-lg-4 {
	margin-bottom: 2vw;
}

.kepuDiv3 .textDiv {
	background-color: #f6f6f6;
}

.kepuDiv3 .textDiv .wenzi {
	padding: 1.5vw;
}

.kepuDiv3 .textDiv:hover .wenzi {
	background-color: #346473;
	color: #fff;
}

.kepuDiv3 .textDiv:hover .wenzi .f3 {
	color: #25a55f;
}

.kepuDiv3 .textDiv:hover .wenzi .f8 {
	color: #fff;
}

.kepuDiv3 .textDiv:hover .wenzi .moreDiv img {
	filter: brightness(200);
}

.kepuDiv3 .textDiv:hover .wenzi .moreDiv .green {
	color: #fff;
}

.aboutDiv2 {
	background-color: #f1f1f1;
}

.aboutDiv2 .swiper-container {
	padding-bottom: 3vw;
}

.aboutDiv2 .textDiv {
	padding: 1vw 1.5vw;
	background: #fff;
}

.aboutDiv2 .textDiv .wenzi {
	margin-top: 1vw;
	padding-top: 0.8vw;
	border-top: 1px #ccc solid;
}

.aboutDiv2 .swiper-pagination-bullet {
	width: 0.6vw;
	height: 0.6vw;
	background-color: #cecece;
	opacity: 0.8;
}
.aboutDiv2 .swiper-pagination-bullet-active{
	background-color: #25a55f;
}

.aboutDiv3 .content .wenzi{
	width: 70%;
	margin: 0 auto;
}

.aboutDiv3 .imgBox{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.aboutDiv3 .imgBox img:first-child{
	/*width: 34.84vw;*/
}
.aboutDiv3 .imgBox img:nth-child(2){
	/*width: 19.58vw;*/
}
.aboutDiv3 .imgBox img:nth-child(3){
	/*width: 19.79vw;*/
}
.aboutDiv3 .imgBox img:last-child{
	/*margin-top: 7vw;*/
}
.aboutDiv3{
	padding-bottom: 0;
}
.aboutDiv3:before{
	content: "";
	height: 8.8vw;
	width: 60%;
	bottom: 0;
	left: 0;
	position: absolute;
	background-color: #25a55f;
	z-index: -1;
}
.aboutDiv3::after{
	content: "";
	height: 8.8vw;
	width: 40%;
	bottom: 35%;
	right: 0;
	position: absolute;
	background-color: #25a55f;
	z-index: -1;
}

.aboutDiv4 .imgDiv{
	padding: 1vw;
}
.aboutDiv4 .imgDiv img{
	box-shadow: 0 0 1vw #ccc;
}
.aboutDiv4 .wenzi{
	position: absolute;
	z-index: 9;
	width: 100%;
	bottom: 1.5vw;
	color: #fff;
	padding: 0.5vw;
	background: linear-gradient(to right,rgba(52,100,115,0.8),rgba(255,255,255,0));
}
.aboutDiv4 .wenzi .line{
	width: 6vw;
	height: 1px;
	margin:  0.2vw 0;
	background: linear-gradient(to right,rgba(255,255,255,0.5),rgba(255,255,255,0));
}
.aboutDiv4 .swiper-button-prev,
.aboutDiv4 .swiper-button-next{
	background: none;
	width: auto;
}
.aboutDiv4 .swiper-button-prev{
	left: -4vw;
}
.aboutDiv4 .swiper-button-next{
	right: -4vw;
}

.fixed_rt {
	position: fixed;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
	z-index: 9999;
}

.fixed_rt ul li {
	position: relative;
	margin-bottom: 3px;
}
.fixed_rt ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: #f5f5f5;
}

.hideRT {
	position: absolute;
	right: 60px;
	height: 50px;
	width: 200px;
	background: #f5f5f5;
	bottom: 0;
	/* display: none; */
	padding: 0 20px;
	display: none;
	text-align: center;
	line-height: 50px;
}

.fixed_rt ul li:hover .hideRT {
	display: block;
}



/*PHONE屏幕下的专用样式*/
@media screen and (max-width:992px) {


	.wrap,
	.wrap2 {
		width: 92%;
		margin: 0 auto;
		font-size: 14px;
	}

	.showDiv {
		display: block;
	}

	.menu {
		width: 100%
	}

	.menu ul {
		width: 100%;
		display: block;
	}

	.menu ul ul {
		top: 0;
		border: 0;
		box-shadow: none;
		border-top: 1px #eee solid;
	}

	.menu ul ul .ul {
		background: #fff;
		box-shadow: none !important;
		border-radius: 0;
	}

	.menu>ul>li>a {
		padding: 0 20px;
	}

	.menu.align-center>ul,
	.menu.align-right ul ul {
		text-align: left
	}

	.menu ul li,
	.menu ul ul li,
	.menu ul li:hover>ul>li {
		width: 100%;
		height: auto;
		border-top: 1px solid rgba(255, 255, 255, .3)
	}

	.menu ul li:hover>ul {
		top: 0;
	}

	.menu ul li a,
	.menu ul ul li a {
		width: 100%
	}

	.menu>ul>li,
	.menu.align-center>ul>li,
	.menu.align-right>ul>li {
		float: none;
		display: block
	}

	.menu ul ul li a {
		padding: 0 20px 0 30px;
		font-size: 12px;
		background: 0 0
	}

	/*.menu ul ul li:hover>a,.menu ul ul li a:hover{color:#fff}*/
	.menu ul ul ul li a {
		padding-left: 40px
	}

	.menu ul ul,
	.menu ul ul ul {
		position: relative;
		left: 0;
		right: auto;
		width: 100%;
		margin: 0
	}

	.menu>ul>li.has-sub>a::after,
	.menu ul ul li.has-sub>a::after {
		display: none
	}

	#menu-line {
		display: none
	}

	.menu #menu-button {
		display: block;
		padding: 20px;
		color: #000;
		cursor: pointer;
		font-size: 12px;
		text-transform: uppercase
	}

	.menu #menu-button::after {
		content: '';
		position: absolute;
		top: 20px;
		right: 20px;
		display: block;
		width: 15px;
		height: 2px;
		background: #fff
	}

	.menu #menu-button::before {
		content: '';
		position: absolute;
		top: 25px;
		right: 20px;
		display: block;
		width: 15px;
		height: 3px;
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff
	}

	.menu .submenu-button {
		position: absolute;
		z-index: 10;
		right: 0;
		top: 0;
		display: block;
		border-left: 1px solid #eee;
		height: 52px;
		width: 52px;
		cursor: pointer
	}

	.menu .submenu-button::after {
		content: '';
		position: absolute;
		top: 21px;
		left: 26px;
		display: block;
		width: 1px;
		height: 11px;
		background: #999;
		z-index: 99
	}

	.menu .submenu-button::before {
		content: '';
		position: absolute;
		left: 21px;
		top: 26px;
		display: block;
		width: 11px;
		height: 1px;
		background: #999;
		z-index: 99
	}

	.menu .submenu-button.submenu-opened:after {
		display: none
	}

	.menu ul ul {
		background: transparent;
		border-bottom: none;
		padding: 0;
	}

	.menu ul ul ul {
		top: 0;
	}

	.menu li:hover>ul {
		left: auto;
		margin-left: auto;
	}

	.menu ul ul li>a:last-child {
		border-bottom: 0;
	}

	header .rightDiv .menu ul li ul li {
		border-bottom: 1px #eee dashed;
		border-top: 0;
	}

	header .rightDiv .menu ul li ul li:last-child {
		border: 0;
	}

	header .logo {
		margin-left: 0;
	}

	header .logo a {
		/* height: 35px; */
		margin-top: 14px;

	}

	.menu ul ul {
		visibility: visible;
		opacity: 1;
	}

	header .wrap {
		display: block;
	}


	header.header2 .rightDiv .menu>ul>li>a {
		color: #333;
	}

	header {
		position: fixed !important;
		z-index: 999;
		top: 0;
		left: auto;
		right: 0;
		width: 100%;
		height: 50px;
		padding-top: 0;
		background: #fff;
		/* box-shadow: 0 0 5px #EEEEEE; */
		/* background: #000; */
		/*background-color: transparent;*/
		transition: right 300ms !important;
	}

	header.header2 {
		background: #FFFFFF;
		border: 0;
		box-shadow: 0 0 5px #EEEEEE;
	}


	header .rightDiv .menu>ul>li>a:hover {
		color: #009A44;
	}

	.on-fixed header {
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
	}



	/*body.on-menu header {right: 45%;}*/
	header .mbtn {
		display: block;
	}

	body.on-menu header .mbtn {
		z-index: 9999;
	}

	header .rightDiv .menu {
		float: right;
		position: fixed;
		top: 50px;
		right: 0;
		width: 100%;
		height: 100%;
		padding-top: 0;
		/* background-color: rgba(0, 0, 0, 0.9); */
		background: #fff;
		border-bottom: 1px solid #f8f8f847;
		transition: right 300ms;
		right: -100%;
		padding: 0;
		z-index: 9999;
		overflow-y: auto;
		text-align: center;
		margin-top: 0;
		padding-bottom: 50px;
	}

	header .rightDiv .menu ul>li {
		padding: 0;
		margin: 0;
		border-bottom: 1px solid #eee;
		float: none;
		width: 100%;
	}

	header .rightDiv .menu ul>li:first-child {
		border-top: 1px #eee solid;
	}

	header .rightDiv .menu ul li a {
		display: block;
		line-height: 50px;
		height: 50px;
		color: #333;
		/*padding: 0 15px;*/
		text-align: left;
		font-size: 16px;
		font-weight: normal;
	}

	header .rightDiv .menu>ul>li>a.now::after,
	header .rightDiv .menu>ul>li:hover>a::after {
		display: none;
	}

	header .rightDiv .menu>ul>li>a.login {
		width: 100px;
		margin: 10px 0;
		margin-left: 20px;
		text-align: center;
	}

	header .rightDiv .menu>ul>li>a small {
		display: none;
	}

	header .rightDiv .menu>ul {
		display: block;
		/* padding-top: 60px; */
		width: 100%;
	}

	body.on-menu header .rightDiv .menu {
		right: 0;
	}

	body.on-menu .main {
		right: 0;
	}

	header .rightDiv .menu>ul>li>a {
		padding: 0 20px;
		background: none;
		margin: 0;
		width: 100%;
		color: #333;
	}

	header .rightDiv .menu ul li i {
		display: block;
	}

	header .twoMenu {
		position: relative;
		top: 0px;
		background: none;
		padding: 0;
		width: initial;
	}

	header .twoMenu dl {
		margin-bottom: 10px;
	}

	header .twoMenu dl dd {
		margin-top: 0;
	}

	header .rightDiv .menu ul li .twoMenu dl dt>a {
		color: #fff;
	}

	.on-fixed header .rightDiv .menu ul li .twoMenu dl dt>a {
		color: #000;
	}

	header .rightDiv .menu ul li .twoMenu {
		top: 10px;
		box-shadow: none;
	}

	header .rightDiv .menu ul li .twoMenu .liDiv>a {
		line-height: 32px;
		height: 32px;
		font-weight: normal;
	}

	header .twoMenu .liDiv>a:after {
		top: 0;
	}

	header .rightDiv .menu ul li.relativeLi .twoMenu .ulDiv {
		margin: 0 15px;
	}

	header .rightDiv .menu ul li>a:hover,
	header .rightDiv .menu ul li>a:focus,
	header .rightDiv .menu ul li>a.on {
		/* color: #a13e91; */
	}

	header .rightDiv .menu ul li .twoMenu dl dt>a {
		line-height: 50px;
		height: initial;
	}

	header .rightDiv .menu>ul>li>a::before {
		display: none;
	}

	header .rightDiv .menu>ul>li:hover,
	header .rightDiv .menu>ul>li:focus,
	header .rightDiv .menu>ul>li.on {
		background: none;
	}

	header .rightDiv .menu>ul>li.on>a {
		color: #204e9e;
	}

	header .rightDiv .menu>ul>li>a:hover span,
	header .rightDiv .menu>ul>li>a.now span {
		display: none;


		/* background: #3fba9e;
		border-bottom: 2px #3fba9e solid; */
	}



	.hideDiv {
		display: none;
	}

	.bannerIndex,
	.banner_nei {
		margin-top: 50px;
	}

	.banner_nei img {
		min-height: 160px;
		object-fit: cover;
	}

	.bannerIndex img {
		min-height: 100px;
	}

	.bannerIndex .wrap {
		line-height: 22px;
		top: 30px;
		width: 95%;
	}

	.bannerIndex .wrap .font18 {
		font-size: 14px;
	}

	.bannerIndex .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.fixed {
		display: none;
	}

	header .rightDiv .menu>ul>li>a:hover,
	header .rightDiv .menu>ul>li>a.now {
		color: #479700;
	}

	.title1 span.num {
		font-size: 34px;
		line-height: 34px;
	}

	.title1 span.wz {
		font-size: 16px;
		line-height: 16px;
		margin-bottom: 2px;
	}

	.font16 {
		font-size: 14px;
	}

	.par80,
	.par70 {
		padding: 40px 0;
	}
	.zsDiv .swiper-button-next,
	.zsDiv .swiper-button-prev{
		width: 20px;
		height: 20px;
	}
	.zsDiv .swiper-button-next{
		right:20px;
	}
	.zsDiv .swiper-button-prev{
		right: 50px;
	}
	.zsDiv{
		bottom: 10px;
		width: 100%;
	}
	.zsDiv .swiper-pagination{
		display: none;
	}
	.indexDiv1 .content{
		height: auto;
		width: 100%;
	}
	.indexDiv1 .content ul li{
		font-size: 12px;
		padding:6px 5px;
	}
	.indexDiv1 .title1{
		width: 100%;
		display: none;
	}
	.indexDiv1 .content .swiper-container{
		position: relative;
	}
	.logoImg{
		width: 50px;
	}
	.indexDiv1 .content .swiper-slide img{
		width: 100%;
		height: auto;
	}
	.indexDiv1 .content .textDiv{
		position: relative;
		left: 0;
		right: 0;
		width: 100%;
		height: auto;
		padding: 20px;
	}
	.font30{
		font-size: 18px;
	}
	.indexDiv1 .content .swiper-button-next,
	.indexDiv1 .content .swiper-button-prev{
		width: 25px;
		height: 25px;
		bottom: 30px;
	}
	.indexDiv1 .content .textDiv .txt{
		margin-bottom: 15px;
	}
	.indexDiv1 .content .swiper-button-next{
		right: 20px;
	}
	.indexDiv1 .content .swiper-button-prev{
		right: 50px;
	}
	.indexDiv2 .swiper-button-next,
	.indexDiv2 .swiper-button-prev{
		width: 25px;
		height: 25px;
		top: 100px;
	}
	.indexDiv2{
		height: 450px;
	}
	.indexDiv2 .swiper-slide a{
		display: block;
		width: 100%;
	}
	.indexDiv2 .swiper-slide-active .textDiv{
		padding-top: 32px;
	}
	.indexDiv2 .swiper-slide-active .textDiv .wenzi .font30{
		font-size: 16px;
	}
	.indexDiv2 .swiper-slide-active .textDiv .wenzi .font18{
		font-size: 12px;
		margin-top: 5px;
	}
	.indexDiv2 .swiper-slide-active .textDiv {
	    transform: scale(1);
	}
	.indexDiv2 .swiper-slide-active, .indexDiv2 .swiper-slide-duplicate-active{
		padding-bottom: 30px;
	}
	.indexDiv2 .content{
		padding-top: 20px;
		margin-top: 20px;
	}
	.line26{
		line-height: 24px;
	}
	.zcDiv3 form ul li select{
		font-size: 14px;
	}
	.title_erji .font24{
		font-size: 18px;
	}
	.weizhi{
		margin-bottom: 10px;
		margin-top: -15px;
	}
	.title_erji{
		margin-bottom: 6px;
	}
	.indexDiv3 .title{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.font46{
		font-size: 24px;
	}
	.indexDiv3 .wz{
		margin-top: 20px;
	}
	.indexDiv3 .swiper-slide>img{
		height: 210px;
	}
	a.more{
		width: 100px;
		height: 30px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.indexDiv3 .swiper-slide .wenzi .textDiv{
		width: 50%;
		padding: 15px;
	}
	.line30{
		line-height: 24px;
	}
	.ovh5{
		display: -webkit-box;
		    -webkit-box-orient: vertical;
		    -webkit-line-clamp: 2;
		    overflow: hidden;
	}
	.indexDiv4 .conntent.flex2{
		display: block;
	}
	.indexDiv4 .tuijianDiv,
	.indexDiv4 .newsList{
		width: 100%;
	}
	.indexDiv4 .tuijianDiv .imgDiv{
		height: 150px;
	}
	.indexDiv4 .tuijianDiv{
		display: none;
	}
	.indexDiv4 .tuijianDiv .wenzi{
		padding: 20px 15px;
	}
	.indexDiv4 .newsList li .textDiv .date{
		width: 68px;
	}
	.indexDiv4 .newsList li .textDiv .n_txt{
		width: calc(100% - 78px);
	}
	.indexDiv4 .newsList li .textDiv .n_txt .font16{
		font-size: 13px;
		line-height: 20px;
		margin-top: 5px;
	}
	.indexDiv4 .newsList li .textDiv{
		padding: 10px;
	}
	.aboutDiv1 .textDiv .txt{
		text-align: left;
	}
	.date .big{
		font-size: 18px;
	}
	.u_like,
	.rt_js{
		display: none;
	}
	.indexDiv4 .content ul li{
		font-size: 13px;
		padding: 6px;
	}
	.indexDiv4 .content{
		margin-top: 20px;
	}
	.indexDiv4 .conntent{
		padding-top: 10px;
	}
	footer .flex2{
		display: block;
	}
	.footer{
		padding-bottom: 20px;
	}
	.ewmDiv img{
		width: 100px;
	}
	.ewmDiv{
		text-align: center;
		padding: 20px 0;
	}
	.tel_bott{
		display: none;
	}
	.tel_bott img{
		width: 120px;
	}
	header .logo img{
		width: auto;
		max-height: 25px;
	}
	.search{
		width: 150px;
		margin-right: 50px;
		margin-top: 11px;
	}
	.search form input {
	    width: calc(100% - 30px);
	    border: solid 1px #ababab;
	    border-right: 0;
	    border-radius: 0.8vw 0 0 0.8vw;
	    font-size: 14px;
	    padding: 0 10px;
		height: 28px;
	}
	.search form button{
		width: 30px;
		height: 28px;
	}
	.search form button img{
		width: auto;
	}
	.erjiDiv{
		display: none!important;
	}
	.menu>ul>li>ul.open{
		display: block;
		width: 100%;
		transform: translate(0);
		position: relative;
		background: none;
		left: 0;
		top: 0;
	}
	.aboutDiv2 .swiper-container{
		padding-bottom: 50px;
	}
	.aboutDiv2 .swiper-pagination-bullet{
		width: 10px;
		height: 10px;
	}
	.par60{
		padding: 40px 0;
	}
	.aboutDiv3 .content .wenzi{
		width: 100%;
	}
	.aboutDiv3:before{
		height: 50px;
		bottom: 20px;
	}
	.aboutDiv3 .imgBox img:first-child{
		width: 45%;
	}
	.aboutDiv3 .imgBox img:nth-child(2){
		width: 22%;
	}
	.aboutDiv3 .imgBox img:nth-child(3){
		width: 25%;
	}
	.aboutDiv4 .swiper-container{
		width: 85%;
		margin: 0 auto;
	}
	.aboutDiv4 .swiper-button-next,.aboutDiv4 .swiper-button-prev{
		width: 40px;
	}
	.aboutDiv4 .font24,
	.aboutDiv4 .font22{
		font-size: 14px;
	}
	.aboutDiv4 .content{
		margin-top: 20px;
	}
	.service_js .content{
		display: block;
		padding: 20px;
	}
	.service_js .content .textDiv,
	.service_js .content .imgDiv{
		width: 100%;
		height: auto;
	}
	.s_more{
		width: 100px;
		height: 30px;
		margin: 20px 0;
	}
	.zcDiv3 form ul li{
		width: 100%;
		margin-bottom: 20px;
	}
	.zcDiv3 form ul li label{
		width: 100px;
	}
	.zcDiv3 form ul li select{
		width: calc(100% - 110px);
		height: 36px;
	}
	.zcDiv3 form ul li .edit a{
		font-size: 20px;
	}
	.zcDiv3 form ul li .edit input,
	.zcDiv3 form ul li .edit a{
		height: 30px;
	}
	.zcDiv3 form ul li .edit a{
		width: 30px;
	}
	.zcDiv3 form ul li select{
		background-size: 5%;
	}
	.tsDiv textarea{
		height: 150px;
	}
	.zcDiv3 form button{
		width: 100px;
		height: 30px;
		margin-top: 20px;
		margin-bottom: 50px;
	}
	.backTop{
		width: 30px;
		height: 30px;
		top: -15px;
	}
	.zcDiv3 form ul{
		padding: 20px 15px;
		margin-bottom: 15px;
	}
	.kepuDiv2 .content{
		display: block;
	}
	.kepuDiv2 .content .tjDiv,
	.kepuDiv2 .content .kpList{
		width: 100%;
	}
	.kepuDiv2 .content .kpList{
		margin-top: 20px;
	}
	.kpList li{
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.kepuDiv2 .content .tjDiv .wenzi{
		padding: 15px;
	}
	.kepuDiv3 .textDiv .wenzi{
		padding: 15px;
	}
	.kepuDiv3 .col-lg-4{
		margin-bottom: 20px;
	}
	.fenye ul li a{
		height: 20px;
		padding: 0 5px;
		font-size: 14px;
		margin: 0 3px;
	}
	.fenye>.flex{
		display: block;
	}
	.linkPage{
		margin-top: 15px;
	}
	.linkPage input{
		width: 20px;
		height: 20px;
	}
	.linkPage button{
		height: 20px;
	}
	.navDiv{
		width: 100%;
	}
	.u_like ul li .ovh2{
		height: 40px;
	}
	.u_like ul li .imgDiv{
		width: 80px;
		height: 80px;
	}
	.u_like ul li .txt{
		width: calc(100% - 95px);
	}
	.listDiv{
		width: 100%;
		margin-top: 30px;
	}
	.lvDiv1 .date{
		width: 50px;
		height: 50px;
	}
	.s_num{
		font-size: 12px;
	}
	.lvDiv1 .listDiv .imgDiv{
		height: 150px;
	}
	.moreDiv .green{
		margin-right: 15px;
	}
	.listDiv ul li{
		margin-bottom: 20px;
	}
	.mt20{
		margin-top: 20px;
	}
	.selutionDiv1 .content{
		padding: 0 20px;
	}
	.selutionDiv1 .swiper-button-black{
		width: 15px;
	}
	.selutionDiv1 .swiper-button-prev{
		left: 0;
	}
	.selutionDiv1 .swiper-button-next{
		right: 0;
	}
	.selutionDiv1 .wenzi{
		line-height: 20px;
		font-size: 12px;
		margin: 10px;
		
	}
	.s_nav_erji ul li a{
		font-size: 12px;
		padding: 10px 0;
	}
	.selutionDiv3 form li{
		display: block;
		margin-bottom: 20px;
	}
	.selutionDiv3 form li input{
		width: 100%;
		height: 36px;
		border-radius: 5px;
		margin-top: 10px;
	}
	.selutionDiv3 form li:first-child p{
		margin-bottom: 20px;
	}
	.font14{
		font-size: 12px;
	}
	.pnDiv .time{
		margin-top: 10px;
	}
	.proXqDiv1 .content .guige ul li{
		width: 100%;
	}
	.proXqDiv1 .content .guige ul li p:first-child{
		width: 80px;
	}
	.proXqDiv1 .content .guige ul li p:nth-child(2){
		width: calc(100% - 90px);
	}
	.selutionDiv3 form li textarea{
		width: 100%;
		border-radius: 5px;
		margin-top: 10px;
		height: 150px;
	}
	.selutionDiv3 form button{
		width: 100px;
		height: 30px;
		margin-bottom: 60px;
	}
	.erjiNav ul li a{
		padding: 8px 0;
	}
	.lx_list ul li p:first-child{
		width: 80px;
	}
	.lx_list ul li{
		line-height: 24px;
	}
	.newsDiv1 .listDiv li .textDiv{
		display: block;
	}
	.newsDiv1 .listDiv li .textDiv .wenzi{
		width: 100%;
		padding: 20px 0;
	}
	.newsDiv1 .listDiv li .textDiv .imgDiv{
		height: 150px;
		width: 100%;
	}
	.newsDiv1 .listDiv li:last-child{
		margin-bottom: 30px;
	}
	.mt10{
		margin-top: 10px;
	}
	.xinxi p{
		font-size: 12px;
		padding: 10px 0;
	}
	.pDiv{
		width: 100%;
		margin-bottom: 20px;
		padding: 20px;
	}
	.pnDiv{
		flex-wrap: wrap;
	}
	.p_title{
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.p_title::after{
		width: 30px;
		height: 2px;
	}
	.contactDiv1 ul li{
		width: 100%;
		max-width:100%;
		margin-bottom: 20px;
	}
	.contactDiv1 ul{
		flex-wrap: wrap;
	}
	.contactDiv1 ul li img{
		width: 20px;
		height: 20px;
	}
	
	.contactDiv2 ul li{
		width: 45%;
		padding: 50px 0;
	}
	
	.contactDiv2 ul{
		flex-wrap: wrap;
	}
	.contactDiv2 ul li .ewmDiv_hide{
		display: block!important;
	}
	.contactDiv2 ul li>img{
		width: 40px;
	}
	.contactDiv2 ul li .ewmDiv_hide{
		width: 90px!important;
		height: 90px!important;
		padding: 5px;
	}
	.contactDiv2 ul li .ewmDiv_hide{
		right: auto!important;
		left: 60px!important;
	}
	.mapDiv{
		height: 280px;
	}
	.contactDiv2 ul li .ewmDiv_hide:before {
	    content: "";
	    position: absolute;
	    top: 50%;
	    transform: translate(0, -50%)!important;
	    border-top: 5px transparent solid!important;
	    border-right: 12px #25a55f solid!important;
	    border-bottom: 5px transparent solid!important;
	    border-left: 12px transparent solid!important;
	    left: -25px!important;
	    z-index: 9;
		right: auto !important;
	}
	.contactDiv3 .content ul li{
		width: 100%;
		margin-bottom: 20px;
	}
	.contactDiv3 .content ul li p input{
		width: calc(100% - 30px);
		height: 34px;
		font-size:14px
	}
	.contactDiv3 .content ul li p{
		height: 40px;
		padding: 10px;
	}
	.contactDiv3 .content ul li p img,
	.contactDiv3 .content ul li .ly img{
		max-height: 20px;
		max-width: 20px;
	}
	.contactDiv3 .content ul li .ly textarea{
		width: calc(100% - 30px);
		height:150px;
		font-size:14px;
		margin-top: 15px;
	}
	.contactDiv3 .content ul li .ly{
		height: 150px;
	}
	.btnDiv .yzm input{
		height: 34px;
		width: 140px;
		font-size:14px;
	}
	.btnDiv .yzm img,
	.btnDiv .yzm{
		height: 34px;
	}
	.btnDiv button{
		width:100px;
		height:30px;
		
	}
	.proXqDiv1 .content{
		display: block;
	}
	.proXqDiv1 .content .imgDiv{
		width: 100%;
		height: auto;
	}
	.proXqDiv1 .content .textDiv{
		width: 100%;
		margin-top: 20px;
	}
	.proXqDiv1 .content .textDiv .tab li{
		padding: 5px 20px;
	}
	.proXqDiv1 .content #tabCon{
		padding: 20px;
	}
	.xgTitle p{
		width: 100px;
		height: 30px;
		line-height: 30px;
	}
	.xgTitle p::after{
		bottom: -5px;
	}
	.line24{
		line-height: 22px;
	}
	.xgDiv .swiper-button-white{
		width: 25px;
		height: 25px;
	}
	.xgDiv .textDiv .imgDiv{
		height: 120px;
	}
	.line36{
		line-height: 24px;
	}
	.indexDiv2 .content .textDiv .imgDiv{
		height: 120px;
	}
	.font18{
		font-size: 14px;
	}
	.fixed_rt ul li a{
		width: 36px;
		height: 36px;
		padding: 8px;
	}
	.fixed_rt ul li a img{
		
	}
	.fixed_rt{
		top: auto;
		bottom: 20px;
		transform: translate(0, 0);
	}
	.hideRT{
		height: 36px;
		right: 40px;
		padding: 0 15px;
		width: 160px;
		text-align: center;
		line-height: 36px;
	}
	

}
@media screen and (min-width:768px) and (max-width:992px) {
	.indexDiv4 .conntent.flex2{
		display: flex;
	}
	.indexDiv4 .newsList{
		display: block;
		width: 48%;
	}
	.indexDiv4 .tuijianDiv{
		width: 48%;
	}
	.indexDiv4 .content ul li:last-child{
		display: none;
	}
	footer .flex2{
		display: flex;
	}
	.service_js .content{
		display: flex;
	}
	.service_js .content .textDiv, .service_js .content .imgDiv{
		width: 49%;
	}
	.zcDiv3 form ul li{
		width: 45%;
	}
	.kepuDiv2 .content{
		display: flex;
	}
	.kpList li:last-child{
		display: none;
	}
	.kepuDiv2 .content .tjDiv, .kepuDiv2 .content .kpList{
		width: 48%;
	}
	.navDiv{
		width: 25%;
	}
	.listDiv{
		width: 70%;
	}
	.lx_list ul li{
		display: block;
	}
	.lx_list ul li p{
		width: 100%!important;
	}
	.contactDiv2 ul li{
		width: 30%;
	}
	.contactDiv2 ul{
		justify-content: initial;
	}
}
/*中等PC屏幕下的专用样式*/
@media screen and (min-width:993px) and (max-width:1200px) {
	.contactDiv3 .content ul li p{
		height: 5vw;
	}
	header .rightDiv .menu>ul>li{
		padding: 0 1vw;
	}
}

@media screen and (min-width:1205px)and (max-width:1400px) {}
