html,
body {
	padding: 0;
	margin: 0;
	font-family: 'SourceHanSansCN-Regular', "Microsoft YaHei", "微软雅黑", "arial", "tahoma", "MicrosoftJhengHei", "sans-serif";
	font-size: 14px;
	color: #666666;
	line-height: 1.3;
	/* font-family: "fontR"; */
	overflow-x: hidden;
}

@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";
}

/* 
@font-face {
	font-family: "fontM";
	src: url('../fonts/SourceHanSansCN-Medium.otf');
}

@font-face {
	font-family: "fontR";
	src: url('../fonts/SourceHanSansCN-Regular.otf');
} */


.fontM {
	font-family: "fontM";
}


.fontR {
	font-family: "fontR";
}


.wrap {
	width: 1400px;
	margin: 0 auto;
}

.wrap2 {
	margin: 0 5%;
	min-width: 1400px;
}

.wrap3 {
	width: 1300px;
	margin: 0 auto;
}

.showDiv {
	display: none;
}

.clearfixed {
	clear: both;
}

a {
	color: #666;
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style: none;
}

.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: #0a84e8;
}

img {
	max-width: 100%;

}

.imgDiv {
	overflow: hidden;
}

.imgDiv img {
	max-width: 100%;
	max-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;
}

/**导航菜单**/
header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: 80px;
	/* box-shadow: 0 0 5px #ECEDEE; */
	/*overflow: hidden;*/
	background-color: #f5f8fa;
}



header .logo a {
	/* height: 54px; */
	position: relative;
	z-index: 999;
	display: flex;
	/* justify-content: center; */
	align-items: center;

}

header .logo img {
	max-height: 100%;
}

header.on-fixed {
	box-shadow: 0 0 5px #ECEDEE;
}


header .rightDiv {
	margin-left: 60px;
	width: calc(100% - 150px);

}

header .rightDiv .menu {
	position: relative;
	height: 80px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .rightDiv .menu>ul {
	display: inline-block !important;
	/*overflow: hidden;*/
}

header .rightDiv .menu>ul>li {
	float: left;
	position: relative;
	padding: 0 30px;
	/*width: 126px;*/
}

header .rightDiv .menu>ul>li:last-child {
	padding-right: 0;
}


header .rightDiv .menu>ul>li>a {
	display: block;
	/* justify-content: center; */
	/* align-items: center; */
	text-align: center;
	color: #333333;
	position: relative;
	font-size: 16px;
	line-height: 80px;
}



header .rightDiv .menu>ul>li>a::after {
	content: "";
	width: 0;
	height: 4px;
	background-color: #0a84e8;
	border-radius: 2px;
	position: absolute;
	left: 50%;
	bottom: 20px;
	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: #0a84e8;
}

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,
header .rightDiv .menu>ul>li:focus>a,
header .rightDiv .menu>ul>li.on>a,
header .rightDiv .menu>ul>li.active>a {
	color: #0a84e8;
}

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.index .rightDiv .menu>ul>li>a {
	color: #FFFFFF;
	position: relative;
	text-transform: capitalize;
}


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: 14px;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	-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.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 ul {
	padding: 10px 0;
	/* margin-left: -8px; */
	text-align: center;
	top: 80px;
	position: absolute;
	z-index: 99;
	display: none;
	transition: all 0.5s;
	left: 0;
	background-color: #eaf0f5;
	/* background: rgba(71, 151, 0, 0.7); */
}

.menu ul li:hover>ul {
	display: flex;
}

.menu ul li:hover>ul>li {
	white-space: nowrap;
	margin: 0 30px;
}

.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 ul::after {
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	background-color: #eaf0f5;
	content: "";
	height: 60px;
	z-index: 9;
}

.menu ul 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>a {
	font-size: 16px;
	color: #666;
	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;
	position: relative;
	z-index: 10;
	padding: 8px 0;
}

.menu ul 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: #0a84e8;

}


.menu ul ul li:last-child>a {
	border: 0;
}

.yuyue_a {
	width: 120px;
	height: 42px;
	background-image: linear-gradient(-40deg,
			#0a84e8 0%,
			#0a84e8 100%);
	border-radius: 21px;
	color: #fff !important;
	margin-right: 30px;
}

.tel {
	height: 42px;
	border-radius: 21px;
	border: solid 1px #0a84e8;
	padding: 0 20px;
}

.tel img {
	margin-right: 10px;
}


.bannerIndex,
.banner_nei {
	margin-top: 80px;
}

.bannerIndex .swiper-pagination {
	bottom: 30px;
}

.bannerIndex .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	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: #fff;
	opacity: 1;
	border-radius: 10px;
}

.bannerIndex img {
	min-height: 600px;
	max-height: 900px;
	object-fit: cover;
}

.bannerIndex .wenzi {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 10%;
	z-index: 999;
}

