@charset "utf-8";

/* common */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	transition: all .4s ease;
}

body {
	margin: 0 auto;
	font-family: OpenSans-Regular, Arial, sans-serif;
	font-size: 16px;
	height: 100%;
	background-color: #fff;
	overflow: hidden;
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

ul {
	list-style: none;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-size: 62.5%;
	background-color: #CCC;
}


.image {
	display: block;
}

.image img {
	display: block;
}



a img {
	display: block;
}

img {
	border: none;
	max-width: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
}

a {
	text-decoration: none;
	color: #333;
	outline: none;
}




a:hover img {
	transform: scale(1.1, 1.1)
}

input,
textarea,
select {
	font-family: OpenSans-Regular, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	color: #333333;
	border: none;
	outline: none;
}

textarea {
	resize: none;
}

@media screen and (max-width:1333px) {

	input,
	textarea,
	select {
		font-size: 16px !important;
		font-size: 1.6rem !important;
	}

	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
		font-size: 16px !important;
		font-size: 1.6rem !important;
	}

	input:-moz-placeholder,
	textarea:-moz-placeholder {
		font-size: 16px !important;
		font-size: 1.6rem !important;
	}

	input::-moz-placeholder,
	textarea::-moz-placeholder {
		font-size: 16px !important;
		font-size: 1.6rem !important;
	}

	input:-ms-input-placeholder,
	textarea:-ms-input-placeholder {
		font-size: 16px !important;
		font-size: 1.6rem !important;
	}
}

@media screen and (max-width:999px) {

	input,
	textarea,
	select {
		font-size: 14px !important;
		font-size: 1.4rem !important;
	}

	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
		font-size: 14px !important;
		font-size: 1.4rem !important;
	}

	input:-moz-placeholder,
	textarea:-moz-placeholder {
		font-size: 14px !important;
		font-size: 1.4rem !important;
	}

	input::-moz-placeholder,
	textarea::-moz-placeholder {
		font-size: 14px !important;
		font-size: 1.4rem !important;
	}

	input:-ms-input-placeholder,
	textarea:-ms-input-placeholder {
		font-size: 14px !important;
		font-size: 1.4rem !important;
	}
}


.safeRange {
	max-width: 1400px;
	width: calc(100% - 160px);
	margin: 0 auto;
}

@media screen and (max-width:768px) {
	.safeRange {
		width: calc(100% - 50px);
	}
}

@media screen and (max-width:538px) {
	.safeRange {
		width: calc(100% - 30px);
	}
}



@media screen and (max-width:1560px) {
	.standardRange {
		padding: 80px 0 80px 0 !important;
	}

	.innerRange {
		padding: 50px 0 80px 0 !important;
	}
}


@media screen and (max-width:1333px) {
	.standardRange {
		padding: 60px 0 60px 0 !important;
	}

	.innerRange {
		padding: 50px 0 60px 0 !important;
	}
}

@media screen and (max-width:999px) {
	.standardRange {
		padding: 50px 0 50px 0 !important;
	}

	.innerRange {
		padding: 50px 0 50px 0 !important;
	}
}

@media screen and (max-width:768px) {
	.standardRange {
		padding: 40px 0 40px 0 !important;
	}

	.innerRange {
		padding: 40px 0 40px 0 !important;
	}
}





@media screen and (max-width:1560px) {
	.standardTxt .title1 {
		font-size: 36px !important;
		line-height: 45px !important;
	}
}

@media screen and (max-width:1333px) {
	.standardTxt .title1 {
		font-size: 28px !important;
		line-height: 35px !important;
	}

	.standardTxt .title2 {
		font-size: 18px !important;
		line-height: 28px !important;
	}

	.standardTxt .txt,
	.standardTxt p {
		font-size: 16px !important;
		line-height: 28px !important;
	}

	.standardTxt .btn {
		font-size: 16px !important;
	}
}

@media screen and (max-width:999px) {
	.standardTxt .title1 {
		font-size: 24px !important;
		line-height: 30px !important;
	}

	.standardTxt .title2 {
		font-size: 16px !important;
		line-height: 28px !important;
	}

	.standardTxt .txt,
	.standardTxt p {
		font-size: 14px !important;
		line-height: 26px !important;
	}

	.standardTxt .btn {
		font-size: 14px !important;
	}

}

@media screen and (max-width:768px) {
	.standardTxt .title1 {
		font-size: 22px !important;
	}

	.standardTxt .title2 {
		font-size: 14px !important;
		line-height: 24px !important;
	}

}







.oneRow {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.twoRow {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.threeRow {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.foreRow {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}


.clear {
	clear: both;
}

/* xnav */
header .xnav {
	display: none;
}

@media screen and (max-width:999px) {
	header .xnav {
		display: block;
	}

	header .xnav .nav {
		position: fixed;
		width: 35px;
		height: 24px;
		background: #F6871C;
		right: 80px;
		top: 30px;
		transform: translateY(-50%);
		cursor: pointer;
		border-radius: 5px;
		z-index: 999999999;
	}

	header .xnav .nav span {
		display: block;
		width: 20px;
		height: 2px;
		background: #ffffff;
		position: absolute;
		left: 50%;
		margin-left: -10px;
		top: 50%;
		transition: 0.8s;
		z-index: 99999991
	}

	header .xnav .nav .nav1 {
		margin-top: -1px;
	}

	header .xnav .nav .nav2 {
		margin-top: -8px;
	}

	header .xnav .nav .nav3 {
		margin-top: 6px;
	}

	header .xnav .nav:hover .nav1 {
		width: 25px;
	}

	header .xnav .navh .nav1 {
		transform: rotate(45deg)
	}

	header .xnav .navh .nav2 {
		transform: rotate(-45deg);
		width: 10px;
		margin-left: -1px;
		margin-top: -5px;
	}

	header .xnav .navh .nav3 {
		transform: rotate(-45deg);
		width: 9px;
		margin-top: 3px;
		margin-left: -8px;
	}

	header .xnav .navh:hover .nav2 {
		margin-top: -8px;
		margin-left: 7px;
	}

	header .xnav .navh:hover .nav3 {
		margin-top: 5px;
		margin-left: -12px;
	}

	header .xnav .smdaohang {
		position: fixed;
		width: 300px;
		height: 0px;
		overflow: auto;
		top: 0px;
		right: 0px;
		background: rgba(246, 135, 28, 0.95);
		z-index: 9999999;
		transition: 0.8s;
		text-align: center;
	}

	header .xnav .smdaohangh {
		right: 0px;
		top: 0px;
		height: 100%;
	}

	header .xnav .topnav {
		margin: auto;
		margin-top: 30px;
		padding: 20px;
	}

	header .xnav ul.topnav li {
		text-align: left;
		position: relative;
	}

	header .xnav ul.topnav li a {
		padding: 5px;
		padding-left: 0px;
		color: #fff;
		display: block;
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 24px;
		padding-right: 50px;
		font-family: OpenSans-Regular, Arial, sans-serif;
	}

	header .xnav ul.topnav ul {
		display: none;
		transition: none;
	}

	header .xnav ul.topnav ul li {
		clear: both;
	}

	header .xnav ul.topnav ul li a {
		padding-left: 20px;
		font-size: 14px;
		font-size: 1.4rem;
		font-weight: normal;
		outline: 0;
	}


	header .xnav ul.topnav ul ul li a {
		padding-left: 40px;
	}

	header .xnav ul.topnav ul ul ul li a {
		padding-left: 60px;
	}

	header .xnav ul.topnav span {
		display: block;
		position: absolute;
		right: 0px;
		top: 7px;
		width: 20px;
		height: 20px;
		background: #fff;
		background: rgba(255, 255, 255, 0.6);
		cursor: pointer;
		border-radius: 50%;
		transition: 0.5s;
	}

	header .xnav ul.topnav span:before {
		content: "";
		width: 6px;
		height: 2px;
		background: #333;
		position: absolute;
		left: 50%;
		margin-left: -3px;
		top: 50%;
		margin-top: 0px;
		transform: rotate(45deg);
		transform-origin: right center
	}

	header .xnav ul.topnav span:after {
		content: "";
		width: 6px;
		height: 2px;
		background: #333;
		position: absolute;
		left: 50%;
		margin-left: -3px;
		top: 50%;
		margin-top: -1px;
		transform: rotate(-45deg);
		transform-origin: right center;
		transition: 0.5s;
	}

	header .xnav ul.topnav span.yizi {
		transform: rotate(90deg)
	}

	header .xnav .smdaohang form {
		margin-top: 15px;
		margin-bottom: 15px;
		width: 240px;
		height: 26px;
		border: 1px solid #fff;
		position: relative;
		background: #fff;
		border-radius: 13px;
	}

	header .xnav .smdaohang form input {
		color: #333333;
	}

	header .xnav .smdaohang form .iptc {
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding-left: 15px;
		background-color: #fff;
		width: 80%;
		height: 24px;
		line-height: 24px;
		display: block;
		float: left;
		border-radius: 10px;
	}

	header .xnav .smdaohang form .ipsc {
		width: 20%;
		height: 24px;
		line-height: 24px;
		display: block;
		float: right;
		background: transparent;
		position: relative;
		z-index: 99;
	}

	header .xnav .smdaohang form i {
		position: absolute;
		right: 10px;
		top: 4px;
	}
}

/**
 * Swiper 11.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 26, 2023
 */

@font-face {
	font-family: swiper-icons;
	src: url('data:application/font-woff;charset=utf-8;base64, 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');
	font-weight: 400;
	font-style: normal
}

:root {
	--swiper-theme-color: #007aff
}

:host {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	z-index: 1
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
	display: block
}

.swiper-vertical>.swiper-wrapper {
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0px, 0, 0)
}

.swiper-horizontal {
	touch-action: pan-y
}

.swiper-vertical {
	touch-action: pan-x
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
	display: block
}

.swiper-slide-invisible-blank {
	visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px
}

.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d
}

.swiper-3d {
	perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
	transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
	display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
	scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
	scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
	scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
	content: '';
	flex-shrink: 0;
	order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
	animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(360deg)
	}
}

.swiper-virtual .swiper-slide {
	-webkit-backface-visibility: hidden;
	transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
	height: 1px;
	width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
	width: 1px;
	height: var(--swiper-virtual-size)
}

:root {
	--swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: var(--swiper-navigation-top-offset, 50%);
	width: calc(var(--swiper-navigation-size)/ 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
	opacity: 0;
	cursor: auto;
	pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
	display: none !important
}

.swiper-button-next svg,
.swiper-button-prev svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform-origin: center
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
	transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: var(--swiper-navigation-sides-offset, 10px);
	right: auto
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: var(--swiper-navigation-sides-offset, 10px);
	left: auto
}

.swiper-button-lock {
	display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: 'prev'
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: var(--swiper-navigation-sides-offset, 10px);
	left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: 'next'
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: .3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
	display: none !important
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom, 8px);
	top: var(--swiper-pagination-top, auto);
	left: 0;
	width: 100%
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(.33);
	position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(.33)
}

.swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
	display: inline-block;
	border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}

.swiper-pagination-bullet:only-child {
	display: none !important
}

.swiper-pagination-bullet-active {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
	right: var(--swiper-pagination-right, 8px);
	left: var(--swiper-pagination-left, auto);
	top: 50%;
	transform: translate3d(0px, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
	display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	transition: .2s transform, .2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
	color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
	background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
	position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: var(--swiper-pagination-progressbar-size, 4px);
	left: 0;
	top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
	width: var(--swiper-pagination-progressbar-size, 4px);
	height: 100%;
	left: 0;
	top: 0
}

.swiper-pagination-lock {
	display: none
}

.swiper-scrollbar {
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	position: relative;
	touch-action: none;
	background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, .1))
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
	display: none !important
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
	position: absolute;
	left: var(--swiper-scrollbar-sides-offset, 1%);
	bottom: var(--swiper-scrollbar-bottom, 4px);
	top: var(--swiper-scrollbar-top, auto);
	z-index: 50;
	height: var(--swiper-scrollbar-size, 4px);
	width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
	position: absolute;
	left: var(--swiper-scrollbar-left, auto);
	right: var(--swiper-scrollbar-right, 4px);
	top: var(--swiper-scrollbar-sides-offset, 1%);
	z-index: 50;
	width: var(--swiper-scrollbar-size, 4px);
	height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, .5));
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	left: 0;
	top: 0
}

.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-scrollbar-lock {
	display: none
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain
}

.swiper-slide-zoomed {
	cursor: move;
	touch-action: none
}

.swiper .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
	flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
	transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-fade .swiper-slide-active {
	pointer-events: auto
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-cube {
	overflow: visible
}

.swiper-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
	transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible
}

.swiper-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	opacity: .6;
	z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
	content: '';
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	filter: blur(50px)
}

.swiper-cube .swiper-slide-next+.swiper-slide {
	pointer-events: auto;
	visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-flip {
	overflow: visible
}

.swiper-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-creative .swiper-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	transition-property: transform, opacity, height
}

.swiper-cards {
	overflow: visible
}

.swiper-cards .swiper-slide {
	transform-origin: center bottom;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden
}




/* ---------------------index----------------------------- */



/* allnav */


nav {
	height: 170px;
	background-color: #ffffff;
	position: relative;
	left: 0;
	top: 0;
}


nav .nTop {
	height: 110px;
	position: relative;
	z-index: 99999;
}


nav .nTop>div {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}


nav .nTop .nMsg {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav .logo {
	width: 295px;
	flex-shrink: 0;
}


nav .logo:hover img {
	transform: none;
}


nav .nTop .btns {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}


nav .nTop .btns ul.list {
	display: flex;
	align-items: center;
	margin-right: 42px;
}


nav .nTop .list li {
	margin-right: 38px;
}

nav .nTop .list li:last-child {
	margin-right: 0;
}

nav .nTop .list a {
	display: block;
	height: 110px;
	line-height: 110px;
	font-size: 14px;
}

nav .nTop .list li:hover>a,
nav .nTop .list li.active>a{
	color: #F6871C;
}


nav .language {
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}



nav .btns .lanBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #222;
	overflow: hidden;
}

nav .btns .lanBtn img {
	width: 18px;
	height: 18px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 9px;
	flex-shrink: 0;
	filter: grayscale(100%) brightness(10%);
}


nav .btns .lanBtn:hover {
	color: #F6871C;
}

nav .btns .lanBtn:hover i {
	color: #F6871C;
}

nav .btns .lanBtn:hover img {
	filter: grayscale(0%) brightness(100%);
}

nav .btns .lanBtn i {
	color: #222222;
}


nav .btns .lanBtn i.icon-right7 {
	font-size: 10px;
	transform: rotate(90deg);
	margin-left: 7px;
}

nav .btns .language.active .lanBtn i.icon-right7 {
	transform: rotate(-90deg);
}


nav .btns .language ul {
	position: absolute;
	top: calc(100% + 10px);
	background-color: #feffff;
	box-shadow: 0px 0px 29px 0px rgba(122, 122, 122, 0.20);
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	max-width: 200px;
	display: none;
	transition: none;
	padding: 20px 0;
}


nav .btns .language ul li {
	margin-bottom: 10px;
}

nav .btns .language ul li:last-child {
	margin-bottom: 0;
}


nav .btns .language ul a {
	color: #171717;
	line-height: 24px;
	padding: 0 20px;
	text-align: center;
}



nav .btns .language ul a:hover {
	color: #F6871C;
}




nav.active .nBottom {
	position: fixed;
	width: 100%;
}


nav .nBottom {
	height: 60px;
	position: relative;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	background: #222;
	box-shadow: 0 0 50px 0 rgba(34, 54, 104, 0.10);
	max-width: 1600px;
}

html {
	scroll-padding-top: 60px;
}


nav .nBottom>div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	position: relative;
}



nav .navList {
	display: flex;
	align-items: center;
	height: 100%;
}

nav .navList>ul {
	display: flex;
	align-items: center;
}


nav .navList>ul>li {
	margin-right: 85.5px;
	position: relative;
}


nav .navList>ul>li:last-child {
	margin: 0;
}


nav a {
	display: block;
}


nav .navList>ul>li>a {
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	color: #BBB;
}

nav .navList>ul>li.active>a,
nav .navList>ul>li:hover>a {
	color: #FFF;
}



nav .search {
	height: 60px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 9999;
	flex-shrink: 0;
}


nav .search .searchBtn {
	cursor: pointer;
	display: none;
}


nav .search .searchBtn i {
	color: #333333;
	display: block;
	font-size: 24px;
	font-weight: bold;
}



nav .search .searchBtn:hover i {
	color: #930c20;
}


nav .search form {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	z-index: 99;
	background-color: #444;
	width: 226px;
	border-radius: 6px;
	overflow: hidden;
}



nav .search form>input {
	padding: 0 16px;
	color: #ffffff;
}


nav .search form input {
	width: 100%;
	height: 100%;
	background-color: transparent;
}

nav .search form input::-webkit-input-placeholder {
	color: #999;
}

nav .search form input:-moz-placeholder {
	color: #999;
}

nav .search form input::-moz-placeholder {
	color: #999;
}

nav .search form input:-ms-input-placeholder {
	color: #999;
}



nav .search form .subBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 40px;
	width: 40px;
	margin-right: 9px;
}



nav .search form .subBtn i {
	color: #FFF;
	font-size: 20px;

}



nav .search form .subBtn:hover i {
	color: #F6871C;
}




nav .search form .subBtn input {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	cursor: pointer;
	background-color: transparent;
}





/* moreList */

.moreList,
.moreList ul {
	position: absolute;
	background-color: #111;
	min-width: 250px;
	display: none;
	transition: none;
	max-width: 300px;
	width: max-content;
}


.moreList ul {
	left: 100%;
	top: 0px;
}


.moreList {
	top: 100%;
	left: -30px;
}


.moreList li {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
}


.moreList a {
	padding: 10.5px 33px 10.5px 23px;
	font-size: 18px;
	line-height: 28px;
	color: #BBB;
}

.moreList li:last-child {
	border-bottom: none;
}

.moreList a:hover {
	color: #ffffff;
}

header .xnav .msg {
	display: none;
}



@media screen and (max-width:1560px) {
	nav .navList>ul>li {
		margin-right: 50px;
	}

	nav .nTop,
	nav .nTop .list a {
		height: 80px;
	}

	nav .nTop .list a {
		line-height: 80px;
	}

	nav {
		height: 140px;
	}
}

@media screen and (max-width:1333px) {
	nav .search form {
		position: absolute;
		top: 100%;
		right: 0;
	}

	nav .search .searchBtn {
		display: flex;
	}

	nav .navList>ul>li {
		margin-right: 65px;
	}

	nav .search .searchBtn i {
		font-size: 22px;
		color: #ffffff;
		font-weight: normal;
	}

	nav .search .searchBtn:hover i {
		color: #F6871C;
	}

	.moreList a {
		padding: 10px 20px;
	}

	.moreList {
		left: -20px;
	}

	nav .search form {
		border-radius: 4px;
		width: 0;
	}

	nav .search form.active {
		width: 226px;
	}

	nav .search form .subBtn i {
		font-size: 18px;
	}
}

@media screen and (max-width:1200px) {
	nav .navList>ul>li {
		margin-right: 32px;
	}
}

