/*首页头部导航*/


header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	height: 90px;
	transition: all 0.5s;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header .logo a {
	display: block;
	line-height: 90px;
	position: relative;
	z-index: 99;
}

header .logo a img {
	max-height: 47px;
}

header .rightDiv .menu {
	height: 90px;
}

header .rightDiv .menu>ul {
	display: inline-block !important;
	float: left;
	padding: 0 20px;
}

header .rightDiv .menu>ul>li {
	float: left;
	position: relative;
	padding: 0 25px;
}

header .rightDiv .menu>ul>li>a {
	line-height: 90px;
	text-align: center;
	display: block;
	position: relative;
	text-transform: capitalize;
}

header .rightDiv .menu>ul>li>a::after {
	content: "";
	width: 0;
	height: 2px;
	background: #1EA2DC;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: all .5s;
}

header .rightDiv .menu>ul>li.on>a,
header .rightDiv .menu>ul>li:hover>a {
	color: #1EA2DC;
}

header .rightDiv .menu>ul>li.on>a::after,
header .rightDiv .menu>ul>li:hover>a::after {
	width: 100%;
	transition: .5s;
}

.menu>ul>li>ul {
	position: absolute;
	top: 100px;
	min-width: 100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9;
	font-size: 14px;
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#4c91c0, direction=120, strength=5);
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease 0s;
	background: #fff;
}

.menu ul li:hover>ul {
	opacity: 1;
	visibility: visible;
	top: 90px;
}

.menu ul ul li a {
	display: block;
	white-space: nowrap;
	position: relative;
	padding: 6px 20px;
}

header .mbtn {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: url(../img/menu.svg) no-repeat center center;
	background-size: 18px auto;
	position: fixed;
	top: 0;
	right: 0;
	display: none;
}

header .mbtn:active {
	opacity: .8;
}

body.on-menu header .mbtn {
	background: url(../img/close.svg) no-repeat center center;
	background-size: 18px auto;
}

header .hotline {
	font-size: 18px;
	height: 90px;
	color: #274C9E;
	display: flex;
	align-items: center;
	background: url(../img/tel.png)left center no-repeat;
	padding-left: 40px;
}


@media all and (max-width:1480px) {header .rightDiv .menu>ul>li{padding: 0 18px;}}
@media all and (max-width:992px) {
	header {
		display: block;
		padding: 0 5%;
		height: 60px;
	}

	header .logo a {
		line-height: 60px;
	}

	.menu {
		width: 100%
	}

	.menu ul {
		width: 100%;
		display: block;
		float: none;
	}

	.menu ul ul,
	.menu ul ul ul {
		position: relative;
		left: 0;
		right: auto;
		width: 100%;
		margin: 0;
		top: 0;
		border: 0;
		background: transparent;
		border-bottom: none;
		padding: 0;
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}

	.menu>ul>li>a {
		padding: 0 20px;
	}

	.menu ul li,
	.menu ul ul li,
	.menu ul li:hover>ul>li {
		width: 100%;
		height: auto;
		border-top: 1px solid rgba(0, 0, 0, .1)
	}

	.menu ul li a,
	.menu ul ul li a {
		width: 100%
	}

	.menu ul ul li a {
		padding: 0 20px 0 30px;
		font-size: 12px;
		color: #333;
		background: 0 0
	}

	.menu ul ul li:hover>a,
	.menu ul ul li a:hover {
		color: #333
	}

	.menu ul ul ul li a {
		padding-left: 40px
	}

	.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;
		display: block;
		border-left: 1px solid rgba(0, 0, 0, .1);
		height: 60px;
		width: 60px;
		cursor: pointer
	}

	.menu .submenu-button::after {
		content: '';
		position: absolute;
		top: 21px;
		left: 26px;
		display: block;
		width: 2px;
		height: 12px;
		background: #333;
		z-index: 99
	}

	.menu .submenu-button::before {
		content: '';
		position: absolute;
		left: 21px;
		top: 26px;
		display: block;
		width: 12px;
		height: 2px;
		background: #333;
		z-index: 99
	}

	.menu .has-sub:hover>ul {
		left: 0;
		margin-left: 0;
		/*background: rgba(0, 0, 0, 0.15);*/
		top: 0;
		transform: translateX(0);
	}

	.menu ul ul p {
		display: none;
	}

	.menu .submenu-button.submenu-opened:after {
		display: none
	}

	.menu li:hover>ul {
		left: auto;
		margin-left: auto;
	}

	header .logo a img {
		max-height: 35px;
	}

	header .mbtn {
		display: block;
	}

	body.on-menu header .mbtn {
		z-index: 1;
	}

	header .rightDiv .menu {
		float: right;
		position: fixed;
		top: 60px;
		right: 0;
		width: 100%;
		height: 100%;
		padding-top: 0;
		background-color: #fff;
		transition: right 300ms;
		right: -100%;
		padding: 0;
		overflow-y: auto;
	}

	header .rightDiv .menu>ul {
		padding: 0;
	}

	header .rightDiv .menu ul li {
		padding: 0;
		margin: 0;
		float: none;
		width: 100%;
	}

	header .rightDiv .menu ul li a {
		display: block;
		line-height: 60px;
		height: 60px;
		text-align: left;
		font-size: 16px;
	}

	header .rightDiv .menu ul li a span {
		display: none;
	}

	header .rightDiv .menu>ul>li>a img {
		display: none;
	}

	header .rightDiv .menu>ul>li.on>a img.red,
	header .rightDiv .menu>ul>li:hover>a img.red {
		display: none;
	}

	header .rightDiv .menu ul li a.on {
		background: none;
	}

	body.on-menu header .rightDiv .menu {
		right: 0;
	}

	header .rightDiv .menu ul li>a {
		margin: 0;
		width: calc(100% - 50px);
	}

	header .rightDiv .menu>ul>li.has-sub {
		padding: 0;
	}

	header .rightDiv .menu>ul>li.on>a::after,
	header .rightDiv .menu>ul>li:hover>a::after {
		bottom: 0;
	}

	header .hotline {
		margin-right: 20px;
	}
}