footer {
	background: linear-gradient(-30deg,
			#fafcfe 0%,
			#ebf2f9 100%);
	padding-top: 60px;
}

.footDiv {
	display: flex;
	justify-content: space-between;
}

.footDiv .flDiv {
	width: calc(100% - 390px);
	padding-right: 8%;
	display: flex;
	justify-content: space-between;
	border-right: 1px #c7d7e1 solid;
}

.footDiv .flDiv .wenzi {
	width: 300px;
}

.footNav {
	width: calc(100% - 400px);
	display: flex;
	justify-content: space-between;
}

.footMenu p {
	margin-bottom: 15px;
}

.footMenu ul li a {
	display: block;
	padding: 4px 0;
	color: #666666;
}

.footMenu ul li a:hover {
	color: #0a84e8;
}

.footDiv .frDiv {
	width: 390px;
	display: flex;
	justify-content: flex-end;
}

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

footer .ewm {
	margin-right: 32px;
}

.ewm {
	width: 100%;
	height: 140px;
	background-image: linear-gradient(-30deg,
			#fafcfe 0%,
			#ebf2f9 100%);
	box-shadow: 3px 4px 18px 0px rgba(208, 220, 233, 0.64);
	border-style: solid;
	border-width: 2px;
	border-image-source: linear-gradient(-30deg,
			#ffffff 0%,
			rgba(255, 255, 255, 0.5) 100%);
	border-image-slice: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	padding: 5px;
}

.ewm img {
	width: 100%;
	height: 100%;
}

.yq_link {
	display: flex;
	justify-content: space-between;
}

.yq_link ul {
	width: calc(100% - 80px);
}

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

.yq_link ul li {
	margin-bottom: 10px;
}

.yq_link ul li a {
	display: inline-block;
	padding: 0 15px;
	height: 16px;
	line-height: 16px;
	border-right: 1px #9c9c9c solid;
}

.yq_link {
	padding: 10px 0;
	border-top: 1px #c3dbef solid;
}

.banquan {
	padding: 20px 0;
	background: #163c5c;
	letter-spacing: 1px;
}

.banquan a {
	color: #fff;
}

.banquan a:hover {
	text-decoration: underline;
}


.banner_nei .wenzi {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;

}

.banner_nei>img {
	width: 100%;
	min-height: 370px;
	object-fit: cover;
}

.banner_nei .wenzi .wrap {
	margin-bottom: 50px;
}

.sectionDiv {
	padding-top: 80px;
	margin-top: -80px;
}

.newsDiv1 .imgDiv {
	height: 250px;
	width: 100%;
}

.newsDiv1 .imgDiv img {
	width: 100%;
	height: 100%;
}

.newsDiv1 .textDiv {
	transition: all 0.5s;
	background-color: #ffffff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 0 30px rgba(203, 212, 223, .4);
}

.title a {
	width: 70px;
	height: 30px;
	background-color: #e5e5e5;
	border-radius: 15px;
}

.title a:hover {
	background: #0a84e8;
	color: #fff;
}

.newsDiv1 .textDiv .wenzi {
	padding: 15px 0;
	padding-bottom: 10px;
	position: relative;
}

.newsDiv1 .textDiv:hover {
	margin-top: -20px;
	margin-bottom: 20px;
}

.newsDiv1 .textDiv:hover .wenzi .f3 {
	color: #0a84e8;
}

.newsDiv1 .textDiv .wenzi .ovh2 {
	height: 50px;
}

.newsDiv1 .col-lg-4 {
	margin-bottom: 40px;
}



.fenye {
	margin-bottom: 20px;
}

.fenye ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	border: solid 1px #e5e5e5;
	color: #ccc;
	margin: 0 5px;
}

.fenye ul li a:hover,
.fenye ul li a.now {
	background: #0a84e8;
	color: #fff;
	border: solid 1px #0a84e8;
}

.bg_blue {
	background-color: #f4f9ff;
}

.newsDiv2 .textDiv {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
	border-bottom: 1px #c3c6c9 solid;
}

.newsDiv2 .textDiv p {
	transition: all 0.5s;
}

.newsDiv2 .textDiv .txt {
	height: 45px;
}

.newsDiv2 .textDiv .wenzi {
	width: calc(100% - 290px);
	margin-bottom: 10px;
}

.newsDiv2 .imgDiv {
	height: 146px;
	width: 260px;
	border-radius: 20px;
}

.newsDiv2 .imgDiv img {
	width: 100%;
	height: 100%;
}

.newsDiv2 .textDiv:hover .wenzi .more,
.newsDiv2 .textDiv:hover .wenzi .f3 {
	color: #0a84e8;
}

.newsDiv2 li:last-child .textDiv {
	border: 0;
}

.newsXqDiv .wrap {
	width: 1200px;
}

.newsXqDiv .content {
	width: 1080px;
	margin: 0 auto;
}

.weizhi a:last-child {
	color: #0a84e8;
}

.weizhi {
	display: flex;
	align-items: center;
	padding: 20px 0;
	box-shadow: 0px 1px 0px 0px #dbdbdb;
	line-height: 1;
}

.weizhi img {
	width: 16px;
	margin-right: 10px;
	height: 15px;
}

.weizhi p {
	width: calc(100% - 30px);
}

.tjCon {
	width: 48%;
}

.tjCon .textDiv {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tjCon .textDiv .wenzi {
	width: calc(100% - 340px);
}

.tjCon .textDiv:hover .wenzi .f3 {
	color: #0a84e8;
}


.erjiDiv ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
}

.erjiDiv ul li {
	margin: 0 25px;
	transition: all 0.5s;
}

.erjiDiv ul li p {
	font-size: 16px;
}

.erjiDiv ul li:hover {
	margin-top: -10px;
	margin-bottom: 10px;
}

.erjiDiv ul li a .iconDiv {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	background-color: #eaf0f5;
	border-radius: 20px;
	text-align: center;
	margin-bottom: 10px;
	transition: all 0.5s;
}

.erjiDiv ul li a.now .iconDiv,
.erjiDiv ul li a:hover .iconDiv {
	background-image: linear-gradient(-40deg,
			#006bea 0%,
			#0a84e8 100%);
	border-radius: 25px;
	color: #fff;
}



.erjiDiv ul li a.now .iconDiv img {
	filter: grayscale(100) brightness(200) !important;
}

.erjiDiv ul li a:hover .iconDiv img {
	filter: grayscale(100) brightness(200) !important;
}

.typeList ul li .textDiv {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	background: #eaf0f5;
	transition: all 0.3s;
}
.typeList ul li .textDiv:hover{
	transform: translateY(-10px);
	box-shadow: 0 0 20px rgba(203, 212, 223, 7);
}


.typeList ul li .textDiv .imgDiv,
.typeList ul li .textDiv .wenzi {
	width: 50%;
}

.typeList ul li .textDiv .wenzi {
	padding: 40px 60px;
}

.typeList ul li .textDiv .imgDiv img {
	width: 100%;
	height: 100%;
}

.typeList ul li .textDiv .imgDiv {
	min-height: 275px;
}

.typeList ul li .textDiv .wenzi .bt {
	padding: 20px 0;
	padding-top: 0;
	border-bottom: 1px #c6cbce solid;
}

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

.yuyueDiv .wrap {
	display: flex;
	justify-content: center;
}

.yuyueDiv .flDiv {
	width: 460px;
	height: 600px;
	background: url(../img/yuyue1.jpg) no-repeat center center;
	background-size: cover;
	padding: 80px 60px 0 60px;
}

.yuyueDiv .frDiv {
	width: 580px;
	margin-left: 180px;
}

.checkUl {
	display: flex;
	flex-wrap: wrap;
}

.checkUl li {
	min-width: 25%;
	padding-left: 20px;
	display: flex;
	align-items: center;
	line-height: 1;
	margin-bottom: 20px;
	cursor: pointer;
}

.checkUl li input {
	width: 18px;
	height: 18px;
	background-color: #ffffff;
	border: solid 1px #cccccc;
	margin-right: 10px;
}

.checkUl li label {
	color: #333;
}

label {
	margin-bottom: 0 !important;
}

.xinxiUl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.xinxiUl li {
	width: 48%;
	margin-bottom: 24px;
	position: relative;
}

.xinxiUl li input {
	height: 50px;
	background-color: #f1f1f1;
	border-radius: 25px;
	width: 100%;
	padding: 0 20px;
	border: 0;
}

.xinxiUl li button {
	position: absolute;
	top: 15px;
	right: 20px;
	color: #0a84e8;
	border: 0;
	background: none;
}

.xinxiUl li.yzm input {
	padding-right: 50%;
}

.pick-show {
	width: 100% !important;
	height: 50px !important;
	background-color: #f1f1f1 !important;
	border-radius: 25px !important;
	padding: 0 20px !important;
	border: 0 !important;
	padding-top: 5px !important;
}

.yuyueForm button.btn {
	width: 100%;
	height: 50px;
	background: linear-gradient(90deg,
			#006bea 0%,
			#0a84e8 100%);
	border-radius: 25px;
	cursor: pointer;

}

.yuyueForm .btn:active {
	width: 100%;
	height: 50px;
	background: linear-gradient(90deg,
			#006bea 0%,
			#0a84e8 100%);
	border-radius: 25px;
	cursor: pointer;
}

.yuyueForm button.btn:focus {
	width: 100%;
	height: 50px;
	background: linear-gradient(90deg,
			#006bea 0%,
			#0a84e8 100%);
	border-radius: 25px;
	cursor: pointer;
}

.dizhi {
	position: relative;
}

.xinxiUl li .arrow {
	width: 8px;
	height: 8px;
	border-top: 1px #999 solid;
	border-right: 1px #999 solid;
	content: "";
	position: absolute;
	right: 15px;
	top: 18px;
	transform: rotate(135deg);
	z-index: 99;
}

.soluDiv1 .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.soluDiv1 .wrap .wenzi {
	width: 450px;
	padding: 50px;
	background-image: linear-gradient(90deg,
			#d1ebfe 0%,
			#c0e2ff 50%,
			#afd8ff 100%);
	border-radius: 20px 0 0 20px;
}

.soluDiv1 .imgDiv {
	width: calc(100% - 450px);
	height: 473px;
	background-color: #ffffff;
	box-shadow: 0 0 70px rgba(218, 232, 247, .7);
	border-radius: 20px;
	padding: 5px;
	position: relative;
	z-index: 9;
}

.soluDiv1 .imgDiv .img {
	border-radius: 20px;
	border: solid 8px #e9eef6;
	width: 100%;
	height: 100%;
	padding: 40px;
}

.kjDiv2 .bt {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	text-align: center;
	padding: 10px;
	z-index: 7;
	transition: all 0.5s;
}

.kjDiv2 .wenzi {
	position: absolute;
	width: 92%;
	height: 85%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: linear-gradient(30deg,
			#006bea 0%,
			#0a84e8 100%);
	color: #fff;
	z-index: 9;
	transition: all 0.5s;
	opacity: 0;
}

.kjDiv2 .wenzi ul {
	width: 100%;
	margin-bottom: 20px;
}

.kjDiv2 .textDiv:hover .wenzi {

	opacity: 1;
}

.kjDiv2 .textDiv:hover .bt {
	opacity: 0;
}

.kjDiv2 .textDiv {
	background: #fff;
	height: 100%;
}

.kjDiv2 .textDiv .imgDiv {
	height: 240px;
}

.kjDiv2 .textDiv .imgDiv img {
	width: 100%;
	height: 100%;
}

.kjDiv2 .textDiv .wenzi {
	padding: 30px 35px;
}

.kjDiv2 .col-lg-4 {
	margin-bottom: 30px;
}

.kjDiv3 .swTab .textDiv {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 20px 120px;
	background-color: #ffffff;
	border-radius: 10px;
	border: solid 1px #e9edf2;
	width: 100%;
}

.kjDiv3 .swTab .wenzi {
	margin-top: 10px;
	max-width: 40%;
}

.kjDiv3 .swTab ul li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.kjDiv3 .swTab ul li img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.title_small {
	padding: 15px;
	background-color: #f9fcff;
	border: dashed 1px #cbe2fb;
	display: inline-block;
	text-align: center;
	justify-content: center;
	margin: 0 auto;
	min-width: 800px;
}

.kjDiv3 .swTab .imgDiv {
	max-width: 48%;
}

.kjDiv3 .tab {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.kjDiv3 .tab li {
	padding: 10px 20px;
	min-width: 190px;
	background-color: #e9edf2;
	border-radius: 28px;
	text-align: center;
	margin: 0 15px;
}

.kjDiv3 .tab li:hover,
.kjDiv3 .tab li.active {
	background-color: #006bea;
	color: #fff;
}



.kjDiv4 .col-lg-4 {
	padding: 0 20px;
	margin-bottom: 40px;
}

.kjDiv4 .row {
	margin: 0 -20px;
}

.kjDiv4 .textDiv {
	height: 100%;
	background-color: #ffffff;
	border-radius: 10px;
	padding: 45px 50px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	transition: all 0.5s;
	cursor: pointer;
}

.kjDiv4 .textDiv:hover {
	margin-top: -10px;
	margin-bottom: 10px;
	box-shadow: 0 0 30px rgba(203, 212, 223, .4);
}

.kjDiv4 .textDiv img {
	width: 50px;
	height: 50px;
	margin-top: 5px;
}

.kjDiv4 .textDiv .wenzi {
	width: calc(100% - 70px);
}


.swiper-button-prev {
	width: 60px;
	height: 60px;
	background-color: #ffffff;
	border: solid 1px #006bea;
	border-radius: 50%;
	background-size: 20%;
}

.swiper-button-next {
	width: 60px;
	height: 60px;
	background-color: #ffffff;
	border: solid 1px #006bea;
	border-radius: 50%;
	background-size: 20%;
}

.swiper-button-prev:hover {
	background-color: #006bea;
	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'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next:hover {
	background-color: #006bea;
	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'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #cccccc;
	margin: 0 5px !important;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	width: 50px;
	height: 10px;
	background-color: #006bea;
	border-radius: 5px;
}

.kdDiv1 .imgDiv {
	box-shadow: none;
}

.soluDiv1.kdDiv1 .wenzi {
	width: 650px;
	background-image: linear-gradient(0deg,
			#e9f3fe 0%,
			#f7fbff 100%);
	border-radius: 10px;
	padding: 80px 55px;
	margin-bottom: 20px;
}

.soluDiv1.kdDiv1 .imgDiv {
	width: calc(100% - 660px);
}

.kdDiv2 .textDiv .wenzi {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 99;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: 9;
    padding: 10px;	
	
}

.kdDiv2 .col-lg-4 {
	margin-bottom: 30px;
}

.kjDiv3 .swiper-pagination {
	margin-top: 40px;
	position: relative;
}

.swCon {
	min-height: 450px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.swCon .imgDiv {
	max-height: 455px;
	max-width: calc(100% - 430px);
}

.swCon .wenzi {
	width: 370px;
}

.swCon .wenzi .blue {
	color: #0070c0;
}

.swCon .wenzi ul li {
	margin-bottom: 35px;
}

.swCon .wenzi ul li:last-child {
	margin-bottom: 0;
}

.kdDiv3 .tab {
	padding: 5px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 28px;
	box-shadow: 0 0 20px rgba(203, 212, 223, .27);
}

.kdDiv3 .tab li {
	padding: 10px;
	min-width: 220px;
	text-align: center;
	margin: 0 10px;
}

.kdDiv3 .tab li:hover,
.kdDiv3 .tab li.active {
	background-image: linear-gradient(90deg,
			#006bea 0%,
			#0a84e8 100%);
	border-radius: 24px;
	color: #fff;
}

.kdDiv3 .wenzi {
	width: 470px;
}

.kdDiv3 .wenzi ul li {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.kdDiv3 .wenzi ul li .txt {
	width: calc(100% - 20px);
}

.kdDiv3 .wenzi ul li img {
	margin-top: 2px;
}

.kdDiv3 .content {
	padding: 30px 110px;
	background: #fff;
	padding-bottom: 40px;
}

.kdDiv3 .swiper-button-prev {
	left: -30px;
}

.kdDiv3 .swiper-button-next {
	right: -30px;
}

.kdDiv3 .swiper-pagination {
	margin-top: 40px;
	position: relative;
}

.kdDiv4 .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.kdDiv4 .content .flDiv {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 520px);
	height: 490px;
	background-color: #ffffff;

}

.kdDiv4 .content .tab li {
	width: 448px;
	height: 60px;
	line-height: 60px;
	background-color: #ffffff;
	border-radius: 30px;
	margin: 20px 0;
	cursor: pointer;
	color: #333333;
	padding: 0 25px;
	display: flex;
	align-items: center;
	filter: drop-shadow(0 0 10px rgba(203, 212, 223, .7));

}

.kdDiv4 .content .tab li span {
	color: #006bea;
	margin-right: 5px;
}

.kdDiv4 .content .tab li.active {
	color: #fff;
	background: url(../img/tab_kd_bg.png) no-repeat;
	background-size: 100% 100%;

}

.kdDiv4 .content .tab li.active .numb {
	color: #fff;
}

.kjDiv5 .content .textDiv {
	height: 100%;
	border: solid 1px #e2ecf6;
	background-color: #e2ecf6;
	transition: all 0.5s;
}

.kjDiv5 .content .textDiv:hover {
	margin-top: -10px;
	margin-bottom: 10px;
	box-shadow: 0 0 30px rgba(203, 212, 223, .4);
}

.kjDiv5 .content .textDiv:hover .wenzi {
	background: #006bea;
	color: #fff;
}


.kjDiv5 .content .textDiv .wenzi {
	padding: 18px 25px;
	background-color: #e2ecf6;
	transition: all 0.5s;
}

.kjDiv5 .content .textDiv .imgDiv {
	height: 100px;
	background: #fff;
}

.kjDiv5 .content .textDiv .imgDiv img {
	/* height: 100%; */
}

.kjDiv5 .content .col-lg-3 {
	margin-bottom: 30px;
}

.yuyueBott {
	padding: 50px 0;
	background: url(../img/bottBg.jpg) no-repeat center center;
	background-size: cover;
}

.yuyueBott img.img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -100px;
}

.yuyueBott .wrap {
	display: flex;
	justify-content: flex-end;
	min-height: 145px;
}

.yuyueBott .wenzi {
	width: 100%;
	text-align: center;
}

.yuyueBtn {
	width: 140px;
	height: 46px;
	margin: 0 auto;
	margin-top: 25px;
	border-radius: 23px;
	background: linear-gradient(#006bea, #006bea) repeat-y;
	background-size: 0 100%;
	border: solid 1px #006bea;
	transition: all 0.5s;
}

.yuyueBtn:hover {
	background-size: 100% 100%;
	color: #fff;
}

.caseMore {
	width: 240px;
	height: 46px;
	background-color: #006bea;
	border-radius: 23px;
	color: #fff !important;
	margin: 0 auto;
	margin-top: 30px;
}

.title .small_wz {
	width: 55%;
	margin: 0 auto;
	margin-top: 10px;
	min-width: 895px;
}

.shuziDiv1 .wrap {
	display: flex;
	justify-content: space-between;
}

.shuziDiv1 .flDiv {
	width: calc(100% - 650px);
}

.shuziDiv1 .flDiv .content {
	background-color: #f5f8fc;
	border-radius: 10px 0 0 10px;
	padding: 70px 60px;
}

.shuziDiv1 .flDiv .content ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.shuziDiv1 .flDiv .content ul li p {
	width: calc(100% - 30px);
}

.shuziDiv1 .frDiv {
	width: 650px;
	border-radius: 10px;
	overflow: hidden;
	margin-top: -10px;
	box-shadow: 0 0 20px rgba(203, 212, 223, .42);
}

.shuziDiv1 .frDiv .imgDiv {
	width: 100%;
	height: 469px;
	background-color: #ffffff;
	border-style: solid;
	border-width: 10px;
	border-image-source: linear-gradient(0deg,
			#ffffff 0%,
			#e5edf5 50%,
			#cadaeb 100%);
	border-image-slice: 1;
	border-radius: 10px;

}

.shuziDiv2 .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.shuziDiv2 .wenzi {
	width: 590px;
	padding: 60px;
	background-color: #0a84e8;
	border-radius: 10px;
}

.shuziDiv2 .imgDiv {
	max-width: calc(100% - 670px);
}

.szDiv2 .wenzi {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 99;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	z-index: 9;
	padding: 10px;
}

.szDiv2 .col-lg-4 {
	margin-bottom: 30px;
}

.szDiv3 .textDiv {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.szDiv3 .content {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 0 20px rgba(203, 212, 223, .42);

}

.szDiv3 .textDiv .imgDiv {
	width: 50%;
}

.szDiv3 .textDiv .wenzi {
	width: 46%;
}

.szDiv3 .textDiv .wenzi ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.szDiv3 .textDiv .wenzi ul li p {
	width: calc(100% - 30px);
}

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

.szDiv3 .tab li {
	width: 33%;
	height: 60px;
	background-color: #dae8f7;
	line-height: 60px;
	text-align: center;
	padding: 0 20px;
}

.szDiv3 .tab li:hover,
.szDiv3 .tab li.active {
	background-image: linear-gradient(90deg,
			#006bea 0%,
			#0a84e8 100%);
	color: #fff;
}

.shuziDiv3 .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.shuziDiv3 .wenzi {
	width: 460px;
	background-color: #0a84e8;
	border-radius: 10px;
	padding: 60px;
}

.shuziDiv3 .imgDiv {
	max-width: calc(100% - 540px);
}

.indexDiv1 {
	background-image: linear-gradient(0deg,
			#fefeff 0%,
			#f8f9fe 100%);
}

.title_index {
	color: #365066;
}

.title_index .sm_wz {
	color: #7992a6;
}

.title_index .sm_wz.fw {
	color: #fff;
}

.indexDiv1 .more {
	width: 130px;
	height: 36px;
	background-color: #ffffff;
	border-radius: 4px;
	border: solid 1px #0a84e8;
	color: #0a84e8;
	background: linear-gradient(#0a84e8, #0a84e8) repeat-y;
	background-size: 0 100%;
	transition: all 0.5s;
	margin: 0 auto;
	margin-top: 28px;
}

.indexDiv1 .textDiv:hover {
	margin-top: -20px;
	margin-bottom: 20px;
	box-shadow: 3px 4px 18px 0px rgba(208, 220, 233, 0.64);
}

.indexDiv1 .textDiv .imgDiv {
	transition: all 0.5s;
}

.indexDiv1 .textDiv:hover .imgDiv {
	transform: rotateY(180deg);
}

.indexDiv1 .textDiv:hover .more {
	background-image: linear-gradient(-40deg,
			#006bea 0%,
			#0a84e8 100%);
	color: #fff;
	background-size: 100% 100%;
}

.indexDiv1 .textDiv {
	padding: 30px 36px;
	border-radius: 10px;
	box-shadow: 0 0 27px #ededef;
	height: 100%;
	min-height: 435px;
	transition: all 0.5s;
}

.indexDiv1 .textDiv .txt {
	color: #555;
}

.indexDiv1 .row {
	margin: 0 -14px;
}

.indexDiv1 .col-lg-3 {
	padding: 0 14px;
}

.indexDiv2 {
	background: url(../img/index_bg1.jpg) no-repeat center center;
	background-size: cover;
}

.indexDiv2 .tab {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px #4f5258 solid;
}

.indexDiv2 .tab li {
	padding: 12px 20px;
	text-align: center;
	min-width: 275px;
	color: #8e97a5;
	position: relative;
	margin: 0 5px;
}

.indexDiv2 .tab li::after {
	content: "";
	position: absolute;
	bottom: -1px;
	width: 0%;
	height: 3px;
	background-color: #ffffff;
	left: 0;
	transition: all 0.5s;
}

.indexDiv2 .tab li:hover {
	color: #fff;
}

.indexDiv2 .tab li.active {
	color: #fff;
}

.indexDiv2 .tab li.active::after {
	width: 100%;
}

.indexDiv2 .textDiv {
	display: flex;
	align-items: center;
	justify-content: center;
}

.indexDiv2 .textDiv .wenzi {
	margin-left: 100px;
	max-width: 565px;
}

.indexDiv2 .textDiv .imgDiv {
	max-width: 520px;
}

.indexDiv2 .textDiv .more {
	width: 130px;
	height: 36px;
	background: linear-gradient(#0a84e8, #0a84e8) repeat-y;
	background-size: 0 100%;
	border-radius: 4px;
	border: solid 1px #0a84e8;
	color: #0a84e8;
	transition: all 0.5s;
}

.indexDiv2 .textDiv .more:hover {
	background-size: 100% 100%;
	color: #fff;
}

.indexDiv3 {
	background: url(../img/index_bg2.jpg) no-repeat center center;
	background-size: cover;
}

.indexDiv3 .content {
	display: flex;
	justify-content: space-between;
}

.hxys .textDiv {
	border-radius: 10px;
	overflow: hidden;
	width: 360px;
	background-color: #0a84e8;
}

.hxys .wenzi {
	border-style: solid;
	border-width: 1px;
	border-image-source: linear-gradient(0deg,
			#0a84e8 0%,
			#00b4ff 100%);
	border-image-slice: 1;
	padding: 20px 30px;
}

.hxys .wenzi ul li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px #609dcb solid;
}

.hxys .wenzi ul li:last-child {
	border: 0;
	padding: 0;
}

.hxys .wenzi ul li .txt {
	width: calc(100% - 52px);
	margin-top: 2px;
	color: #bfddf6;
}

.indexDiv3 .content .frDiv {
	width: calc(100% - 400px);
	/* overflow: hidden; */
}

#certify {
	position: relative;
	width: 100%;
}

#certify .swiper-container {
	padding-bottom: 60px;
}

#certify .swiper-slide {
	width: 315px;
	height: 470px;
}

/* #certify  .swiper-slide-next{
	transform:translateX(-65%) scale(1)!important ;
} */
.index_case .wenzi {
	position: absolute;
	bottom: 0;
	width: 62%;
	z-index: 99;
	padding: 30px;
	right: 0;
}

.index_case .wenzi .smwz {
	display: none;
}

.index_case .swiper-container {}

.index_case .swiper-slide {
	height: 470px;
	border-radius: 10px;
	overflow: hidden;
	/* transform: translateX(-10px); */
}

.index_case .swiper-slide-active {
	transform: translateX(0) scale(1) !important;
}

.index_case .swiper-slide-active .wenzi {
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
}

.index_case .swiper-slide-active .wenzi .smwz {
	display: block;

}

.index_case .swiper-slide-active .wenzi .font16 {
	font-size: 24px;
	font-weight: bold;
}

.index_case .wenzi p img {
	max-height: 25px;
	max-width: 80%;
}

.index_case .swiper-slide-active .wenzi .wz_bott {
	position: absolute;
	bottom: 30px;
	width: 100%;
	text-align: center;
	left: 0;
}

.index_case .swiper-slide-active .wenzi p img {
	height: 25px;

}

.index_case .swiper-slide .textDiv {
	background: #000;
	border-radius: 10px;
	/* overflow: hidden; */
	width: 100%;
	height: 100%;
}

.index_case .swiper-slide-active .textDiv {
	border-radius: 10px;
}

.index_case .swiper-slide-active {
	margin-top: -20px;
	overflow: visible;
	transform: translateX(0px);
	z-index: 99;
}


.index_case .swiper-wrapper {
	padding-top: 20px;
	padding-bottom: 20px;
}

.index_case .swiper-slide-next {
	/* margin-left: 70px; */
	/* transform: translateX(-108px) scale(1)!important; */
}

.index_case .swiper-slide .imgDiv {
	width: 315px;
	height: 470px;
	border-radius: 10px;
	position: relative;
	/* transform: translateX(-150px); */
}

.index_case .swiper-slide .imgDiv::before {
	content: "";
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.index_case .swiper-slide-swiper-slide-active .imgDiv::before {
	display: none;
}

.index_case .swiper-slide.swiper-slide-active .imgDiv {
	width: 375px;
	height: 510px;
	opacity: 1;
	position: absolute;
	z-index: 9;
	/* transform: translateX(0px); */

}


.index_case .swiper-slide .imgDiv img {
	height: 100%;
}

.index_case .swiper-slide-active .wenzi {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px;
	background-image:
		linear-gradient(rgba(4, 109, 234, 0),
			rgba(4, 109, 234, 1));
}

.index_case .swiper-button-prev {
	left: -30px;
	background-color: #e0e0e0;
	border: 0;
}

.index_case .swiper-button-prev:hover {
	background-color: #fff;
	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'%230a84e8'%2F%3E%3C%2Fsvg%3E");


}

.index_case .swiper-button-next {
	right: -30px;
	background-color: #e0e0e0;
	border: 0;
}

.index_case .swiper-button-next:hover {
	background-color: #fff;
	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'%230a84e8'%2F%3E%3C%2Fsvg%3E");


}

.indexDiv4 {
	background: url(../img/hzkh_bg.jpg) no-repeat center center;
	background-size: cover;

}

.indexDiv4 .swiper-slide .imgDiv {
	height: 73px;
	background-color: #ffffff;
	padding: 10px;
}

.indexDiv4 .swiper-pagination {
	margin-top: 40px;
}

.indexDiv4 .swiper-pagination-bullet {
	background: #fff;
}

.indexDiv5 {
	background-color: #f5f8fa;
}

.indexDiv5 .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.indexDiv5 .flDiv {
	width: 520px;
}

.indexDiv5 .flDiv ul {
	display: flex;
	justify-content: space-between;
}

.indexDiv5 .flDiv ul li {
	max-width: 30%;

}

.ab_more {
	width: 140px;
	height: 46px;
	background: linear-gradient(-40deg,
			#006bea 0%,
			#0a84e8 100%) repeat-y;
	background-size: 0 100%;
	border-radius: 4px;
	margin-top: 60px;
	transition: all 0.5s;
	border: 1px #006bea solid;
	color: #006bea;
}

.ab_more:hover {
	background-size: 100% 100%;
	color: #fff !important;
}

.indexDiv5 .flDiv ul li:nth-child(2) {
	width: 40%;
	max-width: initial;
	border-left: 1px #cfd2d4 solid;
	border-right: 1px #cfd2d4 solid;
}

.indexDiv5 .flDiv ul li p {
	text-align: center;
}

.indexDiv5 .flDiv ul li .num {
	font-size: 36px;
	font-weight: bold;
	color: #0a84e8;
	font-family: Bahnschrift;
}

.indexDiv5 .frDiv {
	width: calc(100% - 600px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.videoDiv {
	width: 100%;
	height: 450px;
	position: relative;
}

.videoDiv .poster {
	width: 100%;
	height: 450px;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
}

.videoDiv video {
	width: 100%;
	height: 450px;
	object-fit: cover;
}

.playBtn {
	position: absolute;
	z-index: 99;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.playBtn img {
	position: relative;
	z-index: 999;
}

.playBtn span {
	position: absolute;
	left: 13px;
	top: 13px;
	width: 56px;
	height: 56px;
	border: 1px #fff solid;
	border-radius: 50%;
	/* opacity: .4; */
	animation: dots ease 2s infinite;
	-moz-animation: dots ease 2s infinite;
	-webkit-animation: dots ease 2s infinite;
	-o-animation: dots ease 2s infinite;
	display: block;
	z-index: 1;
}

.playBtn::after {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 80px;
	height: 80px;
	border: 1px #fff solid;
	border-radius: 50%;
	/* opacity: .4; */
	animation: dots ease 3s infinite;
	-moz-animation: dots ease 3s infinite;
	-webkit-animation: dots ease 3s infinite;
	-o-animation: dots ease 3s infinite;
	display: block;
	z-index: 1;
}

@keyframes dots {

	0% {
		transform: scale(0);
		-ms-transform: scale(0);
		-moz-transform: scale(0);
		-webkit-transform: scale(0);
		-o-transform: scale(0);
		opacity: 1;
	}

	100% {
		transform: scale(2);
		-ms-transform: scale(2);
		-moz-transform: scale(2);
		-webkit-transform: scale(2);
		-o-transform: scale(2);
		opacity: 0.1;
	}
}

.newsTjDiv .textDiv .more {
	width: 130px;
	height: 36px;
	background: linear-gradient(#0a84e8, #0a84e8) repeat-y;
	background-size: 0 100%;
	border-radius: 4px;
	border: solid 1px #0a84e8;
	color: #0a84e8;
	transition: all 0.5s;
}

.newsTjDiv .textDiv .more:hover {
	background-size: 100% 100%;
	color: #fff;
}

.newsTjDiv .textDiv {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.newsTjDiv .textDiv .imgDiv {
	border-radius: 10px;
	overflow: hidden;
}

.newsTjDiv .textDiv .imgDiv img {
	width: 660px;
	height: 370px;
	background-color: #0662bb;

}

.newsTjDiv .textDiv:hover .f3 {
	color: #006bea;
}

.newsTjDiv .textDiv .wenzi {
	width: calc(100% - 720px);
}

.indexNews ul {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	margin-bottom: 20px;
}

.indexNews ul li {
	width: 25%;
	position: relative;
}

.indexNews ul li .textDiv {
	padding: 30px;
	height: 100%;
	padding-bottom: 50px;
	position: relative;
}

.indexNews ul li:nth-child(odd) .textDiv {
	background-color: #f5f8fa;
}

.indexNews ul li:nth-child(even) .textDiv {
	background-color: #ebf2f9;
}

.indexNews ul li:hover .textDiv {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9;
	width: 370px;
	height: 183px;
	border-radius: 10px;
}



.nav-wrap {
	width: 100%;
	background: #fff;
	box-shadow: 0 5px 5px #e9ecf5;
	position: relative;
	z-index: 9;
	margin-top: -45px;
}

.nav-wrap.navFix {
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid #e3e3e3\9;
	z-index: 999;
	margin-top: 0px;
}


.nav-wrap ul {
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-wrap.navFix li a {
	line-height: 80px;
}

.nav-wrap.navFix ul {
	border-bottom: 0;
}

.nav-wrap li {
	display: inline-block;
	text-align: center;
	width: 16%;
	position: relative;
}

.nav-wrap li::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	height: 18px;
	width: 1px;
	background-color: #cccccc;
	z-index: 99;
}

.nav-wrap li:last-child::after {
	display: none;
}


.nav-wrap li a {
	display: block;
	padding: 0 20px;
	line-height: 90px;
	color: #333;
	text-decoration: none;
}

.nav-wrap li a:hover {
	color: #0a84e8;
}

.nav-wrap li a.active {
	color: #0a84e8;
}


.aboutDiv1 {
	background: url(../img/about_bg1.jpg) no-repeat center bottom;
	background-size: 100%;
	padding-bottom: 80px;
}

.aboutDiv1 .content {
	display: flex;
	justify-content: space-between;
}

.aboutDiv1 .content .wenzi {
	width: 510px;
	padding: 40px 0;
}

.aboutDiv1 .content .frDiv {
	max-width: calc(100% - 590px);
}


.aboutDiv2 {
	background: url(../img/lc_bg.jpg) no-repeat center top;
	background-size: cover;

}

.aboutDiv2 .conDiv {
	padding: 230px 0;
	position: relative;
}

.aboutDiv2 .conDiv .timeDiv {
	width: 100%;
	line-height: 60px;
	position: relative;
}

.aboutDiv2 .conDiv .timeDiv img {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}


.aboutDiv2 .conDiv .wenzi {
	position: absolute;
	height: 200px;
	display: flex;
	/* justify-content: space-between; */
	width: 540px;
	left: 0px;

}

.aboutDiv2 .conDiv .wenzi .txt {
	width: calc(100% - 250px);
	display: flex;
	justify-content: space-between;
	margin-left: 20px;
}

.aboutDiv2 .conDiv .wenzi .txt .imgDiv img {
	width: 203px;
	height: 139px;
}

.aboutDiv2 .conDiv .wenzi .txt .flDiv ul {
	width: 285px;
}

.aboutDiv2 .conDiv .wenzi .imgDiv {
	margin-right: 20px;
}


.aboutDiv2 .swiper-slide:nth-child(odd) .conDiv .wenzi {
	top: 0;
}

.aboutDiv2 .swiper-slide:nth-child(even) .conDiv .wenzi {
	bottom: 0;
}

.lc_tj {
	position: absolute;
	right: 0;
	top: 409px;
	height: 70px;
}

.aboutDiv2 .conDiv .biaoti span.jb_wz {
	background: linear-gradient(45deg, #fff, #94d4fa);
	-webkit-background-clip: text;
	color: transparent;
}

.aboutDiv2 .conDiv .biaoti span.dian {
	font-size: 34px;
	font-weight: bold;
	margin: 0 10px;
}

.aboutDiv2 .swiper-container {
	overflow: visible;
}

/* .aboutDiv2 .swiper-container .swiper-slide:last-child .conDiv{
	padding-right: 150px;
	width: 500px;
} */

.aboutDiv2 .wrap {
	/* overflow: hidden; */
}

.aboutDiv3 .textDiv {
	padding: 30px;
	background-color: #f6f7fb;
}

.aboutDiv3 .swiper-slide {
	box-shadow: 0 0 10px #eee;
	position: relative;
}

.aboutDiv3 .swiper-slide::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
}

.aboutDiv3 .swiper-slide-active,
.aboutDiv3 .swiper-slide-active img {
	height: 350px;
	width: 538px !important;
	position: relative;
	z-index: 99;
	opacity: 1;
}

.aboutDiv3 .swiper-wrapper {
	align-items: center;
}

.aboutDiv4 {
	background: #f4f9ff;
}

.aboutDiv4 .content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.aboutDiv4 .frDiv {
	max-width: calc(100% - 420px);
	margin-top: -30px;
}

.aboutDiv4 .frDiv .wenzi {
	width: 70%;
	padding: 20px;
	background-color: #dae8f7;
	border-radius: 10px;
	text-align: center;
	margin: 0 auto;
	margin-top: 20px;
}

.aboutDiv4 .flDiv {
	width: 400px;
}

.aboutDiv4 .flDiv ul li {
	display: flex;
	justify-content: space-between;
}

.aboutDiv4 .flDiv ul li span {
	width: 10px;
	height: 10px;
	background-color: #006bea;
	transform: rotate(45deg);
	margin-top: 5px;
}

.aboutDiv4 .flDiv ul li p {
	width: calc(100% - 20px);
	font-size: 16px;
	color: #333;
	margin-bottom: 30px;
}


.aboutDiv5 .swiper-slide .imgDiv {
	height: 73px;
	background-color: #ffffff;
	padding: 10px;
}

.aboutDiv5 .swiper-pagination {
	margin-top: 40px;
}

.line_lx {
	width: 30px;
	height: 2px;
	background-color: #006bea;
	margin-top: 35px;
}

.ab_lxDiv {
	width: 440px;
}

.ab_lxDiv ul li {
	display: flex;
	align-items: center;
	margin-bottom: 50px;
}

.ab_lxDiv ul li img {
	box-shadow: 3px 4px 18px 0px rgba(208, 220, 233, 0.64);
	border-radius: 5px;
	margin-right: 20px;
}

.aboutDiv6 .content {
	display: flex;
	justify-content: space-between;
}

.aboutDiv6 .content .frDiv {
	width: calc(100% - 520px);
	display: flex;
	justify-content: space-between;
}

.ab_lx_ewm {
	width: 140px;
}

.ab_lx_ewm ul li {
	text-align: center;
	margin-bottom: 20px;
}




.dituDiv {
	width: calc(100% - 280px);
}

.mapDiv {
	height: 325px;
}

.yysyDiv {
	width: 100%;
	padding: 30px;
	background: url(../img/abyy.jpg) no-repeat center center;
	background-size: cover;
}

.yysyDiv .textDiv {
	display: flex;
	align-items: center;
}

.yysyDiv .textDiv .btnY {
	width: 160px;
	height: 56px;
	background-color: #ffffff;
	border-radius: 28px;
	color: #006bea;
	margin-right: 20px;
}

.yysyDiv .textDiv .txt {
	width: calc(100% - 180px);
}

.failDiv {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	padding: 8px 15px;
	font-size: 20px;
	border-radius: 10px;
	display: none;
}

.popLiuyan {
	width: 700px;
	background-color: #ffffff;
	border-radius: 10px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9998;
	padding: 40px 60px;
	display: none;
}

.popDiv {
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9994;
	display: none;
}

.closeBtn {
	position: absolute;
	top: 25px;
	right: 25px;
}

.youshiDiv .textDiv {
	position: relative;
	padding: 40px;
	height: 100%;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 0 10px #e1e8f0;
	padding-right: 60px;
	transition: all 0.5s;
}

.youshiDiv .textDiv:hover {
	box-shadow: 0 0 30px rgba(203, 212, 223, .4);
	margin-top: -10px;
	margin-bottom: 10px;
}

.youshiDiv .textDiv .bt {
	padding-bottom: 10px;
	margin-bottom: 15px;
	position: relative;
}

.youshiDiv .textDiv .bt::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: #006bea;
}

.youshiDiv .textDiv .iconImg {
	position: absolute;
	top: 25px;
	right: 30px;
}

#certify2 {
	position: relative;
	margin: 0 auto;
	margin-top: 50px;
}

#certify2 .swiper-container {
	padding-bottom: 20px;
}

#certify2 .swiper-slide {
	width: 538px;
	background: #fff;
}

#certify2 .swiper-slide img {
	display: block;
}

#certify2 .swiper-slide p {
	line-height: 98px;
	padding-top: 0;
	text-align: center;
	color: #636363;
	font-size: 1.1em;
	margin: 0;
}

#certify2 .swiper-pagination {
	width: 100%;
	bottom: 20px;
}

#certify2 .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	border: 3px solid #fff;
	background-color: #d5d5d5;
	width: 10px;
	height: 10px;
	opacity: 1;
}

#certify2 .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 3px solid #00aadc;
	background-color: #fff;
}

#certify2 .swiper-button-prev {
	left: -30px;
	width: 60px;
	height: 60px;
}

#certify2 .swiper-button-next {
	right: -30px;
	width: 60px;
	height: 60px;
}

.caseDiv2 .content {
	margin-bottom: 50px;
}

.caseDiv2 .content ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.caseDiv2 .content ul li {
	width: 13.2%;
	margin: 0 0.5%;
	margin-bottom: -30px;
}

.caseDiv2 .content ul li .textDiv>img {
	filter: drop-shadow(0px 0px 40px rgba(235, 241, 248, 1));
}

.caseDiv2 .content ul li:nth-child(1) {
	margin-left: 1.5%;
}

.caseDiv2 .content ul li:nth-child(7) {
	margin-left: 1.1%;
}

.caseDiv2 .content ul li .textDiv {
	position: relative;
	width: 100%;
	height: 100%;
}

.caseDiv2 .content ul li .textDiv .abImgDiv {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9;
	background: url(../img/blue_bg.png) no-repeat;
	background-size: 100% 100%;
	opacity: 0;
	transition: all 0.3s;
}

.caseDiv2 .content ul li .textDiv .abImgDiv img {
	margin-bottom: 20px;
	transition: all 0.3s;
	max-width: 90%;
	max-height: 90%;
}

.caseDiv2 .content ul li:hover .textDiv .abImgDiv {
	opacity: 1;
}

.caseDiv2 .content ul li:hover .textDiv .abImgDiv img {
	margin-bottom: 0;
}



/*PHONE屏幕下的专用样式*/
@media screen and (max-width:992px) {


	.wrap,
	.wrap2,
	.wrap3 {
		width: 92%;
		margin: 0 auto;
		font-size: 14px;
		padding: 0;
		min-width: initial;
		line-height: 1.8;
	}

	.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, .1)
	}

	.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;
		margin-left: 0;
	}

	header .rightDiv .menu ul li ul li:last-child {
		border: 0;
	}

	header .logo {
		width: 70%;
		margin-left: 0;
	}

	header .logo a {
		/* height: 35px; */
		margin-top: 10px;

	}

	header .logo img {
		max-height: 28px;
	}

	.menu ul ul {
		visibility: visible;
		opacity: 1;
	}

	.menu ul ul.open {
		display: block !important;
	}

	header .wrap {
		display: block;
	}


	header.index .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;
		/* box-shadow: 0 0 5px #EEEEEE; */
		background: #fff;
		/*background-color: transparent;*/
		transition: right 300ms !important;
	}

	header.index {
		background: #FFFFFF;
		border: 0;
		box-shadow: 0 0 5px #EEEEEE;
	}


	header .rightDiv .menu>ul>li>a:hover {
		color: #006bea;
	}

	.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: #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;
		display: block;
	}

	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;
	}

	.menu ul ul {
		transform: translate(0, 0);
		border-top: 1px solid rgba(255, 255, 255, .1);
	}

	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: 200px;
		object-fit: cover;
	}

	.bannerIndex img {
		min-height: 230px;
	}

	.bannerIndex .wrap {
		line-height: 22px;
		top: 30px;
		width: 95%;
	}

	.bannerIndex .wrap .font18 {
		font-size: 14px;
	}

	.bannerIndex .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.font56 {
		font-size: 24px;
	}

	.bannerIndex .wenzi .wrap {
		margin-bottom: 50px;
	}

	.bannerIndex .swiper-pagination {
		bottom: 15px;
	}

	.head_fr {
		margin-top: 30px;
	}

	.title_index .sm_wz {
		font-size: 12px;
	}

	.par80 {
		padding: 40px 0;
	}

	.indexDiv1 .col-lg-6 {
		padding: 0 5px;
		margin-bottom: 10px;
	}

	.indexDiv1 .row {
		margin: 0 -5px;
	}

	.indexDiv1 .textDiv {
		padding: 20px 15px;
		min-height: auto;
	}

	.indexDiv1 .textDiv .txt {
		font-size: 12px;
		line-height: 20px;
	}

	.indexDiv1 .textDiv .imgDiv img {
		height: 60px;
	}

	.indexDiv1 .more {
		width: 100px;
		height: 30px;
		font-size: 12px;
		margin-top: 15px;
	}

	.indexDiv2 .textDiv {
		display: block;
	}

	.indexDiv2 .textDiv .imgDiv img {
		height: 180px;

	}

	.indexDiv2 .textDiv .wenzi {
		width: 100%;
		margin-left: 0;
		margin-top: 40px;
	}

	.font28 {
		font-size: 20px;
	}

	.indexDiv2 .tab li {
		min-width: 110px;
		padding: 12px;
	}

	.indexDiv3 .content {
		display: block;
	}

	.hxys .textDiv {
		width: 100%;
	}

	.indexDiv3 .content .frDiv {
		width: 100%;
		margin-top: 20px;
	}

	.indexDiv4 {
		padding-bottom: 60px;
	}

	.indexDiv4 .swiper-pagination {
		margin-top: 20px;
	}

	.indexDiv5 .flDiv ul li .num {
		font-size: 30px;
	}

	.newsTjDiv .textDiv {
		display: block;
	}

	.newsTjDiv .textDiv .imgDiv img {
		width: 100%;
		height: 200px;
		background-color: #0662bb;
	}

	.newsTjDiv .textDiv .wenzi {
		width: 100%;
		margin-top: 20px;
	}

	.indexNews ul {
		flex-wrap: wrap;
	}

	.indexNews ul li {
		width: 50%;
	}

	.indexNews ul li .textDiv {
		padding: 20px;
		padding-bottom: 25px;
	}

	.footDiv {
		display: block;
		border: 0;
	}

	.footDiv .flDiv,
	.footNav {
		width: 100%;
		display: block;
		border: 0;
	}

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

	.footMenu ul li {
		margin-right: 20px;
	}

	.footMenu p {
		margin-bottom: 0;
	}

	.footMenu {
		margin-top: 20px;
	}

	.footDiv .frDiv {
		width: 100%;
		justify-content: flex-start;
		margin-top: 20px;
	}

	.yq_link {
		display: block;
	}

	.yq_link ul {
		margin-left: -10px;
		width: 100%;
	}

	.yq_link ul li a {
		padding: 0 10px;
	}

	.menu ul ul::after {
		display: none;
	}

	.banner_nei .font50 {
		font-size: 20px;
		line-height: 1;
	}

	.banner_nei .wenzi .wrap {
		margin-bottom: 20px;
	}

	.soluDiv1 .wrap {
		display: block;
	}

	.soluDiv1 .wrap .wenzi {
		padding: 20px;
		margin-bottom: 30px;
		width: 100%;
		border-radius: 10px;
	}

	.soluDiv1 .imgDiv .img {
		padding: 20px 10px;
	}

	.soluDiv1 .imgDiv {
		width: 100%;
		height: auto;
	}

	.kjDiv2 .textDiv .wenzi .bt .font24 {
		font-size: 18px;
	}

	.kjDiv2 .textDiv .wenzi {
		padding: 20px 20px;
	}

	.kjDiv2 .textDiv .wenzi ul {
		font-size: 14px;
		margin-top: 10px;
	}

	.kjDiv3 .content {
		padding: 0;
		width: 100%;
		margin: 0 auto;
		margin-top: 40px;
	}

	.kjDiv3 .swTab .textDiv {
		padding: 20px;
		display: block;
	}

	.kjDiv3 .swTab .wenzi,
	.kjDiv3 .swTab .imgDiv {
		max-width: 100%;
	}

	.kjDiv3 .swTab .wenzi {
		margin-bottom: 20px;
	}

	.swCon .imgDiv {
		max-height: 300px;
		max-width: 100%;
	}

	.kjDiv3 .swTab ul li img {
		width: 15px;
		height: 15px;
	}



	.title_small {
		min-width: calc(100% - 100px);
	}

	.swCon {
		display: block;
	}

	.swCon .wenzi .blue {
		font-size: 18px;
		margin-bottom: -10px;
	}

	.swCon .wenzi {
		width: 100%;
	}

	.swCon .wenzi ul li p.font16 {
		font-size: 14px;
	}

	.swiper-button-next,
	.swiper-button-prev {
		width: 40px;
		height: 40px;
	}

	.font16 {
		font-size: 14px;
	}

	.swCon .wenzi ul li {
		margin-bottom: 0;
		margin: 15px 0;
	}


	.kjDiv5 ul li {
		width: 30%;
		margin-left: 10px;
		margin-bottom: 10px;
	}

	.kjDiv5 ul li .imgDiv {
		width: 100%;
		height: 50px;
	}

	.kjDiv5 ul {
		justify-content: space-between;
		margin-left: -10px;
	}

	.footDiv .flDiv .wenzi {
		width: 100%;
	}

	.kdDiv3 .content {
		padding: 20px 20px;
		display: block;
		width: 85%;
		margin: 0 auto;
		margin-top: 40px;
	}

	.kdDiv3 .content .wenzi {
		margin-bottom: 30px;
	}

	.kdDiv3 .wenzi ul li img {
		width: 8px;
		margin-top: 8px;
	}

	.kdDiv4 .content {
		display: block;
	}

	.kdDiv4 .content .tab li {
		width: 100%;
		height: 46px;
		padding: 0 15px;
		padding-left: 20px;
		font-size: 14px;
		line-height: 1.5;
	}

	.kdDiv4 .content .flDiv {
		width: 100%;
		height: 280px;
	}

	.title .small_wz {
		width: 100%;
		min-width: initial;
		line-height: 20px;
	}

	.shuziDiv2 .wrap,
	.shuziDiv3 .wrap {
		display: block;
	}

	.shuziDiv2 .wenzi,
	.shuziDiv3 .wenzi {
		width: 100%;
		padding: 30px;
	}

	.shuziDiv2 .imgDiv,
	.shuziDiv3 .imgDiv {
		max-width: 100%;
		margin-top: 30px;
	}

	.shuziDiv3 .imgDiv {
		margin-bottom: 40px;
	}

	.erjiDiv ul li {
		width: 22%;
		margin: 0 1.5%;
		margin-bottom: 15px;
	}

	.erjiDiv ul li a .iconDiv {
		width: 46px;
		height: 46px;
		margin: 0 auto;
		margin-bottom: 10px;
		border-radius: 10px !important;
	}

	.erjiDiv ul li a .iconDiv img {
		width: 28px;
	}

	.erjiDiv ul li a p {
		font-size: 14px;
	}

	.erjiDiv ul {
		justify-content: flex-start;
	}

	.typeList ul li .textDiv {
		display: block;
	}

	.typeList ul li .textDiv .imgDiv {
		width: 100%;
		min-height: initial;
	}

	.typeList ul li .textDiv .wenzi {
		padding: 20px;
		width: 100%;
		padding-top: 0;
	}

	.yuyueDiv .wrap {
		display: block;
	}

	.yuyueDiv .flDiv {
		display: none;
	}

	.yuyueDiv .frDiv {
		width: 100%;
		margin-left: 0;
	}

	.checkUl li {
		padding-left: 5px;
	}

	.xinxiUl li {
		width: 100%;
	}

	.yuyueForm .btn {
		width: 100%;
	}

	.checkUl li input {
		width: 14px;
		height: 14px;
	}

	.newsDiv2 .textDiv {
		display: block;
	}

	.newsDiv2 .imgDiv {
		width: 100%;
		height: 200px;
	}

	.newsDiv2 .textDiv .wenzi {
		width: 100%;
		padding: 20px 0;
		margin-bottom: 0;
	}

	.newsXqDiv .wrap {
		width: 92%;
	}

	.newsXqDiv .content {
		width: 100%;
	}

	.font42 {
		font-size: 20px;
	}

	.tuijian .flex2 {
		display: block;
	}

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

	.tjCon .textDiv .imgDiv {
		width: 120px;
		height: 100px;
	}

	.tjCon .textDiv .imgDiv img {
		width: 100%;
		height: 100%;
	}

	.tjCon .textDiv .wenzi {
		width: calc(100% - 140px);
	}

	.abErji {
		display: none;
	}

	.aboutDiv1 .content {
		display: block;
	}

	.aboutDiv1 .content .wenzi,
	.aboutDiv1 .content .frDiv {
		width: 100%;
	}

	.aboutDiv1 .content .frDiv {
		max-width: 100%;
	}

	.aboutDiv1 .content .videoDiv,
	.aboutDiv1 .content .videoDiv video,
	.videoDiv .poster {
		height: 300px;
	}

	.aboutDiv1 .content .videoDiv .poster {
		height: 300px;
	}

	.lc_tj {
		position: absolute;
		right: 0;
		top: 322px;
		height: 50px;
		/* object-fit: contain; */
	}

	.aboutDiv2 .conDiv .wenzi {
		width: 300px;
	}





	.aboutDiv3 .textDiv .imgDiv {
		height: 100px;
	}

	.aboutDiv3 .textDiv {
		padding: 15px;
	}

	.aboutDiv3 .swiper-pagination {
		bottom: -35px;
	}

	.ryTitle .tab li {
		padding-bottom: 0;
	}

	.aboutDiv4 .textDiv .imgDiv img {
		width: 100%;
		height: 200px;
	}

	.aboutDiv4 .col-lg-4:nth-child(2) {
		margin-top: 20px;
	}

	.aboutDiv5 {
		padding-bottom: 100px;
	}

	.aboutDiv6 .content {
		display: block;
	}

	.ab_lxDiv {
		width: 100%;
	}

	.ab_lxDiv ul li img {
		width: 50px;
	}

	.aboutDiv6 .content .frDiv {
		width: 100%;
		margin-top: 20px;
		display: block;
	}

	.ab_lx_ewm {
		width: 100%;

	}

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

	.ab_lx_ewm ul li {
		display: block;
		width: 140px;
	}

	.ab_lx_ewm ul li p {
		margin-top: 20px;
		padding-left: 20px;
		width: 100%;
	}

	.dituDiv {
		width: 100%;
	}

	.yysyDiv {
		padding: 20px 15px;
	}

	.yysyDiv .textDiv .btnY {
		width: 100px;
		height: 40px;
		background-color: #ffffff;
		border-radius: 28px;
		color: #006bea;
		margin-right: 20px;
		font-size: 14px;
	}

	.yysyDiv .textDiv .txt {
		width: calc(100% - 120px);
		font-size: 14px;
	}

	.aboutDiv4 .row {
		margin: 0;
	}

	.menu ul li:hover>ul {
		display: none;
	}

	.indexDiv5 .wrap {
		display: block;

	}

	.indexDiv5 .flDiv {
		width: 100%;
	}

	.indexDiv5 .frDiv {
		width: 100%;
		margin-top: 40px;
	}

	.videoDiv,
	.videoDiv video,
	.videoDiv .poster {
		height: 240px;
	}

	.index_case .swiper-slide.swiper-slide-active,
	.index_case .swiper-slide {
		width: 100% !important;
		height: 400px;
		margin-top: 0;
	}

	.index_case {
		width: 90%;
		margin: 0 auto;
	}

	.index_case .swiper-slide .imgDiv {
		width: 100%;
	}

	.newsXqDiv {
		margin-top: 50px;
	}

	.aboutDiv1 .content .wenzi {
		padding-top: 0;
	}

	.ryTitle {
		display: block;
	}

	.ryTitle .tab {
		margin-top: 10px;
	}

	.ryTitle .tab li {
		margin-left: 0;
		margin-right: 20px;
	}

	.aboutDiv2 .swiper-slide:nth-child(odd) .conDiv .wenzi {
		top: 0;
		bottom: auto;
		top: 0;
	}

	.aboutDiv2 .conDiv .wenzi {
		display: block;
	}

	.aboutDiv2 .conDiv .wenzi>img {
		display: none;
	}

	.aboutDiv2 .conDiv .wenzi {
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.aboutDiv2 .conDiv .wenzi .txt {
		width: 100%;
		margin-left: 0;
		display: block;
		text-align: center;
	}

	.aboutDiv2 .content {
		margin-top: 30px;
	}

	.aboutDiv2 .conDiv .wenzi .imgDiv {
		width: 200px;
		margin: 0 auto;
	}

	.aboutDiv2 .conDiv {
		padding: 0;
		padding-top: 335px;
		padding-bottom: 0;

	}

	.lc_tj {
		top: 449px;
	}

	.aboutDiv2 .conDiv .wenzi .txt .flDiv ul {
		width: 100%;
	}

	.aboutDiv2 .swiper-slide:nth-child(even) .conDiv .wenzi {
		top: 0;
	}

	.index_case .swiper-wrapper {
		margin-left: 0;
	}

	.aboutDiv2 .swiper-slide:last-child {
		display: none;
	}

	.typeList ul li .textDiv .wenzi .bt {
		padding: 10px 0;
		font-size: 16px;
	}

	.typeList ul li .textDiv .wenzi .txt {
		line-height: 24px;
		margin-top: 10px;
	}

	.kjDiv3 .tab li {
		padding: 6px 10px;
		min-width: initial;
		background-color: #e9edf2;
		border-radius: 28px;
		text-align: center;
		margin: 0;
		font-size: 14px;
		width: 44%;
		margin: 0 3%;
		margin-bottom: 10px;
	}

	.kjDiv4 .textDiv {
		padding: 20px;
	}

	.kjDiv4 .textDiv img {
		width: 38px;
		height: 38px;
	}

	.kjDiv4 .textDiv .wenzi {
		width: calc(100% - 55px);
	}

	.kjDiv4 .textDiv .wenzi .txt {
		margin-top: 5px;
	}

	.kjDiv4 .col-lg-4 {
		margin-bottom: 15px;
	}

	.kjDiv5 .content .col-lg-3 {
		padding: 0 5px;
		margin-bottom: 10px;
	}

	.kjDiv5 .content .row {
		margin: 0 -5px;
	}

	.kjDiv5 .content .textDiv {
		display: flex;
		justify-content: space-between;
	}

	.kjDiv5 .content .textDiv .imgDiv {
		width: 35%;
		height: auto;
	}

	.kjDiv5 .content .textDiv .imgDiv img {
		height: 40px;
	}

	.kjDiv5 .content .textDiv .wenzi {
		width: 65%;
		padding: 10px;
	}

	.yuyueBott img.img {
		display: none;
	}

	.yuyueBott .wenzi .font32 {
		font-size: 20px;
	}

	.soluDiv1.kdDiv1 .imgDiv {
		width: 100%;
	}

	.kdDiv3 .tab {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.kdDiv3 .tab li {
		padding: 5px 10px;
		min-width: 120px;
		text-align: center;
		margin: 0;
		width: 46%;
		margin: 5px 0;
	}

	.shuziDiv1 .frDiv .imgDiv {
		height: auto;
	}

	.shuziDiv1 .flDiv,
	.shuziDiv1 .frDiv {
		width: 100%;
	}

	.shuziDiv1 .wrap {
		display: block;
	}

	.shuziDiv1 .flDiv .content {
		padding: 20px;
		margin-bottom: 40px;
	}

	.szDiv3 .textDiv {
		display: block;
	}

	.szDiv3 .textDiv .imgDiv,
	.szDiv3 .textDiv .wenzi {
		width: 100%;
	}

	.szDiv3 .content {
		padding: 20px;
	}

	.szDiv3 .textDiv .imgDiv {
		margin-bottom: 20px;
	}

	.szDiv3 .textDiv .imgDiv img {
		width: 100%;
	}

	.szDiv3 .tab li {
		font-size: 14px;
		padding: 0 8px;
		height: 48px;
		line-height: 48px;
	}

	.newsDiv1 .imgDiv {
		height: 165px;
	}

	.youshiDiv .textDiv {
		padding: 15px;
		padding-right: 30px;
	}

	.youshiDiv .textDiv .iconImg {
		width: 40px;
		right: 20px;
		top: 15px;
	}

	.youshiDiv .col-lg-4 {
		margin-bottom: 20px;
	}

	.youshiDiv .textDiv .bt {
		font-size: 20px;
	}

	.aboutDiv3 .swiper-slide-active {
		height: auto;
		width: 70% !important;
	}

	.aboutDiv3 .swiper-slide-active img {
		width: 100% !important;
		height: auto;
	}

	.aboutDiv4 .content {
		display: block;
	}

	.aboutDiv4 .flDiv,
	.aboutDiv4 .frDiv {
		width: 100%;
		max-width: 100%;
	}

	.aboutDiv4 .flDiv ul li p {
		margin-bottom: 10px;
	}

	#certify .swiper-container {
		width: 300px;
		margin: 0 auto;
		padding-bottom: 0;
		border-radius: 10px;
		overflow: hidden;
		margin-top: 30px;
	}

	.index_case .swiper-wrapper {
		padding: 0;
	}

	.index_case .swiper-button-next {
		right: 5px;
	}

	.index_case .swiper-button-prev {
		left: 5px;
	}

	.aboutDiv4 .frDiv {
		margin-top: 30px;
	}

	.index_case .swiper-slide-next {
		margin-left: 0;
	}

	#certify .swiper-slide,
	.index_case .swiper-slide.swiper-slide-active .imgDiv {
		width: 100%;
		height: 415px;
	}

	.index_case .swiper-slide .imgDiv {
		height: auto;
	}

	.index_case .swiper-slide .textDiv {
		border-radius: 10px;
		overflow: hidden;
		background: none;
	}

	.aboutDiv4 .frDiv .wenzi {
		width: 100%;
		padding: 15px;
	}

	.index_case .swiper-slide.swiper-slide-active .imgDiv {
		width: 100%;
	}

	#certify2 .swiper-slide {
		width: 260px;
	}

	.caseDiv2 .content ul li {
		width: 23.8%;
		margin-bottom: -15px;
	}

	.caseDiv2 .content ul li:first-child {
		margin: 0 0.5%;
		margin-bottom: -20px;
	}

	.caseDiv2 .content ul li:nth-child(12),
	.caseDiv2 .content ul li:nth-child(5) {
		margin-left: 1.8%;
	}

	#certify2 .swiper-button-next {
		right: -8px;
		width: 36px;
		height: 36px;
	}

	#certify2 .swiper-button-prev {
		left: -8px;
		width: 36px;
		height: 36px;
	}
	.ab_lx_ewm ul li:first-child{
		margin-right: 15px;
	}
	.dituDiv{
		margin-top: 20px;
	}



}

@media screen and (min-width:300px) and (max-width:767px) {
	#certify .swiper-slide {
		transform: initial !important;
		width: 100% !important;

	}
}

/*PAD屏幕下的专用样式*/
@media screen and (min-width: 768px) and (max-width:992px) {
	.caseDiv2 .content ul li {
		width: 13.2%;
		margin: 0 0.5%;
		margin-bottom: -10px;
	}

	.caseDiv2 .content ul li .textDiv>img {
		filter: drop-shadow(0px 0px 40px rgba(235, 241, 248, 1));
	}

	#certify2 .swiper-button-next {
		right: -22px;
		width: 42px;
		height: 42px;
	}

	#certify2 .swiper-button-prev {
		left: -22px;
		width: 42px;
		height: 42px;
	}

	.caseDiv2 .content ul li:nth-child(1) {
		margin-left: 1.5%;
	}

	.caseDiv2 .content ul li:nth-child(7) {
		margin-left: 1.1%;
	}

	.caseDiv2 .content ul li:nth-child(12),
	.caseDiv2 .content ul li:nth-child(5) {
		margin: 0 0.5%;
		margin-bottom: -10px;
	}

	.videoDiv,
	.videoDiv video,
	.videoDiv .poster {
		height: 340px;
	}

	.indexDiv2 .textDiv {
		display: flex;
	}

	.indexDiv2 .textDiv .imgDiv {
		width: 40%;
	}

	.indexDiv2 .textDiv .wenzi {
		width: 50%;
	}

	#certify2 .swiper-slide {
		width: 460px;
	}

	.kjDiv5 ul li {
		width: 18%;
	}

	.kdDiv4 .content .flDiv {
		height: 400px;
	}

	.newsDiv2 .textDiv {
		display: flex;

	}

	.newsDiv2 .textDiv .imgDiv {
		width: 300px;
	}

	.newsDiv2 .textDiv .wenzi {
		width: calc(100% - 340px);
	}

	.lc_tj {
		top: 460px;
	}

	#certify .swiper-container {
		width: 80% !important;
	}

	/* #certify .swiper-container{
		width: 70%;
	} */
	.kjDiv3 .tab li {
		width: 18%;
		margin: 0 1%;
	}

	.kdDiv3 .tab {
		width: 100%;
	}

	.kdDiv3 .tab li {
		width: 18%;
		margin: 0 2%;
		min-width: initial;
	}

	#certify .swiper-slide {
		width: 280px !important;
		height: 450px;
	}

	#certify .swiper-slide-active {
		width: 280px !important;
		margin-top: -20px;
		height: auto;
	}

	#certify .swiper-wrapper {
		padding-top: 20px;
	}

	.index_case .swiper-slide.swiper-slide-active .imgDiv {
		height: 100%;
	}



}