@media screen and (max-width:999px) {
	nav .nBottom {
		display: none;
	}

	nav {
		height: 60px;
		width: 100%;
		max-width: 1600px;
		left: 50%;
		transform: translateX(-50%);
		position: fixed;
		z-index: 99999;
	}

	nav .nTop {
		height: 100%;
	}

	nav.active {
		box-shadow: 0px 0px 10px rgba(122, 122, 122, 0.2);
	}

	.bannerRange {
		height: 60px;
	}

	nav .logo {
		width: 220px;
	}

	nav .nTop .btns ul.list {
		display: none;
	}

	nav .nTop .btns {
		margin-right: 60px;
	}

	nav .language {
		height: 60px;
	}

	nav .btns .lanBtn {
		font-size: 14px;
	}

	nav .btns .lanBtn img {
		width: 16px;
		height: 16px;
	}

	nav .btns .language ul {
		top: 100%;
		padding: 10px 0;
	}

	nav .btns .language ul a {
		font-size: 14px;
		padding: 0 10px;
	}

	nav .btns .language ul li {
		margin-bottom: 5px;
	}
}

@media screen and (max-width:768px) {
	header .xnav .nav {
		right: 25px;
	}

	nav .logo {
		width: 200px;
	}
}

@media screen and (max-width:538px) {
	header .xnav .nav {
		right: 15px;
	}

	nav .logo {
		width: 150px;
	}

	nav .nTop .btns {
		margin-right: 50px;
	}

	nav .btns .language ul {
		max-width: 180px;
	}
}



/* animation */

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}


@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}


@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}


@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}


@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}





/* land */

.landShow {
	height: 100vh;
	position: relative;
}

.landShow .image {
	height: 100%;
}

.landShow .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


.landShow video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
	z-index: 1;
}

.landShow .maskLayer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}

.landShow .msg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.landShow .msg .landLogo {
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: all;
	width: 400px;
}


.landShow .msg .landLogo img {
	display: block;
}


.landShow .msg .title {
	display: flex;
	align-items: center;
	pointer-events: all;
	position: relative;
	color: #FFF;
	font-family: Cambria;
	font-size: 50px;
	line-height: 60px;
}


.landShow .msg .title i {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transform: rotate(-45deg);
	background-color: #F6871C;
	font-size: 18px;
	flex-shrink: 0;
	margin-left: 16px;
}


.landShow .msg .title::after {
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	height: 1px;
	transition: .4s ease all;
	background-color: rgba(255, 255, 255, .4);
	bottom: -22px;
}


.landShow .msg .title:hover::after {
	left: auto;
	right: 0;
	width: 0;
}

.landShow .msg .title:hover i {
	transform: rotate(0);
}



.landCategory .con {
	padding: 90px 0;
	border-bottom: 1px solid #CCC;
}

.landCategory .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


.landCategory .list .item {
	width: 48.92%;
	margin-top: 39px;
}


.landCategory .list .item:nth-child(-n+2) {
	margin-top: 0;
}



.landCategory .list .image {
	overflow: hidden;
}


.landCategory .list .title1 {
	margin-top: 25px;
}


.landCategory .list .txts {
	color: #222;
	font-size: 16px;
	line-height: 26px;
	margin-top: 10px;
}


.landProdicts .con {
	padding: 90px 0 90px 0;
	border-bottom: 1px solid #CCC;
}


.landTouch .con {
	border-bottom: 1px solid #CCC;
	padding: 90px 0 170px 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}


.landTouch .innerTit {
	line-height: 46px;
}

.landTouch .msg {
	width: 50%;
}

.landTouch .txts {
	margin-top: 26px;
}

.landTouch .txts p {
	font-size: 18px;
	line-height: 32px;
}


.landTouch form {
	width: 43.56%;
	margin-top: 7px;
	margin-right: 2%;
}


.landTouch ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.landTouch ul li {
	width: 49.2%;
	margin-top: 18px;
}

.landTouch ul li:nth-child(-n+2) {
	margin-top: 0;
}


.landTouch ul input {
	width: 100%;
	height: 40px;
	border: 1px solid #D9D9D9;
	padding: 0 10px;
}

.landTouch ul .name {
	color: #222;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 7px;
}

.landTouch ul .codeCon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #D9D9D9;
}


.landTouch ul .codeCon input {
	flex: 1;
	border: none;
}

.landTouch ul .codeCon .codeImg {
	cursor: pointer;
	background-color: #f3fbfe;
	width: 79px;
	height: 26px;
	flex-shrink: 0;
	margin-left: 20px;
	margin-right: 8px;
}

.landTouch ul .codeCon .codeImg img {
	display: block;
}


.landTouch ul li.subBtn {
	width: 107px;
}

.landTouch ul li.subBtn input {
	border-color: #F6871C;
	cursor: pointer;
	background-color: #F6871C;
	color: #FFF;
	font-size: 18px;
}


.landTouch ul li.subBtn input:hover {
	background-color: #ffffff;
	color: #F6871C;
}


@media screen and (max-width:1560px) {
	.landShow .msg .landLogo {
		width: 360px;
	}

	.landShow .msg .title {
		font-size: 46px;
		line-height: 58px;
	}

	.landShow .msg .title::after {
		bottom: -12px;
	}

	.landCategory .list .title1 {
		margin-top: 20px;
	}
	.landTouch form {
		margin-right: 0;
	}
}

@media screen and (max-width:1333px) {
	.landShow .msg .landLogo {
		width: 320px;
	}

	.landShow .msg .title {
		font-size: 36px;
		line-height: 48px;
	}

	.landShow .msg .title::after {
		bottom: -10px;
	}

	.landCategory .list .title1 {
		margin-top: 20px;
	}

	.landShow .msg .title i {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.landTouch .innerTit {
		line-height: 36px;
	}
}

@media screen and (max-width:999px) {
	.landShow .msg .landLogo {
		width: 280px;
	}

	.landShow .msg .title {
		font-size: 28px;
		line-height: 40px;
	}

	.landShow .msg .title i {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}

	.landCategory .list .item {
		margin-top: 30px;
	}

	.landTouch .innerTit {
		line-height: 32px;
	}

	.landTouch .con {
		flex-direction: column;
		align-items: flex-start;
	}

	.landTouch .msg {
		width: 100%;
	}

	.landTouch .txts {
		margin-top: 20px;
	}

	.landTouch form {
		width: 100%;
		margin-top: 30px;
	}

	.landTouch ul .name {
		font-size: 14px;
		line-height: 26px;
	}

	.landTouch ul li {
		margin-top: 15px;
	}
}

@media screen and (max-width:768px) {
	.landShow .msg .landLogo {
		width: 240px;
	}

	.landShow .msg .title {
		font-size: 24px;
		line-height: 36px;
	}

	.landShow .msg .title i {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}
}

@media screen and (max-width:538px) {
	.landShow .msg .landLogo {
		width: 220px;
	}

	.landCategory .list .item:nth-child(n) {
		width: 100%;
		margin-top: 30px;
	}

	.landCategory .list .item:nth-child(1) {
		margin-top: 0;
	}

	.landTouch ul li {
		width: 100%;
	}

	.landTouch ul li:nth-child(n) {
		margin-top: 15px;
	}

	.landTouch ul li:nth-child(1) {
		margin-top: 0;
	}

	.landTouch ul input {
		height: 36px;
	}
}



/* indexBanner */

.indexBanner {
	position: relative;
	transition: none;
}


.indexBanner * {
	transition: none;
}


.indexBanner a:hover img {
	transform: scale(1);
}


.indexBanner .swiper-slide {
	position: relative;
}

.indexBanner .swiper-slide .image {
	width: 100%;
	height: 100%;
	overflow: hidden;
}


.indexBanner .swiper-slide .image img {
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.indexBanner .swiper-slide video,
.indexBanner .swiper-slide iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 9;
	object-fit: cover;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}



.indexBanner img {
	display: block;
}


.indexBanner .signs {
	position: absolute;
	z-index: 99;
	left: 50%;
	transform: translateX(-50%);
	bottom: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0 20px;
}



.indexBanner .swiper-pagination {
	position: static;
	margin: 0 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: auto;
}




.indexBanner .swiper-pagination span {
	cursor: pointer;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	cursor: pointer;
	opacity: 1;
	transition: .4s ease all;
	background-color: rgba(255, 255, 255, .4);
	margin: 5px 5px !important;
}



.indexBanner .swiper-pagination span.swiper-pagination-bullet-active {
	background-color: rgba(255, 255, 255, 1);
}




.indexBanner .msg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 9;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
}


.indexBanner .msg .safeRange {
	height: 100%;
	display: flex;
	align-items: center;
}


.indexBanner .msg .box {
	width: 60%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	transform: translateX(14.2%);
}





/* iTit */

.title1 {
	color: #222;
	font-family: Cambria;
	font-size: 42px;
	line-height: 50px;
}

a.title1 {
	display: inline-block;
}

a.title1:hover {
	color: #F6871C;
}


.iTit {
	display: flex;
	align-items: center;
	justify-content: center;
}

.iTit .title1 {
	text-align: center;
}


/* cBtn */

.cBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 158px;
	height: 50px;
	border-radius: 10px 0;
	border: 1px solid #F6871C;
	cursor: pointer;
	background-color: #ffffff;
	color: #F6871C;
	font-size: 18px;
}


.cBtn:hover {
	background-color: #F6871C;
	color: #ffffff;
}



.indexBanner .title1 {
	color: #ffffff;
	transition: .4s ease all;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}


.indexBanner .cBtn {
	margin-top: 53px;
	background-color: #F6871C;
	color: #ffffff;
	transition: .4s ease all;
}

.indexBanner .cBtn:hover {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #F6871C;
}


@media screen and (max-width:1560px) {
	.cBtn {
		width: 150px;
		height: 45px;
		font-size: 16px;
	}

	.indexBanner .cBtn {
		margin-top: 40px;
	}
}

@media screen and (max-width:1333px) {
	.cBtn {
		width: 140px;
		height: 40px;
	}

	.indexBanner .cBtn {
		margin-top: 30px;
	}
}

@media screen and (max-width:999px) {
	.cBtn {
		width: 130px;
		height: 36px;
		font-size: 14px;
	}

	.indexBanner .cBtn {
		margin-top: 25px;
	}

	.indexBanner .signs {
		bottom: 10px;
	}

	.indexBanner .swiper-pagination span {
		width: 10px;
		height: 10px;
	}
}

@media screen and (max-width:750px) {
	.indexBanner .msg {
		display: none;
	}
}



/* indexM1-1 */

.swiperBox {
	position: relative;
}


.swiperBox .sBtns>div {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #dddddd;
	font-size: 34px;
	cursor: pointer;
	z-index: 9;
}

.swiperBox .sBtns>div:hover {
	color: #cccccc;
}

.swiperBox .sBtns>div.prev {
	left: -51px;
}

.swiperBox .sBtns>div.next {
	right: -51px;
}

.swiperBox .sBtns>div.swiper-button-disabled {
	pointer-events: none;
}


.iProducts {
	padding: 60px 0 85px 0;
}

.iProducts .swiperBox .sBtns>div{
	top: 39.5%;
}


.productSlides{
	padding: 0 36px;
}

.productSlides .swiper-slide {
	display: flex;
	flex-direction: column;
	align-items: center;
}


.productSlides .swiper-slide .image {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.productSlides .sign {
	text-align: center;
	margin-top: 13px;
	color: #222;
	font-size: 16px;
	line-height: 26px;
}

.productSlides h2 {
	font-weight: normal;
}

.productSlides .name {
	color: #222;
	text-align: center;
	font-family: Cambria;
	font-size: 26px;
	line-height: 36px;
	margin-top: 6px;
}

.productSlides .name:hover {
	color: #F6871C;
}


@media screen and (max-width:1560px) {
	.swiperBox .sBtns>div {
		width: 50px;
		height: 50px;
		font-size: 30px;
	}

	.productSlides .name {
		font-size: 22px;
		line-height: 32px;
		margin-top: 10px;
	}
	.productSlides{
		padding: 0;
	}
}

@media screen and (max-width:1333px) {
	.productSlides .name {
		font-size: 20px;
		line-height: 30px;
	}

	.swiperBox .sBtns>div {
		width: 40px;
		height: 40px;
		font-size: 26px;
	}
}

@media screen and (max-width:999px) {
	.productSlides .sign {
		font-size: 14px;
		line-height: 26px;
		margin-top: 14px;
	}

	.productSlides .name {
		font-size: 16px;
		line-height: 28px;
	}

	.swiperBox .sBtns>div {
		width: 36px;
		height: 36px;
		font-size: 22px;
	}
}

@media screen and (max-width:768px) {
	.swiperBox .sBtns>div {
		position: static;
		transform: translateY(0);
		margin-top: 20px;
		font-size: 18px;
	}

	.swiperBox .sBtns {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.swiperBox .sBtns>div.prev {
		margin-right: 20px;
	}
}


/* indexM2-1 */


.iAbout .title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.iAbout .title .box {
	flex-shrink: 0;
	margin-right: 9.5%;
}


.iAbout .title .msg {
	flex: 1;
	padding-bottom: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
}

.innerTit {
	color: #222;
	font-family: Cambria;
	font-size: 36px;
	line-height: 48px;
}

.iAbout .year {
	color: #222;
	font-family: Cambria;
	font-size: 72px;
	line-height: 70px;
}

.iAbout .cBtn {
	margin-top: 37px;
}

.standardEdit p {
	color: #222;
	font-size: 16px;
	line-height: 30px;
}

.standardEdit p strong {
	font-family: OpenSans-SemiBold;
	font-weight: normal;
	font-size: 18px;
	font-weight: 600;
}

.iAbout .con {
	margin-top: 63px;
	padding: 166px 0 161px 0;
	position: relative;
}

.imgBg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}


.imgBg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
	display: block;
}



.aboutNum {
	display: flex;
	flex-wrap: wrap;
}

.aboutNum .item {
	width: 23.5%;
	margin-right: 2%;
	padding: 20px 20px 24px 30px;
	border-radius: 10px 0;
	background-color: rgba(255, 255, 255, .9);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: 20px;
}

.aboutNum .item:nth-child(4n) {
	margin-right: 0;
}

.aboutNum .item:nth-child(-n+4) {
	margin-top: 0;
}

.aboutNum .box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1;
}

.aboutNum .sign {
	flex-shrink: 0;
	margin-left: 30px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(8px);
}

.aboutNum .name {
	color: #222;
	font-size: 16px;
	line-height: 30px;
}

.aboutNum .num {
	position: relative;
	color: #222;
	font-family: Cambria;
	font-size: 42px;
	line-height: 42px;
	margin-top: 7px;
}


.aboutNum .num i {
	font-style: normal;
	position: absolute;
	right: -11%;
	top: -26%;
	font-size: 27px;
}

@media screen and (max-width:1560px) {
	.iAbout .title .msg {
		padding-bottom: 0;
	}

	.innerTit {
		font-size: 28px;
		line-height: 40px;
	}

	.iAbout .year {
		font-size: 60px;
		line-height: 60px;
		margin-top: 20px;
	}

	.iAbout .con {
		margin-top: 60px;
		padding: 120px 0;
	}

	.aboutNum .num {
		font-size: 36px;
		line-height: 36px;
	}

	.aboutNum .num i {
		font-size: 22px;
	}
}

@media screen and (max-width:1333px) {
	.innerTit {
		font-size: 24px;
		line-height: 36px;
	}

	.iAbout .year {
		font-size: 50px;
		line-height: 50px;
	}

	.iAbout .cBtn {
		margin-top: 30px;
	}

	.iAbout .con {
		margin-top: 50px;
		padding: 80px 0;
	}

	.aboutNum .item {
		padding: 20px;
	}

	.aboutNum .num {
		font-size: 28px;
		line-height: 38px;
	}

	.aboutNum .sign {
		width: 40px;
		height: 40px;
		margin-left: 20px;
	}

	.aboutNum .num i {
		font-size: 18px;
	}

	.aboutNum .name {
		line-height: 26px;
	}
}

@media screen and (max-width:999px) {
	.standardEdit p strong {
		font-size: 16px;
	}

	.innerTit {
		font-size: 22px;
		line-height: 32px;
	}

	.iAbout .year {
		font-size: 40px;
		line-height: 40px;
	}

	.iAbout .con {
		margin-top: 40px;
		padding: 60px 0;
	}

	.aboutNum .name {
		font-size: 14px;
		line-height: 24px;
	}

	.aboutNum {
		justify-content: space-between;
	}

	.aboutNum .item:nth-child(n) {
		width: 49%;
		margin-top: 20px;
		margin-right: 0;
	}

	.aboutNum .item:nth-child(-n+2) {
		margin-top: 0;
	}
}

@media screen and (max-width:768px) {
	.innerTit {
		font-size: 20px;
		line-height: 30px;
	}

	.iAbout .year {
		font-size: 36px;
		line-height: 36px;
	}

	.iAbout .con {
		margin-top: 30px;
		padding: 50px 0;
	}

	.aboutNum .num {
		font-size: 24px;
		line-height: 24px;
	}

	.aboutNum .num i {
		font-size: 16px;
	}
}

@media screen and (max-width:538px) {
	.iAbout .title {
		flex-direction: column;
		align-items: flex-start;
	}

	.iAbout .year {
		margin-top: 14px;
	}

	.iAbout .cBtn {
		margin-top: 20px;
	}

	.iAbout .title .msg {
		margin-top: 20px;
	}

	.iAbout .year {
		font-size: 28px;
		line-height: 28px;
	}

	.iAbout .con {
		padding: 40px 0;
	}
}

@media screen and (max-width:450px) {
	.aboutNum .item:nth-child(n) {
		width: 100%;
		margin-top: 20px;
	}

	.aboutNum .item:nth-child(1) {
		margin-top: 0;
	}
}

/* indexM3-1 */


.whyChooseUs {
	padding: 90px 0 90px 0;
}

.iTips {
	text-align: center;
	color: #222;
	line-height: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	width: 80%;
	margin: 0 auto;
}


.ability .iTips {
	margin-top: 16px;
}

.ability .con {
	margin-top: 42px;
	position: relative;
}

.ability .con .imgList {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}


.ability .con .imgList::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
}

.ability .con .imgList .image {
	display: none;
	height: 100%;
}

.ability .con .imgList .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.ability .con .imgList .image.active {
	display: block;
}

.ability .list {
	display: flex;
	flex-wrap: wrap;
}


.ability .list .item {
	width: 33.333%;
	min-height: 375px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 19px 47px;
	border-right: 1px solid rgba(255, 255, 255, .5);
	border-top: 1px solid rgba(255, 255, 255, .5);
}

.ability .list .item:nth-child(3n) {
	border-right: none;
}

.ability .list .item:nth-child(-n+3) {
	border-top: none;
}

.ability .list .item:hover {
	background-color: rgba(246, 135, 28, 0.5);
}