/* banner */

.ui-homebanner {
	width: 100%;
	position: relative;
}

.ui-homebanner .swiper-slide {
	overflow: hidden;
	position: relative;
}

.ui-homebanner .swiper-slide .img {
	width: 100%;
	display: block;
	height: 100vh;
	background: none no-repeat center;
	background-size: cover;
	position: relative;
}

.ui-homebanner .swiper-slide .text {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 45px;
}

.ui-homebanner .swiper-slide .text h2 {
	font-size: 48px;
}

.ui-homebanner .swiper-slide .text p {
	font-size: 24px;
	margin-top: 20px;
}


.ui-homebanner .swiper-slide .text a {
	display: inline-block;
	padding: 7px 47px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid #FFFFFF;
	font-size: 14px;
	color: #1D3889;
	margin-top: 170px;
}

.ui-homebanner .swiper-slide .text a:hover {
	background: #fff;
}

.ui-homebanner .swiper-slide .text a span {
	background: url(../img/arrow.png)right center no-repeat;
	padding: 30px;
	background-size: 19px;
}

.ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets {
	position: absolute;
	bottom: 20px;
}

.ui-homebanner .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 250%;
	transition: all 0.5s;
}

.ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 10px;
}

.ui-homebanner .swiper-pagination-bullet-active {}

/* 首页 */
.section1 .leftDiv {
	width: 51%;
}

.section1 .leftDiv .logo img {
	max-width: 64px;
}

.section1 .leftDiv .logo strong {
	font-size: 24px;
	margin-left: 10px;
}

.section1 .leftDiv p {
	font-size: 14px;
	line-height: 2;
	padding: 10px 0;
}

a.more {
	display: inline-block;
	font-size: 14px;
	border: 1px solid #000000;
	padding: 7px 34px;
	margin-top: 50px;
	text-transform: uppercase;
}

a.more:hover {
	padding: 7px 25px;
}

a.more span {
	background: url(../img/arrow.png)right center no-repeat;
	padding-right: 28px;
	background-size: 19px;
}

.section1 .rightDiv {
	width: 43%;
}

.section1 .rightDiv .row {
	margin: 0;
}

.section1 .rightDiv .col-6 {
	padding: 0;
}

.section1 .rightDiv .row .content {
	height: 100%;
	border-right: 1px solid #E5E5E5;
	border-bottom: 1px solid #E5E5E5;
	padding: 30px;
	font-size: 15px;
}

.section1 .rightDiv .row .content strong {
	font-size: 18px;
}

.section1 .rightDiv .row>div:nth-child(2) .content,
.section1 .rightDiv .row>div:nth-child(4) .content {
	border-right: none;
}

.section1 .rightDiv .row>div:nth-child(3) .content,
.section1 .rightDiv .row>div:nth-child(4) .content {
	border-bottom: none;
}

.section1 .rightDiv .row .content img {
	max-height: 39px;
	margin-bottom: 35px;
}

.section2 .bg {
	position: absolute;
	z-index: 0;
	overflow: hidden;
	border-radius: 50px 0px 0px 0px;
	right: 0;
	bottom: 0;
	height: 116%;
	width: 36.2%;
}