/*中等PC屏幕下的专用样式*/
@media screen and (min-width:993px) and (max-width:1024px) {

	.wrap {
		width: 94%;
		padding: 0 3%;
		min-width: initial;
	}

	.caseDiv2 .content ul li {
		margin-bottom: -15px;
	}

	.wrap2 {
		width: 94%;
		margin: 0 auto;
		min-width: initial;
	}

	header .rightDiv .menu>ul>li {
		padding: 0 10px;
	}

	header .logo img {
		max-height: 40px;
	}

	header .rightDiv {
		width: 100%;
	}

	.indexDiv5 .flDiv {
		width: 40%;
	}

	.indexDiv5 .frDiv {
		width: 50%;
	}

	.newsTjDiv .textDiv .imgDiv img {
		width: 500px;
	}

	.newsTjDiv .textDiv .wenzi {
		width: calc(100% - 550px);
	}

	.footDiv .flDiv {
		display: block;
	}

	.footNav {
		width: 100%;
		margin-top: 30px;
	}

	.footDiv .flDiv .wenzi {
		width: 100%;
	}

	.indexDiv1 .col-lg-6 {
		margin-bottom: 30px;
	}

	.kjDiv5 ul li .imgDiv {
		width: 155px;
		height: 75px;
	}

	.erjiDiv ul li a {
		min-width: 110px;
	}

	.yuyueDiv .frDiv {
		width: calc(100% - 440px);
		margin-left: 50px;
	}

	.yuyueDiv .flDiv {
		width: 380px;
		padding: 40px 30px 0 30px;
	}

	.newsXqDiv .wrap,
	.newsXqDiv .wrap .content {
		width: 100%;
	}

	.aboutDiv1 .content .wenzi {
		width: 40%;
	}

	.aboutDiv1 .content .frDiv {
		max-width: 55%;
	}

	.aboutDiv4 .textDiv .imgDiv img {
		width: 100%;
		height: 210px;
	}

	.ab_lxDiv {
		width: 100%;
	}

	.aboutDiv6 .content {
		display: block;
	}

	.aboutDiv6 .content .frDiv {
		width: 100%;
		margin-top: 40px;
	}

	.erjiDiv ul li {
		margin: 0 13px;
	}

	.erjiDiv ul li a .iconDiv {
		width: 80px;
		height: 80px;
		border-radius: 10px !important;
	}

	.erjiDiv ul li a .iconDiv img {
		max-width: 40px;
	}

	.lc_tj {
		height: 70px;
	}

	.aboutDiv1 .content .frDiv img {
		height: 100%;
		object-fit: cover;
	}

	.kjDiv4 .textDiv {
		padding: 20px;
	}

	.soluDiv1.kdDiv1 .wenzi {
		width: 50%;
	}

	.soluDiv1.kdDiv1 .imgDiv {
		width: 49%;
	}

	.soluDiv1.kdDiv1 .wenzi {
		padding: 40px;
	}

	.shuziDiv1 .wrap {
		display: block;
	}

	.shuziDiv1 .wrap .flDiv,
	.shuziDiv1 .wrap .frDiv {
		width: 100%;
	}

	.newsDiv1 .imgDiv {
		height: 150px;
	}


}