.ability .list .sign {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ability .list .sign img {
	display: block;
}

.ability .list .txts {
	margin-top: 10px;
	color: #FFF;
	font-family: OpenSans-SemiBold;
	font-size: 20px;
	line-height: 32px;
	min-height: 64px;
}


@media screen and (max-width:1560px) {
	.ability .iTips {
		margin-top: 20px;
	}

	.ability .list .item {
		padding: 30px;
	}

	.ability .list .txts {
		font-size: 18px;
	}

	.ability .list .item {
		min-height: 300px;
	}
}

@media screen and (max-width:1333px) {
	.ability .con {
		margin-top: 30px;
	}

	.ability .list .sign {
		width: 40px;
		height: 40px;
	}

	.ability .list .txts {
		min-height: 56px;
	}

	.ability .list .item {
		min-height: 240px;
	}
}

@media screen and (max-width:999px) {
	.iTips {
		width: 90%;
	}

	.ability .list .txts {
		min-height: 52px;
	}

	.ability .list .item {
		padding: 20px;
	}

	.ability .list .item {
		min-height: 200px;
	}
}

@media screen and (max-width:768px) {
	.ability .list .item:nth-child(n) {
		width: 50%;
		border-top: 1px solid rgba(255, 255, 255, .5);
		border-right: 1px solid rgba(255, 255, 255, .5);
	}

	.ability .list .item:nth-child(-n+2) {
		border-top: none;
	}

	.ability .list .item:nth-child(2n) {
		border-right: none;
	}

	.ability .list .item {
		min-height: 180px;
	}

	.ability .list .sign {
		width: 36px;
		height: 36pxs;
	}

	.iTips {
		width: 100%;
	}
}

@media screen and (max-width:450px) {
	.ability .list .item:nth-child(n) {
		width: 100%;
		border-top: 1px solid rgba(255, 255, 255, .5);
		border-right: none;
		min-height: 140px;
	}

	.ability .list .item:nth-child(1) {
		border-top: none;
	}
}




/* indexM4-1 */

.application .iTips {
	margin-top: 16px;
}

.application .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 32px;
}

.application .list .item {
	margin-top: 30px;
	position: relative;
	overflow: hidden;
	width: 48.9%;
}

.application .list .item:nth-child(-n+2) {
	margin-top: 0;
}


.application .list .msg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 29px 29px;
	pointer-events: none;
}



.application .list .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


.application .list .image:hover img {
	transform: none;
}

.application .list .tit {
	color: #FFF;
	text-align: right;
	font-family: Cambria;
	font-size: 26px;
	line-height: 36px;
	pointer-events: all;
	transform: translateY(96%);
}

.application .list .item:hover .tit {
	transform: translateY(0);
}

.application .list .tit:hover {
	color: #F6871C;
}


.application .list .btn {
	color: #FFF;
	font-size: 18px;
	line-height: 28px;
	display: flex;
	align-items: center;
	margin-top: 8px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(100%);
}

.application .list .item:hover .btn {
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;
}


.application .list .btn i {
	flex-shrink: 0;
	margin-left: 3px;
	font-size: 12px;
	color: #ffffff;
	transform: translateY(2px);
	margin-right: 3px;
}

.application .list .btn:hover {
	color: #F6871C;
}

.application .list .btn:hover i {
	color: #F6871C;
}

@media screen and (max-width:1560px) {
	.application .iTips {
		margin-top: 30px;
	}

	.application .list .tit {
		font-size: 24px;
		line-height: 36px;
	}

	.application .list .btn {
		margin-top: 20px;
		font-size: 16px;
		line-height: 28px;
	}

	.application .list .btn i {
		margin-right: 0;
		margin-left: 5px;
		transform: translateY(2px);
	}
}

@media screen and (max-width:1333px) {
	.application .list {
		margin-top: 30px;
	}

	.application .list .tit {
		font-size: 22px;
		line-height: 32px;
	}

	.application .list .btn {
		margin-top: 10px;
	}
}

@media screen and (max-width:999px) {
	.application .list .tit {
		font-size: 18px;
		line-height: 28px;
		transform: translateY(0);
		color: #222222;
		text-align: center;
	}

	.application .list .btn {
		line-height: 24px;
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
		color: #222222;
	}

	.application .list .btn i {
		transform: translateY(1px);
		color: #222222;
	}

	.application .list .msg {
		padding: 0 20px;
		position: static;
		height: auto;
		margin-top: 10px;
		align-items: center;
	}

	.application .list .item {
		margin-top: 20px;
	}
}

@media screen and (max-width:768px) {
	.application .iTips {
		margin-top: 20px;
	}

	.application .list .tit {
		font-size: 16px;
		line-height: 26px;
	}

	.application .list .msg {
		padding: 10px 20px;
	}
}

@media screen and (max-width:450px) {
	.application .list .item:nth-child(n) {
		width: 100%;
		margin-top: 20px;
	}

	.application .list .item:nth-child(1) {
		margin-top: 0;
	}
}

/* indexM5-1 */


.iServices {
	padding: 90px 0 91px 0;
}


.iServices .faqList {
	margin-top: 29px;
}

.faqList .item {
	margin-bottom: 17.5px;
}

.faqList .item:last-child {
	margin-bottom: 0;
}

.faqList .question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 15px 11px 15px;
	cursor: pointer;
	background-color: #ffffff;
	border-radius: 10px 0;
	border: 1px solid #D9D9D9;
}


.faqList .question:hover,
.faqList .item.active .question {
	background-color: #F6871C;
	border-color: #F6871C;
}

.faqList .question:hover .name,
.faqList .item.active .question .name {
	color: #ffffff;
}


.faqList .list:nth-child(1) .item:nth-child(1) .answer {
	display: block;
}



.faqList .question .name {
	font-size: 20px;
	line-height: 30px;
	color: #222;
}


.faqList .question .btns {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
	margin-left: 30px;
	width: 38.5px;
	height: 38.5px;
	border-radius: 10px 0;
	background-color: #F6871C;
}



.faqList .question i {
	width: 17.5px;
	height: 2px;
	background-color: #ffffff;
	border-radius: 9px;
}

.faqList .question i.move {
	width: 17.5px;
	height: 2px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	border-radius: 9px;
}

.faqList .item.active .question i.move {
	transform: translateX(-50%) translateY(-50%) rotate(0deg);
}

.faqList .item.active .question .btns,
.faqList .item .question:hover .btns {
	background-color: #ffffff;
}

.faqList .item.active .question i,
.faqList .item .question:hover i {
	background-color: #F6871C;
}


.faqList .answer {
	display: none;
	transition: none;
	padding: 23px 84px 19px 38px;
}


.faqList .answer p {
	color: #555555;
}

.faqList .answer .box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.faqList .answer .btn {
	display: flex;
	align-items: center;
	color: #F6871C;
	font-size: 18px;
	line-height: 28px;
	margin-top: 14px;
}

.faqList .answer .btn i {
	font-size: 14px;
	flex-shrink: 0;
	margin-left: 13px;
	color: #F6871C;
	font-weight: bold;
}

.faqList .answer .btn:hover i {
	margin-left: 20px;
}


@media screen and (max-width:1560px) {
	.faqList .question {
		padding: 10px 15px;
	}

	.faqList .answer {
		padding: 20px 15px;
	}

	.iServices .faqList {
		margin-top: 30px;
	}

	.faqList .answer .btn {
		font-size: 16px;
		line-height: 28px;
	}

	.faqList .question .name {
		font-size: 18px;
		line-height: 28px;
	}

	.faqList .question .btns {
		width: 34px;
		height: 34px;
	}

	.faqList .answer .btn i {
		font-size: 12px;
		transform: translateY(1px);
	}

}



@media screen and (max-width:999px) {
	.faqList .question .name {
		font-size: 16px;
		line-height: 26px;
	}


	.faqList .question i.move,
	.faqList .question i {
		width: 14px;
		height: 2px;
	}
}

@media screen and (max-width:768px) {
	.faqList .question .btns {
		width: 30px;
		height: 30px;
	}
}



/* indexM6-1 */


.global {
	padding: 70px 0 66px 0;
	position: relative;
}

.global .title1 {
	text-shadow: 0 3px 2px rgba(0, 0, 0, 0.50);
	color: #ffffff;
}


.global .image {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 74px;
}


@media screen and (max-width:1560px) {
	.global .image {
		margin-top: 60px;
	}
}

@media screen and (max-width:1333px) {
	.global .image {
		margin-top: 50px;
	}
}

@media screen and (max-width:999px) {
	.global .image {
		margin-top: 40px;
	}
}

@media screen and (max-width:768px) {
	.global .image {
		margin-top: 30px;
	}
}

/* indexM7-1 */


.iSustaibility .con {
	padding: 90px 0 58px 0;
	border-bottom: 1px solid #CCC;
}


.iSustaibility .iTips {
	margin-top: 16px;
}

.iSustaibility .list {
	margin-top: 29px;
	display: flex;
	flex-wrap: wrap;
}



.iSustaibility .list .item {
	width: 31.71%;
	margin-right: 2.435%;
	margin-top: 20px;
}

.iSustaibility .list .item:nth-child(3n) {
	margin-right: 0;
}

.iSustaibility .list .item:nth-child(-n+3) {
	margin-top: 0;
}

.iSustaibility .image {
	border-radius: 10px 0;
	overflow: hidden;
}

.iSustaibility .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.iSustaibility .txts {
	margin-top: 19px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
}

.iSustaibility .txts p {
	line-height: 32px;
	font-size: 18px;
}

@media screen and (max-width:1560px) {
	.iSustaibility .iTips {
		margin-top: 30px;
	}

	.iSustaibility .list {
		margin-top: 30px;
	}

	.iSustaibility .txts p {
		font-size: 16px;
		line-height: 28px;
	}
}

@media screen and (max-width:999px) {
	.iSustaibility .list {
		justify-content: space-between;
	}

	.iSustaibility .list .item:nth-child(n) {
		width: 48%;
		margin-right: 0;
		margin-top: 30px;
	}

	.iSustaibility .list .item:nth-child(-n+2) {
		margin-top: 0;
	}
}

@media screen and (max-width:768px) {
	.iSustaibility .iTips {
		margin-top: 20px;
	}

	.iSustaibility .txts {
		margin-top: 10px;
	}
}

@media screen and (max-width:450px) {
	.iSustaibility .list .item:nth-child(n) {
		width: 100%;
		margin-top: 30px;
	}

	.iSustaibility .list .item:nth-child(1) {
		margin-top: 0;
	}

}

/* indexM8-1 */

.iNews {
	padding: 90px 0 122px 0;
}

.sTit {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sTit .btns {
	display: flex;
	align-items: center;
}

.sTit .btns>div {
	font-size: 29px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #DDD;
}

.sTit .btns>div:hover {
	color: #CCC;
}

.sTit .btns>div.swiper-button-disabled {
	pointer-events: none;
}


.latestBlogs .swiper {
	margin-top: 28px;
}

.newItem {
	padding: 34px 25px 34px 25px;
	display: flex;
	justify-content: space-between;
	border-radius: 10px 0;
	background: #F5F5F5;
	overflow: hidden;
	align-items: center;
}


.newItem .image {
	overflow: hidden;
	width: 360px;
	border-radius: 10px 0;
	margin-right: 4.25%;
}

.newItem .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.newItem .msg {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-bottom: 9px;
}

.newItem .tit {
	color: #222;
	font-family: OpenSans-SemiBold;
	font-size: 22px;
	line-height: 32px;
}

.newItem .tit:hover {
	color: #F6871C;
}


.newItem .txts {
	color: #555;
	font-size: 16px;
	line-height: 30px;
	margin-top: 11px;
}

.newItem .time {
	color: #555;
	font-size: 16px;
	line-height: 26px;
	margin-top: 44px;
}

@media screen and (max-width:1560px) {
	.sTit .btns>div {
		width: 45px;
		height: 45px;
		font-size: 24px;
	}

	.sTit .btns>div.prev {
		margin-right: 20px;
	}

	.newItem .msg {
		padding-bottom: 0;
	}

	.newItem {
		padding: 20px;
	}

	.newItem .tit {
		font-size: 20px;
		line-height: 30px;
	}

	.newItem .time {
		margin-top: 20px;
	}

	.newItem .txts {
		margin-top: 20px;
	}
}

@media screen and (max-width:1333px) {
	.sTit .btns>div {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.newItem .tit {
		font-size: 18px;
		line-height: 28px;
	}

	.newItem .image {
		width: 330px;
	}
}

@media screen and (max-width:999px) {
	.newItem .tit {
		font-size: 16px;
	}

	.newItem {
		padding: 16px;
	}

	.newItem .txts {
		margin-top: 10px;
	}

	.newItem .time {
		margin-top: 10px;
	}

	.newItem .image {
		width: 265px;
		margin-right: 20px;
	}

	.sTit .btns>div {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
}

@media screen and (max-width:768px) {
	.newItem {
		flex-direction: column;
		align-items: flex-start;
	}

	.newItem .image {
		width: 100%;
		margin-right: 0;
	}

	.newItem .msg {
		margin-top: 14px;
	}
}

@media screen and (max-width:538px) {
	.newItem {
		padding: 14px;
	}
}


/* indexM9-1 */


.touch {
	position: relative;
	padding: 88px 0 93px 0;
}

.touch .con {
	display: flex;
	justify-content: space-between;
}

.touch .msg {
	width: 48%;
	padding-top: 48px;
}


.touch .innerTit {
	color: #ffffff;
	line-height: 46px;
}

.touch a.innerTit:hover {
	color: #F6871C;
}

.touch .txts {
	margin-top: 26px;
}

.touch .txts p {
	color: #ffffff;
	font-size: 18px;
}

.standardEdit a {
	color: #F6871C;
	font-weight: bold;
	position: relative;
	display: inline-block;
}

.standardEdit a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 100%;
	height: 1px;
	background-color: #F6871C;
	transition: .4s ease all;
}

.standardEdit a:hover::after {
	width: 0;
	left: auto;
	right: 0;
}


.touch form {
	width: 45.5%;
}


.touch ul li {
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	height: 40px;
	margin-top: 19px;
}

.touch ul li:nth-child(1) {
	margin-top: 0;
}


.touch ul li input {
	width: 100%;
	height: 100%;
	background-color: transparent;
	color: #ffffff;
}

.touch ul li input::-webkit-input-placeholder,
.touch ul li textarea::-webkit-input-placeholder {
	color: #ffffff;
}

.touch ul li input:-moz-placeholder,
.touch ul li textarea:-moz-placeholder {
	color: #ffffff;
}

.touch ul li input::-moz-placeholder,
.touch ul li textarea::-moz-placeholder {
	color: #ffffff;
}

.touch ul li input:-ms-input-placeholder,
.touch ul li textarea:-ms-input-placeholder {
	color: #ffffff;
}

.touch ul li.codeCon {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.touch ul li.codeCon input {
	flex: 1;
}

.touch ul li.codeCon .codeImg {
	flex-shrink: 0;
	margin-left: 20px;
	width: 79px;
	height: 26px;
	background-color: #f3fbfe;
	cursor: pointer;
	margin-right: 23px;
}

.touch ul li.subBtn {
	height: 50px;
	width: 107px;
	border: none;
	margin-top: 18px;
}


.touch ul li.subBtn input {
	border-radius: 10px;
	background: #F6871C;
	color: #FFF;
	font-size: 18px;
	cursor: pointer;
}

.touch ul li.subBtn input:hover {
	background-color: #ffffff;
	color: #F6871C;
}


@media screen and (max-width:1560px) {
	.touch ul li.subBtn {
		height: 40px;
	}

	.touch ul li.subBtn input {
		border-radius: 5px;
	}

	.touch .innerTit {
		line-height: 40px;
	}
}

@media screen and (max-width:1333px) {
	.touch ul li.subBtn {
		height: 36px;
	}

	.touch .innerTit {
		line-height: 36px;
	}
}

@media screen and (max-width:999px) {
	.touch .innerTit {
		line-height: 32px;
	}
}

@media screen and (max-width:768px) {
	.touch .innerTit {
		line-height: 30px;
	}
}

@media screen and (max-width:538px) {
	.touch .con {
		flex-direction: column;
		align-items: flex-start;
	}

	.touch .msg {
		padding-top: 0;
		width: 100%;
	}

	.touch .txts {
		margin-top: 20px;
	}

	.touch form {
		width: 100%;
		margin-top: 30px;
	}

	.touch ul li {
		height: 36px;
	}
}




/* 1-1about */

.process {
	padding: 4px 0 90px;
	background-color: #F7F7F7;
}

.process .title1 {
	text-align: center;
}

.process .list {
	margin-top: 42px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}


.process .list .item {
	width: 48.92%;
	background-color: #ffffff;
}


.process .list .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.process .list .msg {
	padding: 38px 54px 47px;
}

.process .list .tit {
	color: #222;
	font-family: Cambria;
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
}

.process .list .txts {
	margin-top: 7px;
}

.process .list .txts p {
	color: #555;
	line-height: 32px;
}

.process .list .txts p strong {
	color: #222222;
}

@media screen and (max-width:1560px) {
	.process .list .msg {
		padding: 30px;
	}

	.process .list .txts {
		margin-top: 20px;
	}

	.process .list .tit {
		font-size: 26px;
		line-height: 38px;
	}
}

@media screen and (max-width:1333px) {
	.process .list {
		margin-top: 30px;
	}

	.process .list .tit {
		font-size: 22px;
		line-height: 34px;
	}
}

@media screen and (max-width:999px) {
	.process .list .tit {
		font-size: 20px;
		line-height: 30px;
	}

	.process .list .msg {
		padding: 20px;
	}
}

@media screen and (max-width:768px) {
	.process .list .item:nth-child(n) {
		width: 100%;
		margin: 0 auto;
		margin-top: 30px;
		max-width: 420px;
	}

	.process .list .item:nth-child(1) {
		margin-top: 0;
	}
}

@media screen and (max-width:538px) {
	.process .list .msg {
		padding: 20px 15px;
	}
}

.companyIntroduction {
	padding: 90px 0 90px 0;
}

.companyIntroduction .con {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}


.companyIntroduction .con .msg {
	width: 69.5%;
}


.companyIntroduction .con .msg .dis {
	margin-top: 34px;
	padding-right: 48px;
	overflow: auto;
	max-height: 450px;
}

.companyIntroduction .con .msg .dis::-webkit-scrollbar {
	width: 3px;
	height: 3px;
	background-color: #D9D9D9;
}

.companyIntroduction .con .msg .dis::-webkit-scrollbar-thumb {
	background-color: #F6871C;
}

.companyIntroduction .con .msg .dis::-webkit-scrollbar-track {
	background-color: transparent;
}

.companyIntroduction .aboutNum {
	flex-direction: column;
	align-items: flex-start;
	width: 23.42%;
}

.companyIntroduction .aboutNum .item {
	width: 100%;
	margin-top: 29px;
	margin-right: 0;
	background: rgba(245, 245, 245, 0.9);
}


.companyIntroduction .aboutNum .item:nth-child(1) {
	margin-top: 0;
}


.companyIntroduction .infoList {
	display: flex;
	flex-wrap: wrap;
	margin-top: 58px;
}



.companyIntroduction .infoList .item {
	position: relative;
	width: 31.92%;
	margin-right: 2.12%;
	margin-top: 30px;
	border-radius: 10px 0;
	overflow: hidden;
}

.companyIntroduction .infoList .item:nth-child(3n) {
	margin-right: 0;
}

.companyIntroduction .infoList .item:nth-child(-n+3) {
	margin-top: 0;
}


.companyIntroduction .infoList .item .msg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 46px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	z-index: 9;
}

.companyIntroduction .infoList .item .msg::after,
.companyIntroduction .infoList .item .msg::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: .4s ease all;
	z-index: -1;
}

.companyIntroduction .infoList .item .msg::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 54.8%, rgba(0, 0, 0, 0.70) 100%);
}

.companyIntroduction .infoList .item .msg::before {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
	opacity: 0;
}

.companyIntroduction .infoList .tit {
	color: #FFF;
	text-align: center;
	font-family: Cambria;
	font-size: 30px;
	line-height: 50px;
	transform: translateY(75px);
}

.companyIntroduction .infoList .txts {
	color: #FFF;
	text-align: center;
	font-size: 16px;
	margin-top: 9px;
	line-height: 22px;
	min-height: 66px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	transform: translateY(100%);
	opacity: 0;
}