.section2 .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section2 .main .tab {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	border-top: 1px solid #fff;
	overflow: hidden;
}

.section2 .tab a {
	display: block;
	float: left;
	width: 33.3%;
	color: #fff;
	text-align: center;
	border-right: 1px solid #fff;
	padding: 28px 10px;
	font-size: 20px;
}

.section2 .tab a:last-child {
	border: none;
}

.section2 .tab a.active {
	background: #1D3889;
}

.section2 .tab a img {
	max-width: 28px;
	margin-right: 20px;
}

.section2 .main {
	width: 90%;
	max-width: 1710px;
}

.section2 .main .imgDiv {
	height: 660px;
}

.section2 .main .imgDiv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section2 .content {
	position: absolute;
	width: 100%;
	color: #FFF;
	padding-top: 110px;
	top: 0;
}

.title {
	font-weight: bold;
	font-size: 32px;
	margin-bottom: 50px;
}

.section2 .text {
	width: 55%;
}

.section2 .text p {
	font-size: 20px;
	margin-bottom: 15px;
}

.section3 .row {
	margin: 0 -17px;
}

.section3 .row>div {
	padding: 0 17px;
}

.section3 .row a {
	display: block;
	position: relative;
}

.section3 .row a .text {
	position: absolute;
	width: 100%;
	bottom: 0;
	background-color: rgba(29, 56, 137, 0.8);
	color: #fff;
	padding: 5px;
	height: 40px;
	transition: all 0.3s;
}

.section3 .row a:hover .text {
	height: 67px;
}

.section3 .row a .text p {
	font-size: 18px;
}

.section3 .row a .text span {
	font-size: 14px;
	/* display: none; */
}

.section4 {
	min-height: 660px;
	padding: 50px 0;
	display: flex;
	align-items: center;
}

.section4 .content {
	max-width: 990px;
	margin: 0 auto;
	line-height: 2;
}

.section5 .swiper-container {
	padding: 8px;
}

.section5 ul li {
	padding: 10px 0;
}

.section5 ul li a {
	display: block;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
}

.section5 ul li a .imgWrapper {
	padding: 21.5% 50%;
}

.section5 .swiper-button-next,
.section5 .swiper-button-prev {
	width: 16px;
	height: 30px;
	margin-top: -15px;
	background-image: url(../img/arrow2.png);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.section5 .swiper-button-prev {
	left: -50px;
	transform: rotate(180deg);
}

.section5 .swiper-button-next {
	right: -50px;
}

/*底部*/

footer {
	background: #1D3889;
	color: #fff;
}

footer .nav {
	margin: 0 -30px;
	padding: 21px 0;
}

footer .nav a {
	position: relative;
	display: inline-block;
	padding: 0 30px;
}

footer .nav a::before {
	content: '';
	height: 70%;
	width: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 15%;
}

footer .nav a:first-child::before {
	width: 0;
}

footer ul {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #D2D2D2;
	padding: 20px 0;
}

footer ul li {
	max-width: 34%;
}

footer ul li .content {
	padding: 20px 0;
}

footer ul li p {
	font-size: 12px;
}

footer ul li p strong {
	font-size: 14px;
}

footer ul li a {
	display: block;
	float: left;
	position: relative;
	text-align: center;
	margin-left: 34px;
}

footer ul li a>img {
	max-height: 21px;
	margin-bottom: 5px;
}

footer ul li a .code {
	position: absolute;
	top: 120%;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s;
	visibility: hidden;
	opacity: 0;
}

footer ul li a:hover .code {
	top: 110%;
	visibility: visible;
	opacity: 1;
}

footer ul li a .code img {
	max-width: 100px;
}

footer .copyright {
	font-size: 14px;
	background-color: rgba(0, 0, 0, 0.2);
	padding: 16px;
}

/*内页*/

.ny-banner {
	position: relative;
	color: #fff;
	height: 360px;
	margin-top: 90px;
}

.ny-banner .text {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 12%;
}

.ny-banner .text h2 {
	font-size: 30px;
	margin-bottom: 10px;
}


/*页码*/

.xiaocms-page {
	margin-top: 50px;
	text-align: center;
}

.xiaocms-page span,
.xiaocms-page a {
	display: inline-block;
	padding: 3px 11px;
	margin: 5px;
	border: 1px solid #eee;
	border-radius: 2px;
	font-size: 14px;
	background-color: #fff;
}

.xiaocms-page span,
.xiaocms-page a:hover {
	background: #1D3889;
	color: #fff;
	border: 1px solid #1D3889;
}

/* 关于我们 */
.aboutDiv1 .leftDiv {
	width: 50%;
}

.aboutDiv1 p {
	margin-bottom: 10px;
	line-height: 2;
}

.aboutDiv1 .imgDiv {
	width: 46%;
}

.title1 {
	font-size: 30px;
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 50px;
}

.title1::before {
	content: '';
	width: 40px;
	height: 2px;
	background: #1EA2DC;
	position: absolute;
	left: 0;
	bottom: 0;
}

.title2::before {
	left: 50%;
	transform: translateX(-50%);
}

.aboutDiv2 {
	padding-top: 110px;
	padding-bottom: 20px;
}

.aboutDiv2 .img {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	height: 85%;
	z-index: -1;
}

.aboutDiv2 .content {
	background: #FFFFFF;
	box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.1);
	padding: 40px 50px;
}