@media screen and (min-width:1205px)and (max-width:1400px) {
	.wrap {
		width: 1200px;
	}

	.wrap2 {
		margin: 0 auto;
		min-width: 1200px;
		width: 1200px;
	}

	.font50 {
		font-size: 40px;
	}

	.kjDiv5 ul li .imgDiv {
		width: 215px;
		height: 85px;
	}

	.newsDiv1 .imgDiv {
		height: 190px;
	}

	.font34 {
		font-size: 30px;
	}

	.aboutDiv2 .conDiv .wenzi .txt .flDiv ul {
		width: 200px;
		font-size: 14px;
	}

	.yysyDiv .textDiv .txt {
		width: calc(100% - 150px);
		font-size: 14px;
	}

	.yysyDiv .textDiv .btnY {
		width: 130px;
		height: 46px;
		font-size: 16px;
	}

	.yysyDiv {
		padding: 30px 15px;
	}


}

@media screen and (min-width:1401px)and (max-width:1580px) {
	.wrap {
		width: 1320px;
	}

	.wrap2 {
		margin: 0 auto;
		min-width: 1360px;
		width: 1360px;
	}

	.kjDiv5 ul li .imgDiv {
		width: 240px;
		height: 100px;
	}

	.aboutDiv2 .conDiv .wenzi .txt .flDiv ul {
		width: 260px;
		font-size: 14px;
	}
}