.companyIntroduction .infoList .item:hover .tit {
	transform: translateX(0);
}

.companyIntroduction .infoList .item:hover .txts {
	transform: translateX(0);
	opacity: 1;
}

.companyIntroduction .infoList .item:hover .msg::after {
	opacity: 0;
}

.companyIntroduction .infoList .item:hover .msg::before {
	opacity: 1;
}

.companyIntroduction .ability {
	margin-top: 90px;
}


@media screen and (max-width:1560px) {
	.companyIntroduction .infoList .item .msg {
		padding: 30px 20px;
	}

	.companyIntroduction .infoList .tit {
		font-size: 26px;
		line-height: 38px;
	}

	.companyIntroduction .ability {
		margin-top: 80px;
	}
}

@media screen and (max-width:1333px) {
	.companyIntroduction .con .msg .dis {
		max-height: 476px;
	}

	.companyIntroduction .con .msg .dis {
		padding-right: 30px;
	}

	.companyIntroduction .con .msg {
		width: 58%;
	}

	.companyIntroduction .aboutNum {
		width: 34%;
	}

	.companyIntroduction .infoList .item .msg {
		padding: 14px;
	}

	.companyIntroduction .infoList .txts {
		font-size: 14px !important;
		line-height: 26px !important;
		min-height: 78px;
	}

	.companyIntroduction .infoList .tit {
		font-size: 20px;
		line-height: 30px;
	}

	.companyIntroduction .infoList {
		margin-top: 50px;
	}

	.companyIntroduction .ability {
		margin-top: 60px;
	}
}

@media screen and (max-width:999px) {
	.companyIntroduction .con {
		flex-direction: column;
		align-items: flex-start;
	}

	.companyIntroduction .con .msg {
		width: 100%;
	}

	.companyIntroduction .con .msg .dis {
		max-height: 260px;
	}

	.companyIntroduction .aboutNum {
		width: 100%;
		margin-top: 40px;
		flex-direction: row;
		justify-content: space-between;
		align-items: stretch;
	}

	.companyIntroduction .aboutNum .item {
		width: 49%;
		margin-top: 30px;
	}

	.companyIntroduction .aboutNum .item:nth-child(-n+2) {
		margin-top: 0;
	}

	.companyIntroduction .infoList .item .msg {
		position: static;
		margin-top: 20px;
		height: auto;
		background: none;
		padding: 0;
	}


	.companyIntroduction .infoList {
		justify-content: space-between;
	}

	.companyIntroduction .infoList .item:nth-child(n) {
		width: 48%;
		margin-right: 0;
		margin-top: 30px;
	}

	.companyIntroduction .infoList .item:nth-child(-n+2) {
		margin-top: 0;
	}

	.companyIntroduction .infoList .tit,
	.companyIntroduction .infoList .txts {
		color: #222222;
		transform: translateY(0);
		opacity: 1;
	}
	
	.companyIntroduction .infoList .txts{
		min-height: auto;
		display: block;
	}

	.companyIntroduction .infoList .tit {
		font-size: 18px;
	}

	.companyIntroduction .ability {
		margin-top: 50px;
	}

	.companyIntroduction .infoList .item .msg::after,
	.companyIntroduction .infoList .item .msg::before {
		display: none;
	}
}

@media screen and (max-width:768px) {
	.companyIntroduction .infoList {
		margin-top: 40px;
	}

	.companyIntroduction .aboutNum {
		margin-top: 30px;
	}

	.companyIntroduction .aboutNum .item {
		margin-top: 20px;
	}

	.companyIntroduction .infoList .item:nth-child(n) {
		margin-top: 20px;
	}

	.companyIntroduction .infoList .item:nth-child(-n+2) {
		margin-top: 0;
	}

	.companyIntroduction .ability {
		margin-top: 40px;
	}
}

@media screen and (max-width:450px) {
	.companyIntroduction .infoList .item:nth-child(n) {
		width: 100%;
		margin-top: 30px;
	}

	.companyIntroduction .infoList .item:nth-child(1) {
		margin-top: 0;
	}

	.companyIntroduction .aboutNum .item:nth-child(n) {
		width: 100%;
		margin-top: 20px;
	}

	.companyIntroduction .aboutNum .item:nth-child(1) {
		margin-top: 0;
	}
}


.history {
	position: relative;
	padding: 90px 0 119px 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
	overflow: hidden;
}


.history .title1 {
	text-align: center;
	color: #ffffff;
}

.history .historyGallery {
	margin-top: 74px;
}

.historyGallery .sign {
	width: 84px;
	height: 84px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.historyGallery .sign img {
	display: block;
}

.historyGallery .txts {
	width: 74%;
	margin: 0 auto;
	margin-top: 31px;
}


.historyGallery .txts p {
	text-align: center;
	color: #ffffff;
}

.history .swiperBox {
	margin-top: 282px;
	position: relative;
}

.history .swiperBox::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	height: 1px;
	border-top: 2px dashed rgba(255, 255, 255, .6);
	width: 100vw;
	margin-top: 1px;
}


.history .swiperBox .sBtns>div {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .1);
	border: 2px solid #ffffff;
	color: #ffffff;
	font-size: 22px;
}

.history .swiperBox .sBtns>div:hover {
	background-color: #ffffff;
	color: #F6871C;
}

.history .swiperBox .sBtns>div.prev {
	left: 20.7%;
}

.history .swiperBox .sBtns>div.next {
	right: 20.7%;
}



.historyThumbs {
	width: 42.7%;
	margin: 0 auto;
}

.historyThumbs .swiper-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.historyThumbs .swiper-slide .ciecle {
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 16px;
	height: 16px;
	background-color: rgba(255, 255, 255, .7);
	border: 4px solid transparent;
}

.historyThumbs .swiper-slide-thumb-active .ciecle {
	width: 30px;
	height: 30px;
	border: 4px solid #F6871C;
	background-color: #ffffff;
}

.historyThumbs .swiper-slide .year {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	color: #FFF;
	text-align: center;
	font-family: Cambria;
	font-size: 30px;
	line-height: 50px;
	bottom: 22px;
}



.historyThumbs .swiper-slide-thumb-active .year {
	color: #FFF;
	text-align: center;
	font-family: Cambria;
	font-size: 90px;
	font-weight: 700;
	line-height: 107px;
	bottom: 25px;
}

@media screen and (max-width:1560px) {
	.historyGallery .sign {
		width: 60px;
		height: 60px;
	}

	.history .historyGallery {
		margin-top: 40px;
	}

	.historyGallery .txts {
		width: 90%;
	}

	.history .swiperBox {
		margin-top: 200px;
		margin-bottom: 50px;
	}

	.historyThumbs .swiper-slide .year {
		font-size: 26px;
		line-height: 30px;
	}

	.historyThumbs .swiper-slide-thumb-active .year {
		font-size: 60px;
		line-height: 80px;
	}

	.history .swiperBox .sBtns>div {
		width: 60px;
		height: 60px;
		font-size: 20px;
	}
}

@media screen and (max-width:1333px) {
	.historyGallery .txts {
		width: 100%;
	}

	.historyGallery .sign {
		width: 50px;
		height: 50px;
	}

	.historyGallery .txts {
		margin-top: 20px;
	}

	.history .swiperBox .sBtns>div {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}

	.historyThumbs .swiper-slide .year {
		font-size: 22px;
	}

	.historyThumbs .swiper-slide-thumb-active .year {
		font-size: 40px;
	}

	.history .swiperBox {
		margin-top: 180px;
	}
}

@media screen and (max-width:999px) {
	.historyGallery .sign {
		width: 46px;
		height: 46px;
	}

	.history .swiperBox .sBtns>div {
		width: 46px;
		height: 46px;
		font-size: 16px;
	}

	.historyThumbs .swiper-slide .year {
		font-size: 20px;
	}

	.historyThumbs .swiper-slide-thumb-active .year {
		font-size: 34px;
	}

	.history .swiperBox {
		margin-top: 160px;
	}

	.historyThumbs .swiper-slide .ciecle {
		width: 12px;
		height: 12px;
	}

	.historyThumbs .swiper-slide-thumb-active .ciecle {
		width: 24px;
		height: 24px;
	}
}

@media screen and (max-width:768px) {
	.history .swiperBox .sBtns>div {
		position: absolute;
		transform: translateY(-50%);
		margin: 0;
	}

	.historyGallery .sign {
		width: 40px;
		height: 40px;
	}

	.history .swiperBox .sBtns>div {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}

	.historyThumbs .swiper-slide .year {
		font-size: 18px;
	}

	.historyThumbs .swiper-slide-thumb-active .year {
		font-size: 30px;
		line-height: 40px;
	}

	.history .swiperBox {
		margin-top: 120px;
	}

	.history .historyGallery {
		margin-top: 30px;
	}
}

@media screen and (max-width:538px) {
	.historyGallery .sign {
		width: 36px;
		height: 36px;
	}

	.history .swiperBox .sBtns>div {
		width: 36px;
		height: 36px;
		font-size: 12px;
	}

	.historyThumbs {
		width: 40%;
	}

	.history .swiperBox {
		margin-top: 100px;
	}
}

.companyPiece .con {
	padding: 90px 0 100px 0;
	border-bottom: 1px solid #CCC;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}


.companyPiece .con .item {
	width: 48.78%;
	border-radius: 10px 0;
	overflow: hidden;
	position: relative;
}

.companyPiece .con .msg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 54.8%, rgba(0, 0, 0, 0.70) 100%);
	padding: 38px 51px;
	display: flex;
	align-items: flex-end;
	pointer-events: none;
}

.companyPiece .con .box {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
}


.companyPiece .tit {
	color: #FFF;
	font-family: Cambria;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	pointer-events: all;
}

.companyPiece .tit:hover {
	color: #F6871C;
}


.companyPiece .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px 0;
	background-color: #ffffff;
	color: #222222;
	flex-shrink: 0;
	margin-left: 30px;
	margin-right: -18px;
	pointer-events: all;
}


.companyPiece .btn:hover {
	background: #F6871C;
	color: #ffffff;
}


.companyPiece .image:hover img {
	transform: none;
}

@media screen and (max-width:1560px) {
	.companyPiece .btn {
		margin-right: 0;
	}

	.companyPiece .con .msg {
		padding: 30px;
	}

	.companyPiece .tit {
		font-size: 26px;
		line-height: 36px;
	}

	.companyPiece .btn {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
}

@media screen and (max-width:1333px) {
	.companyPiece .con .msg {
		padding: 20px;
	}

	.companyPiece .tit {
		font-size: 22px;
		line-height: 30px;
	}

	.companyPiece .btn {
		width: 36px;
		height: 36px;
		font-size: 12px !important;
	}
}

@media screen and (max-width:999px) {
	.companyPiece .con .msg {
		padding: 0;
		position: static;
		height: auto;
		background: none;
		margin-top: 20px;
	}

	.companyPiece .tit {
		font-size: 18px;
		line-height: 28px;
		color: #222222;
	}

	.companyPiece .btn {
		background-color: #F6871C;
		color: #fff;
	}

	.companyPiece .con .item {
		overflow: visible;
		border-radius: 0;
	}

	.companyPiece .con .image {
		border-radius: 10px 0;
		overflow: hidden;
	}

	.companyPiece .btn {
		width: 32px;
		height: 32px;
	}
}

@media screen and (max-width:768px) {
	.companyPiece .con .item:nth-child(n) {
		width: 100%;
		margin: 0 auto;
		margin-top: 30px;
		max-width: 420px;
	}

	.companyPiece .con .item:nth-child(1) {
		margin-top: 0;
	}
}



/* 1-2about */

.innovation {
	padding: 50px 0 96px 0;
	padding-left: calc((100% - 1400px)/ 2);
	background-color: #F7F7F7;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}


.innovation .clear {
	display: none;
}

.innovation .image {
	width: 55.7%;
}

.innovation .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.innovation .msg {
	width: 37.5%;
}


.innovation .txts {
	margin-top: 30px;
}


.research {
	padding: 84px 0 90px 0;
}

.research .list {
	margin-top: 36px;
}

.research .list .item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 90px;
}


.research .list .item:nth-child(2n) {
	flex-direction: row-reverse;
}

.research .list .item:nth-child(1) {
	margin-top: 0;
}

.research .list .cBtn {
	margin-top: 96px;
	width: 208px;
}

.research .list .image {
	width: 51.92%;
	border-radius: 10px 0;
	overflow: hidden;
}


.research .list .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.research .list .msg {
	width: 44.1%;
}

.research .list .clear {
	display: none;
}


@media screen and (max-width:1560px) {
	.innovation {
		padding-left: 80px;
	}

	.research .list .item {
		margin-top: 60px;
	}

	.research .list .cBtn {
		margin-top: 40px;
		width: 180px;
	}
}

@media screen and (max-width:1333px) {
	.innovation {
		padding: 50px 80px;
		display: block;
	}

	.innovation .clear {
		display: block;
	}

	.innovation .image {
		float: right;
		margin-left: 5%;
	}

	.innovation .msg {
		width: 100%;
	}

	.research .list .item {
		display: block;
	}

	.research .list .item .clear {
		display: block;
	}

	.research .list .msg {
		width: 100%;
	}

	.research .list .item:nth-child(2n-1) .image {
		float: left;
		margin-right: 5%;
	}

	.research .list .item:nth-child(2n) .image {
		float: right;
		margin-left: 5%;
	}
}

@media screen and (max-width:999px) {
	.innovation {
		padding: 50px 80px;
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.innovation .msg {
		padding: 0;
		width: 100%;
	}

	.innovation .image {
		width: 100%;
		float: none;
		margin: 0;
		margin-top: 30px;
	}

	.research .list .item:nth-child(n) {
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.research .list .msg {
		padding: 0;
		width: 100%;
	}

	.research .list .image {
		width: 100%;
	}

	.research .list .item:nth-child(n) .image {
		float: none;
		margin: 0;
		margin-top: 30px;
	}

	.research .list .cBtn {
		margin-top: 20px;
		width: 160px;
	}

	.research .list .item {
		margin-top: 50px;
	}

	.research .list {
		margin-top: 30px;
	}
}

@media screen and (max-width:768px) {
	.research .list .item {
		margin-top: 40px;
	}

	.innovation {
		padding: 40px 25px;
	}

}

@media screen and (max-width:538px) {
	.innovation {
		padding: 40px 15px;
	}
}

/* 3-1about */


.certificates {
	padding: 56px 0 85px 0;
}


.certificates .swiper {
	background-color: #eeeeee;
	padding: 0 36px;
	margin-top: 30px;
}


.certificates .swiper .swiper-slide {
	width: auto;
	margin-right: 35px;
}


.certificates .swiper .swiper-slide a {
	padding: 14.5px 0;
	position: relative;
	color: #222;
	font-size: 20px;
	line-height: 30px;
	display: block;
}



.certificates .swiper .swiper-slide a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	border-radius: 9px;
	background: #F6871C;
	transition: .4s ease all;
	width: 0;
}


.certificates .swiper .swiper-slide.active a:after,
.certificates .swiper .swiper-slide:hover a:after {
	width: 100%;
}

.certificates .list {
	margin-top: 33px;
	display: flex;
	flex-wrap: wrap;
}

.certificates .list .item {
	width: 23.42%;
	margin-right: 2.1%;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}


.certificates .list .item:nth-child(4n) {
	margin-right: 0;
}

.certificates .list .item:nth-child(-n+4) {
	margin-top: 0;
}

.certificates .list .image:hover img {
	transform: translateY(-10px);
}

.certificates .list .name {
	text-align: center;
	color: #222;
	line-height: 28px;
	margin-top: 13px;
}


.certificates .pager {
	margin-top: 74px;
}


@media screen and (max-width:1560px) {
	.certificates .swiper {
		margin-top: 40px;
	}

	.certificates .list {
		margin-top: 40px;
	}

	.certificates .pager {
		margin-top: 60px;
	}

	.certificates .swiper .swiper-slide a {
		font-size: 18px;
		line-height: 28px;
	}

	.certificates .swiper {
		padding: 0 20px;
	}

	.certificates .swiper .swiper-slide {
		margin-right: 40px;
	}
}

@media screen and (max-width:1333px) {
	.certificates .swiper .swiper-slide a {
		padding: 12px 0;
	}

	.certificates .pager {
		margin-top: 50px;
	}
}

@media screen and (max-width:999px) {
	.certificates .swiper .swiper-slide a {
		font-size: 16px;
		line-height: 28px;
		padding: 10px 0;
	}

	.certificates .swiper .swiper-slide a::after {
		height: 2px;
	}

	.certificates .list .name {
		font-size: 14px;
		line-height: 24px;
	}

	.certificates .list .item:nth-child(n) {
		width: 32%;
		margin-right: 2%;
		margin-top: 30px;
	}

	.certificates .list .item:nth-child(3n) {
		margin-right: 0;
	}

	.certificates .list .item:nth-child(-n+3) {
		margin-top: 0;
	}

	.certificates .pager {
		margin-top: 40px;
	}
}

@media screen and (max-width:768px) {
	.certificates .swiper {
		margin-top: 30px;
	}

	.certificates .pager {
		margin-top: 30px;
	}

	.certificates .list {
		margin-top: 30px;
	}
}

@media screen and (max-width:538px) {
	.certificates .list {
		justify-content: space-between;
	}

	.certificates .list .item:nth-child(n) {
		width: 48%;
		margin-right: 0;
		margin-top: 30px;
	}

	.certificates .list .item:nth-child(-n+2) {
		margin-top: 0;
	}
}


/* 2-1products */


.productCategory {
	display: flex;
	flex-wrap: wrap;
}

.productCategory .item {
	height: calc(100vh - 170px);
	flex: 1;
	position: relative;
	overflow: hidden;
	margin-right: 15px;
}


.productCategory .item:hover {
	flex: 1.8;
}

.productCategory .item:last-child {
	margin-right: 0;
}


.productCategory .image:hover img {
	transform: none;
}

.productCategory .image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}


.productCategory .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
	display: block;
}

.productCategory .image::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
}


.productCategory .name {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 7.7%;
	z-index: 1;
	color: #FFF;
	text-align: center;
	font-family: Cambria;
	font-size: 36px;
	line-height: 46px;
	padding: 0 10px;
	pointer-events: none;
}

.productCategory .item:hover .name {
	opacity: 0;
}

.productCategory .msg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	padding: 40px 60px;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translateY(-100%);
	opacity: 0;
	transition: .6s ease all;
}

.productCategory .item:hover .msg {
	transform: translateX(0);
	opacity: 1;
}


.productCategory .msg .title {
	pointer-events: all;
	color: #FFF;
	text-align: center;
	font-family: Cambria;
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
}


.productCategory .msg .title:hover {
	color: #F6871C;
}

.productCategory .msg .txts {
	color: #FFF;
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	margin-top: 20px;
}



.productCategory .msg .cBtn {
	background-color: #F6871C;
	color: #ffffff;
	margin: 0 auto;
	margin-top: 30px;
	width: 194px;
	pointer-events: all;
}

.productCategory .msg .cBtn:hover {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #F6871C;
}

@media screen and (max-width:1560px) {
	.productCategory .item {
		margin-right: 10px;
		height: calc(100vh - 140px);
	}

	.productCategory .name {
		font-size: 28px;
		line-height: 38px;
	}

	.productCategory .msg .title {
		font-size: 36px;
		line-height: 48px;
	}

	.productCategory .msg {
		padding: 40px;
	}

	.productCategory .msg .cBtn {
		width: 170px;
	}
}