.aboutDiv2 .content .imgDiv {
	width: 25%;
}

.aboutDiv2 .content .text {
	width: 71%;
	padding: 15px 0;
}

.aboutDiv2 .content .text p {
	padding: 5px 0;
	line-height: 2;
}

.aboutus .swiper-container {
	padding: 0 40px;
}

.aboutus .imgWrapper {
	padding: 35% 50%;
}

.aboutus .swiper-slide {
	transform: scale(0.75);
	transition: all 0.5s;
}

.aboutus .swiper-slide-active {
	transform: scale(1);
}

.aboutus .swiper-button-next,
.aboutus .swiper-button-prev {
	width: 50px;
	height: 50px;
	margin-top: -25px;
	background-image: url(../img/arrow_98.png);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.aboutus .swiper-button-next {
	right: 0;
	transform: rotate(180deg);
}

.aboutus .swiper-button-prev {
	left: 0;
}

/* 科技理赔 */
.claimsDiv1 {
	margin-top: 140px;
	margin-bottom: 75px;
}

.claimsDiv1 .text {
	width: 47%;
}

.claimsDiv1 .bg {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 110%;
	width: 41.3%;
}

.claimsDiv1 .bg::before {
	content: '';
	height: 90%;
	width: 728px;
	background: #1EA2DC;
	position: absolute;
	bottom: 0;
	left: -15%;
	z-index: -1;
}

.claimsDiv1 .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.claimsDiv2 ul {
	position: relative;
	padding: 20px 0;
}

.claimsDiv2 ul::before {
	content: '';
	height: 100%;
	width: 4px;
	background: #D7E4ED;
	border-radius: 2px;
	position: absolute;
	left: 50%;
	margin-left: -2px;
	top: 0;
}

.claimsDiv2 ul li {
	position: relative;
}

.claimsDiv2 ul li::before {
	content: '';
	width: 30px;
	height: 30px;
	background: #229AF6;
	border: 5px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 37px;
}

.claimsDiv2 ul li .content {
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
	width: 45.8%;
	padding: 22px 17px;
	background-color: #fff;
	position: relative;
}

.claimsDiv2 ul li:nth-child(2n+1) .content {
	float: left;
}

.claimsDiv2 ul li:nth-child(2n) .content {
	float: right;
}

.claimsDiv2 ul li .content::before {
	content: '';
	width: 20px;
	height: 20px;
	background-color: #FFFFFF;
	transform: rotate(45deg);
	position: absolute;
	top: 40px;
	right: -10px;
}

.claimsDiv2 ul li:nth-child(2n+1) .content::before {
	right: -10px;
	box-shadow: 5px -7px 10px rgba(0, 0, 0, 0.08);
}

.claimsDiv2 ul li:nth-child(2n) .content::before {
	left: -10px;
	box-shadow: -5px 7px 10px rgba(0, 0, 0, 0.08);
}

.claimsDiv2 ul li .content .imgDiv {
	width: 47.5%;
}

.claimsDiv2 ul li .content .text {
	width: 48%;
	padding: 10px 0;
}

.claimsDiv2 ul li .content .text strong {
	font-size: 24px;
}

.claimsDiv3 ul {
	margin: -20px 0;
}

.claimsDiv3 ul li {
	padding: 20px 0;
}

.claimsDiv3 ul li a {
	display: block;
	overflow: hidden;
}

.claimsDiv3 ul li a .imgDiv {
	width: 50%;
}

.claimsDiv3 ul li a .text {
	width: 47%;
	padding: 10px 0;
}

.claimsDiv3 ul li a .text strong {
	display: block;
	position: relative;
	font-size: 20px;
	padding-bottom: 10px;
}

.claimsDiv3 ul li a .text strong::before {
	content: '';
	width: 36px;
	height: 3px;
	background: #0076BF;
	position: absolute;
	left: 0;
	bottom: 0;
}

.claimsDiv3 ul li a .text p {
	margin: 20px 0;
}

.claimsDiv3 ul li a .text span {
	font-size: 14px;
	color: #0076BF;
}

/* 业务介绍 */
.case .menu {
	border-bottom: 1px solid #eee;
}

.case .menu a {
	display: inline-block;
	position: relative;
	padding: 20px 0;
	margin: 0 50px;
}

.case .menu a::before {
	content: '';
	width: 0;
	height: 3px;
	background: #1EA2DC;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: all 0.5s;
}

.case .menu a:hover,
.case .menu a.active {
	color: #1EA2DC;
}

.case .menu a:hover::before,
.case .menu a.active::before {
	width: 100%;
}

.case .main .row a {
	display: block;
	position: relative;
	box-shadow: 0 0 10px rgba(0, 0, 0, .08);
	overflow: hidden;
}

.case .main .row a h3 {
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	font-size: 18px;
	padding: 18px 10px;
	transition: all 0.3s;
}

.case .main .row a:hover h3 {
	transform: translateY(100%);
}

.case .main .row a .mask {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.6);
	transform: scale(0);
	transition: all 0.3s;
	color: #FFFFFF;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.case .main .row a:hover .mask {
	transform: scale(1);
}

