@font-face {
	font-family: 'iconfont';
	/* Project id 4116917 */
	src: url('//at.alicdn.com/t/c/font_4116917_2ouiy2hobwm.woff2?t=1692238336984') format('woff2'),
		url('//at.alicdn.com/t/c/font_4116917_2ouiy2hobwm.woff?t=1692238336984') format('woff'),
		url('//at.alicdn.com/t/c/font_4116917_2ouiy2hobwm.ttf?t=1692238336984') format('truetype');
}

.iconfont {
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale;color: #bababa;
    font-size: 1.8vw;
}

body {
	width: 100%;
}

@keyframes fadeIniup {
	0% {
		opacity: 0;
		transform: translateY(60px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.he_fadeup1 {
	-webkit-animation: fadeIniup 1s ease both;
	animation: fadeIniup 1s ease both;
	-ms-animation: fadeInUp 1s ease both;
	animation-delay: 0.3s;
}

header {
	width: 100%;
	position: fixed;
	display: flex;
	justify-content: space-between;
	padding: 0vw 5vw;
	top: 0;
	z-index: 99;
	transition: 0.3s all;
	align-items: center;
}

header .logo {
	width: 250px;
}

header .logo img:nth-child(1) {
	display: block;
}

header .logo img:nth-child(2) {
	display: none;
}

header nav {
	margin-top: 0vw;
	width: calc(100% - 300px);
}

header nav ul {
	display: flex;
	font-size: 18px;
}

header nav ul li {
	width: calc(100% / 8);
	position: relative;
}

header nav>ul>li:after {
	width: 0%;
	height: 3px;
	position: absolute;
	left: 50%;
	content: '';
	background: #0071ac;
	transition: .3s all;
	bottom: 0px;
}

header nav>ul>li:hover:after {
	width: 100%;
	left: 0%;
}

header nav ul li ul {
	position: absolute;
	display: block;
	background: white;
	border-radius: 0px 0px 5px 5px;
	padding: 15px;
	top: 90px;
	opacity: 0;
	transition: .3s all;
	width: 100%;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, .1);
	visibility: hidden;
}

header nav ul li:nth-child(4) ul {
	width: 200px;
	left: 50%;
	-webkit-transform: translateX(-50%);
}

header nav ul li ul li {

	width: 100%;

}

header nav ul li ul li a {
	line-height: 40px;
	font-size: 16px;
	font-weight: normal;
}

header nav ul li ul li:hover a {
	color: #0B61A4;
}

header nav ul li a {
	color: white;
	transition: 0.3s all;
	display: block;
	line-height: 80px;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

header nav ul li:hover ul {
	opacity: 1;
	visibility: visible;
	top: 80px;

}

header nav ul li:hover a {
	/*font-weight: bold;*/
}

header.active {
	background: white;

}

header.active .logo img:nth-child(1) {
	display: none;
}

header.active .logo img:nth-child(2) {
	display: block;
}

header.active nav ul li a {
	color: #333333;
}

footer {
	width: 100%;
	height: auto;
	background: url('../images/img20.jpg') center no-repeat;
	background-size: cover !important;
	padding: 4vw 12vw 2vw 12vw;
}

footer .footerHead {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-bottom: 1vw;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .footerHead .textBox {
	display: flex;
}

footer .footerHead .textBox .logo {
	width: 16vw;
	display: block;
}

footer .footerHead .textBox .text {
	color: white;
	font-size: 0.9vw;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 1vw;
	margin-left: 1vw;
}

footer .footerHead .firends {
	width: 12vw;
	height: 2vw;
	background-color: #ffffff;
	position: relative;
}

footer .footerHead .firends select {
	border: none;
	outline: none;
	width: 100%;
	height: 2vw;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-left: 1vw;
	cursor: pointer;
}

footer .footerHead .firends::before {
	content: '';
	position: absolute;
	width: 2vw;
	height: 2vw;
	background-color: #B2D4E6;
	pointer-events: none;
	right: 0vw;
}

footer .footerHead .firends::after {
	content: '';
	position: absolute;
	width: 1vw;
	height: 1vw;
	background: url('../images/jiantou.png') center no-repeat;
	background-size: cover !important;
	margin-left: -1.5vw;
	margin-top: 0.5vw;
	z-index: 1;
	pointer-events: none;
}

footer .navBox {
	display: flex;
	justify-content: space-between;
	margin-top: 3vw;
}

footer .navBox .footerNav .level1 {
	width: 6.6vw;
	display: inline-grid;
}

footer .navBox .footerNav .level1:nth-child(3) {
	width: 8.6vw;
}

footer .navBox .footerNav .level1:last-child {
	width: auto;
}

footer .navBox .footerNav .level1 a {
	font-size: 0.9vw;
	margin-bottom: 1.5vw;
	color: #ffffff;
	font-weight: bold;
}

footer .navBox .footerNav .level1 ul li {
	margin-bottom: 1vw;
	text-align: left;
}

footer .navBox .footerNav .level1 ul li a {
	font-size: 0.75vw;
	color: #ffffff;
	opacity: 0.7;
	font-weight: normal;
}

footer .navBox .footerNav .level1 ul li:hover a {

	text-decoration: underline;
}

footer .navBox .footerNav .level1:last-child ul li a {
	opacity: 1;
	font-size: 0.95vw;
}

footer .navBox .qrcodeBox {
	width: 23vw;
	color: white;
	font-size: 0.85vw;
	text-align: center;
	display: flex;
}

footer .navBox .qrcodeBox .qrcode {
	width: 7vw;
	margin: 0 .5vw;
}

footer .navBox .qrcodeBox .qrcode:last-child {
	margin-right: 0;
}

footer .navBox .qrcodeBox p {
	margin-top: 0.5vw;
}

footer .footerInfo {
	display: flex;
	justify-content: space-between;
	color: rgba(255, 255, 255, 0.5);
	padding-top: 3vw;
	font-size: 0.8vw;
}

footer .footerInfo .imgBox {
	width: 100%;
	position: absolute;
	left: 0;
	margin-top: -3vw;
	pointer-events: none;
}

footer .footerInfo .imgBox img {
	width: 2.5vw;
	margin: 0 auto;
}

footer .footerInfo .imgBox::before {
	content: '';
	position: absolute;
	width: 35vw;
	height: 1px;
	left: 12vw;
	margin-top: 1vw;
	background: rgba(255, 255, 255, 0.5);
}

footer .footerInfo .imgBox::after {
	content: '';
	position: absolute;
	width: 35vw;
	height: 1px;
	right: 12vw;
	margin-top: -2vw;
	background: rgba(255, 255, 255, 0.5);
}

footer .footerInfo a {
	color: rgba(255, 255, 255, 0.5);
}

.titBox {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.titBox .text .cn {
	color: #111111;
	font-size: 1.3vw;
	font-weight: bold;
}

.titBox .text .en {
	color: #b6b6b6;
	padding-left: 2vw;
	margin-top: 0.3vw;
	font-size: 0.8vw;
}

.titBox .text .en::before {
	content: '';
	position: absolute;
	width: 1.5vw;
	height: 3px;
	background: #0071ac;
	margin-top: 0.5vw;
	margin-left: -1.8vw;
}

.titBox .more {
	color: #bababa;
	font-size: 1.8vw;
}

.banner {
	width: 100%;
	height: 30vw;
	background-size: cover !important;
}

.linkBox {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 1.5vw 12vw;
	background: #f3f3f3;
	color: #6c6c6c;
}

.linkBox .link {
	display: inline-block;
	width: 90%;
	line-height: 1.7;
}

.linkBox .link .item {
	margin-right: 1vw;
	font-size: 16px;
	cursor: pointer;
}

.linkBox .link .active {
	color: #0071ac;
}

.linkBox .link .item:hover {
	color: #0071ac;
}

.linkBox .stick {
	font-size: 16px;
}

.index .f1 .f1Swiper {
	width: 100%;
	overflow: hidden;
}

.index .f1 .f1Swiper .swiper-slide {
	width: 100%;
	height: 100vh;
}

.index .f1 .f1Swiper .swiper-slide .bannerImg {
	width: 100%;
	height: 100vh;
	background-size: cover !important;
	/*animation: sec 16s linear;*/
	/*transform: scale(1.2, 1.2);*/
}

.index .f1 .f1Swiper .swiper-slide .bannerImg .textBox {
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	transition: 1s all;
}

.index .f1 .f1Swiper .swiper-slide .bannerImg .textBox .cn {
	font-size: 3.5vw;
	font-weight: bold;
}

.index .f1 .f1Swiper .swiper-slide .bannerImg .textBox .cn::before {
	content: '';
	position: absolute;
	width: 12vw;
	height: 1px;
	background: white;
	margin-top: 10vw;
	margin-left: 3vw;
}

.index .f1 .f1Swiper .swiper-slide .bannerImg .subiao {
	position: absolute;
	top: 95%;
	left: 50%;
	transform: translate(-50%, -95%);
	color: white;
	text-align: center;
	font-size: 1.8vw;
	display: none;
}

.index .f1 .f1Swiper .swiper-pagination {
	bottom: 5vw;
}

.index .f1 .f1Swiper .swiper-pagination .swiper-pagination-bullet {
	width: 1.8vw;
	height: 1.8vw;
	background: url('../images/icon2.png') center no-repeat;
	background-size: cover !important;
	margin: 0 0.5vw;
}

.index .f1 .f1Swiper .bannerImgActive {
	animation: sec 5s infinite;
}

@keyframes sec {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.1);
	}
}

.index .f1 .f1Search {
	width: 76vw;
	height: 4vw;
	margin: 0 auto;
	background: url('../images/img1.jpg') center no-repeat;
	background-size: cover !important;
	position: relative;
	margin-top: -4vw;
	z-index: 9;
	display: flex;
	justify-content: space-between;
	padding: 0 3vw;
}

.index .f1 .f1Search .name {
	line-height: 4vw;
	color: #434343;
	font-size: 1vw;
	font-weight: bold;
}

.index .f1 .f1Search input {
	width: 90%;
	height: 3vw;
	margin-top: 0.5vw;
	padding: 0 1vw;
	font-size: 0.9vw;
	outline: none;
	background: transparent;
	border: transparent;
}

.index .f1 .f1Search input::-webkit-input-placeholder {
	color: #bababa;
}

.index .f1 .f1Search .serach {
	color: #0071ac;
	font-size: 1.2vw;
	line-height: 4vw;
	cursor: pointer;
}

.index .f1 .f1Search::before {
	content: '';
	position: absolute;
	width: 71vw;
	height: 1px;
	background: #bababa;
	margin-top: 3.9vw;
}

.index .f2 {
	width: 100%;
	padding: 4vw 12vw;
	display: flex;
	justify-content: space-between;
}

.index .f2 .Information {
	width: 21vw;
}

.index .f2 .Information .leftBox {
	border-top: 1px solid #eeeeee;
	margin-top: 2vw;
}

.index .f2 .Information .leftBox .item {
	width: 21vw;
	display: block;
	padding: 1vw 0;
	border-bottom: 1px solid #eeeeee;
	display: inline-block;
}

.index .f2 .Information .leftBox .item .imgBox {
	width: 9vw;
	height: 5vw;
	overflow: hidden;
	display: inline-block;
	float: left;
}

.index .f2 .Information .leftBox .item .imgBox .img {
	width: 9vw;
	height: 5vw;
	background-size: cover !important;
	transition: 0.3s all;
}

.index .f2 .Information .leftBox .item .text {
	width: 12vw;
	display: inline-block;
	padding: 0.5vw;
}

.index .f2 .Information .leftBox .item .text .name {
	color: #353535;
	font-size: 0.8vw;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.index .f2 .Information .leftBox .item .text .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin-top: 0.5vw;
}

.index .f2 .Information .leftBox .item:hover .imgBox .img {
	transform: scale(1.1);
}

.index .f2 .Information .leftBox .item:hover .text .name {
	color: #0071ac;
}

.index .f2 .newBox {
	width: 32vw;
	margin-top: 0.4vw;
}

.index .f2 .newBox .newBoxSwiper {
	width: 32vw;
	height: 41.5vw;
	overflow: hidden;
	box-shadow: 0 5px 10px 0 gainsboro;
}

.index .f2 .newBox .newBoxSwiper .swiper-slide .imgBox {
	width: 32vw;
	height: 19vw;
	overflow: hidden;
}

.index .f2 .newBox .newBoxSwiper .swiper-slide .imgBox .img {
	width: 33vw;
	height: 19vw;
	background-size: cover !important;
}

.index .f2 .newBox .newBoxSwiper .swiper-slide .titBox {
	padding: 2vw;
}

.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs {
	width: 28vw;
	border-top: 1px solid #eeeeee;
	margin: 0 auto;
	padding: 2vw 0;
	display: block;
}

.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs .name {
	color: #111111;
	font-size: 1vw;
}

.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin: 1vw 0 0.5vw 0;
}

.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs .des {
	font-size: 0.85vw;
	color: #676767;
	line-height: 1.7;
}

.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs:hover .name {
	color: #0071ac;
}

.index .f2 .newBox .newBoxSwiper .swiper-pagination-bullet {
	width: 0.8vw;
	border-radius: 5px;
}

.index .f2 .newBox .newBoxSwiper .swiper-pagination-bullet-active {
	width: 1.2vw;
}

.index .f3 {
	width: 100%;
}

.index .f3 .titBox {
	width: 74vw;
	margin: 0 auto 2vw auto;
}

.index .f3 .f3Swiper {
	width: 76.2%;
	height: 18vw;
	overflow: hidden;
}

.index .f3 .f3Swiper .swiper-slide .imgBox {
	width: 100%;
	height: 18vw;
	overflow: hidden;
}

.index .f3 .f3Swiper .swiper-slide .imgBox .img {
	width: 100%;
	height: 18vw;
	background-size: cover !important;
}

.index .f3 .f3Swiper .swiper-slide .imgBox .img .text {
	color: white;
	font-size: 1.5vw;
	text-align: center;
	line-height: 15vw;
	letter-spacing: 3px;
}

.index .f3 .f3Swiper .swiper-button-next,
.index .f3 .f3Swiper .swiper-button-prev {
	width: 2vw;
	height: 2vw;
	border: 2px solid white;
	border-radius: 50%;
}

.index .f3 .f3Swiper .swiper-button-next::after,
.index .f3 .f3Swiper .swiper-button-prev::after {
	font-size: 1vw;
	color: white;
}

.index .f3 .f3Swiper .swiper-button-next,
.index .f3 .f3Swiper .swiper-rtl .swiper-button-prev {
	right: 10vw;
	top: 77%;
}

.index .f3 .f3Swiper .swiper-button-prev,
.index .f3 .f3Swiper .swiper-rtl .swiper-button-next {
	left: 10vw;
	top: 77%;
}

.index .f3 .f3SwiperImg {
	width: 50vw;
	overflow: hidden;
	position: relative;
	margin-top: -6vw;
}

.index .f3 .f3SwiperImg .swiper-slide {
	cursor: pointer;
}

.index .f3 .f3SwiperImg .swiper-slide .imgBox {
	width: 9vw;
	height: 5vw;
	overflow: hidden;
	display: block;
	border: 2px solid transparent;
}

.index .f3 .f3SwiperImg .swiper-slide .imgBox .img {
	width: 9vw;
	height: 5vw;
	background-size: cover !important;
}

.index .f3 .f3SwiperImg .swiper-slide .imgBox .img .text {
	color: white;
	font-size: 16px;
	text-align: center;
	line-height: 5vw;
}

.index .f3 .f3SwiperImg .swiper-slide-thumb-active .imgBox {
	border: 2px solid white;
}

.index .f4 {
	width: 100%;
	padding: 2vw 12vw;
	display: flex;
	justify-content: space-between;
}

.index .f4 .f4Box {
	width: 24vw;
}

.index .f4 .f4Box .f4Item {
	margin-top: 2vw;
}

.index .f4 .f4Box .f4Item .itemImg {
	padding-bottom: 1vw;
	border-bottom: 1px solid #eeeeee;
	display: block;
}

.index .f4 .f4Box .f4Item .itemImg .imgBox {
	width: 24vw;
	height: 14vw;
	overflow: hidden;
}

.index .f4 .f4Box .f4Item .itemImg .imgBox .img {
	width: 24vw;
	height: 14vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.index .f4 .f4Box .f4Item .itemImg .name {
	font-size: 1vw;
	line-height: 1.7;
	color: #111111;
	margin: 1.3vw 0;
}

.index .f4 .f4Box .f4Item .itemImg .time {
	color: #8b8b8b;
	font-size: 0.8vw;
}

.index .f4 .f4Box .f4Item .itemImg:hover .imgBox .img {
	transform: scale(1.1);
}

.index .f4 .f4Box .f4Item .itemImg:hover .name {
	color: #0071ac;
}

.index .f4 .f4Box .f4Item .item {
	display: flex;
	justify-content: space-between;
	padding: 1vw 0 0 0;
}

.index .f4 .f4Box .f4Item .item .text {
	width: 85%;
	display: flex;
}

.index .f4 .f4Box .f4Item .item .text .icon {
	font-size: 1.2vw;
	color: #0071ac;
}

.index .f4 .f4Box .f4Item .item .text .icon2 {
	font-size: 1.5vw;
	color: #ff1717;
	position: relative;
	margin-top: -0.2vw;
}

.index .f4 .f4Box .f4Item .item .text .name {
	font-size: 0.85vw;
	color: #111111;
	margin: 0.3vw 1vw;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.index .f4 .f4Box .f4Item .item .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin-top: 0.2vw;
}

.index .f4 .f4Box .f4Item .item:hover .text .name {
	color: #0071ac;
}

.index .f4 .f4Box:nth-child(2) {
	width: 28vw;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
	margin: 0 1vw;
	padding: 0 1vw;
}

.index .f4 .f4Box:nth-child(2) .itemImg {
	border: transparent;
	padding-bottom: 0;
}

.index .f4 .f4Box:nth-child(3) .itemImg {
	border: transparent;
	padding-bottom: 0;
}

.index .f4 .f4Box:nth-child(3) .item {
	padding: 1.2vw 0;
	border-bottom: 1px solid #eeeeee;
}

.index .f4 .f4Box:nth-child(3) .item .text .name {
	margin: 0.2vw 0;
}

.index .f5 {
	width: 100%;
	padding: 0 12vw;
	display: flex;
	justify-content: space-between;
}

.index .f5 .f5Left {
	width: 37vw;
}

.index .f5 .f5Left .f5LeftBox {
	margin-top: 2vw;
}

.index .f5 .f5Left .f5LeftBox .imgBox {
	width: 37vw;
	overflow: hidden;
}

.index .f5 .f5Left .f5LeftBox .imgBox .img {
	width: 37vw;
	height: 17vw;
	background-size: cover !important;
}

.index .f5 .f5Left .f5LeftBox .imgBox .des {
	color: #484848;
	line-height: 1.7;
	text-align: justify;
	font-size: 0.8vw;
	margin-top: 1vw;
}

.index .f5 .f5Right {
	width: 37vw;
	margin-left: 2vw;
}

.index .f5 .f5Right .f5RightBox {
	margin-top: 2vw;
}

.index .f5 .f5Right .f5RightBox .f5Swiper {
	width: 100%;
	height: 26vw;
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide {
	width: 100%;
	height: 23vw;
	overflow: hidden;
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide .img {
	width: 100%;
	height: 23vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide .img .text {
	color: white;
	text-align: center;
	padding-top: 19vw;
	background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 255, 255, 0.3) 100%);
	height: 23vw;
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide .img .text .name {
	font-weight: bold;
	font-size: 1vw;
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide .img .text .des {
	font-size: 0.85vw;
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide:hover .img {
	transform: scale(1.1);
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-pagination {
	pointer-events: none;
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-button-next,
.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-button-prev {
	top: 95%;
	font-size: 1.5vw;
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-button-next {
	right: 10vw;
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-button-prev {
	left: 10vw;
}

.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-button-next:after,
.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-button-prev:after {
	content: inherit;
}

.index .f6 {
	width: 100%;
	padding: 2vw 0 0 0;
}

.index .f6 .titBox {
	padding: 0 12vw;
}

.index .f6 .f6Box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 2vw;
	padding: 0 12vw;
}

.index .f6 .f6Box .item {
	margin-right: 1vw;
}

.index .f6 .f6Box .item:last-child {
	margin-right: 0;
}

.index .f6 .f6Bg {
	width: 87vw;
	margin: 0 auto;
	position: relative;
	top: -4vw;
	z-index: -1;
}

.about .f1 {
	width: 100%;
	padding: 7vw 12vw 4vw 12vw;
	display: flex;
}

.about .f1 .left {
	width: 27vw;
}

.about .f1 .left .f1Bg {
	width: 30vw;
	position: absolute;
	left: 4vw;
	margin-top: 8vw;
}

.about .f1 .left .f1Img {
	width: 19vw;
}

.about .f1 .left .cn {
	color: #515151;
	font-weight: bold;
	font-size: 1.5vw;
	margin-top: 2vw;
}

.about .f1 .left .en {
	color: #515151;
	font-size: 1.5vw;
	margin-top: 1vw;
}

.about .f1 .left .des {
	color: #7c7c7c;
	font-size: 0.9vw;
	line-height: 1.7;
	margin-top: 2vw;
}

.about .f1 .right {
	width: 45vw;
	margin-left: 4vw;
}

.about .f1 .right .tit {
	color: #111111;
	font-size: 1.5vw;
}

.about .f1 .right .des {
	color: #7c7c7c;
	font-size: 0.9vw;
	line-height: 1.7;
	margin-top: 2vw;
	text-align: justify;
}

.about .f2 {
	width: 100%;
	height: auto;
	background: url('../images/img26.jpg') center no-repeat;
	background-size: cover !important;
	padding: 7vw 12vw;
	display: flex;
}

.about .f2 .textBox {
	width: 40vw;
	color: white;
}

.about .f2 .textBox .tit {
	font-size: 1.5vw;
}

.about .f2 .textBox .des {
	width: 36vw;
	font-size: 0.9vw;
	line-height: 2;
	margin-top: 2vw;
	text-align: justify;
}

.about .f2 .textBox .f2Box {
	width: 40vw;
	display: table;
	margin-top: 7vw;
}

.about .f2 .textBox .f2Box .itemBox {
	display: inline-table;
	margin-right: 2vw;
}

.about .f2 .textBox .f2Box .itemBox .item {
	font-size: 0.9vw;
	margin-bottom: 1vw;
	padding-left: 1vw;
}

.about .f2 .textBox .f2Box .itemBox .item::before {
	content: '';
	position: absolute;
	width: 1.5vw;
	height: 1.5vw;
	background: url('../images/icon6.png') center no-repeat;
	background-size: cover !important;
	margin-left: -1.5vw;
	margin-top: -0.1vw;
}

.about .f2 .textBox .f2Box .itemBox:last-child {
	margin-right: 0;
}

.about .f2 .f2Img {
	width: 22vw;
	margin-left: 5vw;
}

.about .f3 {
	width: 100%;
	height: auto;
	background: url('../images/img28.jpg') center no-repeat;
	background-size: cover !important;
	padding: 7vw 12vw;
}

.about .f3 .tit {
	font-size: 1.5vw;
	text-align: center;
}

.about .f3 img {
	width: 90%;
	margin-top: 3vw;
	margin-left: 6vw;
}

.about .f4 {
	width: 100%;
	height: auto;
	background: url('../images/img30.jpg') center no-repeat;
	background-size: cover !important;
	padding: 7vw 12vw;
	color: white;
}

.about .f4 .tit {
	font-size: 1.5vw;
}

.about .f4 .des {
	width: 36vw;
	font-size: 0.9vw;
	line-height: 1.7;
	margin-top: 2vw;
	text-align: justify;
}

.about .f4 .f4Box {
	display: inline-block;
	margin-top: 4vw;
}

.about .f4 .f4Box .item {
	display: inline-block;
	padding: 0 3vw;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.about .f4 .f4Box .item .num {
	display: inline-block;
	font-size: 5vw;
}

.about .f4 .f4Box .item .num span {
	font-size: 0.9vw;
}

.about .f4 .f4Box .item .dess {
	font-size: 0.9vw;
}

.about .f4 .f4Box .item:first-child {
	padding: 0 3vw 0 0;
}

.about .f4 .f4Box .item:last-child {
	border: transparent;
}

.about .f5 {
	width: 100%;
	height: auto;
	background: url('../images/img31.jpg') center no-repeat;
	background-size: cover !important;
	padding: 7vw 12vw;
}

.about .f5 .tit {
	font-size: 1.5vw;
	text-align: center;
}

.about .f5 .f5Swiper2 {
	width: 37vw;
	background: white;
	margin-top: 2vw;
	padding: 0.3vw;
	border-radius: 2vw;
}

.about .f5 .f5Swiper2 .swiper-slide {
	text-align: center;
	padding: 0.5vw;
	border-radius: 2vw;
	cursor: pointer;
	font-size: 0.85vw;
}

.about .f5 .f5Swiper2 .swiper-slide-active {
	background-color: #0071ac;
	color: white;
}

.about .f5 .f5Swiper2 .swiper-slide:hover {
	background-color: #0071ac;
	color: white;
}

.about .f5 .f5Swiper {
	width: 100%;
	overflow: hidden;
	margin-top: 3vw;
}

.about .f5 .f5Swiper .swiper-slide {
	width: 100%;
	height: 23vw;
	overflow: hidden;
}

.about .f5 .f5Swiper .swiper-slide .img {
	width: 100%;
	height: 23vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.about .f5 .f5Swiper .swiper-slide .img .text {
	color: white;
	text-align: center;
	padding-top: 19vw;
	background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 51%, rgba(255, 255, 255, 0.3) 100%);
	height: 23vw;
}

.about .f5 .f5Swiper .swiper-slide .img .text .name {
	font-weight: bold;
	font-size: 1vw;
}

.about .f5 .f5Swiper .swiper-slide .img .text .des {
	font-size: 0.85vw;
}

.about .f5 .f5Swiper .swiper-slide:hover .img {
	transform: scale(1.1);
}

.about .f5 .f5Swiper .swiper-button-next,
.about .f5 .f5Swiper .swiper-button-prev {
	top: 95%;
	font-size: 1.5vw;
}

.about .f5 .f5Swiper .swiper-button-next {
	right: 10vw;
}

.about .f5 .f5Swiper .swiper-button-prev {
	left: 10vw;
}

.about .f5 .f5Swiper .swiper-button-next:after,
.about .f5 .f5Swiper .swiper-button-prev:after {
	content: inherit;
}

.about .f6 {
	width: 100%;
	height: auto;
	background: url('../images/img65.jpg') center no-repeat;
	background-size: cover !important;
	padding: 7vw 0 3vw 0;
}

.about .f6 .tit {
	font-size: 1.5vw;
	text-align: center;
}

.about .f6 .f6Box {
	width: 100%;
	display: inline-block;
	/*justify-content: space-between;*/
	margin-top: 4vw;
	position: relative;
	z-index: 2;
	padding: 0 12vw;
}

.about .f6 .f6Box .item {
	width: 18vw;
	margin-right: 1vw;
	display: inline-block;
	float: left;
}

.about .f6 .f6Box .item:last-child {
	margin-right: 0;
}

.about .f6 .f6Bg {
	width: 90%;
	margin: 0 auto;
	position: relative;
	top: -4vw;
	z-index: 1;
}

.about .f6 .f6Box2 {
	margin-top: 0;
}

.newsPage {
	width: 100%;
}

.newsPage .f1 {
	width: 100%;
	padding: 6vw 12vw;
	background: #f3f6f9;
}

.newsPage .f1 .f1Bg {
	position: absolute;
	width: 24vw;
	left: 0;
	margin-top: -4vw;
}

.newsPage .f1 .titBoxs {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.newsPage .f1 .titBoxs .name {
	color: #111111;
	font-size: 1.5vw;
}

.newsPage .f1 .titBoxs .more {
	display: block;
	background-color: #3178b3;
	border-radius: 1vw;
	color: white;
	text-align: center;
	width: 8vw;
	height: 2vw;
	line-height: 2vw;
	font-size: 0.8vw;
}

.newsPage .f1 .f1Box {
	width: 100%;
	display: flex;
	margin-top: 2vw;
}

.newsPage .f1 .f1Box .left {
	width: 36vw;
	height: 35vw;
	display: block;
	background: white;
	box-shadow: 0 5px 15px 5px #e9e9e9;
}

.newsPage .f1 .f1Box .left .imgBox {
	width: 36vw;
	height: 21vw;
	overflow: hidden;
}

.newsPage .f1 .f1Box .left .imgBox .img {
	width: 100%;
	height: 21vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.newsPage .f1 .f1Box .left .text {
	padding: 2vw;
}

.newsPage .f1 .f1Box .left .text .name {
	color: #111111;
	font-size: 1vw;
}

.newsPage .f1 .f1Box .left .text .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin: 1vw 0 0.5vw 0;
}

.newsPage .f1 .f1Box .left .text .des {
	font-size: 0.85vw;
	color: #676767;
	line-height: 1.7;
}

.newsPage .f1 .f1Box .left:hover .imgBox .img {
	transform: scale(1.1);
}

.newsPage .f1 .f1Box .left:hover .text .name {
	color: #0071ac;
}

.newsPage .f1 .f1Box .right {
	width: 46vw;
	margin-left: 3vw;
}

.newsPage .f1 .f1Box .right .item {
	display: flex;
	margin-bottom: 1vw;
}

.newsPage .f1 .f1Box .right .item .imgBox {
	width: 13vw;
	height: 8vw;
	overflow: hidden;
}

.newsPage .f1 .f1Box .right .item .imgBox .img {
	width: 13vw;
	height: 8vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.newsPage .f1 .f1Box .right .item .text {
	width: 21vw;
	margin-left: 2vw;
}

.newsPage .f1 .f1Box .right .item .text .name {
	color: #353535;
	font-size: 0.85vw;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.newsPage .f1 .f1Box .right .item .text .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin: 1vw 0;
}

.newsPage .f1 .f1Box .right .item .text .des {
	font-size: 0.8vw;
	color: #676767;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.newsPage .f1 .f1Box .right .item:hover .imgBox .img {
	transform: scale(1.1);
}

.newsPage .f1 .f1Box .right .item:hover .text .name {
	color: #0071ac;
}

.newsPage .f2 {
	width: 100%;
	padding: 4vw 12vw;
	background: #fcfaf4;
}

.newsPage .f2 .titBoxs {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.newsPage .f2 .titBoxs .name {
	color: #111111;
	font-size: 1.5vw;
}

.newsPage .f2 .titBoxs .more {
	display: block;
	background-color: #3178b3;
	border-radius: 1vw;
	color: white;
	text-align: center;
	width: 8vw;
	height: 2vw;
	line-height: 2vw;
	font-size: 0.8vw;
}

.newsPage .f2 .f2Box {
	width: 100%;
	display: flex;
	margin-top: 3vw;
}

.newsPage .f2 .newsList {
	display: inline-block;
}

.newsPage .f2 .f2Box .item {
	width: 24vw;
	display: block;
	margin-right: 1.5vw;
	background: white;
	box-shadow: 0 5px 15px 5px #e9e9e9;
}

.newsPage .f2 .newsList .item {
	display: inline-block;
	float: left;
	margin-bottom: 1.5vw;
}

.newsPage .f2 .newsList .item:nth-child(3n) {
	margin-right: 0;
}

.newsPage .f2 .f2Box .item .imgBox {
	width: 24vw;
	height: 14vw;
	overflow: hidden;
}

.newsPage .f2 .f2Box .item .imgBox .img {
	width: 100%;
	height: 14vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.newsPage .f2 .f2Box .item .text {
	padding: 2vw;
}

.newsPage .f2 .f2Box .item .text .name {
	color: #111111;
	font-size: 1vw;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.newsPage .f2 .f2Box .item .text .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin: 1vw 0 0.5vw 0;
}

.newsPage .f2 .f2Box .item .text .des {
	font-size: 0.85vw;
	color: #676767;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.newsPage .f2 .f2Box .item:last-child {
	margin-right: 0;
}

.newsPage .f2 .f2Box .item:hover .imgBox .img {
	transform: scale(1.1);
}

.newsPage .f2 .f2Box .item:hover .text .name {
	color: #0071ac;
}

.newsPage .f3 {
	width: 100%;
	padding: 4vw 12vw;
	display: flex;
	justify-content: space-between;
}

.newsPage .f3 .f3Box {
	width: 48%;
}

.newsPage .f3 .f3Box .titBoxs {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1vw;
}

.newsPage .f3 .f3Box .titBoxs .name {
	color: #111111;
	font-size: 1.5vw;
}

.newsPage .f3 .f3Box .titBoxs .more {
	display: block;
	background-color: #3178b3;
	border-radius: 1vw;
	color: white;
	text-align: center;
	width: 8vw;
	height: 2vw;
	line-height: 2vw;
	font-size: 0.8vw;
}

.newsPage .f3 .f3Box .f3List {
	display: inline-block;
}

.newsPage .f3 .f3Box .item {
	padding: 1vw 0;
	display: block;
	border-bottom: 1px solid #eeeeee;
}

.newsPage .f3 .f3Box .f3List .item {
	display: inline-block;
	float: left;
	margin-right: 10vw;
}

.newsPage .f3 .f3Box .f3List .item:nth-child(2n) {
	margin-right: 0;
}

.newsPage .f3 .f3Box .item .text {
	width: 100%;
	display: flex;
}

.newsPage .f3 .f3Box .item .text .icon {
	font-size: 1.2vw;
	color: #0071ac;
}

.newsPage .f3 .f3Box .item .text .icon2 {
	font-size: 1.5vw;
	color: #ff1717;
	position: relative;
	margin-top: -0.2vw;
}

.newsPage .f3 .f3Box .item .text .name {
	font-size: 0.85vw;
	color: #111111;
	margin: 0.2vw 0.5vw;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.newsPage .f3 .f3Box .item .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin-top: 0.2vw;
}

.newsPage .f3 .f3Box .item2 .text .name {
	margin: 0.2vw 0;
}

.newsPage .f3 .f3Box .item:hover .text .name {
	color: #0071ac;
}

.newsPage .f3 .f3Box:last-child {
	margin-right: 0;
}

.Industrial {
	width: 100%;
}

.Industrial .f1 {
	width: 100%;
	padding: 4vw 12vw;
}

.Industrial .f1 .text .name {
	color: #111111;
	font-size: 1.5vw;
}

.Industrial .f1 .text .des {
	margin-top: 1vw;
	font-size: 0.9vw;
	line-height: 2;
}

.Industrial .f1 .f1Box {
	width: 100%;
	margin-top: 3vw;
}

.Industrial .f1 .f1Box .f1Box_top {
	width: 100%;
	display: flex;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox1 {
	width: 51vw;
	height: 30vw;
	margin-right: 1vw;
	overflow: hidden;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox1 .texts {
	width: 50vw;
	display: flex;
	color: white;
	text-align: center;
	padding-top: 26vw;
	padding-left: 2vw;
	background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 255, 255, 0.3) 100%);
	height: 30vw;
	position: absolute;
	z-index: 1;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox1 .texts .icon {
	width: 3vw;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox1 .texts .name {
	font-size: 1.2vw;
	font-weight: bold;
	line-height: 3.2vw;
	padding-left: 1vw;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox1 .img {
	width: 100%;
	height: 30vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox1:hover .img {
	transform: scale(1.1);
}

.Industrial .f1 .f1Box .f1Box_top .imgBox2 {
	width: 25vw;
	height: 30vw;
	overflow: hidden;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox2 .texts {
	width: 24.5vw;
	display: flex;
	color: white;
	text-align: center;
	padding-top: 26vw;
	padding-left: 2vw;
	background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 255, 255, 0.3) 100%);
	height: 30vw;
	position: absolute;
	z-index: 1;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox2 .texts .icon {
	width: 3vw;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox2 .texts .name {
	font-size: 1.2vw;
	font-weight: bold;
	line-height: 3.2vw;
	padding-left: 1vw;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox2 .img {
	width: 100%;
	height: 30vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.Industrial .f1 .f1Box .f1Box_top .imgBox2:hover .img {
	transform: scale(1.1);
}

.Industrial .f1 .f1Box .f1Box_center {
	width: 100%;
	display: flex;
	margin-top: 1vw;
}

.Industrial .f1 .f1Box .f1Box_center .imgBox {
	width: 25vw;
	height: 15vw;
	margin-right: 1vw;
	overflow: hidden;
}

.Industrial .f1 .f1Box .f1Box_center .imgBox .texts {
	width: 24.5vw;
	display: flex;
	color: white;
	text-align: center;
	padding-top: 11vw;
	padding-left: 2vw;
	background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 255, 255, 0.3) 100%);
	height: 15vw;
	position: absolute;
	z-index: 1;
}

.Industrial .f1 .f1Box .f1Box_center .imgBox .texts .icon {
	width: 3vw;
}

.Industrial .f1 .f1Box .f1Box_center .imgBox .texts .name {
	font-size: 1.2vw;
	font-weight: bold;
	line-height: 3.2vw;
	padding-left: 1vw;
}

.Industrial .f1 .f1Box .f1Box_center .imgBox .img {
	width: 100%;
	height: 15vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.Industrial .f1 .f1Box .f1Box_center .imgBox:hover .img {
	transform: scale(1.1);
}

.Industrial .f1 .f1Box .f1Box_center .imgBox:last-child {
	margin-right: 0;
}

.Industrial .f1 .f1Box .f1Box_bottom {
	width: 100%;
	display: flex;
	margin-top: 1vw;
}

.Industrial .f1 .f1Box .f1Box_bottom .left {
	width: 24.5vw;
}

.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox {
	width: 24.5vw;
	height: 15vw;
	margin-right: 1vw;
	overflow: hidden;
	display: block;
	margin-bottom: 1vw;
}

.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox .texts {
	width: 24.5vw;
	display: flex;
	color: white;
	text-align: center;
	padding-top: 11vw;
	padding-left: 2vw;
	background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 255, 255, 0.3) 100%);
	height: 15vw;
	position: absolute;
	z-index: 1;
}

.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox .texts .icon {
	width: 3vw;
}

.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox .texts .name {
	font-size: 1.2vw;
	font-weight: bold;
	line-height: 3.2vw;
	padding-left: 1vw;
}

.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox .img {
	width: 100%;
	height: 15vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox:hover .img {
	transform: scale(1.1);
}

.Industrial .f1 .f1Box .f1Box_bottom .right {
	width: 50vw;
	height: 31vw;
	margin-left: 1vw;
}

.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox {
	width: 50vw;
	height: 31vw;
	margin-right: 1vw;
	overflow: hidden;
	display: block;
	margin-bottom: 1vw;
}

.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox .texts {
	width: 50vw;
	display: flex;
	color: white;
	text-align: center;
	padding-top: 27vw;
	padding-left: 2vw;
	background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 255, 255, 0.3) 100%);
	height: 31vw;
	position: absolute;
	z-index: 1;
}

.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox .texts .icon {
	width: 3vw;
}

.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox .texts .name {
	font-size: 1.2vw;
	font-weight: bold;
	line-height: 3.2vw;
	padding-left: 1vw;
}

.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox .img {
	width: 100%;
	height: 31vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox:hover .img {
	transform: scale(1.1);
}

.IndustrialDetail {
	width: 100%;
}

.IndustrialDetail .f1 {
	width: 100%;
	padding: 4vw 12vw;
	display: flex;
	justify-content: space-between;
}

.IndustrialDetail .f1 .f1Bg {
	width: 24vw;
	position: absolute;
	left: 0;
	margin-top: -4vw;
}

.IndustrialDetail .f1 .tits {
	color: #111111;
	font-size: 1.5vw;
}

.IndustrialDetail .f1 .tits .name {
	font-weight: bold;
	margin-top: 0.5vw;
}

.IndustrialDetail .f1 .des {
	width: 58vw;
	padding-left: 5vw;
	color: #505050;
	line-height: 2;
	font-size: 0.9vw;
	text-align: justify;
	border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.IndustrialDetail .f2 {
	width: 100%;
	height: auto;
	background: url('../images/img31.jpg') center no-repeat;
	background-size: cover !important;
	padding: 4vw 12vw;
}

.IndustrialDetail .f2 .mySwiper2 {
	width: 100%;
	overflow: hidden;
}

.IndustrialDetail .f2 .mySwiper2 .swiper-slide {
	display: flex;
}

.IndustrialDetail .f2 .mySwiper2 .swiper-slide .imgBox {
	width: 37vw;
	height: 21vw;
	overflow: hidden;
}

.IndustrialDetail .f2 .mySwiper2 .swiper-slide .imgBox .img {
	width: 100%;
	height: 21vw;
	background-size: cover !important;
}

.IndustrialDetail .f2 .mySwiper2 .swiper-slide .text {
	width: 34vw;
	margin-left: 4vw;
	padding-top: 4vw;
}

.IndustrialDetail .f2 .mySwiper2 .swiper-slide .text .name {
	font-size: 1.2vw;
	font-weight: bold;
	color: #000000;
}

.IndustrialDetail .f2 .mySwiper2 .swiper-slide .text .name::before {
	content: '';
	position: absolute;
	width: 0.8vw;
	height: 0.8vw;
	background-color: #3178b3;
	border-radius: 50%;
	margin-left: -1.5vw;
	margin-top: 0.4vw;
}

.IndustrialDetail .f2 .mySwiper2 .swiper-slide .text .des {
	color: #505050;
	font-size: 0.9vw;
	line-height: 1.7;
	margin-top: 1vw;
	text-align: justify;
}

.IndustrialDetail .f2 .mySwiper {
	width: 100%;
	overflow: hidden;
	margin-top: 2vw;
}

.IndustrialDetail .f2 .mySwiper .swiper-slide {
	cursor: pointer;
}

.IndustrialDetail .f2 .mySwiper .swiper-slide .imgBox {
	width: 14vw;
	height: 8vw;
}

.IndustrialDetail .f2 .mySwiper .swiper-slide .imgBox .img {
	width: 100%;
	height: 8vw;
	background-size: cover !important;
}

.IndustrialDetail .f2 .swiper-button-next {
	position: relative;
	left: 102%;
	top: -4vw;
	width: 3vw;
	height: 3vw;
	background-color: #3178b3;
	border-radius: 50%;
	color: white;
	font-size: 1.2vw;
}

.IndustrialDetail .f2 .swiper-button-prev {
	position: relative;
	left: -5vw;
	top: -6vw;
	width: 3vw;
	height: 3vw;
	background-color: #3178b3;
	border-radius: 50%;
	color: white;
	font-size: 1.2vw;
}

.IndustrialDetail .f2 .swiper-button-next:after,
.IndustrialDetail .f2 .swiper-rtl .swiper-button-prev:after {
	content: inherit;
}

.IndustrialDetail .f2 .swiper-button-prev:after,
.IndustrialDetail .f2 .swiper-rtl .swiper-button-next:after {
	content: inherit;
}

.innovation {
	width: 100%;
}

.innovation .f1 {
	width: 100%;
	padding: 4vw 12vw;
}

.innovation .f1 .text .tit {
	font-size: 1.5vw;
}

.innovation .f1 .text .des {
	width: 32vw;
	font-size: 0.9vw;
	line-height: 1.7;
	margin-top: 2vw;
	text-align: justify;
}

.innovation .f1 .text .f4Box {
	display: inline-block;
	margin-top: 2vw;
}

.innovation .f1 .text .f4Box .item {
	display: inline-block;
	padding: 0 1vw;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.innovation .f1 .text .f4Box .item .num {
	display: inline-block;
	font-size: 3vw;
	color: #2571af;
}

.innovation .f1 .text .f4Box .item .num span {
	font-size: 0.9vw;
}

.innovation .f1 .text .f4Box .item .dess {
	font-size: 0.9vw;
}

.innovation .f1 .text .f4Box .item:first-child {
	padding: 0;
}

.innovation .f1 .text .f4Box .item:last-child {
	border: transparent;
}

.innovation .f2 {
	width: 100%;
	height: 12vw;
	background-color: #2571af;
}

.innovation .f2 .f2Swiper {
	width: 40vw;
	overflow: hidden;
	position: absolute;
	margin-top: -20vw;
	right: 7vw;
}

.innovation .f2 .f2Swiper .swiper-slide {
	transform: scale(0.8);
	transition: 0.5s all;
	z-index: 1;
}

.innovation .f2 .f2Swiper .swiper-slide .img {
	width: 100%;
	height: 24vw;
	background-size: cover !important;
}

.innovation .f2 .f2Swiper .swiper-slide .name {
	text-align: center;
	color: white;
	font-size: 0.9vw;
	margin-top: 1vw;
}

.innovation .f2 .f2Swiper .swiper-slide-active,
.innovation .f2 .f2Swiper .swiper-slide-duplicate-active {
	transform: scale(1);
	z-index: 2;
}

.innovation .f2 .swiper-pagination {
	pointer-events: none;
	bottom: -2vw;
	left: 0;
	width: 42%;
	color: white;
	position: relative;
}

.innovation .f2 .swiper-button-next,
.innovation .f2 .swiper-button-prev {
	font-size: 1.5vw;
	color: white;
	position: relative;
}

.innovation .f2 .swiper-button-next {
	top: 38%;
	left: 30vw;
}

.innovation .f2 .swiper-button-prev {
	top: 33%;
	left: 10vw;
}

.innovation .f2 .swiper-button-next:after,
.innovation .f2 .swiper-button-prev:after {
	content: inherit;
}

.innovation .f3 {
	width: 100%;
	padding: 4vw 12vw;
}

.innovation .f3 .titBoxs {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.innovation .f3 .titBoxs .name {
	color: #111111;
	font-size: 1.5vw;
}

.innovation .f3 .titBoxs .more {
	display: block;
	background-color: #3178b3;
	border-radius: 1vw;
	color: white;
	text-align: center;
	width: 8vw;
	height: 2vw;
	line-height: 2vw;
	font-size: 0.8vw;
}

.innovation .f3 .f3Item {
	width: 100%;
	height: 21vw;
	background-color: white;
	box-shadow: 0 5px 10px 0 gainsboro;
	display: flex;
	margin: 3vw 0;
	cursor: pointer;
}

.innovation .f3 .f3Item .imgBox {
	width: 36vw;
	height: 21vw;
	overflow: hidden;
}

.innovation .f3 .f3Item .imgBox .img {
	width: 100%;
	height: 21vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.innovation .f3 .f3Item .text {
	width: 39vw;
	padding: 5vw 3vw;
}

.innovation .f3 .f3Item .text .name {
	color: #111111;
	font-size: 1.2vw;
}

.innovation .f3 .f3Item .text .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin: 1vw 0 0.5vw 0;
}

.innovation .f3 .f3Item .text .des {
	font-size: 0.85vw;
	color: #676767;
	line-height: 1.7;
}

.innovation .f3 .f3Item .text .more {
	margin-top: 3vw;
	font-size: 1.5vw;
}

.innovation .f3 .f3Item:hover .imgBox .img {
	transform: scale(1.1);
}

.innovation .f3 .f3Item:hover .text .name {
	color: #0071ac;
}

.innovation .f3 .f3Boxs {
	display: flex;
	justify-content: space-between;
}

.innovation .f3 .f3Boxs .f3Box {
	width: 48%;
}

.innovation .f3 .f3Boxs .f3Box .titBoxs {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1vw;
}

.innovation .f3 .f3Boxs .f3Box .titBoxs .name {
	color: #111111;
	font-size: 1.5vw;
}

.innovation .f3 .f3Boxs .f3Box .titBoxs .more {
	display: block;
	background-color: #3178b3;
	border-radius: 1vw;
	color: white;
	text-align: center;
	width: 8vw;
	height: 2vw;
	line-height: 2vw;
	font-size: 0.8vw;
}

.innovation .f3 .f3Boxs .f3Box .item {
	padding: 1vw 0;
	display: block;
	border-bottom: 1px solid #eeeeee;
}

.innovation .f3 .f3Boxs .f3Box .item .text {
	width: 100%;
	display: flex;
}

.innovation .f3 .f3Boxs .f3Box .item .text .icon {
	font-size: 1.2vw;
	color: #0071ac;
}

.innovation .f3 .f3Boxs .f3Box .item .text .icon2 {
	font-size: 1.5vw;
	color: #ff1717;
	position: relative;
	margin-top: -0.2vw;
}

.innovation .f3 .f3Boxs .f3Box .item .text .name {
	font-size: 0.85vw;
	color: #111111;
	margin: 0.2vw 0.5vw;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.innovation .f3 .f3Boxs .f3Box .item .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin-top: 0.2vw;
}

.innovation .f3 .f3Boxs .f3Box .item2 .text .name {
	margin: 0.2vw 0;
}

.innovation .f3 .f3Boxs .f3Box .item:hover .text .name {
	color: #0071ac;
}

.innovation .f3 .f3Boxs .f3Box:last-child {
	margin-right: 0;
}

.dang {
	width: 100%;
}

.dang .f1 {
	width: 100%;
	padding: 6vw 12vw;
}

.dang .f1 .titBoxs {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.dang .f1 .titBoxs .name {
	color: #111111;
	font-size: 1.5vw;
}

.dang .f1 .titBoxs .more {
	display: block;
	background-color: #d0010a;
	border-radius: 1vw;
	color: white;
	text-align: center;
	width: 8vw;
	height: 2vw;
	line-height: 2vw;
	font-size: 0.8vw;
}

.dang .f1 .f1Box {
	width: 100%;
	display: flex;
	margin-top: 2vw;
}

.dang .f1 .f1Box .left {
	width: 44vw;
	height: 25vw;
}

.dang .f1 .f1Box .left .f1Swiper {
	width: 100%;
	overflow: hidden;
}

.dang .f1 .f1Box .left .f1Swiper .imgBox {
	width: 100%;
	height: 25vw;
}

.dang .f1 .f1Box .left .f1Swiper .imgBox .img {
	width: 100%;
	height: 25vw;
	background-size: cover !important;
	padding-top: 22vw;
}

.dang .f1 .f1Box .left .f1Swiper .imgBox .img .name {
	width: 100%;
	background: #d0010a;
	padding: 1vw 2vw;
	color: white;
	font-size: 0.9vw;
}

.dang .f1 .f1Box .left .f1Swiper .swiper-pagination {
	left: inherit;
	right: 0;
	width: 10%;
	bottom: 1vw;
}

.dang .f1 .f1Box .left .f1Swiper .swiper-pagination .swiper-pagination-bullet {
	background: white;
}

.dang .f1 .f1Box .right {
	width: 30vw;
	background: #fcfaf4;
	margin-left: 1vw;
}

.dang .f1 .f1Box .right .item {
	padding: 1.65vw 1.5vw;
	display: block;
	border-bottom: 2px solid white;
	border-left: 8px solid transparent;
	transition: 0.3s all;
}

.dang .f1 .f1Box .right .item .text {
	width: 100%;
	display: flex;
}

.dang .f1 .f1Box .right .item .text .icon {
	font-size: 1.2vw;
	color: #0071ac;
}

.dang .f1 .f1Box .right .item .text .icon2 {
	font-size: 1.2vw;
	color: #ff1717;
	position: relative;
}

.dang .f1 .f1Box .right .item .text .name {
	font-size: 0.9vw;
	color: #111111;
	margin: 0.2vw 0.5vw;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.dang .f1 .f1Box .right .item:last-child {
	border-bottom: transparent;
}

.dang .f1 .f1Box .right .item:hover {
	background: #f2edde;
	border-left: 8px solid #d0010a;
}

.dang .f2 {
	width: 100%;
	padding: 4vw 12vw 3vw 12vw;
	background: #fcfaf4;
}

.dang .f2 .titBoxs {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.dang .f2 .titBoxs .name {
	color: #111111;
	font-size: 1.5vw;
}

.dang .f2 .titBoxs .more {
	display: block;
	background-color: #d0010a;
	border-radius: 1vw;
	color: white;
	text-align: center;
	width: 8vw;
	height: 2vw;
	line-height: 2vw;
	font-size: 0.8vw;
}

.dang .f2 .f2Box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 2vw;
}

.dang .f2 .f2Box .item {
	width: 24vw;
	display: block;
	margin-right: 1.6vw;
	margin-bottom: 1.6vw;
}

.dang .f2 .f2Box .item .imgBox {
	width: 24vw;
	height: 14vw;
	overflow: hidden;
}

.dang .f2 .f2Box .item .imgBox .img {
	width: 100%;
	height: 14vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.dang .f2 .f2Box .item .name {
	color: #111111;
	font-size: 1vw;
	padding: 1vw 2vw;
	line-height: 1.4;
}

.dang .f2 .f2Box .item .name::before {
	content: '';
	position: absolute;
	width: 0.6vw;
	height: 0.6vw;
	background-color: #d0010a;
	border-radius: 50%;
	margin-left: -1.5vw;
	margin-top: 0.4vw;
}

.dang .f2 .f2Box .item:nth-child(3n) {
	margin-right: 0;
}

.dang .f2 .f2Box .item:hover .imgBox .img {
	transform: scale(1.1);
}

.dang .f3 {
	width: 100%;
	padding: 6vw 12vw 3vw 12vw;
}

.dang .f3 .titBoxs {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.dang .f3 .titBoxs .name {
	color: #111111;
	font-size: 1.5vw;
}

.dang .f3 .titBoxs .more {
	display: block;
	background-color: #d0010a;
	border-radius: 1vw;
	color: white;
	text-align: center;
	width: 8vw;
	height: 2vw;
	line-height: 2vw;
	font-size: 0.8vw;
}

.dang .f3 .f3Box {
	width: 100%;
	margin-top: 2vw;
}

.dang .f3 .f3Box .item {
	width: 100%;
	height: 14vw;
	display: flex;
	margin-bottom: 1vw;
	box-shadow: 0 5px 10px 0 gainsboro;
}

.dang .f3 .f3Box .item .imgBox {
	width: 24vw;
	height: 14vw;
	overflow: hidden;
}

.dang .f3 .f3Box .item .imgBox .img {
	width: 100%;
	height: 14vw;
	background-size: cover !important;
	transition: 0.5s all;
}

.dang .f3 .f3Box .item .text {
	width: 45vw;
	padding: 3vw;
}

.dang .f3 .f3Box .item .text .name {
	color: #111111;
	font-size: 1.2vw;
}

.dang .f3 .f3Box .item .text .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin: 1vw 0 0.5vw 0;
}

.dang .f3 .f3Box .item .text .des {
	font-size: 0.85vw;
	color: #676767;
	line-height: 1.7;
}

.dang .f3 .f3Box .item .text .more {
	margin-top: 1vw;
	font-size: 1.5vw;
}

.dang .f3 .f3Box .item:hover .imgBox .img {
	transform: scale(1.1);
}

.dang .f3 .f3Box .item:hover .text .name {
	color: #0071ac;
}

.hr {
	width: 100%;
}

.hr .f1 {
	width: 100%;
	background: #FAFAFB;
	padding: 6vw 12vw;
}

.hr .f1 .f1Bg {
	width: 30vw;
	position: absolute;
	left: 0;
	margin-top: -4vw;
}

.hr .f1 .tit {
	color: #111111;
	font-size: 1.5vw;
}

.hr .f1 .f1Swiper {
	width: 100%;
	height: 38vw;
	overflow: hidden;
	margin-top: 3vw;
}

.hr .f1 .f1Swiper .swiper-slide {
	height: 33vw;
	background: white;
	box-shadow: 0 5px 10px 0 gainsboro;
}

.hr .f1 .f1Swiper .swiper-slide .img {
	width: 100%;
	height: 12vw;
	background-size: cover !important;
}

.hr .f1 .f1Swiper .swiper-slide .text {
	width: 100%;
	padding: 2vw;
}

.hr .f1 .f1Swiper .swiper-slide .text .name {
	color: #000000;
	font-size: 1vw;
	font-weight: bold;
}

.hr .f1 .f1Swiper .swiper-slide .text .des {
	font-size: 0.85vw;
	margin: 1vw auto;
}

.hr .f1 .f1Swiper .swiper-slide .text .des .t {
	color: #0071ac;
	font-weight: bold;
}

.hr .f1 .f1Swiper .swiper-slide .text .des .d {
	color: #797979;
	line-height: 1.7;
	margin-bottom: 1vw;
}

.hr .f1 .f1Swiper .swiper-slide .text .more {
	display: block;
	width: 8vw;
	height: 2vw;
	background-color: #3178b3;
	border-radius: 1vw;
	text-align: center;
	line-height: 2vw;
	color: white;
	font-size: 0.85vw;
}

.hr .f1 .f1Swiper .swiper-pagination-progressbar {
	width: 100%;
	left: 0;
	top: inherit;
	bottom: 1vw;
	height: 1px;
	background: #0071ac;
}

.hr .f1 .f1Swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #0071ac !important;
	height: 5px;
	margin-top: -2px;
}

.hr .f2 {
	width: 100%;
	background: #fcfaf4;
	padding: 6vw 12vw;
}

.hr .f2 .tit {
	color: #111111;
	font-size: 1.5vw;
}

.hr .f2 .f2Swiper {
	width: 100%;
	height: 27vw;
	overflow: hidden;
	margin-top: 3vw;
}

.hr .f2 .f2Swiper .swiper-slide {
	height: 25vw;
}

.hr .f2 .f2Swiper .swiper-slide .imgBox {
	width: 100%;
	height: 21vw;
}

.hr .f2 .f2Swiper .swiper-slide .imgBox .img {
	width: 100%;
	height: 21vw;
	background-size: cover !important;
}

.hr .f2 .f2Swiper .swiper-slide .text {
	width: 100%;
	padding: 1vw 1.5vw;
	color: #111111;
	font-size: 1vw;
}

.hr .f2 .f2Swiper .swiper-slide .text::before {
	content: '';
	position: absolute;
	width: 0.6vw;
	height: 0.6vw;
	background-color: #3178b3;
	border-radius: 50%;
	margin-left: -1vw;
	margin-top: 0.4vw;
}

.hr .f2 .f2Swiper .swiper-pagination-progressbar {
	width: 100%;
	left: 0;
	top: inherit;
	bottom: 1vw;
	height: 1px;
	background: #0071ac;
}

.hr .f2 .f2Swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #0071ac !important;
	height: 5px;
	margin-top: -2px;
}

.hr .f3 {
	width: 100%;
	padding: 6vw 12vw;
}

.hr .f3 .titBoxs {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1vw;
}

.hr .f3 .titBoxs .name {
	color: #111111;
	font-size: 1.5vw;
}

.hr .f3 .titBoxs .more {
	display: block;
	background-color: #3178b3;
	border-radius: 1vw;
	color: white;
	text-align: center;
	width: 8vw;
	height: 2vw;
	line-height: 2vw;
	font-size: 0.8vw;
}

.hr .f3 .f3Boxs {
	display: flex;
	justify-content: space-between;
}

.hr .f3 .f3Boxs .f3Box {
	width: 48%;
}

.hr .f3 .f3Boxs .f3Box .titBoxs {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1vw;
}

.hr .f3 .f3Boxs .f3Box .titBoxs .name {
	color: #111111;
	font-size: 1.5vw;
}

.hr .f3 .f3Boxs .f3Box .titBoxs .more {
	display: block;
	background-color: #3178b3;
	border-radius: 1vw;
	color: white;
	text-align: center;
	width: 8vw;
	height: 2vw;
	line-height: 2vw;
	font-size: 0.8vw;
}

.hr .f3 .f3Boxs .f3Box .item {
	padding: 1vw 0;
	display: block;
	border-bottom: 1px solid #eeeeee;
}

.hr .f3 .f3Boxs .f3Box .item .text {
	width: 100%;
	display: flex;
}

.hr .f3 .f3Boxs .f3Box .item .text .icon {
	font-size: 1.2vw;
	color: #0071ac;
}

.hr .f3 .f3Boxs .f3Box .item .text .icon2 {
	font-size: 1.5vw;
	color: #ff1717;
	position: relative;
	margin-top: -0.2vw;
}

.hr .f3 .f3Boxs .f3Box .item .text .name {
	font-size: 0.85vw;
	color: #111111;
	margin: 0.2vw 0.5vw;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.hr .f3 .f3Boxs .f3Box .item .time {
	color: #8b8b8b;
	font-size: 0.8vw;
	margin-top: 0.2vw;
}

.hr .f3 .f3Boxs .f3Box .item2 .text .name {
	margin: 0.2vw 0;
}

.hr .f3 .f3Boxs .f3Box .item:hover .text .name {
	color: #0071ac;
}

.hr .f3 .f3Boxs .f3Box:last-child {
	margin-right: 0;
}

.contactUs {
	width: 100%;
}

.contactUs .f1 {
	width: 100%;
	padding: 4vw 12vw;
	display: flex;
	justify-content: space-between;
}

.contactUs .f1 .f1Bg {
	width: 30vw;
	position: absolute;
	left: 0;
	margin-top: -4vw;
}

.contactUs .f1 .left {
	width: 25vw;
}

.contactUs .f1 .left .texts {
	padding: 2vw 0;
	color: #515151;
}

.contactUs .f1 .left .texts .cn {
	font-size: 1.5vw;
}

.contactUs .f1 .left .texts .en {
	font-size: 1vw;
	margin-top: 0.5vw;
}

.contactUs .f1 .left .itemBox {
	width: 100%;
}

.contactUs .f1 .left .itemBox .item {
	width: 100%;
	display: flex;
	margin-bottom: 1vw;
}

.contactUs .f1 .left .itemBox .item .icon {
	width: 3vw;
	display: inline-block;
	float: left;
	margin-right: 1vw;
}

.contactUs .f1 .left .itemBox .item .text {
	color: #0071ac;
}

.contactUs .f1 .left .itemBox .item .text .t {
	font-size: 0.9vw;
}

.contactUs .f1 .left .itemBox .item .text .d {
	font-size: 1vw;
	margin-top: 0.3vw;
}

.contactUs .f1 .left .qrcodeBox {
	width: 10vw;
	text-align: center;
	font-size: 0.9vw;
}

.contactUs .f1 .left .qrcodeBox .qrcode {
	margin: 0 auto;
}

.contactUs .f1 .right {
	width: 47vw;
	height: 33vw;
	margin-left: 5vw;
	background: #0071ac;
}

.contactUs .f1 .right .map {
	width: 100%;
	height: 33vw;
}

.newsDetail .f1 {
	width: 100%;
	padding: 5vw 12vw;
	display: flex;
}

.newsDetail .f1 .left {
	width: 45vw;
}

.newsDetail .f1 .left .tit {
	font-weight: bold;
	font-size: 1.5vw;
	line-height: 1.7;
}

.newsDetail .f1 .left .infoBox {
	display: flex;
	color: #b8b8b8;
	font-size: 0.85vw;
	margin: 2vw auto;
}

.newsDetail .f1 .left .infoBox .info {
	margin-left: 3vw;
}

.newsDetail .f1 .left .des {
	color: #6c6c6c;
	font-size: 0.85vw;
	line-height: 2;
	text-align: justify;
}

.newsDetail .f1 .left .pageG {
	border-top: 1px solid #cecece;
	margin: 2vw 0;
	padding: 1vw 0;
}

.newsDetail .f1 .left .pageG a {
	font-size: 0.85vw;
	color: #787878;
	margin-bottom: 1vw;
	display: block;
}

.newsDetail .f1 .left .pageG a span {
	color: #404040;
}

.newsDetail .f1 .right {
	width: 26vw;
	margin-left: 4vw;
}

.newsDetail .f1 .right .item {
	width: 100%;
	padding: 1vw 0 2vw 0;
	display: block;
	border-bottom: 1px solid #b8b8b8;
}

.newsDetail .f1 .right .item .time {
	color: #b8b8b8;
	font-size: 0.85vw;
	margin-bottom: 0.5vw;
	transition: 0.5s all ease-in-out;
}

.newsDetail .f1 .right .item .tit {
	font-size: 0.9vw;
	line-height: 1.7;
	color: #232323;
	transition: 0.5s all ease-in-out;
}

.newsDetail .f1 .right .item:last-child {
	border: transparent;
}

.newsDetail .f1 .right .item:hover .time {
	color: #0B61A4;
}

.newsDetail .f1 .right .item:hover .tit {
	color: #0B61A4;
}

.noData {
	display: none;
}

.noData.active {
	display: block;
}

.noList {
	text-align: center;
	font-size: 22px;
	padding: 5vw 0 0 0;
	display: none;
}

.pc {
	display: block;
}

.mobile {
	display: none;
}

@media (max-width: 1660px) {
	.linkBox {
		padding: 1.5vw 8vw;
	}
}

@media (max-width: 1440px) {
    .about .f1 .left {
        width: 34vw;
    }
    .Industrial .f1 .text .name,.about .f1 .right .tit,.about .f2 .textBox .tit,.about .f3 .tit,.about .f4 .tit,.about .f5 .tit,.about .f6 .tit,.newsPage .f1 .titBoxs .name,.newsPage .f2 .titBoxs .name,.newsPage .f3 .f3Box .titBoxs .name,.innovation .f1 .text .tit,.innovation .f3 .titBoxs .name,.dang .f1 .titBoxs .name,.dang .f2 .titBoxs .name,.dang .f3 .titBoxs .name {
       
        font-size: 2vw;
        font-weight: bold;
    }
    .about .f3 img{
        width: 100%;
        margin-top: 3vw;
        margin-left: 0vw;
    }
    .titBox .text .cn{
        font-size: 2vw;
    }
	.index .f1 .f1Search {
		width: 90vw;
	}

	.index .f2 {
		padding: 4vw 5vw;
	}

	.index .f2 .newBox {
		width: 35vw;
	}

	.index .f2 .Information {
		width: 25vw;
	}

	.index .f2 .Information .leftBox .item {
		display: flex;
	}

	.index .f2 .Information .leftBox .item {
		width: 100%;
	}

	.index .f2 .Information .leftBox .item .text .name {
		line-height: 1.4;
	}

	.index .f3 .titBox {
		width: 90vw;
	}

	.index .f4 {
		padding: 4vw 5vw;
	}

	.index .f4 .f4Box {
		width: 32%;
	}

	.index .f5,
	.index .f6 .titBox,
	.index .f6 .f6Box {
		padding: 0px 5vw;
	}

	.index .f6 .f6Bg {
		width: 94vw;
	}

	.index .f5 .f5Right {
		width: 51vw;
	}

	.index .f4 .f4Box:nth-child(2) {
		width: 32%;
		border-left: 1px solid #e0e0e0;
		border-right: 1px solid #e0e0e0;
		padding: 0 2vw;
	}

	.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs {
		width: 31vw;
	}

	.index .f2 .Information .leftBox .item .text {
		width: calc(100% - 10vw);
		padding: 0px;
	}

	.index .f2 .newBox .newBoxSwiper,
	.index .f2 .newBox .newBoxSwiper .swiper-slide .imgBox .img,
	.index .f2 .newBox .newBoxSwiper .swiper-slide .imgBox {
		width: 35vw;
	}

	.index .f2 .Information .leftBox .item .imgBox {
		margin-right: 1vw;
	}

	.contactUs .f1 .left .qrcodeBox {
		font-size: 14px;
	}

	.contactUs .f1 .left {
		width: 38vw;
	}

	.newsPage .f1 {
		padding: 6vw 5vw;
	}

	header nav ul li ul li a {
		font-size: 14px;
	}

	header nav ul {
		font-size: 16px;
	}

	.linkBox {
		padding: 1.5vw 5vw;
		align-items: center;
	}

	.linkBox .link {
		width: 80%;
	}

	.index .f2 .Information .leftBox .item .text .name,
	.index .f4 .f4Box .f4Item .item .text .name,
	.index .f5 .f5Left .f5LeftBox .imgBox .des,
	.about .f2 .textBox .f2Box .itemBox .item {
		font-size: 16px;
	}

	.index .f3 .f3SwiperImg .swiper-slide .imgBox .img .text,
	.index .f4 .f4Box .f4Item .itemImg .name,
	.about .f1 .right .des,
	.about .f2 .textBox .des {
		font-size: 16px;
	}

	.about .f4 .des,
	.about .f4 .f4Box .item .num span,
	.about .f4 .f4Box .item .dess,
	.about .f5 .f5Swiper2 .swiper-slide,
	.about .f5 .f5Swiper .swiper-slide .img .text .name {
		font-size: 16px;
	}

	.about .f5 .f5Swiper .swiper-slide .img .text .des {
		font-size: 16px;
	}

	.about .f1 {
		padding: 7vw 5vw 4vw 5vw;
	}

	.about .f2,
	.about .f3,
	.about .f4 {
		padding: 7vw 5vw;
	}

	.newsPage .f2 {
		padding: 4vw 5vw;
	}

	.Industrial .f1 {
		padding: 4vw 5vw;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox1,
	.Industrial .f1 .f1Box .f1Box_top .imgBox2,
	.Industrial .f1 .f1Box .f1Box_center .imgBox,
	.Industrial .f1 .f1Box .f1Box_center .imgBox,
	.Industrial .f1 .f1Box .f1Box_center .imgBox:last-child {
		position: relative;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox1 .texts,
	.Industrial .f1 .f1Box .f1Box_top .imgBox2 .texts,
	.Industrial .f1 .f1Box .f1Box_center .imgBox .texts {
		width: 100%;
	}

	.newsPage .f2 .f2Box .item {
		width: 32%;
	}

	.newsPage .f2 .f2Box .item .imgBox {
		width: 100%;
	}

	.newsPage .f2 .f2Box .item .text .name,
	.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide .img .text .name {
		font-size: 16px;
	}

	.newsPage .f2 .f2Box .item .text .des,
	.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs .name,
	.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide .img .text .des {
		font-size: 16px;
	}

	.about .f1 .left .des,
	.newsPage .f3 .f3Box .item .text .name,
	.newsPage .f3 .f3Box .item .time {
		font-size: 16px;
	}

	.about .f1 .right {
		width: 52vw;
	}

	.about .f2 .f2Img {
		width: 28vw;
	}

	.about .f4 .des {
		width: 40vw;
	}

	.about .f5 .f5Swiper2 {
		width: 50vw;
	}

	.newsPage .f3,
	.newsPage .f3 {
		padding: 4vw 5vw;
	}

	.newsPage .f1 .f1Box .left .text .name {
		font-size: 16px;
	}

	.newsPage .f3 .f3Box .f3List .item {
		width: 43%;
	}

	.newsDetail .f1 .left .des,
	.newsDetail .f1 .right .item .tit,
	.newsDetail .f1 .right .item .time,
	.newsDetail .f1 .left .pageG a {
		font-size: 14px;
	}

	.newsDetail .f1 .left .des p {
		line-height: inherit !important;
	}

	.newsDetail .f1 {
		padding: 5vw 5vw;
	}

	.Industrial .f1 .f1Box .f1Box_center .imgBox {
		width: 29.3vw;
	}

	.newsDetail .f1 .left {
		width: 54vw;
	}

	.Industrial .f1 .text .des {
		font-size: 16px;
	}

	.IndustrialDetail .f1,
	.innovation .f1,
	.innovation .f3 {
		padding: 4vw 5vw;
	}

	.IndustrialDetail .f1 .des,
	.IndustrialDetail .f2 .mySwiper2 .swiper-slide .text .des,
	.innovation .f1 .text .des,
	.innovation .f1 .text .f4Box .item .dess {
		font-size: 16px;
	}

	.innovation .f3 .f3Item .text {
		width: 54vw;
	}

	.innovation .f3 .f3Item .text .time,
	.innovation .f3 .f3Item .text .des,
	.innovation .f3 .f3Boxs .f3Box .item .text .name,
	.innovation .f3 .f3Boxs .f3Box .item .time {
		font-size: 16px;
	}

	.dang .f1 {
		padding: 6vw 5vw;
	}

	.dang .f1 .f1Box .right {
		width: 40vw;
	}

	.dang .f1 .f1Box .right .item .text .name,
	.dang .f1 .f1Box .left .f1Swiper .imgBox .img .name,
	.dang .f1 .titBoxs .more {
		font-size: 16px;
	}

	.dang .f1 .f1Box .left .f1Swiper .swiper-pagination {
		width: 20%;
	}

	.dang .f2 {
		padding: 4vw 5vw;
	}

	.dang .f2 .titBoxs .more {
		font-size: 14px;
	}

	.dang .f2 .f2Box .item {
		width: 32%;
	}

	.dang .f2 .f2Box .item .imgBox {
		width: 100%;
	}

	.dang .f2 .f2Box .item .name,
	.dang .f3 .titBoxs .more,
	.dang .f3 .f3Box .item .text .time {
		font-size: 16px;
	}

	.dang .f3 {
		padding: 6vw 5vw 3vw 5vw;
	}

	.contactUs .f1 {
		padding: 4vw 5vw;
	}

	.dang .f3 .f3Box .item .text .name {
		font-size: 16px;
	}

	.contactUs .f1 .left .itemBox .item .text .t,
	.contactUs .f1 .left .itemBox .item .text .d,
	.contactUs .f1 .left .qrcodeBox,
	footer .footerHead .textBox .text {
		font-size: 16px;
	}

	footer .navBox .footerNav .level1 a,
	footer .footerInfo {
		font-size: 14px;
	}

	footer .navBox .footerNav .level1 ul li a,
	footer .navBox .qrcodeBox {
		font-size: 12px;
	}

	.index .f1 .f1Search input,
	.index .f1 .f1Search .name {
		font-size: 14px;
	}

	.about .f2 .textBox {
		width: 45vw;
	}

	.dang .f3 .f3Box .item .text {
		width: 66vw;
	}

	.about .f2 .textBox .des {
		width: 42vw;
	}

	.about .f2 .textBox .f2Box {
		width: 45vw;
	}

	.about .f1 .right .des,
	.about .f1 .left .des {
		font-size: 16px;
	}

	.about .f1 .right .des,
	.about .f1 .left .des {
		line-height: 2;
	}

	footer {
		padding: 4vw 5vw 2vw 5vw;
	}

	footer .navBox .qrcodeBox {
		width: 300px;
		justify-content: space-between;
	}

	footer .navBox .qrcodeBox .qrcode {
		margin: 0px;
		width: 32%;
	}

	.Industrial .f1 .f1Box .f1Box_bottom {
		overflow: hidden;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .right {
		width: 64vw;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox,
	.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox .texts {
		width: 100%;
	}

	.footerNav {
		width: calc(100% - 350px);
	}

	.footerNav>ul {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

	.innovation .f1 .text .f4Box .item .dess {
		font-size: 14px;
	}

	.innovation .f2 {
		position: relative;
	}

	.innovation .f2 .swiper-pagination {
		bottom: auto;
	}

	.innovation .f2 .swiper-button-next,
	.innovation .f2 .swiper-button-prev,
	.innovation .f2 .swiper-pagination {
		top: 50%;
		-webkit-transform: translateY(-50%);
		position: absolute;
		margin-top: 0px;
	}

	header nav ul li ul {
		padding: 15px 5px;
	}

	.dang .f1 .f1Box .left {
		width: 50vw;
		height: 27vw;
	}

	.dang .f1 .f1Box .left .f1Swiper .imgBox {
		height: 27vw;
	}

	.dang .f1 .f1Box .left .f1Swiper .imgBox .img .name {
		position: absolute;
		left: 0%;
		bottom: 0%;
	}

	footer .navBox .footerNav>ul>.level1 {
		width: 13%;
		display: block;
	}

	footer .navBox .footerNav .level1 a {
		display: block;
		width: 100%;
	}

	footer .navBox .footerNav .level1:last-child {
		width: 13%;
	}

	footer .navBox .footerNav .level1:nth-child(3) {
		width: 22%;
	}

	footer .footerInfo .imgBox::before {
		width: 40vw;
		left: 5vw;
	}

	footer .footerInfo .imgBox::after {
		width: 40vw;
		right: 5vw;
	}

	footer .footerInfo {
		font-size: 12px;
	}

	footer .footerInfo .imgBox {
		margin-top: -4vw;
	}

	.linkBox .stick {
		font-size: 12px;
		opacity: .6;
	}

	.newsPage .f1 .f1Box .right .item .text .name {
		font-size: 16px;
		-webkit-line-clamp: 2;
	}

	.newsPage .f1 .f1Box .right .item .text .des {
		display: none;
	}

	.newsPage .f1 .f1Box .left {
		width: 41vw;
	}

	.newsPage .f1 .f1Box .left .imgBox {
		width: 41vw;
		height: 25vw;
	}

	.newsPage .f1 .f1Box .left .imgBox .img {
		height: 25vw;
	}

	.newsPage .f1 .f1Box .left:hover .text .name {
		font-size: 16px;
		line-height: 1.4;
	}

	.newsPage .f1 .f1Box .right .item .text .time {
		margin: 0.5vw 0;
	}

	.newsPage .f1 .f1Box .right .item .text {
		width: calc(100% - 15vw);
		margin-left: 2vw;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox1 {
		width: 64vw;
	}

	.innovation .f3 .f3Item .text .name,
	.innovation .f3 .f3Boxs .f3Box .item:hover .text .name {
		font-size: 16px;
	}

	footer .footerHead .textBox .text {
		font-size: 14px;
		line-height: 1.4;
	}

	footer .footerHead .textBox {
		footer .footerHead .textBox
	}
}

@media (max-width: 1366px) {
	.newsPage .f3 .f3Box .f3List .item {
		margin-right: 6vw;
	}
}

@media (max-width: 900px) {
	.pc {
		display: none;
	}

	.mobile {
		display: block;
	}

	.newsDetail {
		margin-top: 50px;
	}

	.newsDetail .f1 {
		padding: 5vw;
		display: block;
	}

	.newsDetail .f1 .left {
		width: 100%;
	}

	.newsDetail .f1 .right {
		width: 100%;
		margin-left: 0;
	}

	.newsDetail .f1 .left .tit {
		font-size: 18px;
	}

	.newsDetail .f1 .left .infoBox {
		font-size: 14px;
		display: block;
	}

	.newsDetail .f1 .left .pageG a {
		font-size: 14px;
	}

	.newsDetail .f1 .right .item .time {
		font-size: 14px;
	}

	.newsDetail .f1 .right .item .time i {
		margin-right: 1vw;
	}

	.newsDetail .f1 .right .item .tit {
		font-size: 16px;
	}

	.index .f1 .f1Swiper .swiper-slide .bannerImg .textBox {
		width: 100%;
	}

	.index .f1 .f1Swiper .swiper-slide .bannerImg .textBox .cn {
		font-size: 32px;
	}

	.index .f1 .f1Swiper .swiper-slide .bannerImg .textBox .cn::before {
		width: 37vw;
		margin-top: 25vw;
	}

	.index .f1 .f1Swiper .swiper-pagination {
		bottom: 15vw;
	}

	.index .f1 .f1Swiper .swiper-pagination .swiper-pagination-bullet {
		width: 5vw;
		height: 5vw;
		margin: 0 1vw;
	}

	.index .f1 .f1Search {
		width: 90%;
		height: 10vw;
		margin-top: -10vw;
		padding: 3vw;
	}

	.index .f1 .f1Search input {
		height: 4vw;
		width: 70%;
		font-size: 14px;
	}

	.index .f1 .f1Search .name {
		font-size: 14px;
	}

	.index .f1 .f1Search::before {
		width: 84vw;
		margin-top: 6.8vw;
	}

	.index .f1 .f1Search .serach {
		font-size: 18px;
	}

	.index .f2 {
		padding: 10vw 5vw;
		display: block;
	}

	.index .f2 .Information {
		width: 100%;
	}

	.titBox .text .cn {
		font-size: 18px;
	}

	.titBox .text .en {
		font-size: 14px;
		padding-left: 5vw;
	}

	.titBox .text .en::before {
		width: 3.5vw;
		margin-top: 2.5vw;
		margin-left: -4.8vw;
	}

	.titBox .more {
		font-size: 32px;
	}

	.index .f2 .Information .leftBox .item {
		width: 100%;
		padding: 3vw 0;
	}

	.index .f2 .Information .leftBox .item .imgBox {
		width: 40%;
		height: 20vw;
	}

	.index .f2 .Information .leftBox .item .imgBox .img {
		width: 100%;
		height: 20vw;
	}

	.index .f2 .Information .leftBox .item .text {
		width: 55%;
		margin-left: 5%;
	}

	.index .f2 .Information .leftBox .item .text .name {
		font-size: 14px;
	}

	.index .f2 .Information .leftBox .item .text .time {
		font-size: 14px;
	}

	.index .f2 .newBox {
		width: 100%;
		margin: 5vw 0;
	}

	.index .f2 .newBox .newBoxSwiper {
		width: 100%;
		height: auto;
	}

	.index .f2 .newBox .newBoxSwiper .swiper-slide .imgBox {
		width: 100%;
		height: 50vw;
	}

	.index .f2 .newBox .newBoxSwiper .swiper-slide .imgBox .img {
		width: 100%;
		height: 50vw;
	}

	.index .f2 .newBox .newBoxSwiper .swiper-slide .titBox {
		padding: 5vw;
	}

	.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs {
		width: 100%;
		padding: 5vw;
	}

	.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs .name {
		font-size: 16px;
	}

	.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs .time {
		font-size: 14px;
		margin: 2vw 0;
	}

	.index .f2 .newBox .newBoxSwiper .swiper-slide .textBoxs .des {
		display: none;
	}

	.index .f2 .newBox .newBoxSwiper .swiper-pagination-bullet {
		width: 2vw;
	}

	.index .f2 .newBox .newBoxSwiper .swiper-pagination-bullet-active {
		width: 5vw;
	}

	.index .f3 .titBox {
		width: 90%;
	}

	.index .f3 .f3Swiper {
		height: 50vw;
	}

	.index .f3 .f3Swiper .swiper-slide .imgBox {
		height: 50vw;
	}

	.index .f3 .f3Swiper .swiper-slide .imgBox .img {
		height: 50vw;
	}

	.index .f3 .f3Swiper .swiper-slide .imgBox .img .text {
		font-size: 18px;
	}

	.index .f3 .f3SwiperImg {
		width: 90%;
		display: none;
	}

	.index .f3 .f3SwiperImg .swiper-slide .imgBox {
		width: 100%;
		height: 12vw;
	}

	.index .f3 .f3SwiperImg .swiper-slide .imgBox .img {
		width: 100%;
		height: 12vw;
	}

	.index .f3 .f3SwiperImg .swiper-slide .imgBox .img .text {
		font-size: 14px;
	}

	.index .f3 .f3Swiper .swiper-button-next,
	.index .f3 .f3Swiper .swiper-button-prev {
		width: 6vw;
		height: 6vw;
	}

	.index .f3 .f3Swiper .swiper-button-next::after,
	.index .f3 .f3Swiper .swiper-button-prev::after {
		font-size: 12px;
	}

	.index .f3 .f3Swiper .swiper-button-next,
	.index .f3 .f3Swiper .swiper-rtl .swiper-button-prev {
		right: 5vw;
		top: 60%;
	}

	.index .f3 .f3Swiper .swiper-button-prev,
	.index .f3 .f3Swiper .swiper-rtl .swiper-button-next {
		left: 5vw;
		top: 60%;
	}

	.index .f4 {
		padding: 10vw 5vw;
		display: block;
	}

	.index .f4 .f4Box {
		width: 100%;
	}

	.index .f4 .f4Box .f4Item {
		margin-top: 5vw;
	}

	.index .f4 .f4Box .f4Item .itemImg {
		padding-bottom: 3vw;
	}

	.index .f4 .f4Box .f4Item .itemImg .imgBox {
		width: 100%;
		height: 50vw;
	}

	.index .f4 .f4Box .f4Item .itemImg .imgBox .img {
		width: 100%;
		height: 50vw;
	}

	.index .f4 .f4Box .f4Item .itemImg .name {
		font-size: 14px;
	}

	.index .f4 .f4Box .f4Item .itemImg .time {
		font-size: 14px;
	}

	.index .f4 .f4Box .f4Item .item {
		padding: 2vw 0;
	}

	.index .f4 .f4Box .f4Item .item .text .icon {
		font-size: 14px;
	}

	.index .f4 .f4Box .f4Item .item .text .name {
		font-size: 14px;
	}

	.index .f4 .f4Box .f4Item .item .time {
		font-size: 14px;
	}

	.index .f4 .f4Box:nth-child(2) {
		width: 100%;
		margin: 5vw 0;
		border: transparent;
	}

	.index .f5 {
		padding: 0 5vw;
		display: block;
	}

	.index .f5 .f5Left {
		width: 100%;
	}

	.index .f5 .f5Left .f5LeftBox {
		margin-top: 3vw;
	}

	.index .f5 .f5Left .f5LeftBox .imgBox {
		width: 100%;
	}

	.index .f5 .f5Left .f5LeftBox .imgBox .img {
		width: 100%;
		height: 50vw;
	}

	.index .f5 .f5Left .f5LeftBox .imgBox .des {
		font-size: 14px;
		margin-top: 3vw;
	}

	.index .f5 .f5Right {
		width: 100%;
		margin: 5vw 0;
	}

	.index .f5 .f5Right .f5RightBox {
		margin-top: 3vw;
	}

	.index .f5 .f5Right .f5RightBox .f5Swiper {
		height: 70vw;
	}

	.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide {
		height: 60vw;
	}

	.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide .img {
		height: 60vw;
	}

	.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide .img .text {
		height: 60vw;
		padding-top: 45vw;
	}

	.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide .img .text .name {
		font-size: 16px;
	}

	.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-slide .img .text .des {
		font-size: 14px;
	}

	.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-button-next,
	.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-button-prev {
		font-size: 22px;
	}

	.index .f5 .f5Right .f5RightBox .f5Swiper .swiper-pagination {
		bottom: 0;
	}

	.index .f6 {
		padding: 0;
	}

	.index .f6 .titBox {
		padding: 0 5vw;
	}

	.index .f6 .f6Box {
		margin-top: 5vw;
		padding: 0 5vw;
		display: block;
	}

	.index .f6 .f6Box .item {
		margin-right: 0;
		margin-bottom: 3vw;
	}

	.index .f6 .f6Bg {
		display: none;
	}

	footer {
		padding: 5vw;
	}

	footer .footerHead {
		display: block;
		padding-bottom: 5vw;
	}

	footer .footerHead .textBox {
		display: block;
	}

	footer .footerHead .textBox .logo {
		width: 200px;
		margin: 0 auto;
	}

	footer .footerHead .textBox .text {
		font-size: 14px;
		border: transparent;
		margin: 5vw auto;
		text-align: center;
		padding: 0;
	}

	footer .footerHead .firends {
		width: 50%;
		height: 8vw;
		margin: 0 auto;
	}

	footer .footerHead .firends select {
		height: 8vw;
		padding-left: 3vw;
	}

	footer .footerHead .firends::before {
		width: 8vw;
		height: 8vw;
		right: 0vw;
	}

	footer .footerHead .firends::after {
		width: 3vw;
		height: 3vw;
		margin-left: -4.7vw;
		margin-top: 2.5vw;
	}

	footer .navBox {
		display: block;
	}

	footer .navBox .footerNav {
		display: none;
	}

	footer .navBox .qrcodeBox {
		width: 100%;
		font-size: 12px;
		margin: 3vw auto;
	}

	footer .navBox .qrcodeBox .qrcode {
		width: 27vw;
		margin: 0 2vw;
	}

	footer .footerInfo {
		display: block;
		padding-top: 0;
		font-size: 12px;
		text-align: center;
	}

	footer .footerInfo .imgBox {
		margin-top: -13vw;
	}

	footer .footerInfo .imgBox::before {
		left: 5vw;
		width: 38vw;
		margin-top: 5vw;
	}

	footer .footerInfo .imgBox::after {
		right: 5vw;
		width: 38vw;
		margin-top: -5.5vw;
	}

	footer .footerInfo .imgBox img {
		width: 8.5vw;
	}

	footer .footerInfo p {
		margin-top: 20vw;
	}

	footer .footerInfo a {
		margin-top: 1vw;
		display: block;
	}

	.banner {
		height: 50vw;
		margin-top: 50px;
	}

	.linkBox {
		display: none;
	}

	.about .f1 {
		padding: 10vw 5vw;
		display: block;
	}

	.about .f1 .left {
		width: 100%;
	}

	.about .f1 .left .f1Img {
		width: 35vw;
	}

	.about .f1 .left .cn {
		font-size: 18px;
	}

	.about .f1 .left .en {
		font-size: 14px;
	}

	.about .f1 .left .des {
		font-size: 14px;
	}

	.about .f1 .right {
		width: 100%;
		margin: 5vw 0;
	}

	.about .f1 .right .tit {
		font-size: 16px;
	}

	.about .f1 .right .des {
		font-size: 14px;
	}

	.about .f2 {
		padding: 10vw 5vw;
		display: block;
	}

	.about .f2 .textBox {
		width: 100%;
	}

	.about .f2 .textBox .tit {
		font-size: 18px;
	}

	.about .f2 .textBox .des {
		width: 100%;
		font-size: 14px;
		margin-top: 3vw;
	}

	.about .f2 .textBox .f2Box {
		width: 100%;
	}

	.about .f2 .textBox .f2Box .itemBox {
		width: 47%;
	}

	.about .f2 .textBox .f2Box .itemBox .item {
		font-size: 14px;
		padding-left: 3vw;
		margin-bottom: 3vw;
	}

	.about .f2 .textBox .f2Box .itemBox .item::before {
		width: 5.5vw;
		height: 5.5vw;
		margin-left: -5.5vw;
	}

	.about .f2 .f2Img {
		width: 80vw;
		margin: 5vw auto 0 auto;
	}

	.about .f3 {
		padding: 10vw 5vw;
	}

	.about .f3 .tit {
		font-size: 18px;
	}

	.about .f4 {
		padding: 10vw 5vw;
	}

	.about .f4 .tit {
		font-size: 18px;
	}

	.about .f4 .des {
		width: 100%;
		font-size: 14px;
		margin-top: 5vw;
	}

	.about .f4 .f4Box {
		margin-top: 5vw;
	}

	.about .f4 .f4Box .item:first-child {
		padding: 0 6.5vw 0 0;
	}

	.about .f4 .f4Box .item {
		padding: 0 7vw;
	}

	.about .f4 .f4Box .item .num {
		font-size: 36px;
	}

	.about .f4 .f4Box .item .num span {
		font-size: 14px;
	}

	.about .f4 .f4Box .item .dess {
		font-size: 14px;
	}

	.about .f5 {
		padding: 10vw 5vw;
	}

	.about .f5 .tit {
		font-size: 18px;
	}

	.about .f5 .f5Swiper2 {
		width: 90%;
		margin-top: 5vw;
	}

	.about .f5 .f5Swiper2 .swiper-slide {
		font-size: 14px;
		border-radius: 5vw;
		padding: 0.8vw;
	}

	.about .f5 .f5Swiper {
		margin-top: 5vw;
	}

	.about .f5 .f5Swiper .swiper-slide {
		height: 60vw;
	}

	.about .f5 .f5Swiper .swiper-slide .img {
		height: 60vw;
	}

	.about .f5 .f5Swiper .swiper-slide .img .text {
		height: 60vw;
		padding-top: 45vw;
	}

	.about .f5 .f5Swiper .swiper-slide .img .text .name {
		font-size: 16px;
	}

	.about .f5 .f5Swiper .swiper-slide .img .text .des {
		font-size: 14px;
	}

	.about .f6 {
		padding: 10vw 5vw;
	}

	.about .f6 .tit {
		font-size: 18px;
	}

	.about .f6 .f6Box {
		display: block;
		padding: 0;
	}

	.about .f6 .f6Box .item {
		margin-right: 0;
		margin-bottom: 3vw;
	}

	.about .f6 .f6Bg,
	.about .f6 .f6Box2 {
		display: none;
	}

	.newsPage .f1 {
		padding: 10vw 5vw;
	}

	.newsPage .f1 .titBoxs .name {
		font-size: 18px;
	}

	.newsPage .f1 .titBoxs .more {
		width: auto;
		height: auto;
		font-size: 14px;
		line-height: inherit;
		padding: 0.5vw 2vw;
	}

	.newsPage .f1 .f1Box {
		margin-top: 5vw;
		display: block;
	}

	.newsPage .f1 .f1Box .left {
		width: 100%;
		height: auto;
	}

	.newsPage .f1 .f1Box .left .imgBox {
		width: 100%;
		height: 50vw;
	}

	.newsPage .f1 .f1Box .left .imgBox .img {
		height: 50vw;
	}

	.newsPage .f1 .f1Box .left .text {
		padding: 5vw;
	}

	.newsPage .f1 .f1Box .left .text .name {
		font-size: 16px;
	}

	.newsPage .f1 .f1Box .left .text .time {
		font-size: 14px;
		margin: 3vw 0;
	}

	.newsPage .f1 .f1Box .left .text .des {
		font-size: 14px;
	}

	.newsPage .f1 .f1Box .right {
		width: 100%;
		margin: 5vw 0;
	}

	.newsPage .f1 .f1Box .right .item {
		width: 100%;
	}

	.newsPage .f1 .f1Box .right .item .imgBox {
		width: 40vw;
		height: 20vw;
	}

	.newsPage .f1 .f1Box .right .item .text {
		width: 57vw;
		margin-left: 3vw;
	}

	.newsPage .f1 .f1Box .right .item .imgBox .img {
		width: 100%;
		height: 20vw;
	}

	.newsPage .f1 .f1Box .right .item .text .name {
		font-size: 14px;
		margin-top: 3vw;
	}

	.newsPage .f1 .f1Box .right .item .text .time {
		font-size: 14px;
	}

	.newsPage .f1 .f1Box .right .item .text .des {
		display: none;
	}

	.newsPage .f2 {
		padding: 10vw 5vw;
	}

	.newsPage .f2 .titBoxs .name {
		font-size: 18px;
	}

	.newsPage .f2 .titBoxs .more {
		width: auto;
		height: auto;
		font-size: 14px;
		line-height: inherit;
		padding: 0.5vw 2vw;
	}

	.newsPage .f2 .f2Box {
		display: block;
		margin-top: 5vw;
	}

	.newsPage .f2 .f2Box .item {
		width: 100%;
		margin-right: 0;
		margin-bottom: 3vw;
	}

	.newsPage .f2 .f2Box .item .imgBox {
		width: 100%;
		height: 50vw;
	}

	.newsPage .f2 .f2Box .item .imgBox .img {
		height: 50vw;
	}

	.newsPage .f2 .f2Box .item .text {
		padding: 5vw;
	}

	.newsPage .f2 .f2Box .item .text .name {
		font-size: 14px;
	}

	.newsPage .f2 .f2Box .item .text .time {
		font-size: 14px;
	}

	.newsPage .f2 .f2Box .item .text .des {
		display: none;
	}

	.newsPage .f3 {
		padding: 10vw 5vw;
		display: block;
	}

	.newsPage .f3 .f3Box {
		width: 100%;
		margin-bottom: 5vw;
	}

	.newsPage .f3 .f3Box .titBoxs .name {
		font-size: 18px;
	}

	.newsPage .f3 .f3Box .titBoxs .more {
		width: auto;
		height: auto;
		font-size: 14px;
		line-height: inherit;
		padding: 0.5vw 2vw;
	}

	.newsPage .f3 .f3Box .item {
		padding: 2vw 0;
	}

	.newsPage .f3 .f3Box .item:nth-child(2) {
		margin-top: 3vw;
	}

	.newsPage .f3 .f3Box .item .text .icon2 {
		font-size: 22px;
		margin-top: -1.2vw;
	}

	.newsPage .f3 .f3Box .item .text .name {
		font-size: 14px;
	}

	.newsPage .f3 .f3Box .item .time {
		font-size: 14px;
	}

	.Industrial .f1 {
		padding: 10vw 5vw;
	}

	.Industrial .f1 .text .name {
		font-size: 18px;
	}

	.Industrial .f1 .text .des {
		font-size: 14px;
		line-height: 1.7;
		margin-top: 3vw;
	}

	.Industrial .f1 .f1Box {
		margin-top: 5vw;
	}

	.Industrial .f1 .f1Box .f1Box_top {
		display: block;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox1 {
		width: 100%;
		height: 50vw;
		margin-right: 0;
		margin-bottom: 3vw;
		display: block;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox1 .img {
		height: 50vw;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox1 .texts {
		width: 100%;
		height: 50vw;
		padding-top: 35vw;
		padding-left: 5vw;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox1 .texts .icon {
		width: 10vw;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox1 .texts .name {
		font-size: 16px;
		line-height: 11.5vw;
		padding-left: 2vw;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox2 {
		width: 100%;
		height: 50vw;
		display: block;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox2 .img {
		height: 50vw;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox2 .texts {
		width: 100%;
		height: 50vw;
		padding-top: 35vw;
		padding-left: 5vw;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox2 .texts .icon {
		width: 10vw;
	}

	.Industrial .f1 .f1Box .f1Box_top .imgBox2 .texts .name {
		font-size: 16px;
		line-height: 11.5vw;
		padding-left: 2vw;
	}

	.Industrial .f1 .f1Box .f1Box_center {
		margin-top: 3vw;
		display: block;
	}

	.Industrial .f1 .f1Box .f1Box_center .imgBox {
		width: 100%;
		height: 50vw;
		margin-right: 0;
		margin-bottom: 3vw;
		display: block;
	}

	.Industrial .f1 .f1Box .f1Box_center .imgBox .img {
		height: 50vw;
	}

	.Industrial .f1 .f1Box .f1Box_center .imgBox .texts {
		width: 100%;
		height: 50vw;
		padding-top: 35vw;
		padding-left: 5vw;
	}

	.Industrial .f1 .f1Box .f1Box_center .imgBox .texts .icon {
		width: 10vw;
	}

	.Industrial .f1 .f1Box .f1Box_center .imgBox .texts .name {
		font-size: 16px;
		line-height: 11.5vw;
		padding-left: 2vw;
	}

	.Industrial .f1 .f1Box .f1Box_bottom {
		margin-top: 0;
		display: block;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .left {
		width: 100%;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox {
		width: 100%;
		height: 50vw;
		margin-right: 0;
		margin-bottom: 3vw;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox .img {
		height: 50vw;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox .texts {
		width: 100%;
		height: 50vw;
		padding-top: 35vw;
		padding-left: 5vw;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox .texts .icon {
		width: 10vw;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .left .imgBox .texts .name {
		font-size: 16px;
		line-height: 11.5vw;
		padding-left: 2vw;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .right {
		width: 100%;
		height: 50vw;
		margin-left: 0;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox {
		width: 100%;
		height: 50vw;
		margin-right: 0;
		margin-bottom: 0;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox .img {
		height: 50vw;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox .texts {
		width: 100%;
		height: 50vw;
		padding-top: 35vw;
		padding-left: 5vw;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox .texts .icon {
		width: 10vw;
	}

	.Industrial .f1 .f1Box .f1Box_bottom .right .imgBox .texts .name {
		font-size: 16px;
		line-height: 11.5vw;
		padding-left: 2vw;
	}

	.IndustrialDetail .f1 {
		padding: 10vw 5vw;
		display: block;
	}

	.IndustrialDetail .f1 .tits {
		font-size: 18px;
	}

	.IndustrialDetail .f1 .des {
		width: 100%;
		padding-left: 0;
		margin-top: 3vw;
		font-size: 14px;
		line-height: 1.7;
		border: transparent;
	}

	.IndustrialDetail .f2 {
		padding: 10vw 5vw;
	}

	.IndustrialDetail .f2 .mySwiper2 .swiper-slide {
		display: block;
	}

	.IndustrialDetail .f2 .mySwiper2 .swiper-slide .imgBox {
		width: 100%;
		height: 50vw;
	}

	.IndustrialDetail .f2 .mySwiper2 .swiper-slide .imgBox .img {
		height: 50vw;
	}

	.IndustrialDetail .f2 .mySwiper2 .swiper-slide .text {
		width: 100%;
		margin: 3vw 0;
		padding: 0;
	}

	.IndustrialDetail .f2 .mySwiper2 .swiper-slide .text .name {
		font-size: 16px;
		padding-left: 5vw;
	}

	.IndustrialDetail .f2 .mySwiper2 .swiper-slide .text .name::before {
		width: 2vw;
		height: 2vw;
		margin-left: -3.5vw;
		margin-top: 2vw;
	}

	.IndustrialDetail .f2 .mySwiper2 .swiper-slide .text .des {
		font-size: 14px;
	}

	.IndustrialDetail .f2 .mySwiper {
		width: 90%;
		margin-top: 3vw;
	}

	.IndustrialDetail .f2 .mySwiper .swiper-slide .imgBox {
		width: 100%;
		height: 18vw;
	}

	.IndustrialDetail .f2 .mySwiper .swiper-slide .imgBox .img {
		height: 18vw;
	}

	.IndustrialDetail .f2 .swiper-button-next {
		width: 8vw;
		height: 8vw;
		left: 96%;
		top: -7vw;
	}

	.IndustrialDetail .f2 .swiper-button-prev {
		width: 8vw;
		height: 8vw;
		top: -9vw;
		left: -4.5vw;
	}

	.innovation .f1 {
		padding: 10vw 5vw;
	}

	.innovation .f1 .text .tit {
		font-size: 18px;
	}

	.innovation .f1 .text .des {
		width: 100%;
		font-size: 14px;
		margin-top: 3vw;
	}

	.innovation .f1 .text .f4Box {
		margin-top: 3vw;
	}

	.innovation .f1 .text .f4Box .item:first-child {
		padding: 0 5vw 0 0;
	}

	.innovation .f1 .text .f4Box .item {
		width: 100%;
		padding: 0;
	}

	.innovation .f1 .text .f4Box .item .num {
		font-size: 36px;
	}

	.innovation .f1 .text .f4Box .item .num span {
		font-size: 14px;
	}

	.innovation .f1 .text .f4Box .item .dess {
		font-size: 14px;
	}

	.innovation .f3 .titBoxs .name {
		font-size: 18px;
	}

	.innovation .f3 .titBoxs .more {
		width: auto;
		height: auto;
		font-size: 14px;
		line-height: inherit;
		padding: 0.5vw 2vw;
	}

	.innovation .f2 {
		height: auto;
		display: none;
	}

	.innovation .f2 .f2Swiper {
		margin-top: 0;
		position: relative;
	}

	.innovation .f3 {
		padding: 0 5vw 10vw 5vw;
	}

	.innovation .f3 .tit {
		font-size: 18px;
	}

	.innovation .f3 .f3Item {
		display: block;
		height: auto;
	}

	.innovation .f3 .f3Item .imgBox {
		width: 100%;
		height: 50vw;
	}

	.innovation .f3 .f3Item .imgBox .img {
		height: 50vw;
	}

	.innovation .f3 .f3Item .text {
		width: 100%;
		padding: 5vw;
	}

	.innovation .f3 .f3Item .text .name {
		font-size: 16px;
	}

	.innovation .f3 .f3Item .text .time {
		font-size: 14px;
		margin: 3vw 0;
	}

	.innovation .f3 .f3Item .text .des {
		font-size: 14px;
	}

	.innovation .f3 .f3Item .text .more {
		display: none;
	}

	.innovation .f3 .f3Boxs {
		display: block;
	}

	.innovation .f3 .f3Boxs .f3Box {
		width: 100%;
		margin-top: 5vw;
	}

	.innovation .f3 .f3Boxs .f3Box .item {
		padding: 2vw 0;
	}

	.innovation .f3 .f3Boxs .f3Box .item .text .icon2 {
		font-size: 22px;
		margin-top: -1.2vw;
	}

	.innovation .f3 .f3Boxs .f3Box .item .text .name {
		font-size: 14px;
	}

	.innovation .f3 .f3Boxs .f3Box .item .time {
		font-size: 14px;
	}

	.dang .f1 {
		padding: 10vw 5vw;
	}

	.dang .f1 .titBoxs .name {
		font-size: 18px;
	}

	.dang .f1 .titBoxs .more {
		width: auto;
		height: auto;
		font-size: 14px;
		line-height: inherit;
		padding: 0.5vw 2vw;
	}

	.dang .f1 .f1Box {
		margin-top: 3vw;
		display: block;
	}

	.dang .f1 .f1Box .left {
		width: 100%;
		height: auto;
	}

	.dang .f1 .f1Box .left .f1Swiper .imgBox {
		height: 50vw;
	}

	.dang .f1 .f1Box .left .f1Swiper .imgBox .img {
		height: 50vw;
		padding-top: 34vw;
	}

	.dang .f1 .f1Box .left .f1Swiper .imgBox .img .name {
		padding: 3vw;
		font-size: 14px;
	}

	.dang .f1 .f1Box .right {
		width: 100%;
		margin: 3vw 0;
	}

	.dang .f1 .f1Box .right .item {
		padding: 3vw;
	}

	.dang .f1 .f1Box .right .item .text .icon2 {
		font-size: 22px;
		margin-top: -1.2vw;
	}

	.dang .f1 .f1Box .right .item .text .name {
		font-size: 14px;
	}

	.dang .f2 {
		padding: 10vw 5vw;
	}

	.dang .f2 .titBoxs .name {
		font-size: 18px;
	}

	.dang .f2 .titBoxs .more {
		width: auto;
		height: auto;
		font-size: 14px;
		line-height: inherit;
		padding: 0.5vw 2vw;
	}

	.dang .f2 .f2Box {
		margin-top: 3vw;
	}

	.dang .f2 .f2Box .item {
		width: 100%;
		margin-right: 0;
		margin-bottom: 3vw;
	}

	.dang .f2 .f2Box .item .imgBox {
		width: 100%;
		height: 50vw;
	}

	.dang .f2 .f2Box .item .imgBox .img {
		height: 50vw;
	}

	.dang .f2 .f2Box .item .name {
		font-size: 14px;
		padding: 3vw 5vw;
	}

	.dang .f2 .f2Box .item .name::before {
		width: 2vw;
		height: 2vw;
		margin-top: 1.5vw;
		margin-left: -3vw;
	}

	.dang .f3 {
		padding: 10vw 5vw;
	}

	.dang .f3 .titBoxs .name {
		font-size: 18px;
	}

	.dang .f3 .titBoxs .more {
		width: auto;
		height: auto;
		font-size: 14px;
		line-height: inherit;
		padding: 0.5vw 2vw;
	}

	.dang .f3 .f3Box {
		margin-top: 3vw;
	}

	.dang .f3 .f3Box .item {
		height: auto;
	}

	.dang .f3 .f3Box .item .imgBox {
		width: 40vw;
		height: auto;
	}

	.dang .f3 .f3Box .item .imgBox .img {
		height: 28vw;
	}

	.dang .f3 .f3Box .item .text {
		width: 50vw;
	}

	.dang .f3 .f3Box .item .text .name {
		font-size: 14px;
	}

	.dang .f3 .f3Box .item .text .time {
		font-size: 14px;
	}

	.dang .f3 .f3Box .item .text .des {
		display: none;
	}

	.dang .f3 .f3Box .item .text .more {
		font-size: 22px;
		margin-top: 2vw;
	}

	.hr .f1 {
		padding: 10vw 5vw;
	}

	.hr .f1 .tit {
		font-size: 18px;
	}

	.hr .f1 .f1Swiper {
		height: 130vw;
	}

	.hr .f1 .f1Swiper .swiper-slide {
		height: 125vw;
	}

	.hr .f1 .f1Swiper .swiper-slide .img {
		height: 45vw;
	}

	.hr .f1 .f1Swiper .swiper-slide .text {
		padding: 5vw;
	}

	.hr .f1 .f1Swiper .swiper-slide .text .name {
		font-size: 16px;
	}

	.hr .f1 .f1Swiper .swiper-slide .text .des {
		font-size: 14px;
		margin: 3vw auto;
	}

	.hr .f1 .f1Swiper .swiper-slide .text .more {
		width: auto;
		height: auto;
		line-height: inherit;
		padding: 2vw 0;
		font-size: 14px;
	}

	.hr .f2 {
		padding: 10vw 5vw;
	}

	.hr .f2 .tit {
		font-size: 18px;
	}

	.hr .f2 .f2Swiper {
		height: 70vw;
	}

	.hr .f2 .f2Swiper .swiper-slide {
		height: auto;
	}

	.hr .f2 .f2Swiper .swiper-slide .imgBox {
		height: 50vw;
	}

	.hr .f2 .f2Swiper .swiper-slide .imgBox .img {
		height: 50vw;
	}

	.hr .f2 .f2Swiper .swiper-slide .text {
		padding: 5vw;
		font-size: 14px;
	}

	.hr .f2 .f2Swiper .swiper-slide .text::before {
		width: 3vw;
		height: 3vw;
		margin-top: 1vw;
		margin-left: -4vw;
	}

	.hr .f3 {
		padding: 10vw 5vw;
	}

	.hr .f3 .titBoxs .name {
		font-size: 18px;
	}

	.hr .f3 .titBoxs .more {
		width: auto;
		height: auto;
		font-size: 14px;
		line-height: inherit;
		padding: 0.5vw 2vw;
	}

	.hr .f3 .f3Boxs {
		display: block;
		margin-top: 3vw;
	}

	.hr .f3 .f3Boxs .f3Box {
		width: 100%;
	}

	.hr .f3 .f3Boxs .f3Box .item {
		padding: 2vw 0;
	}

	.hr .f3 .f3Boxs .f3Box .item .text .icon2 {
		font-size: 22px;
		margin-top: -1.2vw;
	}

	.hr .f3 .f3Boxs .f3Box .item .text .name {
		font-size: 14px;
	}

	.hr .f3 .f3Boxs .f3Box .item .time {
		font-size: 14px;
	}

	.contactUs .f1 {
		padding: 10vw 5vw;
		display: block;
	}

	.contactUs .f1 .left {
		width: 100%;
	}

	.contactUs .f1 .left .texts .cn {
		font-size: 18px;
	}

	.contactUs .f1 .left .texts .en {
		font-size: 16px;
	}

	.contactUs .f1 .left .itemBox {
		margin-top: 3vw;
	}

	.contactUs .f1 .left .itemBox .item {
		margin-bottom: 3vw;
	}

	.contactUs .f1 .left .itemBox .item .icon {
		width: 8vw;
		margin-right: 2vw;
	}

	.contactUs .f1 .left .itemBox .item .text .t {
		font-size: 14px;
	}

	.contactUs .f1 .left .itemBox .item .text .d {
		font-size: 14px;
	}

	.contactUs .f1 .left .qrcodeBox {
		display: none;
	}

	.contactUs .f1 .right {
		width: 100%;
		height: 50vw;
		margin-left: 0;
		margin-top: 3vw;
	}

	.contactUs .f1 .right .map {
		height: 50vw;
	}

	.sp_header {

		height: 50px;

		overflow: hidden;

		background: #fff;

		position: fixed;

		z-index: 999;

		width: 100%;

		top: 0
	}

	.sp_logo {
		padding: 9px;
		float: left;
	}

	.sp_logo img {

		margin: auto;

		width: 200px;

		transition: .35s all ease-in-out;
	}

	.sp_nav {
		width: 50px;
		height: 50px;
		float: right;
		position: relative;
		cursor: pointer;
		margin: 0 2vw;
	}

	.sp_nav span {

		display: block;

		background: #0a6aa1;

		width: 30px;

		height: 2px;

		position: absolute;

		left: 10px;

		transition: all ease .35s
	}

	.sp_nav span:nth-of-type(1) {

		top: 15px;

	}

	.sp_nav span:nth-of-type(2) {

		top: 25px
	}

	.sp_nav span:nth-of-type(3) {

		top: 35px
	}

	.sp_nav_se span:nth-of-type(1) {

		top: 25px;

		transform: rotate(45deg)
	}

	.sp_nav_se span:nth-of-type(2) {

		width: 0
	}

	.sp_nav_se span:nth-of-type(3) {

		top: 25px;

		transform: rotate(-45deg)
	}

	.nav_sp_logo {
		width: 40px !important;
		position: fixed;
		z-index: 999;
	}

	.sp_flex {
		display: flex;
	}

	.sp_black {
		width: 50px;
		height: 100%;
		position: fixed;
		background: black;
		right: -100%;
		top: 0;
		transition: top ease .35s
	}

	.sjj_nav {
		position: fixed;
		z-index: 999;
		background: white;
		width: 85%;
		height: 100%;
		font-size: 14px;
		line-height: 40px;
		top: 0;
		right: -100%;
		padding-top: 15vw;
		overflow: auto;
		overflow-x: hidden;
		transition: right ease .35s
	}

	.sp_flex .mengBan {
		width: 15%;
		height: 100%;
		background: rgba(0, 0, 0, .5);
		position: fixed;
		z-index: 999;
		top: 0;
		right: -100%;
		transition: right ease .35s
	}

	.nav_show2 {

		right: 85% !important;

	}

	.nav_show {

		right: 0;

	}

	.sp_bottom {
		width: 100%;
		margin: 8vw auto;
		display: inline-block;
		text-align: center;
	}

	.sp_bottom .sp_serach {
		width: 31vw;
		height: 12vw;
		background-color: #ffffff;
		border-radius: 30px;
		border: 1px solid #777777;
		display: inline-block;
		text-align: center;
		font-size: 14px;
		margin-right: 5vw;
	}

	.sp_bottom .sp_serach i {
		color: black;
		font-size: 16px;
		margin-right: 2vw;
	}

	.sp_bottom .sp_lag {
		width: 31vw;
		height: 12vw;
		display: inline-block;
		background-color: #ffffff;
		border-radius: 30px;
		border: 1px solid #777777;
		text-align: center;
	}

	.sp_bottom .sp_lag i {
		color: black;
		font-size: 16px;
		margin-right: 2vw;
	}

	.sjj_nav>ul>li:first-child {

		overflow: hidden;

		border-top: 0
	}

	.sjj_nav>ul>li:first-child>a {

		/*float: left;*/

		/*width: calc(100% - 70px)*/

	}

	.sjj_nav>ul>li:first-child .language {

		float: right;

		width: 70px;

		overflow: hidden;

		line-height: 30px;

		margin-top: 5px
	}

	.sjj_nav>ul>li:first-child .language a {

		width: 35px;

		float: left;

		border-left: 1px #ddd solid;

		text-align: center;

		color: #999
	}

	.sjj_nav ul li i {

		position: absolute;

		top: 5px;

		right: 0;

		height: 30px;

		padding: 0 7px
	}

	.sjj_nav ul li i svg {

		transform: rotate(-90deg);

		transition: all ease .35s
	}

	.sjj_nav ul li .sjj_nav_i_se svg {

		transform: rotate(0)
	}

	.sjj_nav ul li {

		border-top: 1px #ddd solid;

		position: relative;

		line-height: 55px;

		font-size: 14px
	}

	.sjj_nav ul li.active {
		background: #f3f3f3;
	}

	.sjj_nav>ul>li:last-child {

		border-bottom: 1px #ddd solid
	}

	.sjj_nav ul li ul {
		background: #f3f3f3;
		display: none;
		border-top: 1px #ddd solid;
		padding: 10px 0;
	}

	.sjj_nav ul li a {

		color: rgba(0, 0, 0, .8);

		width: 80%;

		display: block;

		font-size: 16px;

		font-weight: 700;

		padding-left: 25px;

	}

	.sjj_nav ul li ul li {
		border: transparent;
		line-height: 30px;
	}

	.sjj_nav ul li ul li a {

		color: rgba(0, 0, 0, .5);

		display: block;

		text-align: left;

		font-size: 14px;
		padding-left: 45px;

	}

	.sjj_nav ul li i svg {

		width: 20px;

		height: 20px;

		fill: #063c7e;

	}

	.sjj_nav ul li .sjj_nav_i_se svg {

		fill: #53b170;

	}

	.sjj_nav ul li ul li>ul {

		margin-left: 10px
	}

	.sjj_nav .iconBox {
		width: 100%;
		display: inline-block;
		text-align: center;
		margin-top: 15vw;
	}

	.sjj_nav .iconBox .icon {
		width: 50px;
		margin: 0 3vw;
		display: inline-block;
	}

	.sp_flex .sjj_nav .close {
		width: 25px;
		position: absolute;
		right: 5vw;
		top: 5vw;
	}

	.sp_flex .sjj_nav .bgImg {
		position: absolute;
		width: 70vw;
		top: 60vw;
		z-index: -1;
		right: 0;
	}

	header {
		padding: 0;
		left: 0;
	}
}