@media screen and (max-width:1333px) {

	.productCategory .name {
		font-size: 24px;
		line-height: 36px;
	}

	.productCategory .msg .title {
		font-size: 28px;
		line-height: 40px;
	}

	.productCategory .msg {
		padding: 40px 20px;
	}

	.productCategory .msg .cBtn {
		width: 160px;
	}

	.productCategory .name {
		bottom: 5%;
	}

	.productCategory .item:hover {
		flex: 2;
	}
}

@media screen and (max-width:999px) {
	.productCategory {
		padding: 50px 80px;
		border-top: 1px solid #cccccc;
		border-bottom: 1px solid #cccccc;
		justify-content: space-between;
	}

	.productCategory .item:nth-child(n) {
		flex: none;
		width: 48%;
		margin-top: 30px;
		margin-right: 0;
		height: auto;
	}

	.productCategory .item:nth-child(-n+2) {
		margin-top: 0;
	}

	.productCategory .name {
		display: none;
	}

	.productCategory .msg {
		position: static;
		height: auto;
		padding: 0;
		margin-top: 20px;
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
	}

	.productCategory .image {
		height: auto;
	}

	.productCategory .msg .title {
		font-size: 24px;
		line-height: 34px;
		color: #222222;
	}

	.productCategory .msg .txts {
		color: #222222;
		font-size: 14px;
		line-height: 26px;
	}

	.productCategory .msg .cBtn {
		margin-top: 20px;
	}

}

@media screen and (max-width:768px) {
	.productCategory {
		padding: 40px 25px;
	}

	.productCategory .msg .title {
		font-size: 20px;
		line-height: 30px;
	}
}

@media screen and (max-width:538px) {
	.productCategory .item:nth-child(n) {
		width: 100%;
		margin: 0 auto;
		margin-top: 30px;
		max-width: 280px;
	}

	.productCategory .item:nth-child(1) {
		margin-top: 0;
	}
}

/* 2-2products */

.categoryDis {
	padding-top: 50px;
	padding-left: calc((100% - 1400px)/ 2);
	background-color: #F7F7F7;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}


.categoryDis .image {
	width: 55.7%;
}

.categoryDis .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.categoryDis .msg {
	width: 40%;
	padding: 30px 0 97px;
}

.categoryDis .msg .mbox {
	margin-top: 30px;
	height: 150px;
	overflow: hidden;
}

.categoryDis .msg .cBtn {
	margin-top: 20px;
	background-color: #F6871C;
	color: #ffffff;
}


.categoryDis .msg .cBtn:hover {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #F6871C;
	box-shadow: 0px 0px 10px rgba(122, 122, 122, 0.1);
}


.categoryDis .clear {
	display: none;
}


@media screen and (max-width:1560px) {
	.categoryDis {
		padding: 50px 0;
		padding-left: 80px;
	}

	.categoryDis .msg {
		padding: 0;
	}

	.categoryDis .msg .cBtn {
		margin-top: 30px;
	}
}

@media screen and (max-width:1333px) {
	.categoryDis {
		padding: 50px 80px;
		display: block;
	}

	.categoryDis .msg .mbox {
		height: 140px;
		margin-top: 20px;
	}

	.categoryDis .msg .cBtn {
		margin-top: 20px;
	}

	.categoryDis .image {
		float: right;
		margin-left: 5%;
	}

	.categoryDis .msg {
		width: 100%;
	}

	.categoryDis .clear {
		display: block;
	}
}

@media screen and (max-width:999px) {
	.categoryDis .msg .mbox {
		height: 130px;
		margin-top: 20px;
	}

	.categoryDis .image {
		float: none;
		width: 100%;
		margin: 0;
		margin-top: 30px;
	}

	.categoryDis {
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-start;
	}
}

@media screen and (max-width:768px) {
	.categoryDis {
		padding: 40px 25px;
	}
}

@media screen and (max-width:538px) {
	.categoryDis {
		padding: 40px 15px;
	}
}


.products {
	padding: 90px 0 90px 0;
}

.productList {
	display: flex;
	flex-wrap: wrap;
}


.productList .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 16.28%;
	margin-right: 4.65%;
	margin-top: 54px;
}


.productList .item:nth-child(5n) {
	margin-right: 0;
}

.productList .item:nth-child(-n+5) {
	margin-top: 0;
}

.productList .image {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.productList .image:hover img {
	transform: none;
}


.productList .box {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.productList .box .btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
	opacity: 0;
}

.productList .box:hover .btns,
.productList .box.active .btns {
	opacity: 1;
}


.productList .box .inqBtn {
	position: relative;
	width: 150px;
	height: 40px;
	overflow: hidden;
}



.productList .box .inqBtn a {
	color: #222;
	padding-left: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border: 1px solid #D9D9D9;
	border-radius: 10px 0;
	background-color: #ffffff;
}


.productList .box .inqBtn:hover a {
	background-color: #F6871C;
	color: #ffffff;
	border-color: #F6871C;
}

.productList .box .inqBtn:hover .checkBtn {
	outline: 1px solid #ffffff;
}

.productList .box .inqBtn:hover .checkBtn i {
	color: #ffffff;
}


.productList .box .checkBtn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 16px;
	width: 12px;
	height: 12px;
	outline: 1px solid #666;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}


.productList .box .checkBtn i {
	font-size: 12px;
	font-weight: bold;
	opacity: 0;
}

.productList .box .checkBtn.active i {
	opacity: 1;
}

.productList .box .checkBtn input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	cursor: pointer;
	opacity: 0;
}



.productList .tit {
	color: #222;
	text-align: center;
	font-family: Cambria;
	font-size: 22px;
	line-height: 34px;
	margin-top: 10px;
	text-align: center;
}

.productList .tit:hover {
	color: #F6871C;
}


.productList .detBtn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 40px;
	border-radius: 10px 0;
	border: 1px solid #D9D9D9;
	background: #FFF;
	color: #222;
	font-size: 16px;
	margin-top: 13px;
}



.productList .detBtn img {
	width: 20px;
	flex-shrink: 0;
	margin-right: 9px;
}

.productList .detBtn:hover img {
	transform: none;
	filter: grayscale(100%) brightness(5000%);
}

.productList .detBtn:hover {
	background-color: #F6871C;
	color: #ffffff;
	border-color: #F6871C;
}


.products .pager {
	margin-top: 66px;
}


.products .application {
	margin-top: 92px;
}

.products .latestBlogs {
	margin-top: 91px;
}


@media screen and (max-width:1560px) {
	.productList .tit {
		font-size: 20px;
		line-height: 30px;
	}

	.productList .item {
		margin-top: 40px;
	}

	.products .pager {
		margin-top: 60px;
	}

	.products .application,
	.products .latestBlogs {
		margin-top: 80px;
	}
}

@media screen and (max-width:1333px) {
	.productList .item:nth-child(n) {
		width: 23.5%;
		margin-right: 2%;
		margin-top: 30px;
	}

	.productList .item:nth-child(4n) {
		margin-right: 0;
	}

	.productList .item:nth-child(-n+4) {
		margin-top: 0;
	}

	.productList .tit {
		font-size: 18px;
		line-height: 28px;
	}

	.products .pager {
		margin-top: 50px;
	}

	.products .application,
	.products .latestBlogs {
		margin-top: 60px;
	}
}

@media screen and (max-width:999px) {
	.productList .item:nth-child(n) {
		width: 32%;
		margin-right: 2%;
		margin-top: 30px;
	}

	.productList .item:nth-child(3n) {
		margin-right: 0;
	}

	.productList .item:nth-child(-n+3) {
		margin-top: 0;
	}

	.productList .box {
		border-radius: 0;
	}

	.productList .image {
		border-radius: 10px;
	}

	.productList .box .btns {
		position: static;
		height: auto;
		margin-top: 20px;
		background: no-repeat;
		opacity: 1;
	}

	.productList .box .inqBtn,
	.productList .detBtn {
		height: 36px;
		font-size: 14px;
		line-height: 24px;
	}

	.products .pager {
		margin-top: 40px;
	}

	.products .application,
	.products .latestBlogs {
		margin-top: 50px;
	}

	.productList .tit {
		font-size: 16px;
		line-height: 28px;
	}
}

@media screen and (max-width:768px) {
	.products .pager {
		margin-top: 30px;
	}

	.products .application,
	.products .latestBlogs {
		margin-top: 40px;
	}
}

@media screen and (max-width:538px) {

	.productList {
		justify-content: space-between;
	}

	.productList .item:nth-child(n) {
		width: 48%;
		margin-right: 0%;
		margin-top: 30px;
	}

	.productList .item:nth-child(-n+2) {
		margin-top: 0;
	}

	.productList .box .inqBtn,
	.productList .detBtn {
		width: 135px;
	}
}


/* hotProducts */

.hotProducts .swiperBox {
	margin-top: 29px;
}


.hotProducts .box {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}


.hotProducts .box .image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hotProducts .box .image:hover img {
	transform: none;
}

.hotProducts .box .msg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
	opacity: 0;
}

.hotProducts .box:hover .msg {
	opacity: 1;
}

.hotProducts .box .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 40px;
	border-radius: 10px 0;
	border: 1px solid #D9D9D9;
	background: #FFF;
}

.hotProducts .box .btn:hover {
	background-color: #F6871C;
	border-color: #F6871C;
	color: #ffffff;
}

.hotProducts .box .btn:hover img {
	transform: none;
	filter: grayscale(100%) brightness(1000%);
}

.hotProducts .box .btn img {
	flex-shrink: 0;
	width: 20px;
	margin-right: 10px;
}

.hotProducts .swiperBox .sBtns>div {
	top: 41%;
}

.hotProducts .swiperBox .sBtns>div.prev {
	left: -70px;
}

.hotProducts .swiperBox .sBtns>div.next {
	right: -70px;
}


.hotProducts .box .btn:hover img {
	transform: none;
}


.hotProducts .tit {
	margin-top: 9px;
	text-align: center;
	color: #222;
	font-family: Cambria;
	font-size: 22px;
	line-height: 36px;

}

.hotProducts .tit:hover {
	color: #F6871C;
}

@media screen and (max-width:1560px) {
	.hotProducts .box {
		border-radius: 5px;
	}

	.hotProducts .tit {
		font-size: 20px;
		line-height: 30px;
	}
}

@media screen and (max-width:1333px) {
	.hotProducts .tit {
		font-size: 18px;
		line-height: 28px;
	}

	.hotProducts .box .btn {
		height: 36px;
		width: 140px;
	}

	.hotProducts .swiperBox .sBtns>div.next {
		right: -60px;
	}

	.hotProducts .swiperBox .sBtns>div.prev {
		left: -60px;
	}
}

@media screen and (max-width:999px) {
	.hotProducts .tit {
		font-size: 16px;
		line-height: 28px;
	}

	.hotProducts .box .msg {
		display: none;
	}
}


/* 2-3products */

.productDet {
	padding: 45px 0 81px 0;
}


.productShow {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 90px;
	border-bottom: 1px solid #D9D9D9;
}


.productShow .shows {
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: none;
	flex-shrink: 0;
	margin-right: 4.9%;
}



.productShow .shows .showSipwer {
	width: 447px;
	margin-right: 23px;
	overflow: hidden;
	background-color: #ffffff;
	border-radius: 10px;
}


.productShow .shows .checkSwiper {
	width: 104px;
	overflow: hidden;
	height: 100%;
}


.productShow .shows .swiperBox {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 447px;
	padding: 53px 0 52px;
}


.productShow .shows .swiperBox .prev,
.productShow .shows .swiperBox .next {
	width: 100%;
	position: absolute;
	color: rgba(23, 23, 23, .3);
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 5px 5px;
	height: auto;
}


.productShow .shows .swiperBox .prev i,
.productShow .shows .swiperBox .next i {
	font-size: 20px;
}


.productShow .shows .swiperBox .prev:hover,
.productShow .shows .swiperBox .next:hover {
	color: rgba(23, 23, 23, 1);
}


.productShow .shows .swiperBox .prev {
	top: 0;
}

.productShow .shows .swiperBox .prev i {
	transform: rotate(-90deg);
}

.productShow .shows .swiperBox .next {
	bottom: 0;
}

.productShow .shows .swiperBox .next i {
	transform: rotate(90deg);
}

.showSipwerBox {
	position: relative;
}


.showSipwer .swiper-slide img {
	display: block;
}


.productShow .shows .checkSwiper .swiper-slide {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 10px;
}


.productShow .shows .checkSwiper .swiper-slide::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	box-sizing: border-box;
	transition: .4s ease all;
	pointer-events: none;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 10px;
}


.productShow .shows .checkSwiper .swiper-slide-thumb-active::after {
	border-color: #cccccc;
}


.productShow .jianjie {
	flex: 1;
	padding-top: 48px;
}

.productShow .jianjie h1 {
	font-weight: normal;
}

.productShow .jianjie .txts {
	margin-top: 22px;
}


.productShow .jianjie .share {
	margin-top: 44px;
}



.productShow .jianjie .btns {
	display: flex;
	align-items: center;
	margin-top: 47px;
}


.productShow .jianjie .btns a {
	margin: 10px 0;
}


.productShow .jianjie .btns a:nth-child(1) {
	width: 163px;
	margin-right: 15px;
}

.productShow .jianjie .btns a:nth-child(2) {
	width: 171px;
}


.productShow .jianjie .btns a:hover {
	background-color: #F6871C;
	color: #ffffff;
}


.productShow .jianjie .btns a img {
	flex-shrink: 0;
	margin-left: 10px;
	filter: grayscale(100%) brightness(500%);
}


.productShow .jianjie .btns a:hover img {
	transform: none;
	filter: grayscale(0%) brightness(100%);
}


/*jQzoom*/
.jqzoom {
	float: left;
	position: relative;
	padding: 0px;

}

div.zoomdiv {
	z-index: 200;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 400px;
	height: 400px;
	background: #ffffff;
	border: 1px solid #CCCCCC;
	display: none;
	text-align: center;
	overflow: hidden;
	border-radius: 10px;
}

div.zoomdiv img {
	max-width: unset !important;
}

div.jqZoomPup {
	z-index: 200;
	visibility: hidden;
	position: absolute;
	top: 0px;
	left: 0px;
	border: 1px solid #aaa;
	background: #ffffff;
	opacity: 0.5;
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	filter: alpha(Opacity=50);
	transition: none;
	border-radius: 10px;
}


@media screen and (max-width:1560px) {
	.productShow .jianjie {
		padding-top: 0;
	}

	.productShow .jianjie .share {
		margin-top: 40px;
	}

	.productShow .jianjie .btns {
		margin-top: 30px;
	}

	.productShow {
		padding-bottom: 80px;
	}
}

@media screen and (max-width:1333px) {
	.productShow .shows {
		flex-direction: column;
		align-items: flex-start;
	}

	.productShow .shows .showSipwer {
		width: 100%;
		margin-left: 0;
	}

	.showSipwerBox {
		width: 100%;
	}

	.productShow .shows .swiperBox {
		width: 100%;
		padding: 0 40px;
		height: auto;
		margin-top: 20px;
	}

	.productShow .shows .checkSwiper {
		width: 100%;
	}


	.productShow .shows {
		width: 38%;
		max-width: 400px;
	}

	.productShow .shows .swiperBox .prev,
	.productShow .shows .swiperBox .next {
		top: 50%;
		transform: translateY(-50%);
		bottom: auto;
		width: auto;
	}


	.productShow .shows .swiperBox .prev i,
	.productShow .shows .swiperBox .next i {
		font-size: 18px;
	}

	.productShow .shows .swiperBox .prev {
		left: 0;
	}

	.productShow .shows .swiperBox .prev i {
		transform: rotate(-180deg);
	}

	.productShow .shows .swiperBox .next {
		right: 0;
	}

	.productShow .shows .swiperBox .next i {
		transform: rotate(0deg);
	}

	.productShow .jianjie .share {
		margin-top: 30px;
	}

	.productShow {
		padding-bottom: 60px;
	}
}


@media screen and (max-width:999px) {

	div.jqZoomPup {
		display: none;
	}

	.zoomPad {
		cursor: default !important;
	}

	.zoomPup {
		display: none !important;
	}

	.zoomWindow {
		display: none !important;
	}

	.zoomPreload {
		display: none !important;
	}

	.productShow {
		flex-direction: column;
		align-items: flex-start;
	}

	.productShow .jianjie {
		flex: none;
		width: 100%;
		margin-top: 30px;
	}

	.productShow .shows {
		margin: 0 auto;
		width: 100%;
		max-width: 360px;
	}

	.productShow {
		padding-bottom: 50px;
	}

	.productShow .jianjie .btns a {
		margin: 0;
	}
}


@media screen and (max-width:768px) {
	.productShow .shows {
		max-width: 340px;
	}

	.productShow {
		padding-bottom: 40px;
	}
}


@media screen and (max-width:538px) {
	.productShow .jianjie h1 {
		font-size: 20px;
		line-height: 30px;
	}

	.productShow .jianjie .btns a:nth-child(1) {
		width: 140px;
	}

	.productShow .jianjie .btns a:nth-child(2) {
		width: 140px;
	}
}

.specifications {
	padding: 45px 0 50px 0;
	border-bottom: 1px solid #D9D9D9;
}

.specifications .txts {
	margin-top: 23px;
}


.table {
	width: 100%;
	overflow: auto;
}

.table table {
	width: 100%;
	border-collapse: collapse;
	line-height: 22px;
}

.table table tr:nth-child(2n) td {
	background-color: #fff;
}

.table table tr td {
	padding: 9px 20px;
	font-size: 16px;
	background-color: #EEE;
	color: #222222;
}


.rockClimbing {
	padding: 53px 0 33px 0;
	border-bottom: 1px solid #D9D9D9;
}


.rockClimbing .txts {
	margin-top: 11px;
}


.productAdvantage {
	padding: 45px 0 58px 0;
	border-bottom: 1px solid #D9D9D9;
}

.productAdvantage .txts {
	margin-top: 19px;
}

.productDet .hotProducts {
	margin-top: 45px;
}

@media screen and (max-width:1560px) {

	.specifications,
	.rockClimbing,
	.productAdvantage {
		padding: 50px 0;
	}

	.specifications .txts,
	.rockClimbing .txts,
	.productAdvantage .txts {
		margin-top: 30px;
	}
}

@media screen and (max-width:1333px) {

	.specifications,
	.rockClimbing,
	.productAdvantage {
		padding: 40px 0;
	}

	.productDet .hotProducts {
		margin-top: 40px;
	}
}

@media screen and (max-width:999px) {
	.table table tr td {
		font-size: 14px;
		line-height: 26px;
	}

	.specifications,
	.rockClimbing,
	.productAdvantage {
		padding: 30px 0;
	}

	.specifications .txts,
	.rockClimbing .txts,
	.productAdvantage .txts {
		margin-top: 20px;
	}

	.productDet .hotProducts {
		margin-top: 30px;
	}
}

/* 3-1application */

.applicationList .item {
	display: flex;
	justify-content: space-between;
	padding: 50px 0;
}



.applicationList .item:nth-child(2n-1) {
	background-color: #F7F7F7;
	flex-direction: row-reverse;
	padding-left: calc((100% - 1400px)/ 2);
}

.applicationList .item:nth-child(2n) {
	padding-right: calc((100% - 1400px)/ 2);
}

.applicationList .image {
	overflow: hidden;
	width: 55.8%;
}

.applicationList .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.applicationList .msg {
	width: 39.65%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 40px 0;
}

