/*common start*/
body, div, ul, li, a, img, p, dl, dt, dd, h1, h2, h3, h4, span, strong, input {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	border: 0;
	list-style: none;
}

body {
	font-size: 12px;
	color: #666;
}

	body.head_on {
		overflow: hidden
	}

a {
	color: #666;
	transition: 0.3s;
}

	a:hover {
		color: #f60;
		text-decoration: none;
		cursor: pointer;
	}

p {
	line-height: 1.8em;
	padding: 5px 0;
}

.clear {
	margin: 0;
	padding: 0;
	font-size: 0;
	clear: both;
}

.wapper {
	width: 1200px;
	margin: 0 auto;
}

.wapper_a {
	width: 96%;
	margin: 0 auto;
}

.wapper_b {
	max-width: 1500px;
	margin: 0 auto;
}

.swiper-container {
	width: 100%;
	overflow: hidden;
}

@media only screen and (max-width: 1200px) {
	.wapper {
		width: 100%;
	}
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--main-color: #264bb5;
	--main-color-white: #fff;
	--main-color-000: #000;
	--main-color-333: #333333;
	--main-color-888: #888888;
	--main-transition: all ease 0.4s;
	--main-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.6));
}

.headList {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

	.headList .logo {
	}

		.headList .logo img {
			max-height: 55px;
			width: auto;
		}

.logoTxt {
	color: #fff;
	font-size: 12px;
	font-weight: bold;
}

/*menu*/
.pc_menu {
}

.menu {
	height: 70px;
	line-height: 70px;
}

	.menu ul li {
		float: left;
		position: relative;
	}

		.menu ul li dl {
			background: #8b8b8b;
			width: 191%;
			position: absolute;
			left: 50%;
			top: 70px;
			box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
			display: none;
			z-index: 9;
			transform: translateX(-50%);
			min-width: 160px;
		}

			.menu ul li dl dd {
				line-height: 40px;
				position: relative;
			}

				.menu ul li dl dd a {
					font-size: 14px;
					color: #fff;
					display: block;
					text-align: center;
					padding: 0 20px;
				}

					.menu ul li dl dd a:hover {
						background: #5d5d5d;
						color: #fff;
					}

	.menu span a {
		font-size: 16px;
		color: #fff;
		display: block;
		text-align: center;
		padding: 0 20px;
		font-weight: bold;
	}

		.menu span a i {
			padding-left: 5px;
			top: -2px;
			position: relative;
		}

	.menu a:hover {
		color: var(--main-color);
	}

a.menu_hover {
	color: var(--main-color);
}

.menu ul li dl dd dl {
	top: 0;
	left: 100%;
	transform: none;
}

.menu ul li dl dd:hover dl {
	display: block;
}

.language {
	position: relative;
	margin-left: 25px;
}

	.language dt {
		height: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 14px;
		color: #000;
		cursor: pointer;
		width: auto;
		border-radius: 30px;
		background: #fff;
		border: 1px solid #eee;
		padding: 0 20px;
	}

	.language i {
		padding-left: 20px;
	}

	.language dd {
		position: absolute;
		top: 34px;
		left: 4px;
		width: 95px;
		background: #fff;
		display: none;
		box-shadow: var(--main-shadow);
		border-radius: 10px;
		overflow: hidden;
	}

	.language ul li {
		line-height: 40px;
		text-align: center;
	}

		.language ul li a {
			display: block;
			padding: 0 10px;
			font-size: 14px;
			color: #000;
		}

			.language ul li a img {
				width: auto;
				height: 15px;
				margin-right: 5px;
				vertical-align: middle;
			}

			.language ul li a:hover { /* background: #000; */
				color: #264bb5;
			}

		.language ul li.on a {
			color: var(--main-color);
		}
/*.language:hover dd{display: block;}*/



/*mMenu*/
.m_header {
	width: 100%;
}

.sp_header1 {
	height: 70px;
	background: #fff;
	position: fixed;
	z-index: 9999;
	width: 100%;
	display: none;
	top: 0;
}

.sp_logo1 {
	float: left;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
}

	.sp_logo1 img {
		margin: auto;
		max-height: 50px;
	}

.sp_nav1 {
	width: 50px;
	float: right;
	position: relative;
	cursor: pointer;
	height: 30px;
	margin-top: 25px
}

	.sp_nav1 span {
		display: block;
		background: #000;
		width: 30px;
		height: 2px;
		position: absolute;
		left: 10px;
		transition: all ease 0.35s
	}

		.sp_nav1 span:nth-of-type(1) {
			top: 0px
		}

		.sp_nav1 span:nth-of-type(2) {
			top: 10px
		}

		.sp_nav1 span:nth-of-type(3) {
			top: 20px
		}

.sp_nav_se1 span:nth-of-type(1) {
	top: 10px;
	transform: rotate(45deg)
}

.sp_nav_se1 span:nth-of-type(2) {
	width: 0
}

.sp_nav_se1 span:nth-of-type(3) {
	top: 10px;
	transform: rotate(-45deg)
}

.sjj_nav1 {
	position: fixed;
	z-index: 999;
	background: #fff;
	width: 100%;
	height: calc(100% - 70px);
	font-size: 14px;
	line-height: 40px;
	top: -100%;
	left: 0;
	overflow: auto;
	overflow-x: hidden;
	transition: top ease 0.35s;
	display: none;
}

.nav_show1 {
	top: 70px;
}

.sjj_nav1 ul li i {
	position: absolute;
	top: 5px;
	right: 0px;
	height: 30px;
	padding: 0px 7px 0 7px;
}

	.sjj_nav1 ul li i svg {
		transform: rotate(-90deg);
		transition: all ease 0.35s
	}

.sjj_nav1 ul li .sjj_nav_i_se1 svg {
	transform: rotate(0deg)
}

.sjj_nav1 ul li {
	border-top: 1px #e4e8eb solid;
	position: relative;
	line-height: 45px;
	font-size: 16px
}

.sjj_nav1 > ul > li:last-child {
	border-bottom: 1px #ddd solid;
}

.sjj_nav1 ul li ul {
	display: none
}

.sjj_nav1 ul li a {
	color: #333;
	width: 100%;
	padding: 0 20px;
	display: block;
	box-sizing: border-box;
}

	.sjj_nav1 ul li a:hover {
		color: #0188FB;
	}

.sjj_nav1 ul li ul li a {
	color: #333;
	display: block;
	text-align: left;
}

.sjj_nav1 ul li i svg {
	width: 25px;
	height: 25px;
	fill: #333;
}

.sjj_nav1 ul li .sjj_nav_i_se svg {
	fill: #333
}

.sjj_nav1 ul li ul li > ul {
	margin-left: 10px
}

.sjj_nav1 ul li ul li {
	border-top: none;
}

	.sjj_nav1 ul li ul li a {
		padding: 0 30px;
	}

/*mSearch*/
.mSearch {
	position: relative;
	width: calc(100% - 20px);
	height: 35px;
	overflow: hidden;
	margin: 20px 10px;
}

	.mSearch input {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding: 0 60px 0 10px;
		box-sizing: border-box;
		border: 1px solid #ccc;
		border-radius: 25px;
		background: none;
		outline: none;
	}

	.mSearch button {
		background-image: linear-gradient(to right,#01b2ac 0,#004ea2 100%);
		width: 60px;
		height: 35px;
		position: absolute;
		top: 0;
		right: 0;
		border-radius: 0 25px 25px 0;
		color: #fff;
		font-size: 14px;
		border: none;
	}

/*swiper*/
.swiper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.swiper-slide {
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

	.swiper-slide img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.swiper .swiper-button-next:after, .swiper .swiper-button-prev:after {
	font-size: 30px;
}

/*common*/
.disFlex {
	flex-wrap: wrap;
	display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box; /* Firefox 17- */
	display: -webkit-flex; /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex; /* Firefox 18+ */
	display: -ms-flexbox; /* IE 10 */
	display: flex;
}

.jusBet {
	justify-content: space-between;
}

.jusCet {
	justify-content: center;
}

.jusEnd {
	justify-content: flex-end;
}

.aliTop {
	align-items: flex-start;
}

.aliCet {
	align-items: center;
}

.aliBtm {
	align-items: flex-end;
}

.img {
	font-size: 0px;
	overflow: hidden;
}

img {
	transition: 0.5s;
}

.f_left {
	float: left;
}

.f_right {
	float: right;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
	overflow: hidden;
}

.clearfix {
	*zoom: 1;
}

.bgfff {
	background: #fff !important;
}

.fff {
	color: #fff !important;
}

em {
	font-style: normal;
}

.overflow1 {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 100%;
	display: block;
}

.overflow2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.overflow3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pt100 {
	padding-top: 100px;
}

.pb100 {
	padding-bottom: 100px;
}

.pt80 {
	padding-top: 80px;
}

.pb80 {
	padding-bottom: 80px;
}

.pt60 {
	padding-top: 60px;
}

.pb60 {
	padding-bottom: 60px;
}

.pt50 {
	padding-top: 50px;
}

.pb50 {
	padding-bottom: 50px;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt35 {
	margin-top: 35px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mt80 {
	margin-top: 80px;
}

.textCet {
	text-align: center;
}

.textRight {
	text-align: right;
}

.pc_show {
}

.m_show {
	display: none;
}

.iTit {
	font-size: 48px;
	color: #212529;
}

.iTxt {
	font-size: 16px;
	color: #fff;
}

.banMore2 a {
	display: block;
	width: 180px;
	height: 50px;
	position: relative;
	text-align: center;
	line-height: 48px;
	font-size: 15px;
	color: #000;
	background: #fff;
	overflow: hidden;
	z-index: 8;
	border: 1px solid #fff;
}

	.banMore2 a span {
		position: relative;
		z-index: 2;
	}

	.banMore2 a:before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		background-color: #272727;
		width: 0;
		transition: width 0.3s;
	}

	.banMore2 a:hover {
		color: #fff;
	}

		.banMore2 a:hover:before {
			width: 100%;
		}

.iMore a {
	display: block;
	width: 220px;
	height: 50px;
	position: relative;
	text-align: center;
	line-height: 50px;
	font-size: 15px;
	color: #fff;
	background: #8b8b8b;
	overflow: hidden;
	z-index: 8;
}

	.iMore a span {
		position: relative;
		z-index: 2;
	}

	.iMore a:before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		background-color: #272727;
		width: 0;
		transition: width 0.3s;
	}

	.iMore a:hover {
		color: #fff;
	}

		.iMore a:hover:before {
			width: 100%;
		}



/*-------------------------------------------*/

/*banner*/
.banner {
	width: 100%;
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.banTop {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 5%;
	z-index: 9;
	text-align: center;
	color: #fff;
	font-size: 16px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.mouseIco {
	border: 2px solid #fff;
	width: 21px;
	height: 30px;
	display: block;
	margin: 0px auto;
	border-radius: 20px;
	z-index: 9;
	margin-bottom: 15px;
}

	.mouseIco i {
		width: 3px;
		height: 7px;
		border-radius: 1px;
		display: block;
		background-color: #fff;
		position: absolute;
		left: 50%;
		margin-left: -1px;
		top: 5px;
		-webkit-animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
		animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
	}

@keyframes mouse-dot {
	from {
		opacity: 0;
	}

	33% {
		opacity: 1;
	}

	to {
		transform: translateY(15px);
		-webkit-transform: translateY(15px);
		opacity: 0;
	}
}

@-webkit-keyframes mouse-dot {
	from {
		opacity: 0;
	}

	33% {
		opacity: 1;
	}

	to {
		transform: translateY(15px);
		-webkit-transform: translateY(15px);
		opacity: 0;
	}
}

@keyframes mouse-dot1 {
	from {
		opacity: 0;
		bottom: 60px;
	}

	33% {
		opacity: 1;
	}

	to {
		bottom: 40px;
		opacity: 0;
	}
}

.banner .swiper-pagination {
	width: auto;
	text-align: left;
	padding-left: 12%;
	bottom: 5% !important;
}

.banner .swiper-pagination-bullet {
	opacity: 0.3;
	background: #fff;
	transition: width ease 0.35s;
	border-radius: 20px;
}

.banner .swiper-pagination-bullet-active {
	background: #fff;
	width: 20px;
	opacity: 1;
}

.banner .swiper-button-next, .banner .swiper-button-prev {
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255,255,255,0.8);
	top: auto;
	bottom: 5%;
	transform: none;
	z-index: 99;
	transition: 0.3s;
}

	.banner .swiper-button-next:after, .banner .swiper-button-prev:after {
		color: #fff;
		font-size: 20px;
	}

.banner .swiper-button-next {
	right: 12%;
}

.banner .swiper-button-prev {
	left: auto;
	right: calc(12% + 70px);
}

	.banner .swiper-button-next:hover, .banner .swiper-button-prev:hover {
		background: rgba(255,255,255,0.6);
	}

		.banner .swiper-button-next:hover:after, .banner .swiper-button-prev:hover:after {
			color: #1a74bb;
		}

.banner .part {
	position: relative;
	width: 100%;
	height: 100%;
	position: relative;
}

	.banner .part:after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		opacity: 0.2;
		content: "";
		z-index: 6;
	}

	.banner .part .img {
		width: 100%;
		height: 100%;
	}

		.banner .part .img img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	.banner .part .imgTop {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 8;
		width: 100%;
	}

	.banner .part .desc {
		width: 100%;
		max-width: 1450px;
		margin: 0 auto;
	}

	.banner .part .t1 {
		color: #fff;
		font-size: 2.5vw;
		font-weight: bold;
	}

	.banner .part .txt {
		margin-top: 2vw;
		font-size: 1.2vw;
		color: #fff;
	}

.banner .banMore {
	margin-top: 3vw;
}

.banMore a {
	display: block;
	width: 200px;
	height: 48px;
	position: relative;
	text-align: center;
	line-height: 48px;
	font-size: 15px;
	color: #000;
	background: #fff;
	overflow: hidden;
	z-index: 8;
}

	.banMore a span {
		position: relative;
		z-index: 2;
	}

	.banMore a:before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		background-color: #272727;
		-webkit-transform-origin: bottom center;
		transform-origin: bottom center;
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
		transition: transform 300ms, -webkit-transform 300ms;
	}

	.banMore a:hover {
		color: #fff;
	}

		.banMore a:hover:before {
			transform: scaleY(1);
			-webkit-transform: scaleY(1);
		}

.index1 {
	width: 100%;
	background: rgba(39,39,39,1) url(../images/img_1.png) center no-repeat;
	background-size: cover;
	padding: 60px 0;
}

.i1Warp {
	min-height: 300px;
	text-align: right;
	color: #fff;
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}

	.i1Warp .t1 {
		font-weight: bold;
		font-size: 4.2vw;
	}

	.i1Warp .txt {
		margin-top: 1.5vw;
		color: #fff;
		opacity: 0.8;
		font-size: 1.2vw;
	}

.index2 {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	padding: 0;
}

.i2List {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

	.i2List .part {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
		overflow: hidden;
	}

		.i2List .part:after {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: #000;
			content: "";
			opacity: 0.3;
		}

		.i2List .part img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.i2List .part .imgTop {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			z-index: 9;
			width: 100%;
		}

		.i2List .part .desc {
			max-width: 1500px;
			margin: 0 auto;
			width: 100%;
		}

		.i2List .part .t1 {
			color: #fff;
			font-size: 4.2vw;
			font-weight: bold;
			text-transform: uppercase;
		}

		.i2List .part .t2 {
			margin-top: 2vw;
			font-size: 2.4vw;
			color: #fff;
		}

		.i2List .part .banMore2 {
			margin-top: 3vw;
		}

	.i2List .i2Swiper .swiper-slide .part {
		opacity: 0.6;
		transition: all .8s;
		display: block;
		width: 100%;
		height: 100%;
	}

	.i2List .swiper-slide {
		background: transparent;
		transition: all 0.6s;
	}
		/*.i2List .swiper-slide.swiper-slide-next{opacity: 1;}*/

		.i2List .swiper-slide:nth-child(1) .part {
			transform: scale(0.8);
		}

		.i2List .swiper-slide.swiper-slide.active:nth-child(1) .part {
			transform: scale(1);
		}

		.i2List .swiper-slide:nth-child(2) .part {
			transform: scale(0.8);
		}

		.i2List .swiper-slide.swiper-slide.active:nth-child(2) .part {
			transform: scale(1);
		}

.index1-1 .i1Warp {
	text-align: left;
	align-items: flex-start;
}

.index3 {
	padding: 80px 0;
}

.i3List {
	margin-top: 40px;
}

	.i3List ul li {
		width: calc(50% - 5px);
		margin-bottom: 10px;
	}

	.i3List .part {
		position: relative;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}

		.i3List .part .img {
			width: 100%;
			height: 100%;
		}

			.i3List .part .img img {
				width: 100%;
				height: 360px;
				object-fit: cover;
				transition: all cubic-bezier(0.12, 0.4, 0.72, 1.09) .6s;
			}

		.i3List .part .imgTop {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0,0,0,0.3);
			padding: 25px;
			display: flex;
			align-items: center;
		}

		.i3List .part .desc {
			width: 100%;
			color: #fff;
		}

		.i3List .part .t1 {
			font-size: 24px;
			font-weight: bold;
		}

		.i3List .part .txt {
			line-height: 1.65;
			font-size: 17px;
			color: #fff;
			opacity: .9;
			font-weight: 100;
			margin-top: 8px;
			width: 80%;
			margin: 20px 0 35px;
		}

		.i3List .part:hover .img img {
			transform: scale(1.2);
		}

.index4 {
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	padding: 10vw 0;
}

.i4Warp {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	color: #fff;
	text-align: center;
}

.footer,
.copyright {
	background: rgba(39,39,39,1);
}

.footer {
	padding: 70px 0;
	font-size: 13px;
	color: rgba(186,186,186,1);
}

.copyright {
	font-size: 13px;
	color: hsla(0,0%,53%,.5);
	padding: 35px 0;
	border-top: 1px solid hsla(0,0%,100%,.1)
}

	.copyright .warp {
		max-width: 1560px;
		margin: 0 auto;
	}

.fLogo {
	text-align: center;
	margin-bottom: 40px;
}

	.fLogo img {
		width: auto;
		height: auto;
		max-height: 80px;
	}

.fWarp {
	max-width: 1560px;
	margin: 0 auto;
}

	.fWarp .left dl {
		margin-right: 100px;
	}

	.fWarp dt {
		color: #fff;
		font-size: 16px;
		margin-bottom: 15px;
	}

.fEwm dt {
	font-size: 24px;
	color: #888;
	margin-bottom: 15px;
}

.fEwm dd {
	position: relative;
	display: inline-block;
}

	.fEwm dd a {
		color: #888;
		font-size: 24px;
	}

.fEwm .ewm {
	position: absolute;
	width: 130px;
	height: 130px;
	box-shadow: 0px 0px 1em rgb(0 0 0 / 10%);
	border-radius: 4px;
	padding: 9px;
	background: #8b8b8b;
	left: 50%;
	transform: translateX(-50%);
	bottom: 50px;
	display: none;
}

	.fEwm .ewm:after {
		position: absolute;
		top: 100%;
		left: 50%;
		content: "";
		width: 0px;
		height: 0px;
		border: 5px solid #fff;
		border-width: 7px 5px;
		border-color: #8b8b8b transparent transparent transparent;
	}

.fEwm dl dd:hover .ewm {
	display: block;
}


.pl_service3 {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99;
}

	.pl_service3 .item_con {
		text-align: right;
	}

	.pl_service3 .service_item {
		padding-left: 43px;
		display: inline-block;
		width: 45px;
		height: 45px;
		border-radius: 30px;
		background: #999;
		color: #fff;
		overflow: hidden;
		transition: width 0.4s;
		position: relative;
		cursor: pointer;
	}

		.pl_service3 .service_item.wx {
			background: #64c548;
		}

		.pl_service3 .service_item.qyszmp {
			background: #009ca0;
		}

		.pl_service3 .service_item.skype {
			background: #00a3ed;
		}

		.pl_service3 .service_item.alww {
			background: #1ac1ed;
		}

		.pl_service3 .service_item.whatsapp {
			background: #3dceb2;
		}

		.pl_service3 .service_item.yj {
			background: #3f6ee0;
		}

		.pl_service3 .service_item.qq {
			background: #529cd1;
		}

		.pl_service3 .service_item.kf {
			background: #f56c6c;
		}

		.pl_service3 .service_item.kfz {
			background: #999;
		}

		.pl_service3 .service_item.link {
			background: #f60;
		}

		.pl_service3 .service_item.tel {
			background: #06f;
		}

		.pl_service3 .service_item.custom {
			background: #fc0;
		}

		.pl_service3 .service_item.smService {
			background: #6bd8bb;
		}

		.pl_service3 .service_item:hover {
			width: 206px;
		}

	.pl_service3 .service_icon {
		position: absolute;
		left: 0;
		top: 0;
		width: 43px;
		height: 43px;
		float: left;
		display: flex;
		justify-content: center;
		align-items: center;
	}

		.pl_service3 .service_icon i {
			font-size: 20px;
			color: #fff;
		}

	.pl_service3 .service_value {
		margin-top: 5px;
		padding: 0 5px;
		text-align: left;
		line-height: 18px;
	}

		.pl_service3 .service_value.dh {
			line-height: 35px;
			text-align: center;
			width: 120px;
			color: #fff;
		}

	.pl_service3 a {
		color: #fff;
	}

.toTop {
	position: fixed;
	right: 10px;
	bottom: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 26px;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}

	.toTop.active {
		opacity: 1;
		visibility: visible;
		bottom: 20px;
	}

.tongtu {
	width: 100%;
	position: relative;
	overflow: hidden;
}

	.tongtu:after {
		content: '';
		width: 100%;
		height: 100%;
		background: linear-gradient(107deg, rgba(0, 0, 0, 0.4) 20%, rgba(10, 35, 73, 0) 100%);
		position: absolute;
		left: 0;
		top: 0;
	}

	.tongtu .img {
		width: 100%;
	}

	.tongtu img {
		width: 100%;
	}

	.tongtu .imgTop {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 100%;
		z-index: 9;
	}

	.tongtu .t1 {
		text-align: center;
		font-size: 48px;
		color: #fff;
		font-weight: bold;
	}

	.tongtu .txt {
		text-align: center;
		font-size: 14px;
		color: #fff;
	}

.currentWarp {
	width: 100%;
	position: absolute;
	padding: 20px 0;
	left: 0;
	width: 100%;
	z-index: 9;
	bottom: 0;
	color: #fff;
	font-size: 14px;
}

.current a {
	color: #fff;
	position: relative;
}

	.current a:after {
		content: ">";
		padding: 0 5px;
		color: #fff;
	}

	.current a:last-child:after {
		display: none;
	}

.pageMenu {
	width: 100%;
	border-bottom: 1px solid #eee;
}

	.pageMenu ul li {
		position: relative;
	}

		.pageMenu ul li a {
			display: inline-block;
			line-height: 74px;
			padding: 0 50px;
			color: #222222;
			transition: all 0.5s;
			font-size: 18px;
		}

		.pageMenu ul li.on a {
			color: #E72B1E;
			font-weight: bold;
			border-bottom: 2px solid #E72B1E;
			background: #fff9f8;
		}

		.pageMenu ul li dl {
			position: absolute;
			left: 0;
			top: 100%;
			width: 100%;
			background: #fff;
			display: none;
		}

			.pageMenu ul li dl dd {
				border-top: 1px solid #eee;
			}

				.pageMenu ul li dl dd a {
					display: block;
					padding: 10px;
					line-height: 1.6;
					color: #333;
					font-size: 16px;
					text-align: center;
				}

					.pageMenu ul li dl dd a:hover {
						color: var(--main-color);
					}

		.pageMenu ul li:hover {
			z-index: 2;
		}

			.pageMenu ul li:hover dl {
				display: block;
			}

.innerTit {
	font-size: 45px;
	color: #000;
}

.innerTxt {
	font-size: 26px;
	color: rgba(18,18,18,1);
}

.innerInfo {
	font-size: 16px;
	color: rgba(18,18,18,1);
}
/*about*/

.about1 {
	width: 100%;
	padding: 80px 0;
	background: url(../images/bg_1.jpg) center center no-repeat;
	background-size: cover;
}

.abo1Warp {
	width: 100%;
}

	.abo1Warp .desc {
		width: 48%;
	}

	.abo1Warp .img {
		width: 48%;
	}

		.abo1Warp .img img {
			width: 100%;
		}

.about2 {
	padding: 100px 0;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

	.about2:after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		background: #000;
		opacity: 0.1;
	}

	.about2 .wapper_b {
		position: relative;
		z-index: 9;
	}

	.about2 .innerInfo {
		font-size: 18px;
	}

.about3 {
	width: 100%;
	padding: 115px 0;
	position: relative;
	background: url(../images/bg_3.jpg) center no-repeat;
	background-size: cover;
}

.abo3Panel {
	width: 100%;
}

.abo3Slide .swiper .swiper-slide {
	background: transparent;
}

.abo3Panel .part {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

	.abo3Panel .part .img {
		width: 48%;
	}

		.abo3Panel .part .img img {
			width: 100%;
		}

	.abo3Panel .part .desc {
		width: 48%;
	}

	.abo3Panel .part .year {
		font-size: 50px;
		font-weight: 600;
		color: #1a1a1a;
	}

	.abo3Panel .part .txt {
		font-size: 24px;
		color: #333;
		line-height: 1.8;
		margin-top: 10px;
		position: relative;
	}

		.abo3Panel .part .txt:after {
			content: '';
			width: 40px;
			display: block;
			height: 3px;
			background: #000;
			margin-top: 20px;
		}

.abo3Tab {
	width: 100%;
	height: 140px;
}

	.abo3Tab .warp {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 60px;
		background-position-x: center;
		background-image: url(../images/line1.png);
		background-repeat: repeat-x;
		background-position-y: 0;
	}

.abo3Swiper2 {
	position: relative;
	overflow: hidden;
	padding-top: 30px !important;
	max-width: 1720px;
	margin: auto;
	width: 94%;
}

.abo3Tab .year {
	width: 100%;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #212529;
	position: relative;
	line-height: 50px;
	padding-top: 10px;
	cursor: default;
}

	.abo3Tab .year i {
		width: 6px;
		height: 6px;
		background-color: #999999;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		z-index: 5;
		top: 0;
		border-radius: 50%;
	}

.abo3Tab .swiper .swiper-slide-thumb-active .year {
	color: #E72B1E;
}

	.abo3Tab .swiper .swiper-slide-thumb-active .year i {
		background: #E72B1E;
	}

.abo3Panel .swiper-button-next, .abo3Panel .swiper-button-prev {
	width: 62px;
	height: 62px;
	background: transparent;
	border-radius: 0px;
	transition: all ease .3s;
	border: 1px solid #ccc;
	top: auto;
	bottom: 20px;
}

.abo3Panel .swiper-button-next {
	left: calc(52% + 80px);
	right: auto;
}

.abo3Panel .swiper-button-prev {
	left: 52%;
	right: auto;
}

	.abo3Panel .swiper-button-next:after, .abo3Panel .swiper-button-prev:after {
		font-size: 20px;
		color: #333;
	}

/*strength*/
.strength1 {
	width: 100%;
	margin: 80px 0;
}

.strength1List {
	width: 100%;
}

	.strength1List ul li {
		width: calc(32% - 25px);
		margin-left: 45px;
		margin-bottom: 50px;
	}

		.strength1List ul li:nth-child(2n) {
			margin-right: 0;
		}

	.strength1List .part {
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(245,245,245,0.8);
	}

		.strength1List .part .img {
			width: 100%;
		}

			.strength1List .part .img img {
				width: 100%;
				height: 249px;
				object-fit: cover;
			}

		.strength1List .part .desc {
			padding: 40px 35px;
		}

		.strength1List .part .t1 a {
			font-size: 20px;
			color: #222;
			font-weight: bold;
		}

		.strength1List .part .txt {
			font-size: 17px;
			color: rgba(17,17,17,0.8);
			-webkit-line-clamp: 2;
			display: -webkit-box;
			-webkit-box-orient: vertical;
			overflow: hidden; /* height: 60px; */
			margin-top: 10px;
		}

		.strength1List .part .more {
			font-size: 14px;
			text-decoration: underline; /* margin-top: 50px; */
		}

			.strength1List .part .more a {
				font-size: 14px;
				color: #212121;
			}

				.strength1List .part .more a i {
					margin-left: 10px;
					font-size: 18px;
				}

		.strength1List .part:hover .img img {
			transform: scale(1.2);
		}

.strength2 {
	width: 100%;
	margin: 70px 0;
}

.strength2Top {
	position: relative;
	width: 100%;
	overflow: hidden;
}

	.strength2Top:after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		background-image: linear-gradient(0deg, #000e1c9e,#1f4d9805, transparent);
		opacity: 0.7;
	}

	.strength2Top .img {
		width: 100%;
	}

		.strength2Top .img img {
			width: 100%;
		}

	.strength2Top .imgTop {
		position: absolute;
		bottom: 8%;
		left: 0;
		width: 100%;
		z-index: 9;
		padding: 0 5%;
	}

	.strength2Top .iTxt {
		font-size: 20px;
		margin-top: 10px;
	}

.strength2Desc {
	background-image: url(../images/bg_4.jpg);
	background-size: cover;
	padding: 3.85% 4.25% 2.4% 4.25%;
	line-height: 1.944;
	font-size: 17px;
	color: #555;
}

	.strength2Desc img {
		width: auto;
		max-width: 100%;
	}

.returnBtn a {
	display: block;
	width: 180px;
	height: 50px;
	line-height: 50px;
	background: #000;
	color: #fff;
	font-size: 16px;
	margin: 0 auto;
	text-align: center;
}

	.returnBtn a img {
		width: 15px;
		margin-left: 5px;
	}

	.returnBtn a:hover {
		background: #8b8b8b;
	}

.product {
	width: 100%;
	margin: 80px 0;
}

.proinner1 {
	width: 100%;
	margin: 80px 0;
}

.proLine {
	width: 100px;
	height: 10px;
	border-radius: 10px;
	background: #f4f4f4;
	margin: 10px auto;
}

.proinner1List {
	width: 100%;
}

	.proinner1List ul li {
		width: 33.3%;
		padding: 0 25px;
	}

	.proinner1List .part {
		display: block;
		width: 100%;
		height: 480px;
		background: url(../images/bg_5.png) center no-repeat;
		background-size: cover;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

		.proinner1List .part .icon {
			overflow: hidden;
			width: 140px;
			height: 140px;
			background: #fff;
			border-radius: 50%;
			box-shadow: 0 0 10px rgb(34 58 104 / 5%);
			margin: 0 auto;
			display: flex;
			align-items: center;
			justify-content: center;
			background-color: #fff;
		}

			.proinner1List .part .icon img {
				width: 68px;
			}

		.proinner1List .part .t1 {
			font-size: 30px;
			color: rgba(17,17,17,1);
			text-align: center;
			margin-top: 25px;
			width: 90%;
			margin-left: auto;
			margin-right: auto;
		}

		.proinner1List .part .line {
			width: 25px;
			height: 2px;
			background: #df0505;
			margin: 15px auto;
			position: relative;
		}

		.proinner1List .part .txt {
			display-radio: 1;
			font-size: 17px;
			color: rgba(102,102,102,1);
			line-height: 1.8;
			text-align: center;
			max-width: 325px;
			margin-left: auto;
			margin-right: auto;
			width: 90%;
		}

.proinner1List2 {
	width: 100%;
	margin-top: 70px;
	padding: 0 25px;
}

	.proinner1List2 .part {
		display: block;
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		height: 500px;
	}

		.proinner1List2 .part .img {
			width: 40%;
			height: 100%;
		}

			.proinner1List2 .part .img img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

		.proinner1List2 .part .desc {
			background: url(../images/bg_6.jpg) center no-repeat;
			background-size: cover;
			width: 60%;
			padding: 5% 3%;
			height: 100%;
		}

		.proinner1List2 .part .list {
			width: 100%;
			overflow: hidden;
			overflow-y: auto;
			max-height: 100%;
		}

.otherTxt::-webkit-scrollbar {
	width: 3px;
	height: 8px;
	background-color: #fff;
	border-radius: 4px;
	position: relative;
}

.otherTxt::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.otherTxt::-webkit-scrollbar-thumb {
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #f00;
}

.otherTxt::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 0;
	background: rgba(0, 0, 0, 0.1);
}

.proinner1List2 .part ul li {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #0000002b;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	font-size: 18px;
	color: #000;
}

	.proinner1List2 .part ul li:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border: none;
	}

.proinner1List2 .part .tit {
	font-size: 18px;
	color: rgba(0,0,0,1);
	line-height: 1.8;
	text-align: center;
	width: 160px;
	border: 1px solid #0000006b;
	margin-right: 10px;
}

.proinner1List2 .part .txt {
	flex: 1;
	line-height: 1.8;
}

.proinner1List2 .swiper-button-next, .proinner1List2 .swiper-button-prev {
	width: 50px;
	height: 50px;
	border: 1px solid #000;
	background: #000;
	top: auto;
	bottom: 25px;
	color: #fff;
}

.proinner1List2 .swiper-button-next {
	right: 60px;
}

.proinner1List2 .swiper-button-prev {
	left: auto;
	right: 120px;
}

	.proinner1List2 .swiper-button-next:hover, .proinner1List2 .swiper-button-prev:hover {
		background: transparent;
		color: #000;
	}

	.proinner1List2 .swiper-button-next:after, .proinner1List2 .swiper-button-prev:after {
		font-size: 20px
	}

.proinner2 {
	width: 100%;
	padding: 80px 0;
	background: #e9f0f6;
}

.proinner2List {
	width: 100%;
}

	.proinner2List ul li {
		margin-bottom: 80px;
	}

		.proinner2List ul li:last-child {
			margin: 0;
		}

	.proinner2List .part {
		display: block;
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

		.proinner2List .part .img {
			width: 50%;
		}

			.proinner2List .part .img img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

		.proinner2List .part .desc {
			width: 45%;
		}

		.proinner2List .part .line {
			margin: 30px 0;
			background: #E72B1E;
			width: 50px;
			height: 4px;
		}

		.proinner2List .part .txt {
			font-size: 16px;
			color: #666;
			width: 100%;
			height: 320px;
			overflow: hidden;
			overflow-y: auto;
		}

	.proinner2List ul li:nth-child(2n) .img {
		order: 1;
	}

	.proinner2List ul li:nth-child(2n) .desc {
		order: 0;
	}

/*页码*/
.pagebar {
	margin: 0 auto;
	padding: 15px 0 10px;
	margin-top: 50px;
}

	.pagebar a {
		margin: 2px;
		padding: 5px 10px;
		font-size: 14px;
		color: #777;
		font-weight: 400;
		border: 1px solid #e2e2e2;
		border-radius: 2px;
		background: #fff;
		display: inline-block;
	}

	.pagebar .now-page {
		font-size: 14px;
		color: #fff;
		font-weight: 400;
		padding: 5px 10px;
		margin: 0 5px 5px;
		border: 1px solid #0188fb;
		border-radius: 2px;
		background: #0188fb;
		display: inline-block;
	}

	.pagebar a:hover {
		color: #fff;
		border: 1px solid #0188fb;
		background: #0188fb;
	}


.news {
	width: 100%;
	padding: 50px 0;
	border-top: 1px solid #ddd;
}

.newsList {
	width: 100%;
}

	.newsList ul li {
		background: #fff;
		transition: 0.3s;
	}

	.newsList .part {
		border-bottom: 1px solid #f8f8f8;
		padding: 1.8vw 0;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

		.newsList .part .imgBox {
			display: block;
			width: 36%;
			padding-right: 3vw;
		}

			.newsList .part .imgBox img {
				width: 100%;
				height: 260px;
			}

		.newsList .part .desc {
			width: 64%;
		}

		.newsList .part .time {
			font-size: 14px;
			line-height: 18px;
			color: #999999;
		}

		.newsList .part .t1 {
			font-weight: bold;
			-webkit-line-clamp: 1;
			display: -webkit-box;
			-webkit-box-orient: vertical;
			overflow: hidden;
			margin-bottom: 10px;
			font-size: 24px;
			margin-top: 8px;
			color: #000;
		}

		.newsList .part .txt {
			line-height: 1.8;
			color: #666;
			margin-bottom: 3vw;
			font-size: 17px;
			margin-top: 20px;
		}

		.newsList .part .more {
			margin-top: 20px;
		}

			.newsList .part .more a {
				display: block;
				width: 150px;
				height: 45px;
				line-height: 45px;
				border: 1px solid rgba(148,148,148,1);
				text-align: center;
				color: #000;
				font-size: 14px;
			}

	.newsList ul li:hover {
		background: #f7f7f7;
	}

	.newsList .part:hover .more a {
		border-color: #E72B1E;
		color: #E72B1E;
	}

.newsdetail {
	width: 100%;
	padding: 80px 0;
}

.newsdTop .title {
	font-size: 36px;
	color: #333;
	font-weight: bold;
	margin-bottom: 20px;
}

.newsdTop .info {
	text-align: right;
	border-bottom: 2px solid #ededed;
	padding-bottom: 2.5vw;
	font-size: 14px;
	color: #222;
}

.newsdDesc {
	font-size: 16px;
	color: #333;
	margin: 35px 0;
}

	.newsdDesc img {
		width: auto;
		max-width: 100%;
	}

.newsdBtm .left {
	font-size: 14px;
	color: #333;
}

	.newsdBtm .left .icon {
		margin: 10px 0;
	}

	.newsdBtm .left a {
		color: #333;
	}

.newsdList ul li {
	width: calc(33.3% - 20px);
	margin-right: 30px;
}

	.newsdList ul li:nth-child(3n) {
		margin-right: 0;
	}

.newsdList .part {
	display: block;
	width: 100%;
	height: 100%;
	box-shadow: var(--main-shadow);
	background: #fff;
	transition: 0.3s;
}

	.newsdList .part .img {
		width: 100%;
	}

		.newsdList .part .img img {
			width: 100%;
		}

	.newsdList .part .desc {
		padding: 40px 45px;
	}

	.newsdList .part .t1 {
		font-size: 20px;
		color: #333;
		font-weight: bold;
	}

	.newsdList .part .txt {
		margin-top: 20px;
		font-size: 16px;
		color: #555;
		line-height: 1.8;
	}

	.newsdList .part .time {
		font-size: 14px;
		color: #999;
		margin-top: 20px;
	}

	.newsdList .part:hover {
		transform: translateY(-15px);
	}

		.newsdList .part:hover .img img {
			transform: scale(1.2);
		}

.contact {
	width: 100%;
	padding: 80px 0;
	background: url(../images/bg_7.jpg) center no-repeat;
	background-size: cover;
}

.contWarp {
	width: 100%;
}

	.contWarp .right {
		width: 50%;
	}

	.contWarp .map {
		width: 100%;
		background: #fff;
		padding: 10px;
		overflow: hidden;
		height: 480px;
	}

		.contWarp .map img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	.contWarp .left {
		width: 40%;
	}

	.contWarp .innerTxt {
		font-size: 20px;
		color: rgba(53,53,53,1);
		line-height: 1.7;
		text-align: left;
		margin-top: 20px;
		margin-bottom: 50px;
		padding-bottom: 35px;
		border-bottom: 1px solid #cedde4;
		position: relative;
	}

	.contWarp .list ul {
		display: flex;
		flex-wrap: wrap;
	}

		.contWarp .list ul li {
			width: 50%;
			margin-bottom: 50px;
			display: flex;
			align-items: center;
		}

	.contWarp .list .icon {
		width: 60px;
		text-align: center;
	}

		.contWarp .list .icon img {
			width: 30px;
		}

	.contWarp .list .desc {
		flex: 1;
		font-size: 17px;
		color: #333;
	}

		.contWarp .list .desc p {
			padding: 0;
		}

		.contWarp .list .desc strong {
			font-size: 20px;
			color: #222;
			font-weight: normal;
		}

	.contWarp .list ul li.w100 {
		width: 100%;
	}

	.contWarp .returnBtn a {
		margin-left: 0;
		margin-top: 0;
	}

.inside {
	padding: 80px 0;
}


@media only screen and (max-width: 1600px) {
	.wapper_a,
	.wapper_b {
		padding: 0 20px;
	}

	.i2List .part .desc {
		padding: 0 20px;
	}

	.menu span a {
		padding: 0 12px;
	}

	.language a {
		width: 120px;
	}

	.banner .part .desc {
		padding: 0 20px;
	}

	.i1Warp {
		padding: 0 20px;
	}

	.fWarp .left dl {
		margin-right: 50px;
	}
}

@media only screen and (max-width: 1200px) {
	.wapper {
		width: 100%;
		padding: 0 10px;
	}

	.wapper_a {
		width: 100%;
		margin: 0 auto;
		padding: 0 10px;
	}

	.wapper_b {
		max-width: 100;
		margin: 0 auto;
		padding: 0 10px;
	}

	.headList .logo img {
		max-height: 42px;
	}

	.menu span a {
		padding: 0 10px;
		font-weight: normal;
		font-size: 14px;
	}

	.language a {
		width: 88px;
	}
	.language dd {
		position: absolute;
		top: 34px;
		left: -13px;
		width: 89px;
		background: #fff;
		display: none;
		box-shadow: var(--main-shadow);
		border-radius: 10px;
		overflow: hidden;
	}
	.iTit {
		font-size: 38px;
	}

	.innerTit {
		font-size: 35px;
	}

	.innerTxt {
		font-size: 22px;
	}

	.abo3Panel .part .year {
		font-size: 38px;
	}

	.abo3Panel .part .txt {
		font-size: 20px;
	}

	.abo3Panel .part .img img {
		height: 340px;
		object-fit: ocover;
	}

	.pageMenu ul li a {
		padding: 0 25px;
	}

	.newsdTop .title {
		font-size: 26px;
	}

	.newsdList .part .desc {
		padding: 20px;
	}

	.strength2Top .iTxt {
		font-size: 16px;
	}

	.tongtu .t1 {
		font-size: 28px;
	}
}

@media only screen and (max-width: 980px) {
	.header {
		display: none
	}

	.sp_header1 {
		display: block;
	}

	.sjj_nav1 {
		display: block;
	}

	.sp_logo1 img {
		max-height: 36px;
	}

	.sp_header1 .language {
		float: right;
		height: 70px;
		margin-right: 8px;
		display: flex;
		align-items: center;
		margin-left: 0;
	}

		.sp_header1 .language dl dt {
			padding: 0 6px;
			font-size: 13px;
		}

		.sp_header1 .language dl dd {
			top: 70px;
		}

	.language i {
		padding-left: 5px;
	}

	.banner {
		height: auto;
	}

		.banner .swiper-button-next, .banner .swiper-button-prev {
			display: none;
		}

	.banTop {
		display: none;
	}

	.banner .part .img img {
		min-height: 230px;
	}

	.banner .swiper-pagination {
		padding: 0 !important;
		text-align: center;
	}

	.banner .part .t1 {
		font-size: 18px;
		padding-top: 15px;
	}

	.banner .part .txt {
		font-size: 14px;
		margin-top: 5px;
	}

	.banMore a {
		width: 120px;
		height: 35px;
		line-height: 35px;
		font-size: 14px;
	}

	.i1Warp {
		min-height: auto;
	}

		.i1Warp .t1 {
			font-size: 20px;
		}

		.i1Warp .txt {
			font-size: 18px;
			margin-top: 10px;
		}

	.i2List .part .imgTop {
		padding: 0 20px;
	}

	.i2List .part .t1 {
		font-size: 18px;
	}

	.i2List .part .t2 {
		font-size: 30px;
		margin-top: 15px;
	}

	.i2List .part .banMore2 {
		margin-top: 25px;
	}

	.pc_show {
		display: none;
	}

	.m_show {
		display: block;
	}

	.i2List .swiper-slide:nth-child(1) .part {
		transform: scale(1);
	}

	.i2List .swiper-slide.swiper-slide.active:nth-child(1) .part {
		transform: scale(1);
	}

	.i2List .swiper-slide:nth-child(2) .part {
		transform: scale(1);
	}

	.i2List .swiper-slide.swiper-slide.active:nth-child(2) .part {
		transform: scale(1);
	}

	.iTit {
		font-size: 28px;
	}

	.iMore a {
		width: 160px;
	}

	.i3List ul li {
		width: 100%;
	}

	.i3List .part .imgTop {
		padding: 15px;
	}

	.i3List .part .txt {
		width: 100%;
	}

	.banMore2 a {
		width: 160px;
		height: 45px;
		line-height: 45px;
	}

	.iTxt {
		font-size: 14px;
	}

	.fWarp .left dl {
		margin-right: 0;
		margin: 10px 0;
		width: 100%;
	}

	.fWarp dt {
		margin-bottom: 10px;
	}

	.fEwm {
		width: 100%;
	}

		.fEwm dt {
			margin-top: 10px;
			font-size: 16px;
		}

	.innerTit {
		font-size: 26px;
	}

	.innerTxt {
		font-size: 16px;
	}

	.abo3Panel .part .year {
		font-size: 28px;
	}

	.abo3Panel .part .txt {
		font-size: 16px;
	}

	.abo3Panel .part .img img {
		height: 260px;
		object-fit: ocover;
	}

	.abo1Warp .desc {
		width: 100%;
		margin-bottom: 20px;
	}

	.abo1Warp .img {
		width: 100%;
	}

	.abo3Panel .part .img {
		width: 100%;
		margin-bottom: 20px;
	}

		.abo3Panel .part .img img {
			height: auto;
		}

	.abo3Panel .part .desc {
		width: 100%;
	}

	.abo3Panel .swiper-button-next, .abo3Panel .swiper-button-prev {
		display: none;
	}

	.abo3Tab .year {
		font-size: 14px;
	}

	.about3 {
		padding: 80px 0 20px;
	}

	.pageMenu ul li a {
		padding: 0 10px;
		font-size: 14px;
		line-height: 35px;
	}

	.contWarp .left {
		width: 100%;
		margin-bottom: 20px;
	}

	.contWarp .list ul li {
		width: 100%;
		margin-bottom: 20px;
	}

	.contWarp .right {
		width: 100%;
	}

	.newsdTop .title {
		font-size: 24px;
	}

	.newsdList ul li {
		width: 100%;
		margin: 10px 0;
	}

	.newsList .part .imgBox {
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}

		.newsList .part .imgBox img {
			height: auto;
		}

	.newsList .part .desc {
		width: 100%;
	}

	.newsList .part .t1 {
		font-size: 18px;
	}

	.strength1List ul li {
		width: 100%;
		margin: 20px 0;
	}

	.strength1List .part .desc {
		padding: 20px;
	}

	.strength1List .part .t1 a {
		font-size: 18px;
	}

	.strength1List .part .txt {
		font-size: 14px;
		height: auto;
	}

	.strength1List .part .more {
		margin-top: 20px;
	}

	.proinner1List ul li {
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}

	.proinner1List .part {
		height: auto;
		padding: 35px 20px;
	}

		.proinner1List .part .icon {
			width: 100px;
			height: 100px;
		}

			.proinner1List .part .icon img {
				width: 40px;
			}

		.proinner1List .part .t1 {
			font-size: 24px;
		}

	.proinner1List2 {
		padding: 0 12px;
	}

		.proinner1List2 .part .img {
			width: 100%;
			height: 220px;
		}

		.proinner1List2 .part .desc {
			width: 100%;
			padding: 20px;
		}

		.proinner1List2 .swiper-button-next, .proinner1List2 .swiper-button-prev {
			display: none;
		}

		.proinner1List2 .part .list {
			height: 480px;
		}

		.proinner1List2 .part ul li {
			padding-bottom: 5px;
			margin-bottom: 5px;
		}

		.proinner1List2 .part .tit {
			width: 100%;
			margin-bottom: 10px;
		}

	.proinner2List .part {
		display: block;
	}

		.proinner2List .part .img {
			width: 100%;
			margin-bottom: 20px;
		}

		.proinner2List .part .desc {
			width: 100%;
		}

	.strength2Top:after {
		display: none;
	}

	.strength2Top .imgTop {
		position: relative;
		bottom: auto;
		margin: 20px 0;
	}

	.strength2Top .innerTit {
		color: #222 !important;
	}

	.strength2Top .iTxt {
		font-size: 14px;
		color: #333;
	}

	.hHei {
		height: 70px;
	}

	.tongtu .t1 {
		font-size: 18px;
	}

	.tongtu .img img {
		min-height: 180px;
		object-fit: cover;
	}

	.pageMenu ul li dl dd a {
		font-size: 14px;
	}
}