.case .main .row a .mask h2 {
	font-size: 20px;
}

.case .main .row a .mask p {
	font-size: 14px;
	margin: 20px 0 60px;
}

.case .main .row a .mask span {
	display: block;
}

.case .main .row a .mask div {
	border: 1px solid #fff;
	font-size: 14px;
	padding: 10px 50px;
	max-width: 100%;
}

/* 团队 */
.team .main .row {
	margin: -16px;
}

.team .main .row>div {
	padding: 16px;
}

.team .main .row a {
	display: block;
	position: relative;
	overflow: hidden;
}

.team .main .row a .text,
.team .main .row a .mask {
	color: #fff;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	background-color: rgba(29, 56, 137, 0.8);
	padding: 5px;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.team .main .row a:hover .text {
	transform: translateY(100%);
}

.team .main .row a .mask {
	height: 100%;
	transform: scale(0);
}

.team .main .row a:hover .mask {
	transform: scale(1);
}

.team .main .row a .mask small {
	font-size: 12px;
	border: 1px solid #fff;
	width: 87px;
	line-height: 32px;
	text-align: center;
	margin-top: 25px;
}

.team .main .row a p {
	font-size: 18px;
}

.team .main .row a span {
	font-size: 14px;
	display: block;
}

/* 研发成果 */
.achieveDiv1 {
	width: 90%;
	max-width: 1510px;
	margin: 0 auto;
}

.achieveDiv1 .imgWrapper {
	padding: 70.5% 50%;
}

.achieveDiv1 p {
	text-align: center;
	margin-top: 15px;
}

.achieveDiv1 .swiper-container {
	padding-bottom: 80px;
}

.achieveDiv1 .swiper-container-horizontal>.swiper-pagination-bullets {
	bottom: 0;
}

.achieveDiv1 .swiper-pagination-bullet {
	transition: all 0.5s;
	border-radius: 10px;
}

.achieveDiv1 .swiper-pagination-bullet-active {
	width: 40px;
	background: #134EA5;
}

.achieveDiv2 .row {
	margin: -20px;
}

.achieveDiv2 .row>div {
	padding: 20px;
}

.achieveDiv2 .row a {
	display: block;
	position: relative;
}

.achieveDiv2 .row a {
	color: #fff;
	background: #134EA5;
	box-shadow: 0 0 10px rgba(0, 0, 0, .08);
}

.achieveDiv2 .row a p {
	text-align: center;
	padding: 15px 5px;
}

.achieveDiv2 .row a .mask {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(19, 78, 165, .9);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	transform: scale(0);
}

.achieveDiv2 .row a:hover .mask {
	transform: scale(1);
}

.achieveDiv2 .row a .mask span {
	font-size: 14px;
	background: url(../img/more.png)top center no-repeat;
	padding-top: 50px;
}

/*新闻资讯*/

.news .main ul {
	margin: -20px 0;
}

.news .main ul li {
	padding: 20px 0;
}

.news .main ul li a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news .main ul li a::before {
	content: '';
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	background: #F9F9F9;
	position: absolute;
	left: -10px;
	top: -10px;
	z-index: -1;
	opacity: 0;
	transition: all 0.5s;
}

.news .main ul li a:hover::before {
	opacity: 1;
}

.news .main ul li a .imgDiv {
	width: 22%;
}

.news .main ul li a .text {
	width: 74%;
}

.news .main ul li a .text p {
	font-size: 20px;
	font-weight: bold;
}

.news .main ul li a .text span {
	color: #666;
	font-size: 14px;
	margin: 13px 0 20px;
}

.news .main ul li a .text small {
	color: #999;
	font-size: 14px;
}

.news .main ul li a .text .leftDiv {
	width: calc(100% - 80px);
	padding-right: 60px;
}

.news .main ul li a .text .rightDiv {
	box-shadow: 0px 9px 36px 0px rgba(0, 0, 0, 0.04);
	width: 80px;
	overflow: hidden;
	border-radius: 4px;
}

.news .main ul li a .text .rightDiv h3 {
	color: #fff;
	font-size: 18px;
	background: #1D3889;
	line-height: 32px;
}

.news .main ul li a .text .rightDiv h4 {
	font-weight: normal;
	font-size: 16px;
	line-height: 32px;
}

/* 加入我们 */
.joinusDiv1 .title {
	color: #fff;
	background: #1D3889;
	font-size: 18px;
	padding: 15px 35px;
	margin-bottom: 0;
}

.joinusDiv1 ul {
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
}

.joinusDiv1 ul li {
	margin-bottom: 5px;
}

.joinusDiv1 ul li:last-child {
	margin-bottom: 0;
}

.joinusDiv1 .upper {
	background-color: #f5f5f5;
	padding: 16px 35px;
	position: relative;
}

.joinusDiv1 .upper::before {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	position: absolute;
	top: 50%;
	right: 24px;
	transform: rotate(-45deg);
	margin-top: -2px;
	transition: all 0.3s;
}

.joinusDiv1 .upper.active::before {
	transform: rotate(45deg);
}

.joinusDiv1 .below {
	display: none;
	padding: 20px 35px;
}

.joinusDiv1 .below p {
	padding: 3px 0;
}

.joinusDiv1 .below .content {
	padding: 10px 0;
}

.joinusDiv2 ul {
	overflow: hidden;
	color: #fff;
	margin: -10px -15px;
}

.joinusDiv2 ul li {
	width: 33.3%;
	float: left;
	padding: 10px 15px;
}

.joinusDiv2 ul li:nth-child(4),
.joinusDiv2 ul li:nth-child(5) {
	width: 100%;
}

.joinusDiv2 ul li input,
.joinusDiv2 ul li textarea {
	display: block;
	margin-top: 6px;
	width: 100%;
	border: none;
	background-color: #fff;
	padding: 11px 15px;
}

.joinusDiv2 ul li textarea {
	height: 150px;
}

.joinusDiv2 ul li .tijiao {
	display: block;
	margin: 10px auto;
	color: #1D3889;
	border: none;
	width: 200px;
	line-height: 40px;
	cursor: pointer;
}

@media all and (max-width:1280px) {
	header .logo a img {
		max-height: 35px;
	}

	header .rightDiv .menu>ul {
		padding: 0 14px;
	}

	header .rightDiv .menu>ul>li {
		padding: 0 10px;
	}

	header .hotline {
		font-size: 16px;
		padding-left: 34px;
	}
}

@media all and (max-width:1024px) {
	header .rightDiv .menu>ul>li>a {
		font-size: 14px;
	}

	.ui-homebanner .swiper-slide .img {
		height: 600px;
	}

	.ui-homebanner .swiper-slide .text a {
		margin-top: 100px;
	}

	.section2 .tab a {
		padding: 20px 10px;
		font-size: 16px;
	}

	.section4 {
		min-height: 550px;
	}

	.title {
		font-size: 28px;
		margin-bottom: 37px;
	}

	.title1 {
		font-size: 22px;
		margin-bottom: 27px;
	}

	footer .nav a {
		padding: 0 20px;
	}

	.claimsDiv2 ul li .content .text strong {
		font-size: 18px;
	}

	.ny-banner {
		height: 280px;
		margin-top: 90px;
	}
}

@media all and (max-width:992px) {

	body,
	html {
		font-size: 14px;
	}

	header {
		padding: 0 3%;
	}

	.ui-homebanner .swiper-slide .text h2 {
		font-size: 36px;
	}

	.ui-homebanner .swiper-slide .text p {
		font-size: 18px;
	}

	.ui-homebanner .swiper-slide .text p {
		font-size: 18px;
		margin-top: 20px;
	}

	.section1 .rightDiv {
		width: 50%;
	}

	.section1 .leftDiv {
		width: 48%;
	}

	.section2 .bg {
		height: 108%;
	}

	.section2 .content {
		padding-top: 50px;
	}

	.section2 .main {
		width: 94%;
	}

	.section2 .tab a img {
		max-width: 22px;
		margin-right: 14px;
	}

	.section2 .main .imgDiv {
		height: 530px;
	}

	.section3 .row {
		margin: -10px;
	}

	.section3 .row>div {
		padding: 10px;
	}

	footer .nav {
		margin: 0 -15px;
	}

	footer .nav a {
		padding: 0 15px;
		font-size: 14px;
	}

	.ny-banner {
		height: 230px;
		margin-top: 60px;
	}

	.title1 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.aboutDiv2 .content .imgDiv {
		width: 33%;
	}

	.aboutDiv2 .content .text {
		width: 63%;
		padding: 0;
	}

	.aboutus .swiper-button-next,
	.aboutus .swiper-button-prev {
		width: 40px;
	}

	.aboutus .swiper-container {
		padding: 0 20px;
	}

	.claimsDiv1 {
		margin-top: 100px;
		margin-bottom: 75px;
	}

	.claimsDiv2 ul li .content .imgDiv {
		width: 100%;
	}

	.claimsDiv2 ul li .content .text {
		width: 100%;
		padding: 0;
		margin-top: 15px;
	}

	.case .main .row a h3 {
		font-size: 14px;
		padding: 12px 10px;
	}

	.team .main .row a p {
		font-size: 16px;
	}

	.news .main ul li a .text p {
		font-size: 16px;
	}

	.news .main ul li a .text span {
		margin: 8px 0 9px;
	}
}

@media (max-width:767px) {
	header .logo a img {
		max-height: 28px;
	}

	.ui-homebanner .swiper-slide .img {
		height: 400px;
		margin-top: 60px;
	}

	.ui-homebanner .swiper-slide .text {
		margin-top: 0;
	}

	.ui-homebanner .swiper-slide .text h2 {
		font-size: 26px;
	}

	.ui-homebanner .swiper-slide .text p {
		font-size: 12px;
		margin-top: 15px;
	}

	.ui-homebanner .swiper-slide .text a {
		margin-top: 70px;
	}

	.ui-homebanner .swiper-slide .text a {
		padding: 7px 25px;
	}

	.section1 .leftDiv {
		width: 100%;
	}

	.section1 .leftDiv .logo img {
		max-width: 30px;
	}

	.section1 .leftDiv .logo strong {
		font-size: 18px;
		margin-left: 10px;
	}

	.mb30 {
		margin-bottom: 20px;
	}

	.section1 .rightDiv {
		width: 100%;
		margin-top: 30px;
	}

	.section1 .rightDiv .row .content {
		padding: 30px 20px;
		font-size: 14px;
	}

	.section1 .rightDiv .row .content strong {
		font-size: 16px;
	}

	.section1 .rightDiv .row .content img {
		max-width: 35px;
		margin-bottom: 20px;
	}

	.section2 .text {
		width: 80%;
	}

	.section2 .main .tab {
		display: flex;
		justify-content: space-between;
	}

	.section2 .tab a:first-child {
		width: 44%;
	}

	.section2 .tab a {
		width: 28%;
		font-size: 14px;
		padding: 15px 20px;
	}

	.title {
		font-size: 22px;
		margin-bottom: 31px;
	}

	.section2 .tab a img {
		display: none;
	}

	.section2 .text p {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.section2 .main .imgDiv {
		height: 430px;
	}

	.section3 .row a .text {
		height: 34px;
	}

	.section3 .row a .text p {
		font-size: 16px;
	}

	.section4 {
		min-height: 425px;
	}

	.section5 .swiper-button-next,
	.section5 .swiper-button-prev {
		width: 10px;
	}

	.section5 .swiper-button-next {
		right: -10px;
	}

	.section5 .swiper-button-prev {
		left: -10px;
	}

	footer .nav a {
		width: 33.3%;
		text-align: center;
	}

	footer .nav a:nth-child(3n+1)::before {
		height: 0;
	}

	footer ul {
		display: block;
	}

	footer ul li {
		max-width: 100%;
	}

	footer ul li .content {
		padding: 10px 0;
	}

	footer ul li a:first-child {
		margin-left: 0;
	}

	.ny-banner .text h2 {
		font-size: 22px;
	}

	.ny-banner {
		height: 180px;
	}

	.aboutDiv1 .leftDiv {
		width: 100%;
	}

	.aboutDiv1 .imgDiv {
		width: 100%;
	}

	.aboutDiv2 .content .imgDiv {
		width: 100%;
		margin-bottom: 20px;
	}

	.aboutDiv2 .content .text {
		width: 100%;
	}

	.aboutDiv2 .content {
		padding: 23px 30px;
	}

	.aboutDiv2 {
		padding-top: 55px;
	}

	.news .main ul li a {
		display: block;
	}

	.news .main ul li a .text {
		width: 100%;
		margin-top: 20px;
	}

	.news .main ul li a .imgDiv {
		width: auto;
	}

	.news .main ul li a .text .rightDiv h4 {
		font-size: 12px;
		line-height: 28px;
	}

	.news .main ul li a .text .rightDiv h3 {
		font-size: 14px;
		line-height: 28px;
	}

	.news .main ul li a .text .rightDiv {
		width: 60px;
	}

	.news .main ul li a .text .leftDiv {
		width: calc(100% - 60px);
		padding-right: 17px;
	}

	.claimsDiv1 .text {
		width: 100%;
	}

	.claimsDiv1 .bg {
		position: relative;
		height: auto;
		width: 100%;
		margin-top: 30px;
	}

	.claimsDiv1 {
		margin-top: 55px;
		margin-bottom: 67px;
	}

	.claimsDiv2 ul li .content {
		width: 100%;
	}

	.claimsDiv2 ul li {
		padding: 10px;
		padding-left: 60px;
	}

	.claimsDiv2 ul::before {
		left: 3px;
		margin-left: 0;
	}

	.claimsDiv2 ul li::before {
		left: -10px;
		transform: translateX(0);
		top: 47px;
	}

	.claimsDiv2 ul li:nth-child(2n+1) .content::before {
		right: auto;
		left: -10px;
		box-shadow: -5px 7px 10px rgb(0 0 0 / 8%);
	}

	.claimsDiv3 ul li a .imgDiv {
		width: 100%;
	}

	.claimsDiv3 ul li a .text {
		width: 100%;
	}

	.case .menu a {
		width: 33.3%;
		margin: 0 0;
	}

	.case .menu a {
		width: 32%;
		margin: 0 0;
		padding: 15px 0;
	}

	.case .main .row {
		margin: -10px;
	}

	.case .main .row>div {
		padding: 10px;
	}

	.achieveDiv1 .swiper-pagination-bullet-active {
		width: 30px;
	}

	.achieveDiv1 .swiper-container {
		padding-bottom: 60px;
	}

	.achieveDiv2 .row {
		margin: -10px;
	}

	.achieveDiv2 .row>div {
		padding: 10px;
	}

	.news .main ul li a .imgDiv img {
		width: 100%;
	}

	.joinusDiv1 .below {
		padding: 20px 22px;
	}

	.joinusDiv1 .title {
		padding: 15px 25px;
	}

	.joinusDiv2 ul li {
		width: 100%;
	}

	.case .main .row a .mask div {
		padding: 6px 23px;
		font-size: 12px;
	}

	.case .main .row a .mask p {
		margin: 15px 0 30px;
	}

	.case .main .row a .mask h2 {
		font-size: 18px;
	}
}

.detailP{padding: 48px 0;}
.detailP .pageTit{
	font-size: 36px;
	color: rgb(51, 51, 51);
	font-weight: bold;
	line-height: 46px;
	padding: 26px 0;
	text-align: center;
	border-bottom: 1px solid rgb(230, 230, 230);
}
.detailP .infoBox{
	font-size: 12px;
	line-height: 22px;
	padding: 10px 0;
}
.detailP .infoBox a,
.detailP .infoBox span{
	padding-left: 20px;
	background: url(../img/iicon2.png) left center no-repeat;
	background-size: 12px;
	color: rgb(102, 102, 102);
}
.detailP .infoBox .auther{margin-right: 28px;}
.detailP .infoBox .time{background-image: url(../img/iicon3.png);}
.detailP .infoBox .typename{background-image: url(../img/iicon4.png);}
.detailP .nrBox{padding: 24px 0;}
.detailP .fanye{
	font-size: 14px;
	color: #999999;
	border-top: 1px solid rgb(230, 230, 230);
	padding: 16px 0;
}
.detailP .fanye p{margin-bottom: 8px;}
.detailP .fanye a{color: rgb(51, 51, 51);}
.detailP .fanye a:last-child{margin-bottom: 0;}
@media (max-width:768px) {
	.detailP .pageTit{padding: 8px 0;font-size: 20px;line-height: 30px;}
	.detailP .infoBox{padding: 4px 0;}
	.detailP .nrBox{padding: 16px 0;font-size: 14px;line-height: 24px;}
	.detailP .fanye{padding-bottom: 0;}
}