.applicationList .title1 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.applicationList .txts {
	margin-top: 24px;
	color: #222;
	font-size: 18px;
	line-height: 32px;
	min-height: 128px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}


.applicationList .cBtn {
	margin-top: 84px;
	background-color: transparent;
}

.applicationList .cBtn:hover {
	background-color: #F6871C;
}

@media screen and (max-width:1560px) {
	.applicationList .item:nth-child(2n-1) {
		padding-left: 80px;
	}

	.applicationList .item:nth-child(2n) {
		padding-right: 80px;
	}

	.applicationList .cBtn {
		margin-top: 40px;
	}
}

@media screen and (max-width:1333px) {
	.applicationList .txts {
		min-height: 112px;
	}
}

@media screen and (max-width:999px) {
	.applicationList .msg {
		padding: 30px 0;
	}

	.applicationList .txts {
		min-height: 104px;
	}

	.applicationList .cBtn {
		margin-top: 30px;
	}
}

@media screen and (max-width:768px) {
	.applicationList .item {
		padding: 40px 0;
	}

	.applicationList .item:nth-child(2n-1) {
		padding-left: 25px;
	}

	.applicationList .item:nth-child(2n) {
		padding-right: 25px;
	}
}

@media screen and (max-width:538px) {
	.applicationList .item:nth-child(n) {
		padding: 40px 15px;
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.applicationList .msg {
		padding: 0;
		width: 100%;
	}

	.applicationList .image {
		width: 100%;
		margin-top: 30px;
	}
}

/* 4-1service */


.customisation {
	padding: 50px 0 94px;
}

.customisation .productCus {
	margin-top: 34px;
	padding-bottom: 70px;
	border-bottom: 1px solid #D9D9D9;
}

.productCus .smillTit {
	display: flex;
	font-family: OpenSans-SemiBold;
	align-items: flex-start;
}

.productCus .smillTit img {
	flex-shrink: 0;
	margin-right: 5px;
	width: 40px;
}


.productCus .list {
	display: flex;
	justify-content: space-between;
	margin-top: 24px;
	flex-wrap: wrap;
}

.productCus .list .smillTit {
	font-family: Cambria;
	font-weight: 700;
}

.productCus .list .item {
	width: 48.92%;
	margin-top: 30px;
}

.productCus .list .item:nth-child(-n+2) {
	margin-top: 0;
}

.productCus .list .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


.productCus .list .msg {
	margin-top: 16px;
	padding: 0 20px;
}


.productCus .list .txts {
	margin-top: 7px;
}

.customisation .packagingCus {
	margin-top: 71px;
}

.packagingCus .innerTit {
	display: flex;
	align-items: flex-start;
	font-weight: 700;
}

.packagingCus .innerTit img {
	flex-shrink: 0;
	width: 40px;
	margin-right: 5px;
	transform: translateY(4px);
}


.packagingCus .txts {
	padding: 0 46px;
	margin-top: 20px;
}


@media screen and (max-width:1560px) {
	.customisation .productCus {
		margin-top: 40px;
	}

	.productCus .list {
		margin-top: 30px;
	}

	.productCus .list .txts {
		margin-top: 20px;
	}

	.customisation .productCus {
		padding-bottom: 60px;
	}

	.customisation .packagingCus {
		margin-top: 60px;
	}
}

@media screen and (max-width:1333px) {
	.customisation .productCus {
		padding-bottom: 50px;
	}

	.customisation .packagingCus {
		margin-top: 50px;
	}

	.packagingCus .innerTit img {
		transform: translateY(-2px);
	}
}

@media screen and (max-width:999px) {

	.productCus .smillTit img,
	.packagingCus .innerTit img {
		width: 32px;
	}

	.productCus .list .msg {
		margin-top: 20px;
		padding: 0;
	}

	.productCus .list .txts {
		margin-top: 10px;
	}

	.packagingCus .innerTit img {
		transform: translateY(0);
	}

	.customisation .productCus {
		padding-bottom: 40px;
	}

	.customisation .packagingCus {
		margin-top: 40px;
	}

	.packagingCus .txts {
		padding: 0 38px;
	}
}

@media screen and (max-width:768px) {
	.customisation .productCus {
		padding-bottom: 30px;
	}

	.customisation .packagingCus {
		margin-top: 30px;
	}
}

@media screen and (max-width:538px) {
	.productCus .list .item:nth-child(n) {
		width: 100%;
		margin-top: 30px;
	}

	.productCus .list .item:nth-child(1) {
		margin-top: 0;
	}
}


.cusProcess {
	background-color: #F7F7F7;
	padding: 90px 0 91px 0;
}

.cusProcess .title1 {
	text-align: center;
}


.cusProcess .list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 51px;
}


.cusProcess .list .item {
	width: 20.92%;
	margin-right: 5.44%;
	margin-top: 78px;
	background-color: #FFF;
	padding: 25px 10px 15px 10px;
	border-radius: 10px;
	position: relative;
	min-height: 250px;
}


.cusProcess .list .item:nth-child(-n+4) {
	margin-top: 0;
}


.cusProcess .list .image {
	width: 61px;
	margin: 0 auto;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.cusProcess .list .tit {
	color: #222;
	text-align: center;
	font-family: Cambria;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	margin-top: 14px;
}



.cusProcess .list .txts {
	color: #555;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	margin-top: 7px;
}


.cusProcess .list .item .arrs {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	right: 109%;
	top: 50%;
	transform: translateY(-50%);
	width: 33px;
}

.cusProcess .list .item .arrs img {
	transform: rotate(-180deg);
}

.cusProcess .list .item:nth-child(-n+4) .arrs {
	right: auto;
	left: 108%;
}

.cusProcess .list .item:nth-child(-n+4) .arrs img {
	transform: rotate(0);
}

.cusProcess .list .item .arrs img {
	display: block;
}



.cusProcess .list .item:last-child .arrs {
	display: none;
}


.cusProcess .list .item:nth-child(4) {
	margin-right: 0;
}

.cusProcess .list .item:nth-child(4) .arrs {
	top: 103%;
	left: 50%;
	transform: rotate(90deg) translateY(50%) translateX(50%);
}


.cusProcess .list .item:nth-child(5) {
	order: 4;
	margin-right: 0;
}

.cusProcess .list .item:nth-child(6) {
	order: 3;
}

.cusProcess .list .item:nth-child(7) {
	order: 2;
}

.cusProcess .list .item:nth-child(8) {
	order: 1;
}


@media screen and (max-width:1560px) {
	.cusProcess .list .item {
		padding: 20px 20px;
	}

	.cusProcess .list .tit {
		font-size: 18px;
		line-height: 28px;
	}

	.cusProcess .list .image {
		width: 50px;
	}
}

@media screen and (max-width:1333px) {
	.cusProcess .list .item:nth-child(n) {
		width: 28%;
		margin-right: 8%;
		margin-top: 60px;
		padding: 25px 10px;
	}

	.cusProcess .list .image {
		width: 45px;
		margin-bottom: 15px;
	}

	.cusProcess .list .image::after {
		width: 35px;
		height: 35px;
	}

	.cusProcess .list .txts {
		font-size: 16px;
		line-height: 26px;
	}

	.cusProcess .list .item .arrs {
		width: 40px;
		right: 107%;
	}


	.cusProcess .list .item:nth-child(-n+3) {
		margin-top: 0;
	}

	.cusProcess .list .item:nth-child(-n+3) .arrs {
		left: 106%;
	}

	.cusProcess .list .item:nth-child(3) {
		margin-right: 0;
	}

	.cusProcess .list .item:nth-child(3) .arrs {
		transform: rotate(90deg) translateX(50%) translateY(50%);
		top: 97%;
		left: 50%;
	}



	.cusProcess .list .item:nth-child(4) {
		margin-right: 0;
		order: 3;
	}

	.cusProcess .list .item:nth-child(4) .arrs {
		right: 107%;
		top: 50%;
		left: auto;
		transform: translateY(-50%) rotate(-180deg);
	}

	.cusProcess .list .item:nth-child(5) {
		order: 2;
	}

	.cusProcess .list .item:nth-child(6) {
		order: 1;
	}

	.cusProcess .list .item:nth-child(6) .arrs {
		top: 97%;
		left: 50%;
		transform: rotate(-90deg) translateY(-50%) translateX(-50%);
	}


	.cusProcess .list .item:nth-child(7) {
		order: 4;
	}

	.cusProcess .list .item:nth-child(7) .arrs {
		left: 107%;
		right: auto;
		transform: rotate(-180deg) translateY(-50%);
	}

	.cusProcess .list .item:nth-child(8) {
		order: 5;
	}

	.cusProcess .list .item {
		border-radius: 5px;
	}

	.cusProcess .list {
		margin-top: 40px;
	}

}

@media screen and (max-width:999px) {
	.cusProcess .title1 {
		margin-bottom: 40px;
	}

	.cusProcess .list .item .arrs {
		width: 34px;
	}

	.cusProcess .list .txts {
		font-size: 14px;
		line-height: 24px;
	}

	.cusProcess .list .image {
		width: 40px;
	}

	.cusProcess .list .item:nth-child(n) {
		margin-top: 48px;
	}

	.cusProcess .list .item:nth-child(-n+3) {
		margin-top: 0;
	}

	.cusProcess .list {
		margin-top: 30px;
	}

	.cusProcess .list .tit {
		font-size: 16px;
		line-height: 28px;
	}

}

@media screen and (max-width:768px) {
	.cusProcess .list .item .arrs {
		width: 30px;
	}

	.cusProcess .list .item:nth-child(n) {
		width: 45%;
		margin-right: 10%;
		padding: 25px 10px;
		margin-top: 45px;
	}

	.cusProcess .list .item:nth-child(-n+2) {
		margin-top: 0;
	}

	.cusProcess .list .item:nth-child(2) {
		margin-right: 0;
	}

	.cusProcess .list .item:nth-child(3) {
		margin-right: 0;
		order: 2;
	}

	.cusProcess .list .item:nth-child(3) .arrs {
		right: 100%;
		left: auto;
		top: 50%;
		transform: rotate(-180deg) translateX(50%);
	}

	.cusProcess .list .item:nth-child(4) {
		order: 1;
	}

	.cusProcess .list .item:nth-child(4) .arrs {
		top: 96%;
		right: auto;
		left: 50%;
		transform: translateX(-50%) translateY(50%) rotate(90deg);
	}

	.cusProcess .list .item:nth-child(5) {
		order: 3;
	}

	.cusProcess .list .item:nth-child(5) .arrs {
		left: 107%;
		right: auto;
		transform: rotate(-180deg);
	}

	.cusProcess .list .item:nth-child(6) {
		order: 4;
		margin-right: 0;
	}

	.cusProcess .list .item:nth-child(7) {
		order: 6;
		margin-right: 0;
	}

	.cusProcess .list .item:nth-child(7) .arrs {
		left: auto;
		right: 107%;
		transform: rotate(0);
	}

	.cusProcess .list .item:nth-child(8) {
		order: 5;
	}

	.cusProcess .list .item:nth-child(2) .arrs {
		top: 96%;
		left: 50%;
		transform: rotate(90deg) translateX(50%) translateY(50%);
	}

}


@media screen and (max-width:538px) {
	.cusProcess .list .item .arrs {
		width: 25px;
	}
}

@media screen and (max-width:450px) {
	.cusProcess .list .item:nth-child(n) {
		width: 100%;
		margin-top: 0;
		margin-bottom: 38px;
		margin-right: 0;
		order: inherit;
		min-height: auto;
	}

	.cusProcess .list .item:nth-child(n) .arrs {
		left: 50%;
		right: auto;
		transform: translateX(-50%) rotate(-90deg);
		top: 105%;
	}

	.cusProcess .list .item:last-child {
		margin-bottom: 0;
	}

	.cusProcess .list .item:nth-child(-n+4) .arrs {
		transform: translateX(-50%) rotate(90deg);
	}
}


.models {
	padding: 91px 0 91px 0;
}

.models .title1 {
	text-align: center;
}

.models .list {
	margin-top: 42px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.models .list .item {
	width: 21.2%;
	position: relative;
}

.models .list .item::after {
	content: "";
	position: absolute;
	left: 107.5%;
	top: 8%;
	width: 1px;
	height: 78%;
	background-color: #D9D9D9;
}

.models .list .item:nth-child(4n)::after {
	display: none;
}


.models .list .title {
	color: #222;
	text-align: center;
	font-family: Cambria;
	font-size: 60px;
	font-weight: 700;
	line-height: 70px;
}

.models .list .txts {
	margin-top: 24px;
}

.models .list .txts p {
	text-align: center;
	color: #555;
	line-height: 24px;
}

.afterSales {
	padding: 107px 0;
	position: relative;
}

.afterSales .con {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.afterSales .msg {
	border-radius: 10px;
	background: rgba(221, 221, 221, 0.3);
	width: 48.92%;
	padding: 20px 26px 42px;
	transform: translateX(-3.7%);
}


.afterSales .msg .title1 {
	color: #ffffff;
}

.afterSales .msg .txts {
	color: #FFF;
	font-size: 18px;
	line-height: 32px;
	margin-top: 30px;
}


.afterSales .faqList {
	width: 48.92%;
}



.afterSales .faqList .item {
	border-radius: 10px;
	background: rgba(221, 221, 221, 0.3);
	margin-bottom: 20px;
	overflow: hidden;
	padding: 21px 20px 21px 20px;
}


.afterSales .faqList .item:nth-child(1) .answer {
	display: block;
}





.afterSales .faqList .item:last-child {
	margin-bottom: 0;
}

.afterSales .faqList .item .question {
	border-radius: 0;
	background-color: transparent;
	border: none;
	padding: 0;
}

.afterSales .faqList .question .name {
	color: #ffffff;
	font-family: Cambria;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
}

.afterSales .faqList .item .answer {
	padding: 0;
	padding-top: 12px;
	padding-bottom: 4px;
}


.afterSales .faqList .item .answer p {
	color: #ffffff;
	line-height: 30px;
}

.afterSales .faqList .item .question .btns {
	width: 26px;
	height: 26px;
	border: 1px solid #ffffff;
	background-color: transparent;
	border-radius: 50%;
}


.afterSales .faqList .item .question .btns i {
	width: 10px;
	height: 1px;
	background-color: #ffffff;
}


.afterSales .faqList .item .question:hover .btns {
	background-color: #ffffff;
}

.afterSales .faqList .item .question:hover .btns i {
	background-color: #F6871C;
}


@media screen and (max-width:1560px) {
	.models .list {
		margin-top: 50px;
	}

	.models .list .title {
		font-size: 46px;
		line-height: 58px;
	}

	.afterSales .msg {
		transform: translateX(0);
		border-radius: 5px;
	}

	.afterSales .faqList .item {
		border-radius: 5px;
	}
}

@media screen and (max-width:1333px) {
	.models .list .item:nth-child(n) {
		width: 50%;
		padding: 0 20px;
		margin-top: 30px;
	}

	.models .list .item:nth-child(-n+2) {
		margin-top: 0;
	}

	.models .list .item::after {
		right: 0;
		left: auto;
	}

	.models .list .item:nth-child(2n)::after {
		display: none;
	}

	.models .list .title {
		font-size: 36px;
		line-height: 48px;
	}

	.models .list .txts {
		margin-top: 20px;
	}

	.afterSales .msg .txts {
		margin-top: 20px;
	}
}

@media screen and (max-width:999px) {
	.models .list .title {
		font-size: 28px;
		line-height: 38px;
	}

	.models .list {
		margin-top: 40px;
	}

	.afterSales .con {
		flex-direction: column;
		align-items: flex-start;
	}

	.afterSales .msg {
		width: 100%;
	}

	.afterSales .msg {
		padding: 20px;
	}

	.afterSales .faqList {
		width: 100%;
		margin-top: 30px;
	}

	.afterSales .faqList .question .name {
		font-size: 18px;
		line-height: 28px;
	}

	.afterSales .faqList .item {
		padding: 20px;
	}
}

@media screen and (max-width:768px) {
	.models .list {
		margin-top: 30px;
	}

	.models .list .item:nth-child(n) {
		padding: 0 10px;
	}

	.models .list .title {
		font-size: 24px;
		line-height: 34px;
	}
}

@media screen and (max-width:538px) {
	.models .list .item:nth-child(n) {
		width: 100%;
		padding: 0;
		margin-top: 30px;
	}

	.models .list .item:nth-child(1) {
		margin-top: 0;
	}

	.models .list .item:nth-child(n)::after {
		display: none;
	}

	.models .list .title {
		font-size: 22px;
	}
}



/* 4-2service */

.faq {
	padding: 50px 0 90px 0;
}

.faq .faqList {
	margin-top: 35px;
}

.faq .faqList .item:nth-child(1) .answer {
	display: block;
}

.faq .faqList .item:nth-child(n) .question {
	border-radius: 0;
	background-color: transparent;
	border: none;
	padding: 22px 0px 21px;
}

.faq .faqList .item:nth-child(n) .question .name {
	color: #222222;
	font-family: Cambria;
}


.faq .faqList .item:nth-child(n) .question .btns {
	background-color: #F6871C;
}

.faq .faqList .item:nth-child(n) .question .btns i {
	background-color: #ffffff;
}

.faq .faqList .item {
	border-bottom: 1px solid #D9D9D9;
	margin-bottom: 3.5px;
}

.faq .faqList .item:last-child {
	margin-bottom: 0;
}


.faq .faqList .item:nth-child(1) {
	border-top: 1px solid #D9D9D9;
}

.faq .faqList .item .answer {
	/* border-top: 1px solid #D9D9D9; */
	padding: 0px 80px 33px 0px;
}

.faq .faqList .standardEdit p strong {
	color: #222;
	font-family: Cambria;
	font-size: 20px;
	font-weight: normal;
}

.faq .faqList .standardEdit p {
	color: #555;
	line-height: 30px;
}

.faq .faqList .standardEdit p em {
	font-style: normal;
	color: #222;
	font-family: Cambria;
	font-size: 18px;
	font-weight: 700;
}

@media screen and (max-width:1560px) {
	.faq .faqList .standardEdit p strong {
		font-size: 18px;
	}

	.faq .faqList .item:nth-child(n) .question {
		padding: 15px 0;
	}

	.faq .faqList .item .answer {
		padding: 0px 0 20px;
	}

	.faq .faqList .item {
		margin-bottom: 10px;
	}
}


@media screen and (max-width:999px) {
	.faq .faqList .standardEdit p strong {
		font-size: 16px;
	}

	.faq .faqList .standardEdit p em {
		font-size: 16px;
	}

	.faq .faqList .item:nth-child(n) .question {
		padding: 10px 0;
	}

	.faq .faqList .item {
		margin-bottom: 5px;
	}

	.faq .faqList {
		margin-top: 30px;
	}
}


/* 5-2download */

.download {
	padding: 50px 0 90px 0;
}

.download .list {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
}


.download .list .item {
	width: 23.42%;
	margin-right: 2.1%;
	margin-top: 30px;
	border: 1px solid #D9D9D9;
}

.download .list .item:nth-child(4n) {
	margin-right: 0;
}

.download .list .item:nth-child(-n+4) {
	margin-top: 0;
}

.download .list .image {
	overflow: hidden;
	padding: 15px;
	padding-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}


.download .list .box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 15px;
	border-top: 1px solid #D9D9D9;
}

.download .list .btn {
	width: 24px;
	flex-shrink: 0;
	margin-left: 20px;
}

.download .list .btn img {
	filter: grayscale(100%) brightness(60%);
}

.download .list .btn:hover img {
	transform: none;
	filter: grayscale(0%) brightness(100%);
}

.download .list .tit {
	line-height: 28px;
}

.download .list .tit:hover {
	color: #F6871C;
}

@media screen and (max-width:1560px) {
	.download .list .image {
		padding: 15px;
	}
}

@media screen and (max-width:1333px) {

	.download .list .box,
	.download .list .image {
		padding: 10px;
	}
}

@media screen and (max-width:999px) {
	.download .list .item:nth-child(n) {
		width: 32%;
		margin-right: 2%;
		margin-top: 30px;
	}

	.download .list .item:nth-child(3n) {
		margin-right: 0;
	}

	.download .list .item:nth-child(-n+3) {
		margin-top: 0;
	}

	.download .list .tit {
		font-size: 14px;
		line-height: 26px;
	}
}


@media screen and (max-width:538px) {
	.download .list {
		justify-content: space-between;
	}

	.download .list .item:nth-child(n) {
		width: 48%;
		margin-right: 0;
		margin-top: 20px;
	}

	.download .list .item:nth-child(-n+2) {
		margin-top: 0;
	}
}

/* 6-1sustaibility */

.sustaibility {
	background: #F7F7F7;
	padding-top: 50px;
	padding-left: calc((100% - 1400px)/ 2);
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}

.sustaibility .txts {
	margin-top: 31px;
}

.sustaibility .image {
	width: 55.7%;
}

.sustaibility .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.sustaibility .msg {
	width: 39%;
	padding: 30px 0 73px 0;
}

.sustaibility .clear {
	display: none;
}

.sustaibilityList {
	padding: 89px 0 90px 0;
}

.sustaibilityList .clear {
	display: none;
}


.sustaibilityList .item {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	align-items: center;

}

.sustaibilityList .item:nth-child(1) {
	margin-top: 0;
}

.sustaibilityList .item:nth-child(2n) {
	flex-direction: row-reverse;
}

.sustaibilityList .image {
	width: 48.92%;
	border-radius: 10px 0;
	overflow: hidden;
}

.sustaibilityList .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


.sustaibilityList .msg {
	width: 46.7%;
}


.sustaibilityList .smillTit {
	font-weight: 700;
	line-height: 32px;
}


.sustaibilityList .msg .line {
	width: 46px;
	height: 3px;
	border-radius: 9px;
	background: #F6871C;
	display: inline-block;
	margin-top: 20px;
}

.sustaibilityList .msg .txts {
	margin-top: 10px;
}

@media screen and (max-width:1560px) {
	.sustaibility .msg {
		padding: 40px 0;
	}

	.sustaibility {
		padding-left: 80px;
	}
}

@media screen and (max-width:1333px) {
	.sustaibility {
		padding: 50px 80px;
		display: block;
	}

	.sustaibility .clear {
		display: block;
	}

	.sustaibility .image {
		float: right;
		margin-left: 5%;
	}

	.sustaibility .msg {
		padding: 0;
		width: 100%;
	}

	.sustaibilityList .clear {
		display: block;
	}

	.sustaibilityList .item {
		display: block;
	}

	.sustaibilityList .item .msg {
		width: 100%;
	}

	.sustaibilityList .item:nth-child(2n) .image {
		float: right;
		margin-left: 5%;
	}

	.sustaibilityList .item:nth-child(2n-1) .image {
		float: left;
		margin-right: 5%;
	}

}

@media screen and (max-width:999px) {
	.sustaibilityList .item {
		margin-top: 50px;
	}
}

@media screen and (max-width:768px) {
	.sustaibility {
		padding: 40px 25px;
	}

	.sustaibilityList .item {
		margin-top: 40px;
	}
}

@media screen and (max-width:538px) {
	.sustaibility {
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.sustaibility .image {
		float: none;
		width: 100%;
		margin: 0;
		margin-top: 30px;
	}

	.sustaibilityList .item:nth-child(n) {
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.sustaibilityList .item:nth-child(n) .image {
		float: none;
		width: 100%;
		margin: 0;
		margin-top: 30px;
	}

	.sustaibility {
		padding: 40px 15px;
	}
}



/* 7-1blogs */

.blogs {
	padding: 50px 0 84px 0;
}

.blogs .list {
	margin-top: 50px;
}

.blogs .list .newItem {
	margin-top: 30px;
}

.blogs .list .newItem:nth-child(1) {
	margin-top: 0;
}

.blogs .pager {
	margin-top: 65px;
}

@media screen and (max-width:1560px) {
	.blogs .pager {
		margin-top: 60px;
	}
}

@media screen and (max-width:1333px) {
	.blogs .list {
		margin-top: 40px;
	}

	.blogs .pager {
		margin-top: 40px;
	}
}


@media screen and (max-width:768px) {
	.blogs .list {
		margin-top: 30px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.blogs .list .newItem {
		width: 48%;
	}

	.blogs .list .newItem:nth-child(-n+2) {
		margin-top: 0;
	}

	.blogs .pager {
		margin-top: 30px;
	}
}

@media screen and (max-width:450px) {
	.blogs .list .newItem:nth-child(n) {
		width: 100%;
		margin-top: 30px;
	}

	.blogs .list .newItem:nth-child(1) {
		margin-top: 0;
	}
}

/* 7-2blogs */


.blogDet {
	padding: 52px 0 81px 0;
}

.blogDet h1 {
	font-weight: normal;
}

.smillTit {
	color: #222;
	font-family: Cambria;
	font-size: 30px;
	line-height: 40px;
}

.blogDet .tips {
	display: flex;
	align-content: center;
	margin-top: 23px;
}

.blogDet .tips .time {
	color: #555;
	font-size: 16px;
	line-height: 26px;
	flex-shrink: 0;
	margin-right: 25px;
}

.share {
	display: flex;
	align-items: center;
}

.share span {
	color: #555;
	font-size: 16px;
	line-height: 26px;
	flex-shrink: 0;
	margin-right: 16px;
}

.blogDet .des {
	margin-top: 31px;
}

.blogDet .prevOrNext {
	margin-top: 43px;
}


.prevOrNext {
	border-top: 1px solid #D9D9D9;
	border-bottom: 1px solid #D9D9D9;
	padding: 29px 0 25px 0;
}

.prevOrNext .prev,
.prevOrNext .next {
	color: #434343;
	font-size: 16px;
	line-height: 26px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}


.prevOrNext .next {
	margin-top: 11px;
}

.prevOrNext a:hover {
	color: #171717;
}


.blogDet .latestBlogs {
	margin-top: 70px;
}

.blogDet .hotProducts {
	margin-top: 65px;
}

@media screen and (max-width:1560px) {
	.smillTit {
		font-size: 28px;
		line-height: 40px;
	}

	.blogDet .tips {
		margin-top: 30px;
	}

	.blogDet .prevOrNext {
		margin-top: 30px;
	}

	.prevOrNext {
		padding: 20px 0;
	}

	.blogDet .latestBlogs,
	.blogDet .hotProducts {
		margin-top: 60px;
	}
}

@media screen and (max-width:1333px) {
	.smillTit {
		font-size: 26px;
		line-height: 38px;
	}
}

@media screen and (max-width:999px) {
	.smillTit {
		font-size: 22px;
		line-height: 34px;
	}

	.share span {
		font-size: 14px;
		line-height: 26px;
	}

	.prevOrNext .prev,
	.prevOrNext .next {
		font-size: 14px;
	}

	.blogDet .latestBlogs,
	.blogDet .hotProducts {
		margin-top: 50px;
	}
}

@media screen and (max-width:768px) {
	.smillTit {
		font-size: 20px;
		line-height: 30px;
	}

	.blogDet .latestBlogs,
	.blogDet .hotProducts {
		margin-top: 40px;
	}
}

@media screen and (max-width:538px) {
	.blogDet .tips {
		flex-direction: column;
		align-items: flex-start;
	}

	.blogDet .tips .time {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

/* 8-1contact */

.contact .con {
	padding: 50px 0 90px 0;
	border-bottom: 1px solid #CCC;
}

.contact .con {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.contact .info {
	width: 43.57%;
}


.contact form {
	width: 48.85%;
}


.contact .info .txts {
	margin-top: 21px;
}

.contact .info .list {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}


.contact .info .list li {
	display: flex;
	align-items: flex-start;
	margin-top: 28px;
	width: 100%;
}

.contact .info .list li:nth-child(-n+1) {
	margin-top: 0;
}

.contact .info .list i {
	flex-shrink: 0;
	margin-right: 11px;
	font-size: 26px;
	color: #F6871C;
	line-height: 26px;
	transform: translateY(4px);
}


.contact .info .list .num {
	color: #222;
	font-family: WorkSans-Medium;
	font-size: 18px;
	line-height: 26px;
}

.contact .info .list a.num:hover {
	color: #F6871C;
}

.contact .info .list .email .num {
	word-break: break-all;
}

.contact .info .map {
	margin-top: 40px;
}

.contact .info .map img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.contact form {
	margin-top: 13px;
}

.contact form .name {
	color: #171717;
	font-size: 16px;
	line-height: 26px;
}

.contact form li {
	margin-top: 21.5px;
}

.contact form li:nth-child(1) {
	margin-top: 0;
}


.contact form input {
	width: 100%;
	height: 50px;
	border-radius: 4px;
	margin-top: 10px;
	background-color: #F5F5F5;
	padding: 0 13px;
}


.contact form textarea {
	height: 150px;
	width: 100%;
	background-color: #F5F5F5;
	padding: 10px 13px;
	border-radius: 4px;
	overflow: hidden;
	margin-top: 10px;
}

.contact form .codeCon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	background-color: #F5F5F5;
	padding: 0 15px 0 13px;
	border-radius: 4px;
	overflow: hidden;
}


.contact form li.codeCon {
	margin-top: 16px;
}


.contact form .codeCon input {
	background-color: transparent;
	flex: 1;
	height: 100%;
	margin-top: 0;
	padding: 0;
}

.contact form .codeCon .codeImg {
	width: 79px;
	height: 26px;
	background-color: #f3fbfe;
	flex-shrink: 0;
	margin-left: 30px;
	cursor: pointer;
}


.contact form .subBtn {
	width: 100px;
	height: 49px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	color: #FFF;
	font-family: OpenSans-SemiBold;
	font-size: 16px;
}


.contact form .subBtn input {
	width: 100%;
	height: 100%;
	margin: 0;
	background-color: #F6871C;
	color: #FFF;
	font-family: OpenSans-SemiBold;
	font-size: 16px;
	cursor: pointer;
	border: 1px solid #F6871C;
	border-radius: 10px 0;
}


.contact form .subBtn:hover input {
	background-color: transparent;
	color: #F6871C;
}

.contact form input::-webkit-input-placeholder,
.contact form textarea::-webkit-input-placeholder {
	color: #171717;
}

.contact form input:-moz-placeholder,
.contact form textarea:-moz-placeholder {
	color: #171717;
}

.contact form input::-moz-placeholder,
.contact form textarea::-moz-placeholder {
	color: #171717;
}

.contact form input:-ms-input-placeholder,
.contact form textarea:-ms-input-placeholder {
	color: #171717;
}


.contact form .m-formcountry {
	position: relative;
	height: 50px;
	margin-top: 10px;
}

.contact form .m-formcountry input {
	height: 100%;
	margin-top: 0;
}



.contact form .m-formcountry .drop-btn {
	position: relative;
	height: 100%;
}

.contact form .m-formcountry .drop-btn i,
.contact form .m-formcountry .drop-btn svg {
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	font-size: 12px;
}

.contact form .m-formcountry .drop-list {
	display: none;
	border: 1px solid #e6e6e6;
	width: 100%;
	position: absolute;
	top: 100%;
	background-color: #fff;
	max-height: 223px;
	overflow-x: hidden;
	z-index: 10001;
	scrollbar-color: #F6871C rgba(0, 0, 0, 0.05);
	scrollbar-width: thin;
}

.contact form .m-formcountry .drop-list::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

.contact form .m-formcountry .drop-list::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
}

.contact form .m-formcountry .drop-list::-webkit-scrollbar-thumb {
	background-color: #F6871C;
}

.contact form .m-formcountry .drop-list li {
	font-size: 16px;
	line-height: 26px;
	overflow: hidden;
	padding: 5px 13px;
	cursor: pointer;
	border-bottom: 1px solid #e6e6e6;
	color: #999;
	margin: 0;
}

.contact form .m-formcountry .drop-list li.on {
	background-color: #F6871C;
	color: #ffffff;
}


@media screen and (max-width:1560px) {
	.contact .info .list .num {
		font-size: 16px;
		line-height: 28px;
	}
}

@media screen and (max-width:1333px) {

	.contact form input,
	.contact form .subBtn,
	.contact form .m-formcountry,
	.contact form .codeCon {
		height: 45px;
	}
}

@media screen and (max-width:999px) {
	.contact .info .list .num {
		font-size: 14px;
		line-height: 26px;
	}

	.contact .info .list i {
		font-size: 24px;
		transform: translateY(3px);
	}

	.contact form .name {
		font-size: 14px;
		line-height: 26px;
	}

	.contact form input,
	.contact form .subBtn,
	.contact form .m-formcountry,
	.contact form .codeCon {
		height: 40px;
	}

	.contact form .m-formcountry .drop-list li {
		font-size: 14px;
		line-height: 24px;
		width: 100%;
	}

	.contact .con {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact form {
		margin-top: 40px;
		width: 100%;
	}

	.contact .info {
		width: 100%;
	}

	.contact .info .list {
		margin-top: 30px;
	}

	.contact .info .map {
		margin-top: 30px;
	}

	.contact form ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.contact form ul li {
		width: 49%;
		margin-top: 15px;
	}

	.contact form ul li:nth-child(-n+2) {
		margin-top: 0;
	}

	.contact form input {
		margin-top: 5px;
	}

	.contact form ul li.country,
	.contact form ul li.message,
	.contact form ul li.codeCon {
		width: 100%;
	}
}

@media screen and (max-width:450px) {
	.contact form ul li:nth-child(n) {
		width: 100%;
		margin-top: 10px;
	}

	.contact form ul li:nth-child(1) {
		margin-top: 0;
	}

	.contact form input,
	.contact form .subBtn,
	.contact form .m-formcountry,
	.contact form .codeCon {
		height: 36px;
	}

	.contact form ul li.subBtn {
		width: 100px;
		margin-top: 20px;
	}
}







/* crumb */

.crumb {
	padding: 34px 0 36px 0;
	border-bottom: 1px solid #D9D9D9;
}

.crumb a,
.crumb i {
	font-size: 16px;
	font-style: normal;
	letter-spacing: 0px;
	color: #222222;
}

.crumb a.active,
.crumb a:hover {
	color: #555555;
}

.crumb i {
	font-style: normal;
	margin: 0 8.5px;
}

/* pager */

.pager {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.pager .pageList {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.pager .pageList a {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #222;
	margin: 5px 6px;
	border-radius: 10px 0;
}



.pager .pageList a.active,
.pager .pageList a:hover {
	background-color: #F6871C;
	color: #ffffff;
}

.pager .pageList a.prev {
	width: auto;
	margin: 5px 14px;
	color: #666666;
}

.pager .pageList a.next {
	width: auto;
	margin: 5px 19px;
	color: #666666;
}

.pager .pageList a.prev:hover,
.pager .pageList a.next:hover {
	background-color: transparent;
	color: #222;
}

.pager .pageList a.prev i,
.pager .pageList a.next i {
	font-size: 12px;
	font-weight: bold;
	color: #222222;
}

.pager .pageList a.prev i {
	flex-shrink: 0;
	margin-right: 10px;
}



.pager .pageList a.next i {
	flex-shrink: 0;
	margin-left: 10px;
}

.pager .addTo {
	display: flex;
	align-items: center;
	margin: 5px 4px;
	position: relative;
	color: #171717;
	font-size: 16px;
	line-height: 26px;
}


.pager .addTo span {
	color: #171717;
	font-size: 16px;
	line-height: 28px;
	position: relative;
}

.pager .addTo span::after {
	content: "";
	position: absolute;
	right: 0;
	width: 0;
	height: 1px;
	background-color: #171717;
	transition: .4s ease all;
	bottom: 1px;
}

.pager .addTo:hover span::after {
	width: 100%;
	right: auto;
	left: 0;
}


.pager .addTo img {
	flex-shrink: 0;
	margin-left: 38px;
	width: 18px;
	height: 18px;
}



.pager .addTo input {
	background-color: transparent;
	cursor: pointer;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
}


@media screen and (max-width:1560px) {
	.crumb {
		padding: 20px 0;
	}
}

@media screen and (max-width:1333px) {
	.crumb {
		padding: 14px 0;
	}
}

@media screen and (max-width:999px) {
	.crumb {
		border-top: 1px solid #D9D9D9;
	}

	.crumb a,
	.crumb i {
		font-size: 14px;
		line-height: 24px;
	}

	.pager .pageList a {
		font-size: 14px;
	}

	.pager .addTo span {
		font-size: 14px;
		line-height: 26px;
	}

	.pager .addTo img {
		margin-left: 20px;
	}
}

@media screen and (max-width:768px) {
	.crumb {
		padding: 10px 0;
	}
}

@media screen and (max-width:538px) {}



footer {
	background-color: #FFFFFF;
	padding: 69px 0 36px 0;
}


footer .con {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

footer .followUs {
	width: 22%;
}

footer .blogrolls {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 17px;
}

footer .blogrolls a {
	margin: 19px 0;
	margin-right: 53px;
}

footer .blogrolls a i {
	font-size: 35px;
}

footer .followUs .tit {
	color: #222;
	font-family: Cambria;
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
}



footer .footerList {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	width: 50.1%;
}



footer .footerList .box li {
	margin-top: 6.5px;
}

footer .footerList .box li:nth-child(1) {
	margin-top: 0;
}

footer .footerList .titBox .meuBtn {
	display: none;
}

footer .footerList .fProduct {
	width: 40%;
	margin-right: 6%;
}


footer .footerList .fApplication {
	width: 38%;
	margin-right: 3.7%;
}

footer .footerList .fCompany {
	width: 12.3%;
}


footer a,
footer p,
footer div {
	font-family: OpenSans-SemiBold;
	font-size: 16px;
	line-height: 26px;
	color: #222;
}

footer a:hover {
	color: #F6871C;
}


footer .title {
	font-family: OpenSans-Regular;
	font-size: 16px;
	line-height: 26px;
	color: #555555;
	display: inline-block;
	position: relative;
}

footer .title::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 30px;
	height: 2px;
	border-radius: 9px;
	background: #F6871C;
}


footer .footerList .box {
	margin-top: 25px;
}


footer .line {
	margin-top: 46px;
	width: 100%;
	height: 1px;
	background-color: #CCC;
}






footer .copyright {
	position: relative;
	color: #666;
	line-height: 30px;
	margin-top: 28px;
	font-family: OpenSans-Regular;
}


footer .copyright a {
	font-family: OpenSans-Regular;
	display: inline-block;
	color: #666;
	line-height: 30px;
}

footer .copyright a:hover {
	color: #F6871C;
}

footer .copyright a img {
	display: inline-block;
}

footer .copyright a.image {
	margin-left: 4px;
}

footer .copyright a:hover img {
	transform: scale(1.1);
}



@media screen and (max-width:1560px) {

	footer .footerList {
		justify-content: space-between;
	}

	footer .footerList>li:nth-child(n) {
		margin-right: 0;
	}

	footer .footerList .box li {
		margin-top: 10px;
	}

	footer {
		padding: 60px 0 40px 0;
	}

	footer .footerList {
		width: 70%;
	}

	footer .followUs {
		width: 25%;
	}

	footer .footerList .fCompany {
		width: 16%;
	}

	footer .blogrolls a i {
		font-size: 24px;
	}

	footer .blogrolls a {
		margin-right: 30px;
	}

	footer .line,
	footer .copyright {
		margin-top: 30px;
	}
}

@media screen and (max-width:1333px) {
	footer .blogrolls a i {
		font-size: 20px;
	}

	footer .followUs .tit {
		font-size: 22px;
		line-height: 32px;
	}

	footer {
		padding: 50px 0 30px 0;
	}

	footer .line,
	footer .copyright {
		margin-top: 20px;
	}
}

@media screen and (max-width:999px) {
	footer .con {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	footer .followUs {
		width: 100%;
		margin-top: 20px;
	}

	footer .footerList {
		flex-wrap: wrap;
		width: 100%;
	}

	footer .footerList>li:nth-child(n) {
		width: 100%;
		margin-bottom: 16px;
	}

	footer .footerList>li:last-child {
		margin-bottom: 0;
	}

	footer .footerList .box {
		margin-top: 16px;
	}

	footer a,
	footer p,
	footer div {
		font-size: 14px;
		line-height: 26px;
	}

	footer .box ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	footer .footerList .box {
		display: none;
		transition: none;
	}

	footer .footerList .box ul li {
		width: 48%;
		margin-bottom: 0;
		margin-top: 10px;
	}

	footer .footerList .box ul li:nth-child(-n+2) {
		margin-top: 0;
	}

	footer .footerList .titBox {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	footer .footerList .titBox .meuBtn {
		width: 32px;
		height: 32px;
		font-size: 12px;
		font-weight: bold;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	footer .footerList .titBox .meuBtn.active {
		transform: rotate(90deg);
	}

	footer {
		padding: 40px 0 60px;
	}

	footer a,
	footer p,
	footer div,
	footer .fBottom .links span,
	footer .fBottom .links a {
		font-size: 14px;
	}

	footer .blogrolls a {
		margin: 10px 0;
		margin-right: 20px;
	}

	footer .blogrolls {
		margin-top: 10px;
	}

	footer .followUs .tit {
		font-size: 20px;
		line-height: 30px;
	}
}


@media screen and (max-width:538px) {

	footer .footerList .box ul li:nth-child(n) {
		width: 100%;
		margin-top: 10px;
	}

	footer .footerList .box ul li:nth-child(1) {
		margin-top: 0;
	}

	footer .footerList .fInquiry ul li:nth-child(n) {
		width: 100%;
		margin-top: 15px;
	}

	footer .footerList .fInquiry ul li:nth-child(-n+1) {
		margin-top: 0;
	}

	footer .footerLinks a:nth-child(n) {
		width: 100%;
		margin-top: 15px;
	}

	footer .footerLinks a:nth-child(1) {
		margin-top: 0;
	}

	footer .blogrolls a i {
		font-size: 18px;
	}
}


/* certifiicates */

#baguetteBox-overlay {
	display: none;
	opacity: 0;
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #222;
	background-color: rgba(0, 0, 0, .8);
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
	z-index: 99999999999999999999999999999999999999;
}

#baguetteBox-overlay.visible {
	opacity: 1
}

#baguetteBox-overlay .full-image {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
}

#baguetteBox-overlay .full-image figure {
	display: inline;
	margin: 0;
	height: 100%
}

#baguetteBox-overlay .full-image img {
	display: inline-block;
	width: auto;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	vertical-align: middle;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
	-moz-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
	box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}

#baguetteBox-overlay .full-image figcaption {
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	line-height: 1.8;
	color: #ccc;
	background-color: #000;
	background-color: rgba(0, 0, 0, .6);
	font-family: OpenSans-Regular, Arial, sans-serif;
}

#baguetteBox-overlay .full-image:before {
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px
}

#baguetteBox-slider {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	white-space: nowrap;
	-webkit-transition: left .4s ease, -webkit-transform .4s ease;
	transition: left .4s ease, -moz-transform .4s ease;
	transition: left .4s ease, transform .4s ease
}

#baguetteBox-slider.bounce-from-right {
	-webkit-animation: bounceFromRight .4s ease-out;
	animation: bounceFromRight .4s ease-out
}

#baguetteBox-slider.bounce-from-left {
	-webkit-animation: bounceFromLeft .4s ease-out;
	animation: bounceFromLeft .4s ease-out
}

.baguetteBox-button#next-button,
.baguetteBox-button#previous-button {
	top: 50%;
	top: calc(50% - 30px);
	width: 44px;
	height: 60px
}

.baguetteBox-button {
	position: absolute;
	cursor: pointer;
	outline: 0;
	padding: 0;
	margin: 0;
	border: 0;
	-moz-border-radius: 15%;
	border-radius: 15%;
	background-color: #323232;
	background-color: rgba(50, 50, 50, .5);
	color: #ddd;
	font: 1.6em sans-serif;
	-webkit-transition: background-color .4s ease;
	transition: background-color .4s ease;
}

.baguetteBox-button:hover {
	background-color: rgba(50, 50, 50, .9)
}

.baguetteBox-button#next-button {
	right: 2%
}

.baguetteBox-button#previous-button {
	left: 2%
}

.baguetteBox-button#close-button {
	top: 20px;
	right: 2%;
	right: calc(2% + 6px);
	width: 30px;
	height: 30px
}

.baguetteBox-button svg {
	position: absolute;
	left: 0;
	top: 0
}

.spinner {
	width: 40px;
	height: 40px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -20px
}

.double-bounce1,
.double-bounce2 {
	width: 100%;
	height: 100%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
	opacity: .6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: bounce 2s infinite ease-in-out;
	animation: bounce 2s infinite ease-in-out
}

.double-bounce2 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s
}

@-webkit-keyframes bounceFromRight {
	0% {
		margin-left: 0
	}

	50% {
		margin-left: -30px
	}

	100% {
		margin-left: 0
	}
}

@keyframes bounceFromRight {
	0% {
		margin-left: 0
	}

	50% {
		margin-left: -30px
	}

	100% {
		margin-left: 0
	}
}

@-webkit-keyframes bounceFromLeft {
	0% {
		margin-left: 0
	}

	50% {
		margin-left: 30px
	}

	100% {
		margin-left: 0
	}
}

@keyframes bounceFromLeft {
	0% {
		margin-left: 0
	}

	50% {
		margin-left: 30px
	}

	100% {
		margin-left: 0
	}
}

@-webkit-keyframes bounce {

	0%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0)
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes bounce {

	0%,
	100% {
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		transform: scale(0)
	}

	50% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1)
	}
}

/* video tankuang */

.tankaunga {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 9999999999
}

.tankaunga:before {
	content: "X";
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	top: 10px;
	right: 10px;
	background: #fff;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
}

.tankaungn2 {
	position: fixed;
	left: 5%;
	top: 5%;
	right: 5%;
	bottom: 5%;
	background: rgba(0, 0, 0, 0.5);
}

.tankaungn2 iframe,
.tankaungn2 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.tankaungn2 iframe body {
	margin: 0px !important;
}



/* customer */

.customer {
	position: fixed;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99999;
	border-radius: 30px;
	background: #ffffff;
	box-shadow: 0 0 20px 0 rgba(0, 55, 104, 0.20);
	width: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5px 0;

}

.customer>div {
	margin-bottom: 18px;
	border-radius: 50%;
}


.customer div a,
.customer div div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	color: #171717;
	font-size: 24px;
	border-radius: 50%;
	position: relative;
	background-color: #ffffff;

}

.customer div a:after,
.customer div div:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #F6871C;
	color: #ffffff;
	z-index: -1;
	border-radius: 50%;
	opacity: 0;
	transition: .4s ease all;
}

.customer .top {
	margin-bottom: 0;
}

.customer .top a {
	width: 50px;
	height: 50px;
	background-color: #ffffff;
	color: #333;
	text-align: center;
	cursor: pointer;
	transition: 0.9s;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}


.customer a i {
	display: flex;
	align-items: center;
	justify-content: center;
}


.customer .top i {
	font-size: 26px;
}

.customer div div {
	cursor: pointer;
}

.customer div:hover a,
.customer div:hover div {
	color: #ffffff;
	background-color: transparent;
}

.customer div:hover a:after,
.customer div:hover div:after {
	opacity: 1;
}

.customer div a:hover i {
	color: #ffffff;
}

.clear2 {
	display: none;
}


.customer .code {
	position: relative;
}

.customer .code img {
	position: absolute;
	top: 0;
	right: 100%;
	width: 150px;
	height: 150px;
	max-width: none;
	transform: translateX(100%);
	z-index: -10;
	opacity: 0;
	pointer-events: none;
}

.customer .code:hover img {
	transform: translateX(0);
	opacity: 1;
	pointer-events: all;
}


@media screen and (max-width: 1360px) {
	.customer {
		right: 5px;
	}

	.customer>div {
		margin-bottom: 10px;
	}

	.customer {
		width: 50px;
	}

	.customer div a,
	.customer div div {
		width: 45px;
		height: 45px;
		font-size: 22px;
	}

	.customer .top i {
		font-size: 24px;
	}

	.customer .top a {
		width: 45px;
		height: 45px;
	}
}

@media screen and (max-width: 999px) {
	.customer {
		display: block;
		border-radius: 0;
		padding: 0;
		box-shadow: none;
		background-color: transparent;
	}

	.customer>div {
		margin-bottom: 0;
	}

	.customer .top a {
		width: 100%;
		height: 42px;
		line-height: 40px;
		bottom: 0px;
		right: 0px;
		border-radius: 0px;
		border: none;
		box-shadow: none;
		background-color: #ffffff;
		border-top: 1px solid #F2F2F2;
	}

	.customer {
		width: 100%;
		right: auto;
		top: auto;
		margin: auto;
		left: 0px;
		bottom: 0px;
		transform: translateY(0);
	}

	.customer div {
		width: 25%;
		float: left;
	}

	.customer div a,
	.customer div div {
		font-size: 18px;
		height: 42px;
		margin: auto;
		width: 100%;
		background-color: #ffffff;
		color: #171717;
		border-radius: 0px;
		border-top: 1px solid #F2F2F2;
	}

	.customer div:hover a,
	.customer div:hover div {
		color: #171717;
		background-color: #ffffff;
	}

	.customer div a:hover i {
		color: #171717;
	}

	.customer div a:after,
	.customer div div:after {
		border-radius: 0;
		display: none;
	}

	.customer div.active a,
	.customer div.active div {
		background-color: #F6871C;
		color: #ffffff;
	}

	.customer div.active a:after,
	.customer div.active div:after {
		opacity: 1;
	}

	.customer .top i {
		border-color: #fff;
	}

	.customer .code img,
	.customer .code:hover img {
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		top: 0;
		opacity: 0;
	}

	.customer .code.active img {
		opacity: 1;
		transform: translateX(-50%) translateY(-100%);
		pointer-events: all;
	}
}

@media screen and (max-width: 768px) {

	.customer .code img,
	.customer .code:hover img {
		left: 0%;
		transform: translateX(0%);
	}

	.customer .code.active img {
		left: 0%;
		transform: translateX(0%) translateY(-100%);
	}
}


@font-face {
	font-family: 'OpenSans-Regular';
	font-display: swap;
	src: url('../fonts/OpenSansRegular.eot');
	src: url('../fonts/OpenSansRegular.eot') format('embedded-opentype'),
		url('../fonts/OpenSansRegular.woff2') format('woff2'),
		url('../fonts/OpenSansRegular.woff') format('woff'),
		url('../fonts/OpenSansRegular.ttf') format('truetype'),
		url('../fonts/OpenSansRegular.svg#segoeui') format('svg');
}

@font-face {
	font-family: 'OpenSans-SemiBold';
	font-display: swap;
	src: url('../fonts/OPENSANSSEMIBOLD.eot');
	src: url('../fonts/OPENSANSSEMIBOLD.eot') format('embedded-opentype'),
		url('../fonts/OPENSANSSEMIBOLD.woff2') format('woff2'),
		url('../fonts/OPENSANSSEMIBOLD.woff') format('woff'),
		url('../fonts/OPENSANSSEMIBOLD.ttf') format('truetype'),
		url('../fonts/OPENSANSSEMIBOLD.svg#OPENSANSSEMIBOLD') format('svg');

}

@font-face {
	font-family: 'Cambria';
	font-display: swap;
	src: url('../fonts/cambria.eot');
	src: url('../fonts/cambria.eot') format('embedded-opentype'),
		url('../fonts/cambria.woff2') format('woff2'),
		url('../fonts/cambria.woff') format('woff'),
		url('../fonts/cambria.ttf') format('truetype'),
		url('../fonts/cambria.svg#cambria') format('svg');

}


@font-face {
	font-family: "iconfont";
	/* Project id 4576167 */
	font-display: swap;
	src:
		url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2'),
		url('../fonts/iconfont.woff?t=1760507314955') format('woff'),
		url('../fonts/iconfont.ttf?t=1760507314955') format('truetype');
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-top02:before {
	content: "\e6f5";
}

.icon-kefu:before {
	content: "\e608";
}

.icon-teams_x:before {
	content: "\e604";
}

.icon-zhiding1:before {
	content: "\e7b9";
}

.icon-QQ:before {
	content: "\e882";
}

.icon-QQkongjian:before {
	content: "\e619";
}

.icon-paper-full:before {
	content: "\ea0b";
}

.icon-jian:before {
	content: "\e612";
}

.icon-xiaohongshu:before {
	content: "\e69e";
}

.icon-zhiding:before {
	content: "\e68c";
}

.icon-youjian_:before {
	content: "\e6a6";
}

.icon-chuanzhen:before {
	content: "\e6b4";
}

.icon-shangjiantou:before {
	content: "\e60f";
}

.icon-yuyan:before {
	content: "\e684";
}

.icon-dingbu:before {
	content: "\e62d";
}

.icon-Youtube:before {
	content: "\e880";
}

.icon-liuyanjianyi:before {
	content: "\e62c";
}

.icon-shangchuan:before {
	content: "\e60b";
}

.icon-youjian:before {
	content: "\e624";
}

.icon-yonghu:before {
	content: "\e6b3";
}

.icon-pinterest1:before {
	content: "\f211";
}

.icon-jia1:before {
	content: "\e632";
}

.icon-xiazai:before {
	content: "\e682";
}

.icon-xiangyoujiantou:before {
	content: "\e68b";
}

.icon-xiangyoujiantou-copy:before {
	content: "\f1eb";
}

.icon-guanbi:before {
	content: "\e611";
}

.icon-zuosanjiao:before {
	content: "\e63e";
}

.icon-yousanjiao-copy:before {
	content: "\f1e8";
}

.icon-email-s:before {
	content: "\e65e";
}

.icon-douyin:before {
	content: "\e8db";
}

.icon-xinlangweibo:before {
	content: "\e606";
}

.icon-duigou-cu:before {
	content: "\e658";
}

.icon-facebook-fill:before {
	content: "\e88d";
}

.icon-linkedin1:before {
	content: "\f1e7";
}

.icon-weixin:before {
	content: "\e695";
}

.icon-jiantou_xiangzuo_o:before {
	content: "\eb92";
}

.icon-jiantou_xiangyou_o:before {
	content: "\eb94";
}

.icon-twitter-new:before {
	content: "\e7ff";
}

.icon-ditudingwei:before {
	content: "\e625";
}

.icon-phone3:before {
	content: "\e661";
}

.icon-doubleright:before {
	content: "\e7ef";
}

.icon-line:before {
	content: "\e63f";
}

.icon-instagram2:before {
	content: "\e6fc";
}

.icon-rili:before {
	content: "\e8b4";
}

.icon-videoyoutube:before {
	content: "\e7a1";
}

.icon-phone-:before {
	content: "\e638";
}

.icon-earth-full:before {
	content: "\e9ee";
}

.icon-facebook:before {
	content: "\e620";
}

.icon-pinterest:before {
	content: "\e8ab";
}

.icon-linkedin:before {
	content: "\e648";
}

.icon-youtube:before {
	content: "\e6d6";
}

.icon-left:before {
	content: "\e72c";
}

.icon-right:before {
	content: "\e72d";
}

.icon-left1:before {
	content: "\e730";
}

.icon-right1:before {
	content: "\e731";
}

.icon-search4:before {
	content: "\e7b2";
}

.icon-address:before {
	content: "\e7bc";
}

.icon-email:before {
	content: "\e7bd";
}

.icon-whatsapp:before {
	content: "\e7bf";
}

.icon-mobile:before {
	content: "\e7c6";
}

.icon-tel:before {
	content: "\e7c7";
}

.icon-skype:before {
	content: "\e7cc";
}

.icon-whatsapp1:before {
	content: "\e7c1";
}

.icon-address1:before {
	content: "\e7c3";
}

.icon-email1:before {
	content: "\e7c5";
}

.icon-skype1:before {
	content: "\e7c9";
}

.icon-fax1:before {
	content: "\e7ca";
}

.icon-tel1:before {
	content: "\e7cd";
}

.icon-wechat:before {
	content: "\e7cf";
}

.icon-phone2:before {
	content: "\e7d0";
}

.icon-top:before {
	content: "\e7ed";
}

.icon-vk:before {
	content: "\e735";
}

.icon-instagram1:before {
	content: "\e640";
}

.icon-up7:before {
	content: "\e722";
}

.icon-left7:before {
	content: "\e724";
}

.icon-tel2-copy:before {
	content: "\f212";
}

.icon-right7:before {
	content: "\e725";
}

.icon-sousuo:before {
	content: "\e616";
}

.icon-sousuo1:before {
	content: "\e65b";
}

.icon-biaoqian:before {
	content: "\e649";
}

.icon-twitter4:before {
	content: "\e7fe";
}



.downloadNav {
	background-color: #eeeeee;
	border-bottom: 1px solid #D9D9D9;
}


.downloadNav .con {
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.downloadNav .con .swiper {
	width: 1%;
	flex: 1;
}


.downloadNav .btns {
	display: flex;
	align-items: center;
}

.downloadNav .btns>div {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #666666;
	font-weight: bold;
	width: 60px;
	height: 30px;
	position: relative;
	cursor: pointer;
}

.downloadNav .btns>div:hover{
	color: #F6871C;
}

.downloadNav .btns>div.prev{
	margin-left: 40px;
}


.downloadNav .btns>div.prev::after{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 20px;
	background-color: #dddddd;
}



.downloadNav .swiper-slide {
	width: auto;
	min-width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.downloadNav .swiper-slide a {
	padding: 15px;
	font-size: 18px;
	color: #333;
	text-align: center;
	width: 100%;
}


.downloadNav .swiper-slide:hover a,
.downloadNav .swiper-slide.active a {
	background-color: #F6871C;
	color: #ffffff;
}

@media screen and (max-width:1333px){
 	.downloadNav .swiper-slide a{
		font-size: 16px;
		padding: 10px 15px;
	}	
}
@media screen and (max-width:999px){
 	.downloadNav .swiper-slide a{
 		font-size: 14px;
		padding: 10px 24px;
 	}	
	.downloadNav .swiper-slide{
		min-width: auto;
	}
}
@media screen and (max-width:538px){
 	.downloadNav .btns>div.prev{
		margin-left: 20px;
	}	
	.downloadNav .btns>div{
		width: 40px;
	}
}