@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: Inter-Regular, Arial, sans-serif;
	font-size: 16px;
	height: 100%;
	background-color: #fff;
	overflow: hidden;
}

ul {
	list-style: none;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-size: 62.5%;
}

.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: Inter-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;
	}
}


@media screen and (max-width:1333px) {
	.standardRange {
		padding: 60px 0 60px 0 !important;
	}
}

@media screen and (max-width:999px) {
	.standardRange {
		padding: 50px 0 50px 0 !important;
	}
}

@media screen and (max-width:768px) {
	.standardRange {
		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: #D71918;
		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(215, 25, 24, 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: Inter-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 {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 9999;
	background: #ffffff;
}


nav.active {
	box-shadow: 0px 0px 10px rgba(122, 122, 122, 0.2);
}



nav .con {
	display: flex;
	align-items: center;
	justify-content: space-between;
}



nav .logo {
	width: 123px;
	flex-shrink: 0;
}


nav .logo:hover img {
	transform: none;
}


nav .navList {
	display: flex;
	align-items: center;
}


nav .navList>ul {
	display: flex;
	align-items: center;
}

nav .navList>ul>li {
	margin-right: 33px;
	position: relative;
}

nav .navList>ul>li:last-child {
	margin: 0;
}


nav a {
	display: block;
}


nav .navList>ul>li>a {
	height: 80px;
	line-height: 80px;
	color: #333333;
	font-size: 18px;
	font-family: Inter-Medium;
	position: relative;
}

html {
	scroll-padding-top: 80px;
}

.bannerRange {
	height: 80px;
}

nav .navList>ul>li>a::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 19px;
	height: 2px;
	width: 0;
	transition: .4s ease all;
	background-color: #D71918;
}



nav .navList>ul>li.active>a:after,
nav .navList>ul>li:hover>a:after {
	width: 51px;
}

nav .navList>ul>li.active>a,
nav .navList>ul>li:hover>a {
	color: #D71918;
}



nav .btns {
	display: flex;
	align-items: center;
	margin-left: 47px;
}


nav .btns .search {
	height: 80px;
	display: flex;
	align-items: center;
	position: relative;
	margin-right: 61px;
}


nav .btns .search .searchBtn {
	cursor: pointer;
}


nav .btns .search .searchBtn i {
	font-size: 16px;
	color: #333;
	font-weight: bold;
}


nav .btns .search .searchBtn:hover i {
	color: #D71918;
}


nav .btns .search form {
	position: absolute;
	right: 0;
	top: 100%;
	background-color: #ffffff;
	height: 50px;
	width: 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.14);
	overflow: hidden;
}


nav .btns .search form.active {
	width: 280px;
	padding: 0 10px;
}

nav .btns .search form input {
	width: 100%;
	height: 100%;
}


nav .btns .search form .subBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 35px;
	width: 35px;
}

nav .btns .search form .subBtn:hover i {
	color: #D71918;
}


nav .btns .search form .subBtn input {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	cursor: pointer;
	background-color: transparent;
}


nav .btns .language {
	height: 80px;
	display: flex;
	align-items: center;
	position: relative;
}

nav .btns .lanBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #666;
	font-size: 16px;
}


nav .btns .lanBtn:hover,
nav .btns .lanBtn:hover i {
	color: #D71918;
}


nav .btns .lanBtn.active i {
	transform: rotate(-90deg);
}


nav .btns .lanBtn img {
	flex-shrink: 0;
	width: 36px;
	margin-right: 5px;
}

nav .btns .lanBtn i {
	margin-left: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transform: rotate(90deg);
	color: #666;
	margin-right: 4px;
}


nav .btns .language ul {
	position: absolute;
	top: 100%;
	background-color: #feffff;
	box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.14);
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	max-width: 200px;
	display: none;
	transition: none;
	min-width: 100%;
}



nav .btns .language ul a {
	padding: 8px 26px;
	color: #333333;
	position: relative;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
}


nav .btns .language ul a:hover {
	color: #D71918;
}


nav .btns .language ul a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 30px);
	height: 1px;
	background-color: rgba(0, 0, 0, .1);
}




/* moreList */

.moreList,
.moreList ul {
	position: absolute;
	background-color: #FAFAFA;
	width: 280px;
	display: none;
	transition: none;
}


.moreList ul {
	left: calc(100% + 3px);
	top: 0px;
}

.moreList ul::after {
	content: "";
	position: absolute;
	height: 100%;
	width: calc(100% + 3px);
	left: -3px;
	z-index: -1;
	top: 0;
}


.moreList {
	top: 100%;
	left: -15px;
}

.moreList li {
	position: relative;
}

.moreList li:last-child {
	margin-bottom: 0;
}

.moreList a {
	padding: 8px 26px;
	color: #333333;
	position: relative;
	font-size: 16px;
	line-height: 30px;
	display: flex;
	align-items: center;
}


.moreList a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 30px);
	height: 1px;
	background-color: rgba(0, 0, 0, .1);
}


.moreList a i {
	color: #D71918;
	font-size: 12px;
	font-weight: bold;
	margin-right: 10px;
	opacity: 0;
}

.moreList li:hover>a {
	color: #D71918;
}

.moreList li:hover>a>i {
	opacity: 1;
}


.moreList ul li a::before {
	content: "";
	position: absolute;
	width: 3px;
	height: 100%;
	right: 100%;
	background-color: #D71918;
	top: 0;
	opacity: 0;
	transition: .4s ease all;
}

.moreList ul li:hover>a::before {
	opacity: 1;
}

@media screen and (max-width:1560px) {
	nav .btns .lanBtn i {
		margin-right: 0;
		margin-left: 10px;
	}

	nav .btns .search {
		margin-right: 30px;
	}

	nav .btns {
		margin-left: 30px;
	}

	nav .navList>ul>li {
		margin-right: 30px;
	}

	nav .btns .lanBtn img {
		margin-right: 10px;
		width: 30px;
	}

	nav .navList>ul>li.active>a:after,
	nav .navList>ul>li:hover>a:after {
		width: 40px;
	}
	nav .btns .search form {
	    height:40px;
	}
}

@media screen and (max-width:1333px) {
	nav .navList>ul>li>a {
		font-size: 16px;
	}

	nav .navList>ul>li {
		margin-right: 26px;
	}

	nav .btns .lanBtn img {
		width: 26px;
	}

	nav .btns .search {
		margin-right: 20px;
	}

	.moreList a,
	nav .btns .language ul a {
		padding: 6px 20px;
	}
}

@media screen and (max-width:1200px) {
	nav .navList {
		flex-direction: column-reverse;
		align-items: flex-end;
	}

	nav .btns .search,
	nav .btns .language {
		height: 30px;
	}

	nav .navList>ul>li>a {
		height: 50px;
		line-height: 40px;
	}

	nav .navList>ul>li>a::after {
		bottom: 10px;
	}

	nav .logo {
		width: 120px;
	}

	nav .btns .language ul a {
		font-size: 14px;
		line-height: 24px;
	}

	nav .btns .language ul {
		top: calc(100% + 5px);
	}

	nav .btns .lanBtn {
		font-size: 14px;
		line-height: 24px;
	}

	nav .btns .lanBtn img {
		width: 24px;
	}

	nav .btns .search form {
		right: calc(100% + 10px);
		top: 50%;
		transform: translateY(-50%);
		height: 24px;
	}

	nav .btns .search form .subBtn {
		height: 24px;
		width: 24px;
	}
}


@media screen and (max-width:999px) {
	nav .navList>ul {
		display: none;
	}

	nav .btns .language,
	.bannerRange {
		height: 60px;
	}

	html {
		scroll-padding-top: 60px;
	}

	nav .btns .search {
		display: none;
	}

	nav .btns .language {
		margin-right: 60px;
	}

	nav .btns .lanBtn {
		font-size: 14px;
		line-height: 26px;
	}

	nav .btns .lanBtn img {
		width: 24px;
	}

	nav .btns .lanBtn i {
		margin-left: 5px;
		font-size: 16px;
	}

	nav .logo {
		width: 110px;
	}

	nav .btns .language ul {
		top: 100%;
	}
}


@media screen and (max-width:768px) {

	nav .btns .language,
	.bannerRange {
		height: 50px;
	}

	nav .logo {
		width: 100px;
	}

	header .xnav .nav {
		right: 25px;
		top: 25px;
	}
}

@media screen and (max-width:538px) {
	nav .logo {
		width: 90px;
	}

	header .xnav .nav {
		right: 15px;
		top: 25px;
	}

	nav .btns .language {
		margin-right: 50px;
	}
}



/* indexbanner */



.indexBanner {
	position: relative;
	transition: none;
}



.indexBanner a:hover img {
	transform: scale(1);
}


.indexBanner .swiper-slide {
	position: relative;
}


.indexBanner .swiper-slide .image {
	height: 100%;
}

.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 a:hover img {
	transform: scale(1, 1);
}



.indexBanner .signs {
	position: absolute;
	z-index: 99;
	left: 50%;
	transform: translateX(-50%);
	bottom: 47px;
	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 {
	margin: 0 9px !important;
	background-color: transparent;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid transparent;
	cursor: pointer;
}


.indexBanner .swiper-pagination span.swiper-pagination-bullet-active {
	border-color: #D71918;
}

.indexBanner .swiper-pagination span.swiper-pagination-bullet-active::after {
	background-color: #D71918;
}

.indexBanner .swiper-pagination span::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	transition: .4s ease all;
	background-color: #D9D9D9;
}


/*sBtns */

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

.sBtns>div {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #999999;
	background-color: #D9D9D9;
	font-size: 14px;
}


.sBtns>div.prev {
	margin-right: 26px;
}


.sBtns>div:hover {
	background-color: #D71918;
	color: #ffffff;
}


.sBtns>div.swiper-button-disabled {
	pointer-events: none;
}


.indexBanner .sBtns>div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
}

.indexBanner .sBtns>div.prev {
	left: 80px;
	margin-right: 0;
}

.indexBanner .sBtns>div.next {
	right: 80px;
}


.indexBanner .msg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}


.indexBanner .msg>div {
	height: 100%;
	position: relative;
}


.banner1 {
	width: 72%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.banner1 .title1 {
	color: #FFF;
	display: -webkit-box;
}

.banner1 a.title:hover {
	color: #D71918;
}


.banner1 .tit {
	color: #FFF;
	font-family: Inter-Medium;
	font-size: 24px;
	line-height: 36px;
	margin-top: 32px;
}

.banner1 .txts {
	color: #FFF;
	font-size: 16px;
	line-height: 30px;
	margin-top: 37px;
}


.banner1 .btn {
	margin-top: 54px;
}

.indexBanner .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 50px;
	color: #ffffff;
	background-color: #D71918;
	text-align: center;
	font-size: 18px;
}


.indexBanner .btn:hover {
	background-color: #ffffff;
	color: #D71918;
}


.indexBanner .swiper-slide {
	overflow: hidden;
}


.indexBanner .smallImg {
	display: none;
}

.banner2 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 36%;
	height: 100%;
	justify-content: center;
}


.banner2 .title1 {
	color: #d71918;
	line-height: 60px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}


.banner2 .title1:hover {
	color: #333333;
}


.banner2 .list {
	margin-top: 53px;
}


.banner2 .list li {
	margin-bottom: 30px;
	display: flex;
	align-items: flex-start;
}


.banner2 .list li:last-child {
	margin-bottom: 0;
}

.banner2 .list img {
	width: 30px;
	flex-shrink: 0;
	margin-right: 20px;
	transform: translateY(-2px);
}

.banner2 .list .txts {
	font-family: Inter-Regular;
	font-size: 18px;
	line-height: 30px;
	color: #21262c;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.banner2 .booth {
	padding: 8px 0;
	padding-right: 57px;
	background-color: #d71918;
	position: relative;
	font-family: Inter-Medium;
	font-size: 24px;
	line-height: 34px;
	color: #fefeff;
	margin-top: 67px;
}


.banner2 .booth::after {
	content: "";
	position: absolute;
	right: 100%;
	height: 100%;
	background-color: #d71918;
	width: 100vw;
	top: 0;
}

.banner3 {
	padding: 100px 0;
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
}

.banner3 .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 29px;
}


.banner3 .btn {
	flex-shrink: 0;
	margin-left: 16%;
}


.banner3 .title1 {
	color: #ffffff;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}


.banner3 .txts {
	font-family: Inter-Regular;
	font-size: 16px;
	line-height: 28px;
	color: #ffffff;
}



.banner3 .line {
	width: 120px;
	height: 6px;
	background-color: #d71918;
	margin-top: 16px;
}

.banner5 {
	height: 100%;
	margin: 0 auto;
	width: 80%;
	padding: 77px 0;
}

.banner5 .title1 {
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.banner5 .txts {
	text-align: center;
	font-family: Inter-Regular;
	font-size: 16px;
	line-height: 28px;
	color: #21262c;
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.banner5 .btn {
	margin: 0 auto;
	margin-top: 15px;
}




@media screen and (max-width:1700px) {
	.indexBanner .msg {
		padding: 0 80px;
	}
}


@media screen and (max-width:1560px) {
	.banner1 .tit {
		font-size: 20px;
		line-height: 30px;
		margin-top: 20px;
	}

	.banner1 .txts {
		margin-top: 30px;
	}

	.banner1 .btn {
		margin-top: 40px;
	}

	.indexBanner .btn {
		height: 46px;
		font-size: 16px;
	}

	.sBtns>div {
		width: 40px;
		height: 40px;
	}

	.indexBanner .signs {
		bottom: 30px;
	}

	.banner2 {
		width: 46%;
	}

	.banner2 .list li {
		margin-bottom: 20px;
	}

	.banner2 .list {
		margin-top: 40px;
	}

	.banner2 .booth {
		font-size: 20px;
		line-height: 30px;
		margin-top: 50px;
	}

	.banner3 .line {
		height: 4px;
		width: 100px;
	}

	.banner3 {
		padding: 80px 0;
	}

	.banner5 {
		padding: 60px 0;
		width: 100%;
	}

	.banner5 .txts,
	.indexBanner .btn {
		margin-top: 20px;
	}

}


@media screen and (max-width:1333px) {
	.banner1 .tit {
		font-size: 18px;
		line-height: 28px;
	}


	.banner1 .txts {
		margin-top: 20px;
	}

	.indexBanner .btn {
		height: 40px;
	}

	.sBtns>div {
		width: 36px;
		height: 36px;
		font-size: 12px;
	}

	.banner1 .btn {
		margin-top: 30px;
	}


	.banner2 .list .txts {
		font-size: 16px;
		line-height: 28px;
	}

	.banner2 .list img {
		width: 24px;
		transform: translateX(0);
	}

	.banner2 .list {
		margin-top: 30px;
	}

	.banner2 .booth {
		font-size: 18px;
		line-height: 28px;
		margin-top: 40px;
	}

	.banner3 .line {
		width: 80px;
	}


	.banner3 .box {
		margin-top: 20px;
	}

	.banner3 .btn {
		margin-left: 60px;
	}

	.banner5 {
		padding: 40px 0;
	}
}

@media screen and (max-width:999px) {
	.indexBanner .msg {
		padding: 0;
	}

	.indexBanner .msg .title {
		font-size: 24px;
		line-height: 36px;
		-webkit-line-clamp: 1;
	}

	.indexBanner .btn {
		height: 36px;
		font-size: 14px;
		width: 140px;
	}

	.indexBanner .sBtns>div {
		display: none;
	}

	.indexBanner .signs {
		bottom: 20px;
	}

	.banner1 .txts {
		-webkit-line-clamp: 2;
	}

	.banner1 {
		width: 80%;
	}

	.banner1 .txts {
		font-size: 14px;
		line-height: 26px;
	}

	.banner1 .tit {
		font-size: 16px;
		line-height: 28px;
	}

	.banner2 .list .txts {
		font-size: 14px;
		line-height: 26px;
	}

	.banner2 .list {
		margin-top: 20px;
	}

	.banner2 .booth {
		font-size: 16px;
		line-height: 26px;
		margin-top: 20px;
		padding: 5px 0;
		padding-right: 40px;
	}

	.banner3 {
		padding: 60px 0;
	}

	.banner5 {
		padding: 30px 0;
	}
}


@media screen and (max-width:750px) {

	.indexBanner .swiper-pagination span {
		margin: 0 6px !important;
	}

	.indexBanner .smallImg {
		display: block;
	}

	.indexBanner .bigImg {
		display: none;
	}

	.indexBanner .title1 {
		font-size: 30px !important;
		line-height: 36px !important;
	}

	.indexBanner .safeRange {
		width: calc(100% - 104px);
	}


	.banner1 {
		width: 88%;
	}

	.banner1 .tit {
		font-size: 15px;
		margin-top: 20px;
	}

	.banner1 .txts {
		font-size: 12px;
		margin-top: 20px;
		line-height: 22px;
		-webkit-line-clamp: 3;
	}

	.indexBanner .btn {
		font-size: 13px !important;
		line-height: 36px;
		width: 111px;
	}

	.banner1 .btn {
		margin-top: 39px;
	}

	.banner2 {
		width: 100%;
		justify-content: flex-start;
		padding: 59px 0;
	}

	.banner2 .title1 br {
		display: none;
	}

	.banner2 .list {
		display: flex;
		flex-wrap: wrap;
		margin-top: 35px;
	}

	.banner2 .list li {
		margin-right: 101px;
	}

	.banner2 .list .txts {
		font-size: 12px;
		line-height: 24px;
	}

	.banner2 .booth {
		font-size: 15px;
		margin-top: 17px;
		padding: 5.5px 0;
		padding-right: 55px;
	}

	.banner2 .list img {
		width: 22px;
		margin-right: 15px;
	}


	.banner2 .list li:last-child {
		margin-right: 0;
	}


	.banner3 .txts {
		-webkit-line-clamp: 4;
		font-size: 12px !important;
		line-height: 20px !important;
	}

	.banner3 .line {
		width: 90px;
		margin-top: 16px;
	}

	.banner3 .box {
		margin-top: 23px;
	}

	.banner3 .btn {
		margin-top: 0;
		margin-left: 46px;
	}

	.banner5 .title1 {
		-webkit-line-clamp: 3;
	}

	.banner5 .txts {
		-webkit-line-clamp: 3;
		font-size: 12px !important;
		line-height: 21px !important;
	}

	.banner5 {
		padding: 47px 0;
	}

	.banner5 .txts {
		margin-top: 9px;
	}

}

@media screen and (max-width:700px) {
	.banner2 {
		padding: 56px 0;
	}

	.banner2 .list li {
		margin-bottom: 10px;
	}

	.banner2 .list {
		margin-top: 20px;
	}

	.banner2 .booth {
		padding: 5px 0;
		padding-right: 40px;
	}

	.indexBanner .title1 {
		font-size: 24px !important;
	}

	.banner3 .line {
		width: 60px;
		margin-top: 10px;
	}

	.banner3 .btn {
		margin-left: 30px;
	}
	
	.banner5{
		padding: 30px 0;
	}
}

@media screen and (max-width:538px) {
	.indexBanner .signs {
		bottom: 16px;
	}

	.indexBanner .title1 {
		font-size: 22px !important;
		line-height: 32px !important;
	}

	.banner1 .tit {
		margin-top: 10px;
	}

	.banner1 .txts {
		-webkit-line-clamp: 2;
		margin-top: 10px;
	}

	.banner1 .btn {
		margin-top: 14px;
	}

	.indexBanner .safeRange {
		width: calc(100% - 30px);
	}

	.banner2 {
		padding: 20px 0;
	}

	.banner2 .title1,
	.banner3 .title1 {
		-webkit-line-clamp: 1;
	}

	.banner3 .box {
		flex-direction: column;
		align-items: flex-start;
	}

	.banner3 .btn {
		margin-left: 0;
		margin-top: 20px;
	}

	.banner3 .txts {
		-webkit-line-clamp: 2;
	}

	.banner3 .box {
		margin-top: 20px;
	}
	
	.banner5 .title1,
	.banner5 .txts{
		-webkit-line-clamp: 2;
	}

}





/* iTit */



.iTit {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


.iTit .title1 {
	text-align: center;
}


.title1 {
	color: #333;
	font-family: Inter-Bold;
	font-size: 46px;
	line-height: 56px;
}

a.title1 {
	display: inline-block;
}

a.title1:hover {
	color: #D71918;
}


/* .cBtn */

.cBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 144px;
	height: 50px;
	color: #ffffff;
	background-color: #D71918;
	text-align: center;
	font-size: 16px;
	border: 1px solid #D71918;
}

.cBtn:hover {
	background-color: transparent;
	color: #D71918;
}



/* indexM1-1 */

.productsCategory {
	padding: 100px 0 98px 0;
}


.productsCategory .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.productsCategory .title .tips {
	color: #666;
	font-family: Inter;
	font-size: 18px;
	line-height: 30px;
	margin-top: 17px;
}

.productsCategory .cBtn {
	flex-shrink: 0;
	margin-left: 40px;
}


.productsCategory .con {
	margin-top: 54px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}



.productsCategory .checks {
	width: 35%;
}



.productsCategory .swiper {
	margin: 0;
	width: 57.14%;
	margin-top: 12px;
}



.productsCategory .swiper .image {
	overflow: hidden;
}

.productsCategory .swiper .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.productsCategory .item {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.productsCategory .item:last-child {
	margin-bottom: 0;
}


.productsCategory .checks .tit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
	cursor: pointer;
}

.productsCategory .checks .name {
	font-family: Inter-Medium;
	font-size: 22px;
	line-height: 32px;
	color: #333333;
}


.productsCategory .checks .name:hover {
	color: #D71918;
}


.productsCategory .checks .btn {
	width: 17px;
	height: 17px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 40px;
	cursor: pointer;
	margin-right: 46px;
}


.productsCategory .checks .btn i {
	width: 17px;
	height: 3px;
	background-color: #D9D9D9;
}



.productsCategory .checks .btn i.move {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(90deg);
	will-change: transform;
}


.productsCategory .checks .item.active .btn i.move {
	transform: translateX(-50%) translateY(-50%) rotate(0deg);
	background-color: #D71918;
}


.productsCategory .checks .item.active .name{
	color: #D71918;
}

.productsCategory .checks .tit:hover .btn i {
	background-color: #D71918;
}




.productsCategory .checks .item.active {
	padding-bottom: 30px;
}


.productsCategory .checks .txts {
	font-size: 16px;
	line-height: 30px;
	color: #666666;
}

.productsCategory .checks .msg {
	display: none;
	transition: none;
	padding-right: 90px;
}




.productsCategory .checks .item:nth-child(1) .msg {
	display: block;
}



.productsCategory .checks .arr {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #D71918;
	background-color: #D71918;
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	margin-top: 13px;
}


.productsCategory .checks .arr:hover {
	background-color: #ffffff;
	color: #D71918;
}

.productsCategory h2 {
	font-weight: normal;
}

@media screen and (max-width:1560px) {
	.productsCategory .checks .btn {
		margin-right: 20px;
	}

	.productsCategory .checks .msg {
		padding-right: 30px;
	}

	.productsCategory .checks .arr {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.cBtn {
		height: 45px;
	}
	.productsCategory .swiper{
		margin-top: 0;
	}
}

@media screen and (max-width:1333px) {
	.cBtn {
		height: 40px;
	}

	.productsCategory .checks .name {
		font-size: 20px;
		line-height: 30px;
	}

	.productsCategory .checks .btn {
		margin-right: 0;
	}

	.productsCategory .checks .msg {
		padding-right: 0;
	}

	.productsCategory .checks .arr {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}

	.productsCategory .checks {
		width: 36%;
	}
	.productsCategory .checks .tit{
		padding: 20px 0;
	}
	.productsCategory .checks .item.active{
		padding-bottom: 20px;
	}
}

@media screen and (max-width:999px) {
	.productsCategory .con {
		margin-top: 30px;
		flex-direction: column;
		align-items: flex-start;
	}

	.productsCategory .checks {
		width: 100%;
	}

	.productsCategory .checks .name {
		font-size: 18px;
		line-height: 28px;
	}

	.cBtn {
		font-size: 14px;
		height: 36px;
		width: 140px;
	}

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

	.productsCategory .swiper .image {
		height: 400px;
	}

}

@media screen and (max-width:768px) {
	.productsCategory .title {
		flex-direction: column;
		align-items: flex-start;
	}

	.productsCategory .cBtn {
		margin-left: 0;
		margin-top: 20px;
	}

	.productsCategory .checks .tit{
		padding: 14px 0;
	}
	.productsCategory .checks .item.active{
		padding-bottom: 14px;
	}

	.productsCategory .checks .name {
		font-size: 16px;
		line-height: 28px;
	}

	.productsCategory .checks .arr {
		width: 28px;
		height: 28px;
	}


	.cBtn {
		height: 32px;
		width: 120px;
	}

	.productsCategory .swiper {
		margin-top: 30px;
	}

	.productsCategory .checks .btn i {
		height: 2px;
		width: 14px;
	}

	.productsCategory .swiper .image {
		height: 340px;
	}
}


@media screen and (max-width:538px) {
	.productsCategory .swiper .image {
		height: 280px;
	}
}




/* indexM2-1 */

.swiperBox {
	position: relative;
}


.swiperBox .sBtns>div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
}

.swiperBox .sBtns>div.prev {
	left: -86px;
	margin-right: 0;
}

.swiperBox .sBtns>div.next {
	right: -86px;
}


.hotProducts {
	padding: 59px 0 140px;
	background-color: #F8F8F8;
}

.productSwiper.swiperBox .sBtns>div {
	top: 43%;
}

.iTips {
	width: 86%;
	margin: 0 auto;
	text-align: center;
	color: #666666;
	font-size: 18px;
	line-height: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}



.hotProducts .iTips {
	margin-top: 25px;
	font-size: 16px;
	color: #333333;
	width: 95%;
}


.hotProducts .swiperBox {
	margin-top: 35px;
}

.productSwiper .swiper {
	overflow: visible;
}

.productSwiper .swiper .swiper-wrapper {
	pointer-events: none;
}

.productSwiper .swiper-slide {
	opacity: 0;
	pointer-events: none;
	transition: .4s ease opacity;
}

.productSwiper .swiper-slide.swiper-slide-visible {
	opacity: 1;
	pointer-events: all;
}


.productSwiper .image {
	overflow: hidden;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
}

.productSwiper .image:hover {
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}

/*.productSwiper .image:hover img {*/
/*	transform: none;*/
/*}*/


.productSwiper .msg {
	margin-top: 25px;
}

.productSwiper .tit {
	text-align: center;
	color: #333;
	font-family: Inter-Bold;
	font-size: 20px;
	line-height: 30px;
}


.productSwiper .tit:hover {
	color: #D71918;
}


@media screen and (max-width:1560px) {
	.hotProducts .iTips {
		margin-top: 30px;
	}

	.hotProducts .swiperBox {
		margin-top: 30px;
	}

	.productSwiper .tit {
		font-size: 18px;
		line-height: 28px;
	}

	.productSwiper .msg {
		margin-top: 20px;
	}

	.swiperBox .sBtns>div.prev {
		left: -60px;
		margin-right: 0;
	}

	.swiperBox .sBtns>div.next {
		right: -60px;
	}

	.iTips {
		width: 80%;
	}

}

@media screen and (max-width:1333px) {
	.productSwiper .tit {
		font-size: 16px;
		line-height: 28px;
	}

	.productSwiper .msg {
		margin-top: 10px;
	}

	.iTips {
		width: 85%;
	}
}

@media screen and (max-width:999px) {
	.productSwiper .tit {
		font-size: 14px;
		line-height: 26px;
	}

}

@media screen and (max-width:768px) {
	.swiperBox .sBtns>div.prev {
		margin-right: 20px;
	}

	.swiperBox .sBtns>div {
		position: static;
		margin-top: 20px;
		transform: translateX(0);
	}

	.iTips {
		width: 90%;
	}
}

@media screen and (max-width:538px) {
	.hotProducts .iTips {
		width: 100%;
		margin-top: 20px;
	}

	.iTips {
		width: 100%;
	}
}


/* indexM3-1 */

.whyFouk {
	padding-right: calc((100vw - 1400px)/ 2);
	margin-top: 100px;
	display: flex;
	justify-content: space-between;
}

.whyFouk .image {
	overflow: hidden;
	width: 76.34%;
}

.whyFouk .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


.whyFouk .msg {
	width: 19.2%;
	padding: 80px 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.whyFouk .msg .txts {
	color: #666;
	font-size: 18px;
	line-height: 30px;
	margin-top: 14px;
}

.whyFouk .msg .cBtn {
	margin-top: 42px;
}

@media screen and (max-width:1560px) {
	.whyFouk {
		margin-top: 80px;
		padding-right: 80px;
	}

	.whyFouk .msg .txts {
		margin-top: 20px;
	}
}

@media screen and (max-width:1333px) {
	.whyFouk {
		margin-top: 60px;
	}
}

@media screen and (max-width:999px) {
	.whyFouk {
		margin-top: 50px;
		padding: 0 80px;
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.whyFouk .msg {
		width: 100%;
		padding: 0 !important;
	}

	.whyFouk .msg .cBtn {
		margin-top: 20px;
	}

	.whyFouk .image {
		width: 100%;
		margin-top: 30px;
		height: 400px;
	}
}

@media screen and (max-width:768px) {
	.whyFouk {
		margin-top: 40px;
		padding: 0 25px;
	}

	.whyFouk .image {
		height: 340px;
	}
}

@media screen and (max-width:538px) {
	.whyFouk {
		padding: 0 15px;
	}

	.whyFouk .image {
		height: 280px;
	}
}



/* indexM4-1 */

.iCases {
	padding: 120px 0 135px 0;
}

.cases .iTips {
	margin-top: 29px;
}

.cases .con {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}

.cases .show {
	width: 49%;
}


.cases .box {
	width: 49.78%;
}


.cases .item {
	position: relative;
	overflow: hidden;
}


.cases .image {
	height: 100%;
	overflow: hidden;
	position: relative;
}


.cases .image::after {
	content: "";
	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%);
}



.cases .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.cases .image:hover img {
	transform: none;
}

.cases .item .title,
.cases .item .msg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
}

.cases .item .title {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	padding: 37px 31px;
}


.cases .item .name,
.cases .item .tit {
	color: #FFF;
	font-family: Inter-Bold;
	font-size: 24px;
	line-height: 36px;
}

.cases .item .name {
	text-align: center;
}


.cases .item .msg {
	z-index: 2;
	padding: 30px 31px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	opacity: 0;
	transform: translateY(100%);
}

.cases .item:hover .title {
	opacity: 0;
}

.cases .item:hover .msg {
	transform: translateY(0);
	opacity: 1;
}

.cases .item .tit {
	pointer-events: all;
}

.cases .item .tit:hover {
	color: #D71918;
}

.cases .item .txts {
	color: #FFF;
	font-size: 16px;
	line-height: 30px;
	pointer-events: all;
	margin-top: 5px;
}

.cases .list {
	display: flex;
	justify-content: space-between;
	margin-top: 17px;
}

.cases .list .item {
	width: 48.7%;
}

@media screen and (max-width:1560px) {
	.cases .con {
		margin-top: 40px;
	}

	.cases .item .msg,
	.cases .item .title {
		padding: 20px;
	}

	.cases .item .name,
	.cases .item .tit {
		font-size: 22px;
	}
}

@media screen and (max-width:1333px) {

	.cases .item .name,
	.cases .item .tit {
		font-size: 20px;
		line-height: 30px;
	}
}

@media screen and (max-width:999px) {
	.cases .item .title {
		display: none;
	}

	.cases .item .msg {
		opacity: 1;
		transform: translateY(0);
	}

	.cases .con {
		margin-top: 30px;
		flex-direction: column;
		align-items: flex-start;
	}

	.cases .iTips {
		margin-top: 20px;
	}

	.cases .box {
		width: 100%;
	}

	.cases .show {
		width: 100%;
		margin-bottom: 17px;
		height: 400px;
	}

	.cases .item.big,
	.cases .list .item {
		height: 360px;
	}
}

@media screen and (max-width:768px) {

	.cases .item.big,
	.cases .list .item,
	.cases .show {
		height: 340px;
	}

	.cases .item .name,
	.cases .item .tit {
		font-size: 18px;
		line-height: 28px;
	}
}

@media screen and (max-width:538px) {

	.cases .item.big,
	.cases .list .item,
	.cases .show {
		height: 280px;
	}

	.cases .list {
		flex-direction: column;
		align-items: flex-start;
	}

	.cases .list .item:nth-child(n) {
		width: 100%;
		margin-top: 17px;
	}

	.cases .list .item:nth-child(1) {
		margin-top: 0;
	}
}



/* indexM5-1 */

.touch {
	padding: 58px 0 58px 0;
	position: relative;
}


.touch .image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}


.touch .image::after {
	content: "";
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}


.touch .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


.touch .title1 {
	color: #ffffff;
	text-align: center;
}

.touch .txts {
	color: #FFF;
	text-align: center;
	font-size: 18px;
	line-height: 30px;
	width: 60%;
	margin: 0 auto;
	margin-top: 21px;
}


.touch .cBtn {
	margin: 0 auto;
	margin-top: 36px;
	width: 181px;
}


.touch .cBtn:hover {
	border-color: #ffffff;
	background-color: #ffffff;
}

@media screen and (max-width:1560px) {
	.touch .txts {
		width: 80%;
		margin-top: 30px;
	}
}

@media screen and (max-width:1333px) {
	.touch .txts {
		width: 90%;
	}
}

@media screen and (max-width:999px) {
	.touch .txts {
		width: 95%;
	}

	.touch .cBtn {
		width: 160px;
	}
}

@media screen and (max-width:768px) {
	.touch .txts {
		margin-top: 20px;
	}

	.touch .cBtn {
		margin-top: 20px;
	}
}

@media screen and (max-width:538px) {
	.touch .txts {
		width: 100%;
	}
}



/* indexM6-1 */


.iNews {
	padding: 100px 0 128px 0;
	background-image: url("../images/indexM6-Bg.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}


.iNews .iTit {
	margin-bottom: 50px;
}


.newSwiper {
	position: relative;
}


.newItem .image {
	overflow: hidden;
}


.newItem .image>a {
	overflow: hidden;
	display: block;
}

.newItem .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.newItem .time {
	background-color: rgba(0, 78, 160, 0.75);
	padding: 5px 10px;
	font-size: 16px;
	line-height: 28px;
	color: #ffffff;
	position: absolute;
	left: 14px;
	bottom: 13px;
}


.newItem .tit {
	color: #333;
	font-family: Inter-Bold;
	font-size: 22px;
	line-height: 30px;
	min-height: 60px;
	margin-top: 22px;
}


.newItem .tit:hover {
	color: #D71918;
}


.newItem .txts {
	font-size: 16px;
	line-height: 26px;
	color: #666;
	margin-top: 10px;
}


.newItem .btn {
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 26px;
	color: #333333;
}

.newItem .btn i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background-color: #004ea0;
	flex-shrink: 0;
	margin-right: 10px;
	border-radius: 50%;
	color: #ffffff;
}



.newSwiper .sBtns>div {
	margin-top: 20px;
}

@media screen and (max-width:1560px) {
	.newItem .tit {
		font-size: 20px;
	}

	.iNews .iTit {
		margin-bottom: 40px;
	}
}

@media screen and (max-width:1333px) {
	.newItem .tit {
		font-size: 18px;
		line-height: 28px;
		min-height: 56px;
	}
}

@media screen and (max-width:999px) {
	.newItem .txts {
		font-size: 14px;
		line-height: 24px;
	}

	.newItem .tit {
		font-size: 16px;
		margin-top: 20px;
	}

	.iNews .iTit {
		margin-bottom: 30px;
	}
}

@media screen and (max-width:450px) {
	.newItem .tit {
		min-height: auto;
	}
}


/* indexM7-1 */


.partners {
	padding: 120px 0 111px 0;
}

.partners .title1 {
	text-align: center;
}

.partners .iTips {
	margin-top: 29px;
}


.partners .swiper {
	margin-top: 31px;
}


.partners .image {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	background-color: #ffffff;
}


.partners .image:nth-child(-n+7) {
	margin-top: 0;
}


.partners .swiper-slide {
	display: flex;
	flex-wrap: wrap;
}

.partners .swiper-slide .image {
	width: 12.85%;
	margin-right: 1.675%;
}

.partners .swiper-slide .image:nth-child(7n) {
	margin-right: 0;
}

.partners .swiper-slide .image:last-child {
	margin-right: 0;
}

.partners .swiper-pagination {
	position: static;
	margin-top: 45px;
}

.partners .swiper-pagination span {
	width: 30px;
	height: 5px;
	border-radius: 20px;
	background-color: #D9D9D9;
	margin: 5px 8px !important;
	opacity: 1;
}


.partners .swiper-pagination span.swiper-pagination-bullet-active {
	width: 55px;
	background-color: #D71918;
}


@media screen and (max-width:1560px) {
	.partners .swiper {
		margin-top: 40px;
	}

}

@media screen and (max-width:1333px) {
	.partners .swiper-slide .image:nth-child(n) {
		width: 15%;
		margin-right: 2%;
		margin-top: 30px;
	}

	.partners .swiper-slide .image:nth-child(6n) {
		margin-right: 0;
	}

	.partners .swiper-slide .image:nth-child(-n+6) {
		margin-top: 0;
	}

	.partners .swiper-slide .image:last-child {
		margin-right: 0;
	}
}

@media screen and (max-width:999px) {
	.partners .swiper-slide .image:nth-child(n) {
		width: 18.4%;
		margin-right: 2%;
		margin-top: 30px;
	}

	.partners .swiper-slide .image:nth-child(5n) {
		margin-right: 0;
	}

	.partners .swiper-slide .image:nth-child(-n+5) {
		margin-top: 0;
	}

	.partners .swiper-slide .image:last-child {
		margin-right: 0;
	}

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

@media screen and (max-width:768px) {
	.partners .swiper-slide .image:nth-child(n) {
		width: 23.5%;
		margin-right: 2%;
		margin-top: 30px;
	}

	.partners .swiper-slide .image:nth-child(4n) {
		margin-right: 0;
	}

	.partners .swiper-slide .image:nth-child(-n+4) {
		margin-top: 0;
	}

	.partners .swiper-slide .image:last-child {
		margin-right: 0;
	}

	.partners .iTips {
		margin-top: 20px;
	}

	.partners .swiper {
		margin-top: 30px;
		]
	}

	.partners .swiper-pagination span {
		width: 24px;
	}

	.partners .swiper-pagination span.swiper-pagination-bullet-active {
		width: 45px;
	}

	.partners .swiper-pagination {
		margin-top: 30px;
	}
}

@media screen and (max-width:450px) {
	.partners .swiper-slide .image:nth-child(n) {
		width: 32%;
		margin-right: 2%;
		margin-top: 30px;
	}

	.partners .swiper-slide .image:nth-child(3n) {
		margin-right: 0;
	}

	.partners .swiper-slide .image:nth-child(-n+3) {
		margin-top: 0;
	}

	.partners .swiper-slide .image:last-child {
		margin-right: 0;
	}
}


/* 1-1-Products */

.categoryList {
	padding: 100px 0 100px;
}



.mbox {
	height: 90px;
	overflow: hidden;
}

.mbox .standardEdit p {
	font-size: 18px;
	line-height: 30px;
	color: #666666;
}

.mBtn.cBtn {
	margin-top: 24px;
	cursor: pointer;
}

.categoryList .mbox {
	margin-top: 19px;
}

.categoryList .list {
	margin-top: 48px;
	display: flex;
	flex-wrap: wrap;
}


.categoryList .list .item {
	width: 32.14%;
	margin-right: 1.79%;
	margin-top: 55px;
}

.categoryList .list .item:nth-child(3n) {
	margin-right: 0;
}

.categoryList .list .item:nth-child(-n+3) {
	margin-top: 0;
}

.categoryList .list .image {
	overflow: hidden;
}

.categoryList .list .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.categoryList .list .msg {
	padding: 0 22px;
	margin-top: 13px;
}


.categoryList .list .tit {
	color: #333;
	font-family: Inter-Medium;
	font-size: 24px;
	line-height: 30px;
}

.categoryList .list .tit:hover {
	color: #D71918;
}

.categoryList .list .txts {
	margin-top: 10px;
	color: #666;
	font-size: 16px;
	line-height: 30px;
}

@media screen and (max-width:1560px) {
	.categoryList .list .tit {
		font-size: 20px;
		line-height: 30px;
	}

	.categoryList .list .msg {
		padding: 0 10px;
	}
}

@media screen and (max-width:1333px) {
	.categoryList .list {
		margin-top: 40px;
	}

	.categoryList .list .tit {
		font-size: 18px;
	}

	.mbox {
		height: 84px;
	}

	.categoryList .list .item {
		margin-top: 40px;
	}
}

@media screen and (max-width:999px) {
	.mBtn.cBtn {
		margin-top: 20px;
	}

	.categoryList .list .tit {
		font-size: 16px;
		line-height: 28px;
	}

	.categoryList .list .msg {
		padding: 0;
	}

	.categoryList .list {
		justify-content: space-between;
	}

	.categoryList .list .item:nth-child(n) {
		margin-top: 30px;
		width: 48%;
		margin-right: 0;
	}

	.categoryList .list .item:nth-child(-n+2) {
		margin-top: 0;
	}
}

@media screen and (max-width:768px) {
	.categoryList .list {
		margin-top: 30px;
	}
}

@media screen and (max-width:450px) {
	.categoryList .list .item:nth-child(n) {
		width: 100%;
		margin-top: 30px;
	}

	.categoryList .list .item:nth-child(1) {
		margin-top: 0;
	}
}

/* 1-2-Products */

.productBanner {
	position: relative;
	height: 579px;
}



.productBanner .image {
	height: 100%;
}


.productBanner .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


.productBanner .msg {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	top: 0;
	display: flex;
	align-items: center;
}

.productBanner .msg .box {
	width: 39%;
}

.productBanner .msg .title {
	color: #333;
	font-family: Inter-Bold;
	font-size: 60px;
	line-height: 70px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.productBanner .msg .line {
	width: 94px;
	height: 5px;
	background-color: #D71918;
	margin-top: 25px;
}

.productBanner .txts {
	color: #333;
	font-size: 20px;
	line-height: 30px;
	margin-top: 41px;
}

@media screen and (max-width:1560px) {
	.productBanner .msg .title {
		font-size: 46px;
		line-height: 58px;
	}

	.productBanner .txts {
		font-size: 18px;
	}

	.productBanner {
		height: 430px;
	}
}

@media screen and (max-width:1333px) {
	.productBanner .msg .title {
		font-size: 36px;
		line-height: 48px;
	}

	.productBanner .msg .line {
		height: 4px;
		width: 70px;
	}

	.productBanner .txts {
		margin-top: 30px;
	}

	.productBanner .msg .box {
		width: 50%;
	}

	.productBanner {
		height: 340px;
	}
}

@media screen and (max-width:999px) {
	.productBanner .msg .title {
		font-size: 26px;
		line-height: 38px;
	}

	.productBanner .msg .line {
		height: 3px;
		width: 60px;
		margin-top: 20px;
	}

	.productBanner .msg .box {
		width: 60%;
	}

	.productBanner .txts {
		margin-top: 20px;
	}

	.productBanner {
		height: 270px;
	}
}

@media screen and (max-width:768px) {
	.productBanner .msg .line {
		margin-top: 14px;
	}

	.productBanner .msg .title {
		font-size: 22px;
		line-height: 32px;
	}

	.productBanner {
		height: 240px;
	}
}

@media screen and (max-width:538px) {
	.productBanner .msg .box {
		width: 80%;
	}
}

.products {
	padding: 55px 0 100px 0;
}


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

.productFilter .item {
	margin-top: 20px;
	flex: 1;
	margin-right: 30px;
	max-width: 300px;
}

.productFilter .restItem{
	margin-right: 0;
	flex: none;
	width: 120px;
	flex-shrink: 0;
	margin-top: 20px;
}

.productFilter .restItem .tit{
	height: 30px;
}

.productFilter  .resetAllBtn{
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: #F5F5F5;
	margin-top: 10px;
	border-radius: 4px;
	cursor: pointer;
	color: #333333;
}


.productFilter  .resetAllBtn:hover{
	background-color: #D71918;
	color: #ffffff;
}



.productFilter .tit {
	color: #333;
	font-family: Inter-Medium;
	font-size: 16px;
	line-height: 30px;
}

.productFilter .box {
	position: relative;

}

.productFilter .show {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 4px;
	border: 1px solid #D9D9D9;
	background: #F5F5F5;
	padding: 2px 16px;
	margin-top: 10px;
	cursor: pointer;
}


.productFilter .show .name {
	color: #999;
	font-size: 14px;
	line-height: 30px;
	display: flex;
	flex-wrap: wrap;
}


.productFilter .show .name p {
	color: #333333;
}

.productFilter .show i {
	color: #999;
	font-size: 12px;
	transform: rotate(90deg);
	margin-right: -4px;
}

.productFilter .slides {
	position: absolute;
	top: 36px;
	left: 0;
	width: 100%;
	border-radius: 4px;
	border: 1px solid #D9D9D9;
	background: #FFF;
	display: none;
	z-index: 9;
}

.productFilter .slides .checks {
	padding: 30px 14px 30px 15px;
	height: 250px;
}

.productFilter .slides ul {
	overflow: auto;
	max-height: 100%;
}

.productFilter .slides ul::-webkit-scrollbar {
	width: 5px;
	height: 6px;
	background-color: #EDEDED;
	border-radius: 10px;
}

.productFilter .slides ul::-webkit-scrollbar-thumb {
	background-color: #BBB;
	border-radius: 10px;
}

.productFilter .slides ul::-webkit-scrollbar-track {
	background-color: transparent;
}


.productFilter .slides ul li {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	cursor: pointer;
	color: #666;
	font-size: 16px;
}


.productFilter .slides ul li:hover .checkBtn {
	background-color: #dddddd;
}

.productFilter .slides ul li:last-child {
	margin-bottom: 0;
}


.productFilter .slides ul li .checkBtn {
	width: 14px;
	height: 14px;
	border: 1px solid #DDD;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 18px;
	overflow: hidden;
}


.productFilter .slides ul li .checkBtn i {
	color: #666;
	font-size: 12px;
	font-weight: bold;
	opacity: 0;
}

.productFilter .slides ul li.active .checkBtn i {
	opacity: 1;
}



.productFilter .slides .btns {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 68px;
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.productFilter .slides .btns>div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 30px;
	border: 1px solid #D9D9D9;
	color: #666;
	font-size: 16px;
	line-height: 30px;
	cursor: pointer;
	margin-right: 33px;
}



.productFilter .slides .btns>div:hover {
	background-color: #D9D9D9;
	color: #333;
}

.productFilter .slides .btns>div:last-child {
	margin-right: 0;
}


.productCon {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 46px;
}


.productCon .slides {
	width: 21.36%;
}

.productCon .con {
	width: 76%;
}

.productCon .slides>div {
	margin-bottom: 70px;
}

.productCon .slides>div:last-child {
	margin-bottom: 0;
}

.productCon .slides .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #D71918;
	color: #FFF;
	font-family: Inter-Bold;
	font-size: 24px;
	padding: 9.5px 15px;
}

.productCon .slides .title .menuBtn {
	display: none;
}

.slideCategroy .list {
	background-color: #FAFAFA;
	padding: 7px 10px 6px;
}

.slideCategroy .list li {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.slideCategroy .list li:last-child {
	border-bottom: none;
}


.slideCategroy .list li a {
	display: flex;
	align-items: center;
	padding: 9.5px 13px;
	color: #333;
	font-family: Inter-Bold;
	font-size: 16px;
	line-height: 26px;
}



.slideCategroy .list li a i {
	font-size: 12px;
	font-weight: bold;
	flex-shrink: 0;
	margin-right: 12px;
	color: #D71918;
	opacity: 0;
}


.slideCategroy .list li:hover>a,
.slideCategroy .list li.active>a {
	color: #D71918;
}

.slideCategroy .list li:hover>a i,
.slideCategroy .list li.active>a i {
	opacity: 1;
}

.slideNews .list {
	padding: 0 10px;
	background-color: #FAFAFA;
}

.slideNews .list .item {
	padding: 27px 0;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.slideNews .list .item:last-child {
	border-bottom: none;
}


.slideNews .list .tit {
	color: #333;
	font-family: Inter-Bold;
	font-size: 16px;
	line-height: 30px;
}

.slideNews .list .tit:hover {
	color: #D71918;
}

.slideNews .list .txts {
	color: #666;
	font-family: Inter;
	font-size: 16px;
	line-height: 26px;
	margin-top: 5px;
}


.productCon .con .btns {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2px;
}


.productCon .con .btns a,
.productCon .con .btns div {
	padding: 13px 25px;
	border-radius: 50px;
	margin-bottom: 10px;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F5F5F5;
	color: #333;
	font-size: 16px;
	cursor: pointer;
}



.productCon .con .btns a:hover,
.productCon .con .btns div:hover,
.productCon .con .btns a.active,
.productCon .con .btns div.active {
	background-color: #D71918;
	color: #ffffff;
}



.productCon .con .show {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 55px;
}


.productCon .con .show .image {
	width: 210px;
	flex-shrink: 0;
	margin-right: 36px;
}



.productCon .con .show .image img {
	display: block;
}

.productCon .con .show .box {
	margin-top: 5px;
	flex:1;
}

.productCon .con .show .txts {
	color: #333;
	font-family: Inter;
	font-size: 16px;
	line-height: 30px;
	margin-top: 7px;
}

.productCon .con .show .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 202px;
	height: 46px;
	color: #FFF;
	font-size: 16px;
	background-color: #D71918;
	margin-top: 52px;
	border: 1px solid #D71918;
}

.productCon .con .show .btn img {
	filter: grayscale(100%) brightness(500%);
	flex-shrink: 0;
	margin-left: 10px;
}


.productCon .con .show .btn:hover {
	background-color: #ffffff;
	color: #D71918;
}

.productCon .con .show .btn:hover img {
	filter: grayscale(0%) brightness(100%);
	transform: none;
}



.productCon .con form {
	margin-top: 28px;
}



.productCon .con .table {
	width: 100%;
	overflow: auto;
	max-height: 781px;
}

.productCon .con .table table {
	width: 100%;
	border-collapse: collapse;
	line-height: 22px;
}





/* 1-2-Products2 */

.productDet {
	padding: 101px 0 101px 0;
}


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


.productShow .shows {
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: none;
	flex-shrink: 0;
	margin-right: 3.2%;
}



.productShow .shows .showSipwer {
	width: 562px;
	margin-left: 23px;
	overflow: hidden;
	background-color: #ffffff;
	border: solid 1px #DDD;
}


.productShow .shows .checkSwiper {
	width: 136px;
	overflow: hidden;
	height: 100%;
}


.productShow .shows .swiperBox {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 562px;
	padding: 49px 0;
}


.productShow .shows .swiperBox .prev,
.productShow .shows .swiperBox .next {
	width: 100%;
	position: absolute;
	color: #333333;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 2px 5px;
	height: auto;
}


.productShow .shows .swiperBox .prev i,
.productShow .shows .swiperBox .next i {
	font-weight: bold;
	font-size: 22px;
}


.productShow .shows .swiperBox .prev:hover,
.productShow .shows .swiperBox .next:hover {
	color: #D71918;
}


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


.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 #DDDDDD;
}


.productShow .shows .checkSwiper .swiper-slide-thumb-active::after {
	border-color: #D71918;
}


.productShow .jianjie {
	flex: 1;
	padding-top: 47px;
}

.productShow .jianjie .tip {
	color: #333;
	font-family: Inter;
	font-size: 26px;
	line-height: 38px;
}


.productShow .jianjie h1 {
	margin-top: 3px;
	color: #333;
	font-family: Inter-Bold;
	font-size: 46px;
	line-height: 60px;
}

.productShow .jianjie .line {
	width: 95px;
	height: 6px;
	background-color: #D71918;
	margin-top: 16px;
}

.productShow .jianjie .tit {
	color: #D71918;
	font-family: Inter-Bold;
	font-size: 16px;
	line-height: 30px;
	margin-top: 26px;
}


.productShow .jianjie .txts {
	margin-top: 13px;
}


.productShow .jianjie .txts p {
	color: #666;
	font-size: 16px;
	line-height: 30px;
}


.productShow .jianjie .txts p em {
	font-family: Inter-Bold;
	font-style: normal;
}


.productShow .jianjie .box {
	display: flex;
	align-items: center;
	margin-top: 68px;
	flex-wrap: wrap;
}


.productShow .jianjie .btns {
	display: flex;
	align-items: center;
	margin-right: 47px;
}


.productShow .jianjie .btns a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #D71918;
	background-color: #D71918;
	color: #FFF;
	font-size: 16px;
	height: 42px;
	margin: 10px 0;
}



.productShow .jianjie .btns a:nth-child(1) {
	width: 139px;
	margin-right: 26px;
}

.productShow .jianjie .btns a:nth-child(2) {
	width: 152px;
}


.productShow .jianjie .btns a:hover {
	background-color: #ffffff;
	color: #D71918;
}


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

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


@media screen and (max-width:1560px) {
	.productShow .shows .showSipwer {
		width: 460px;
	}

	.productShow .shows .swiperBox {
		height: 460px;
	}

	.productShow .shows .checkSwiper {
		width: 104px;
	}

	.productShow .shows .swiperBox .prev i,
	.productShow .shows .swiperBox .next i {
		font-size: 20px;
	}

	.productShow .jianjie {
		padding: 0;
	}

	.productShow .jianjie .tip {
		font-size: 18px;
		line-height: 28px;
	}

	.productShow .jianjie h1 {
		margin-top: 20px;
		font-size: 36px;
		line-height: 48px;
	}

	.productShow .jianjie .line {
		height: 4px;
		width: 80px;
	}

	.productShow .jianjie .box {
		margin-top: 30px;
	}

	.productShow .jianjie .btns a {
		height: 40px;
	}

	.productShow .jianjie .btns a:nth-child(1) {
		margin-right: 10px;
	}

	.productShow .jianjie .btns {
		margin-right: 14px;
	}
}

@media screen and (max-width:1333px) {
	.productShow .shows {
		flex-direction: column-reverse;
		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%;
	}

	.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 {
		flex: none;
		width: 58%;
	}

	.productShow .jianjie h1 {
		font-size: 28px;
		line-height: 38px;
	}

	.productShow .jianjie .tip {
		font-size: 16px;
		line-height: 28px;
	}

	.productShow .jianjie .line {
		width: 60px;
		height: 3px;
		margin-top: 10px;
	}

	.productShow .jianjie .btns a {
		margin: 0;
	}

	.productShow .jianjie .box {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.productShow .jianjie .share {
		margin-bottom: 30px;
	}

	.productShow .jianjie .btns {
		margin-right: 0;
	}
}


@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 .jianjie .tip {
		font-size: 14px;
		line-height: 26px;
	}

	.productShow .jianjie h1 {
		font-size: 24px;
		line-height: 36px;
	}

	.productShow .jianjie .btns a {
		font-size: 14px;
	}

}


@media screen and (max-width:768px) {
	.productShow .shows {
		max-width: 340px;
	}

	.productShow .jianjie .btns a {
		font-size: 14px;
	}

	.productShow .jianjie h1 {
		font-size: 22px;
		line-height: 34px;
	}

	.productShow .jianjie .tit {
		margin-top: 20px;
	}
}


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


.btnsSwiper {
	margin-top: 120px;
}


.btnsSwiper .swiper {
	position: relative;
}


.btnsSwiper .swiper::after {
	content: "";
	position: absolute;
	bottom: 1px;
	left: 50%;
	transform: translateX(-50%);
	height: 1px;
	width: 100%;
	background-color: rgba(0, 0, 0, .1);
	z-index: -1;
}



.btnsSwiper .swiper .swiper-slide {
	width: auto;
	padding: 30px 13px;
	position: relative;
	cursor: pointer;
	color: #333;
	font-family: Inter-Bold;
	font-size: 20px;
	line-height: 30px;
	transition: .4s ease color;
	margin-right: 5.3%;
}

.btnsSwiper .swiper .swiper-slide:last-child {
	margin-right: 0;
}

.btnsSwiper .swiper .swiper-slide::after {
	content: "";
	position: absolute;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #D71918;
	transition: .4s ease all;
	bottom: 0;
}

.btnsSwiper .swiper .swiper-slide.active::after,
.btnsSwiper .swiper .swiper-slide:hover::after {
	width: 100%;
}

.btnsSwiper .swiper .swiper-slide.active,
.btnsSwiper .swiper .swiper-slide:hover {
	color: #D71918;
}


.btnsSwiper .btns {
	display: flex;
	align-items: center;
	justify-content: center;
}

.btnsSwiper .btns>div {
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btnsSwiper .btns>div.prev {
	margin-right: 20px;
}


.btnsSwiper .btns>div:hover {
	color: #D71918;
}

.btnsSwiper .btns>div.swiper-button-disabled {
	pointer-events: none;
}

@media screen and (max-width:1560px) {
	.btnsSwiper .swiper .swiper-slide {
		padding: 20px 0;
		font-size: 18px;
		line-height: 28px;
	}

	.btnsSwiper {
		margin-top: 80px;
	}

	.btnsSwiper .swiper .swiper-slide {
		margin-right: 40px;
	}
}

@media screen and (max-width:1333px) {
	.btnsSwiper {
		margin-top: 50px;
	}

	.btnsSwiper .swiper .swiper-slide {
		padding: 14px 0;
	}
}


@media screen and (max-width:768px) {
	.btnsSwiper {
		margin-top: 40px;
	}

	.btnsSwiper .swiper .swiper-slide {
		font-size: 16px;
		line-height: 28px;
	}

	.btnsSwiper .swiper .swiper-slide::after {
		height: 2px;
	}

	.btnsSwiper .swiper::after {
		bottom: 0;
	}
}


@media screen and (max-width:538px) {
	.btnsSwiper {
		margin-top: 30px;
	}
}

.parameters {
	margin-top: 53px;
}

.pdTit {
	color: #333;
	font-family: Inter-Bold;
	font-size: 30px;
	line-height: 40px;
}

.parameters .txts {
	margin-top: 36px;
}

.table {
	width: 100%;
	overflow: auto;
}

.table table {
	width: 100%;
	border-collapse: collapse;
	line-height: 22px;
}

.table table tr td {
	padding: 12px 2px;
	font-size: 16px;
	line-height: 28px;
	color: #333333;
	border: 1px solid #E6E6E6;
	text-align: center;
	word-break: break-all;
}

.table table tr:nth-child(1) td {
	background-color: #D71918;
	color: #ffffff;
	border-color: #D71918;
}

.parameters .table table tr td:nth-child(1) {
	text-align: left;
}


@media screen and (max-width:1560px) {
	.pdTit {
		font-size: 26px;
		line-height: 38px;
	}

	.table table tr td {
		padding: 10px 20px;
	}

	.parameters {
		margin-top: 50px;
	}
}

@media screen and (max-width:1333px) {
	.pdTit {
		font-size: 22px;
		line-height: 32px;
	}
}

@media screen and (max-width:999px) {
	.table table tr td {
		font-size: 14px;
		line-height: 26px;
	}

	.parameters {
		margin-top: 40px;
	}

	.pdTit {
		font-size: 20px;
		line-height: 30px;
	}

	.parameters .txts {
		margin-top: 30px;
	}
}

@media screen and (max-width:768px) {
	.parameters {
		margin-top: 30px;
	}
}

.download {
	margin-top: 52px;
}

.download .list {
	margin-top: 60px;
}

.download .list .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 21px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 8px;
}


.download .list .item:last-child {
	margin-bottom: 0;
}

.download .list .box {
	display: flex;
	align-items: center;
}

.download .list .sign {
	width: 40px;
	margin-right: 12px;
	flex-shrink: 0;
}

.download .list .sign img {
	display: block;
}


.download .list .name {
	color: #333;
	font-family: Inter-Bold;
	font-size: 18px;
	line-height: 30px;
}

.download .list .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 149px;
	height: 40px;
	border: 1px solid #D71918;
	border-radius: 10px;
	color: #FFF;
	font-size: 16px;
	background-color: #D71918;
	margin-right: 2px;
	flex-shrink: 0;
	margin-left: 30px;
}


.download .list .btn img {
	filter: grayscale(100%) brightness(500%);
	flex-shrink: 0;
	margin-left: 8px;
}


.download .list .btn:hover {
	background-color: #ffffff;
	color: #D71918;
}


.download .list .btn:hover img {
	transform: none;
	filter: grayscale(0%) brightness(100%);
}


@media screen and (max-width:1560px) {
	.download .list {
		margin-top: 40px;
	}

	.download .list .btn {
		width: 140px;
		border-radius: 5px;
	}

	.download .list .name {
		font-size: 16px;
		line-height: 28px;
	}
}

@media screen and (max-width:1333px) {
	.download .list .btn {
		width: 130px;
	}
}

@media screen and (max-width:999px) {
	.download .list {
		margin-top: 30px;
	}

	.download {
		margin-top: 40px;
	}

	.download .list .name {
		font-size: 14px;
		line-height: 28px;
	}

	.download .list .btn {
		height: 36px;
	}
}

@media screen and (max-width:538px) {
	.download .list .item {
		flex-direction: column;
		align-items: flex-start;
	}

	.download .list .btn {
		margin-left: 0;
		margin-top: 24px;
	}

	.download {
		margin-top: 30px;
	}
}

.sensor {
	margin-top: 75px;
}


.sensor .mangetic {
	margin-top: 38px;
}

.mangetic .txts {
	margin-top: 37px;
}

.sensor .inductive {
	margin-top: 50px;
}

.inductive .txts {
	margin-top: 33px;
}

.sensor .schematic {
	margin-top: 49px;
}

.schematic .txts {
	margin-top: 52px;
}

@media screen and (max-width:1560px) {
	.sensor {
		margin-top: 60px;
	}

	.sensor>div:nth-child(n) {
		margin-top: 50px;
	}

	.sensor>div:nth-child(1) {
		margin-top: 0;
	}

	.sensor>div:nth-child(n)>.txts {
		margin-top: 30px;
	}
}

@media screen and (max-width:1333px) {
	.sensor {
		margin-top: 50px;
	}

	.sensor>div:nth-child(n) {
		margin-top: 40px;
	}

	.sensor>div:nth-child(1) {
		margin-top: 0;
	}
}

@media screen and (max-width:999px) {
	.sensor {
		margin-top: 40px;
	}

	.sensor>div:nth-child(n) {
		margin-top: 30px;
	}

	.sensor>div:nth-child(1) {
		margin-top: 0;
	}

	.sensor>div:nth-child(n)>.txts {
		margin-top: 20px;
	}
}

@media screen and (max-width:768px) {
	.sensor {
		margin-top: 30px;
	}
}

.description {
	margin-top: 52px;
}

.description .txts {
	margin-top: 22px;
}

.standardEdit p {
	color: #333;
	font-size: 16px;
	line-height: 30px;
}

.payment {
	margin-top: 56px;
}

.payment .txts {
	margin-top: 35px;
	text-align: center;
}


.standardEdit a {
	color: #D71918;
}

.standardEdit a:hover {
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-underline-offset: 3px;
}

.standardEdit p strong {
	color: #333333;
	font-family: Inter-Bold;
}

.pdChecks .standardEdit p em {
	display: block;
	padding: 5px 0;
	padding-left: 30px;
	position: relative;
	font-style: normal;
}

.pdChecks .standardEdit p em:after {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 20px;
	height: 20px;
	background-image: url("../images/pdSign.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}


.afterSales {
	margin-top: 56px;
}

.afterSales .txts {
	margin-top: 30px;
}

.pdPiece{
	height: 70px;
}

@media screen and (max-width:1560px) {

	.payment,
	.afterSales {
		margin-top: 50px;
	}
}

@media screen and (max-width:1333px) {

	.description,
	.payment,
	.afterSales {
		margin-top: 40px;
	}

	.payment .txts {
		margin-top: 30px;
		text-align: center;
	}
	.pdPiece{
		height: 60px;
	}
}

@media screen and (max-width:999px) {
	.pdPiece{
		height: 50px;
	}
}


@media screen and (max-width:768px) {

	.description,
	.payment {
		margin-top: 30px;
	}

	.payment .txts,
	.afterSales .txts {
		margin-top: 20px;
		text-align: center;
	}
	.pdPiece{
		height: 40px;
	}
}

.pdChecks>div {
	display: none;
}

.pdChecks>div.active {
	display: block;
}






/* 2-1-About Fouk */

.innerBanner {
	position: relative;
	height: 770px;
}


.innerBanner .image {
	height: 100%;
}

.innerBanner .image img,
.innerBanner video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.innerBanner video {
	position: absolute;
	left: 0;
	top: 0;
}


.innerBanner .msg {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 100%;
	display: flex;
	align-items: flex-end;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 39.85%, #000 100%);
	padding: 70px 0;
	z-index: 9;
}


.innerBanner .msg .title {
	color: #FFF;
	font-family: Inter-Bold;
	font-size: 60px;
	line-height: 79px;
}

.innerBanner .msg .line {
	width: 94px;
	height: 5px;
	background-color: #D71918;
	margin-top: 20px;
}


.innerBanner .msg .txts {
	color: #FFF;
	font-size: 16px;
	line-height: 28px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	margin-top: 35px;
}


.innerBanner .tip {
	font-size: 20px;
	line-height: 30px;
	margin-top: 38px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	color: #ffffff;
}




@media screen and (max-width:1560px) {
	.innerBanner {
		height: 600px;
	}

	.innerBanner .msg .title {
		font-size: 46px;
		line-height: 58px;
	}

	.innerBanner .msg .line {
		width: 70px;
	}

}

@media screen and (max-width:1333px) {
	.innerBanner {
		height: 500px;
	}

	.innerBanner .msg .title {
		font-size: 36px;
		line-height: 50px;
	}

	.innerBanner .msg .line {
		height: 3px;
	}

	.innerBanner .msg {
		padding: 60px 0;
	}

	.innerBanner .tip {
		font-size: 18px;
		line-height: 30px;
		margin-top: 30px;
	}
}

@media screen and (max-width:999px) {
	.innerBanner {
		height: 460px;
	}

	.innerBanner .msg .title {
		font-size: 28px;
		line-height: 40px;
	}

	.innerBanner .msg .line {
		width: 60px;
		margin-top: 14px;
	}

	.innerBanner .msg {
		padding: 50px 0;
	}

	.innerBanner .msg .txts {
		margin-top: 20px;
	}

	.innerBanner .tip {
		font-size: 16px;
		line-height: 28px;
	}
}

@media screen and (max-width:768px) {
	.innerBanner .msg {
		padding: 40px 0;
	}

	.innerBanner .msg .title {
		font-size: 24px;
		line-height: 36px;
	}

	.innerBanner {
		height: 360px;
	}
}

@media screen and (max-width:538px) {
	.innerBanner {
		height: 280px;
	}

	.innerBanner .msg {
		padding: 30px 0;
	}

	.innerBanner .msg .title {
		font-size: 22px;
		line-height: 30px;
	}

	.innerBanner .msg .line {
		width: 50px;
	}
}


.advantage {
	padding: 100px 0 100px 0;
}

.advantage .title1 {
	text-align: center;
}

.advantage .iTips {
	margin-top: 14px;
}


.advantage .con {
	display: flex;
	flex-wrap: wrap;
	margin-top: 38px;
}



.advantage .item {
	height: 550px;
	position: relative;
	flex: 1;
	margin-right: 13px;
}



.advantage .item.active {
	flex: 3.18;
}


.advantage .item:nth-child(4n) {
	margin-right: 0;
}



.advantage .item .image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}


.advantage .item .image:hover img {
	transform: none;
}


.advantage .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


.advantage .item .image::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 39.54%, #000 100%);
}



.advantage .msg {
	pointer-events: none;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 34px 20px;
}


.advantage .item.active .msg {
	padding: 20px 120px 20px 32px;
}

.advantage .msg .box {
	flex: 1;
	height: 90px;
	display: flex;
	align-items: flex-start;
}


.advantage .item.active .msg .box {
	align-items: center;
}


.advantage .msg .tit {
	color: #FFF;
	font-family: Inter-Bold;
	font-size: 20px;
	line-height: 30px;
	pointer-events: all;
}


.advantage .msg .tit:hover {
	color: #D71918;
}


.advantage .msg .btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 33px;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: #D71918;
	border-radius: 50%;
	color: #ffffff;
	font-size: 14px !important;
	opacity: 0;
}

.advantage .item.active .msg .box {
	height: 75px;
}


.advantage .item.active .msg .tit {
	-webkit-line-clamp: 2;
}


.advantage .item.active .msg .btn {
	pointer-events: all;
	opacity: 1;
}


.advantage .msg .btn:hover {
	background-color: #ffffff;
	color: #D71918;
}


@media screen and (max-width:1560px) {
	.advantage .iTips {
		margin-top: 20px;
	}

	.advantage .con {
		margin-top: 40px;
	}

	.advantage .msg .tit {
		font-size: 18px;
	}

	.advantage .msg .btn {
		width: 40px;
		height: 40px;
		right: 32px;
	}

	.advantage .item {
		height: 500px;
	}
}

@media screen and (max-width:1333px) {
	.advantage .item.active {
		flex: 2.6;
	}

	.advantage .msg {
		padding: 30px 20px;
	}

	.advantage .item.active .msg {
		padding: 20px 100px 20px 20px;
	}

	.advantage .msg .btn {
		right: 20px;
		width: 36px;
		height: 36px;
		font-size: 12px !important;
	}

	.advantage .item.active .msg .box {
		height: 82px;
	}
}

@media screen and (max-width:999px) {
	.advantage .con {
		margin-top: 30px;
	}

	.advantage .con {
		justify-content: space-between;
	}

	.advantage .item:nth-child(n) {
		flex: none;
		width: 49%;
		margin-right: 0;
		margin-top: 30px;
		height: 360px;
	}

	.advantage .item:nth-child(-n+2) {
		margin-top: 0;
	}

	.advantage .item:nth-child(n) .msg .btn {
		position: static;
		transform: translateX(0);
		opacity: 1;
		pointer-events: all;
		flex-shrink: 0;
		margin-left: 30px;
	}

	.advantage .item:nth-child(n) .msg .box {
		height: 90px;
		align-items: center;
	}

	.advantage .item:nth-child(n) .msg {
		padding: 20px;
	}

	.advantage .item:nth-child(n) .msg .tit {
		-webkit-line-clamp: 3;
	}
}

@media screen and (max-width:768px) {
	.advantage .item:nth-child(n) {
		height: 300px;
	}

	.advantage .msg .tit {
		font-size: 16px;
		line-height: 28px;
	}

	.advantage .item:nth-child(n) .msg .box {
		height: 84px;
	}

	.advantage .msg .btn {
		width: 34px;
		height: 34px;
	}

}

@media screen and (max-width:538px) {
	.advantage .item:nth-child(n) {
		height: 260px;
	}

	.advantage .item:nth-child(n) .msg {
		flex-direction: column;
		align-items: flex-start;
	}

	.advantage .item:nth-child(n) .msg .btn {
		margin-left: 0;
		margin-top: 20px;
	}
}


@media screen and (max-width:450px) {
	.advantage .item:nth-child(n) {
		width: 100%;
		margin-top: 30px;
	}

	.advantage .item:nth-child(1) {
		margin-top: 0;
	}

	.advantage .item:nth-child(n) {
		height: 240px;
	}
}


.ourTeam .title1 {
	text-align: center;
}

.ourTeam .iTips {
	margin-top: 14px;
}


.ourTeam .con {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

.ourTeam .imgSwiper {
	width: 60%;
}

.ourTeam .imgSwiper .image {
	height: 100%;
}

.ourTeam .imgSwiper .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


.ourTeam .msgSwiper {
	width: 40%;
	background-color: #D71918;
	background-image: url("../images/ourTeamM1-2.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 80px 0;
	padding-right: calc((100vw - 1600px)/ 2);
	padding-left: 73px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}



.ourTeam .msgSwiper .swiper {
	margin: 0;
	width: 100%;
}



.ourTeam .msgSwiper .title {
	color: #FFF;
	font-family: Inter-Bold;
	font-size: 36px;
	line-height: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}


.ourTeam .msgSwiper .txts {
	color: #FFF;
	font-size: 16px;
	line-height: 30px;
	margin-top: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	min-height: 150px;
}


.ourTeam .msgSwiper .sBtns {
	justify-content: flex-start;
}


.ourTeam .msgSwiper .sBtns>div {
	margin-top: 63px;
	background-color: #ffffff;
	border: 1px solid #ffffff;
	color: #999999;
}

.ourTeam .msgSwiper .sBtns>div:hover {
	background-color: transparent;
	color: #ffffff;
}


.ourTeam .sBtns>div.prev {
	margin-right: 17px;
}


@media screen and (max-width:1760px) {
	.ourTeam .msgSwiper {
		padding: 80px 30px;
		padding-right: 80px;
	}

	.ourTeam .msgSwiper .sBtns>div {
		margin-top: 50px;
	}

	.ourTeam .msgSwiper .title {
		font-size: 28px;
		line-height: 38px;
	}

	.ourTeam .iTips {
		margin-top: 20px;
	}

	.ourTeam .con {
		margin-top: 40px;
	}
}

@media screen and (max-width:1333px) {
	.ourTeam .msgSwiper {
		padding: 60px 30px;
		padding-right: 80px;
	}

	.ourTeam .msgSwiper .title {
		font-size: 24px;
		line-height: 36px;
	}

	.ourTeam .msgSwiper .txts {
		min-height: 140px;
	}

	.ourTeam .msgSwiper .sBtns>div {
		margin-top: 40px;
	}
}

@media screen and (max-width:999px) {
	.ourTeam .msgSwiper .txts {
		min-height: 130px;
	}

	.ourTeam .con {
		margin-top: 30px;
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.ourTeam .imgSwiper {
		width: 100%;
	}

	.ourTeam .msgSwiper {
		width: 100%;
		padding: 30px 80px;
	}

	.ourTeam .msgSwiper .sBtns>div {
		margin-top: 30px;
	}

	.ourTeam .msgSwiper .txts {
		min-height: auto;
		margin-top: 20px;
	}

	.ourTeam .msgSwiper .title {
		font-size: 20px;
		line-height: 30px;
	}

	.ourTeam .imgSwiper .image {
		height: 360px;
	}
}

@media screen and (max-width:768px) {
	.ourTeam .msgSwiper {
		padding: 30px 25px;
	}

	.ourTeam .imgSwiper .image {
		height: 300px;
	}

}

@media screen and (max-width:538px) {
	.ourTeam .imgSwiper .image {
		height: 260px;
	}

	.ourTeam .msgSwiper {
		padding: 30px 15px;
	}
}



.certificate {
	padding: 100px 0 137px;
}

.certificate .title1 {
	text-align: center;
}

.certificate .iTips {
	margin-top: 14px;
	width: 90%;
}


.certificate .swiperBox {
	margin-top: 48px;
}


.certificate .swiper {
	overflow: visible;
	clip-path: polygon(0% -1000%, 100% -1000%, 100% 1000%, 0 1000%);
}

.certificate .swiper .swiper-slide {
	display: flex;
	justify-content: center;
	pointer-events: none;
	position: relative;
}


.certificate .swiper .swiper-slide .image {
	transform-origin: bottom center;
	pointer-events: all;
}

.certificate .image:hover img {
	transform: translateY(-10px);
}

.certificate .swiper .swiper-slide .name {
	position: absolute;
	bottom: 0;
	transform: translateY(calc(100% + 24px)) translateX(-50%);
	color: #333;
	font-size: 16px;
	line-height: 30px;
	z-index: 9;
	left: 50%;
	opacity: 0;
	width: 100%;
	text-align: center;
}


.certificate .swiper .swiper-slide-active .name {
	opacity: 1;
	pointer-events: all;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}


.certificate .swiperBox .sBtns>div {
	top: 67%;
}


@media screen and (max-width:1560px) {
	.certificate .iTips {
		width: 100%;
		margin-top: 30px;
	}

	.certificate .swiperBox {
		margin-top: 50px;
		padding-bottom: 40px;
	}

	.certificate .swiper .swiper-slide .name {
		transform: translateY(calc(100% + 10px)) translateX(-50%);
	}


}

@media screen and (max-width:1333px) {
	.certificate .swiperBox .sBtns>div {
		top: 60%;
	}
}

@media screen and (max-width:999px) {
	.certificate .swiperBox {
		margin-top: 40px;
		padding-bottom: 0;
	}

	.certificate .swiperBox .sBtns>div {
		top: 40%;
	}

	.certificate .swiper .swiper-slide .name {
		opacity: 1;
		pointer-events: all;
		font-size: 14px;
		line-height: 24px;
		position: static;
		transform: translateX(0);
		margin-top: 10px;
	}


	.certificate .swiper .swiper-slide {
		flex-direction: column;
		align-items: center;
	}
}

@media screen and (max-width:768px) {
	.certificate .iTips {
		margin-top: 20px;
	}

	.certificate .swiperBox {
		margin-top: 30px;
	}
}


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


.ourVision .msg {
	padding: 80px 0 80px 0;
	background-color: #F5F5F5;
	width: 40%;
	padding-left: calc((100vw - 1400px)/ 2);
	padding-right: 55px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}


.ourVision .msg .tip {
	color: #333;
	font-family: Inter-Bold;
	font-size: 16px;
	line-height: 30px;
	margin-top: 19px;
}

.ourVision .msg .txts {
	color: #333;
	font-size: 16px;
	line-height: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	margin-top: 14px;
}



.ourVision .image {
	width: 60%;
}


.ourVision .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


@media screen and (max-width:1560px) {
	.ourVision .msg {
		padding-left: 80px;
		padding-right: 30px;
	}

	.ourVision .msg .tip {
		margin-top: 30px;
	}
}

@media screen and (max-width:1333px) {
	.ourVision .msg {
		padding: 60px 30px 60px 80px;
	}
}

@media screen and (max-width:999px) {
	.ourVision {
		flex-direction: column;
		align-items: flex-start;
	}

	.ourVision .msg {
		width: 100%;
		padding: 30px 80px;
	}

	.ourVision .msg .tip {
		font-size: 14px;
		line-height: 26px;
		margin-top: 20px;
	}

	.ourVision .image {
		width: 100%;
		height: 360px;
	}
}

@media screen and (max-width:768px) {
	.ourVision .msg {
		padding: 30px 25px;
	}

	.ourVision .image {
		height: 300px;
	}
}

@media screen and (max-width:538px) {
	.ourVision .image {
		height: 260px;
	}

	.ourVision .msg {
		padding: 30px 15px;
	}
}


.aboutPiece {
	padding: 100px 0 100px 0;
}


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


.ability .item {
	width: 21.5%;
	margin-right: 4.66%;
	position: relative;
	padding: 63px 0 93px 0;
	margin-top: 30px;
}


.ability .item::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 1px;
	background-color: rgba(0, 0, 0, .1);
	top: 0;
	right: -12%;
}

.ability .item:nth-child(-n+4) {
	margin-top: 0;
}

.ability .item:nth-child(4n) {
	margin-right: 0;
}

.ability .item:nth-child(4n)::after {
	display: none;
}

.ability .sign {
	width: 64px;
}

.ability .sign img {
	display: block;
}

.ability .tit {
	color: #333;
	font-family: Inter-Bold;
	font-size: 20px;
	line-height: 30px;
	margin-top: 22px;
}

.ability .txts {
	color: #666;
	font-family: Inter;
	font-size: 16px;
	line-height: 30px;
	margin-top: 17px;
}


.aboutPiece .services {
	margin-top: 100px;
}

.services {
	display: flex;
}

.services .image {
	width: 42.6%;
	margin-right: 4.9%;
}

.services .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.services .msg {
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 60px 0;
}

.services .msg .txts {
	margin-top: 48px;
	color: #333;
	font-size: 16px;
	line-height: 30px;
}


.services .msg .txts span {
	color: #D71918;
}

.aboutPiece .relatedNews {
	margin-top: 100px;
}


.relatedNews .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.relatedNews .newSwiper {
	margin-top: 49px;
}

.relatedNews .title .btn {
	color: #D71918;
	font-size: 16px;
	line-height: 30px;
	position: relative;
	flex-shrink: 0;
	margin-left: 30px;
}


.relatedNews .title .btn::after {
	content: "";
	position: absolute;
	bottom: -2px;
	height: 1px;
	background-color: #D71918;
	width: 0;
	transition: .4s ease all;
	right: 0;
}

.relatedNews .title .btn:hover::after {
	width: 100%;
	right: auto;
	left: 0;
}



@media screen and (max-width:1560px) {
	.ability .item {
		padding: 40px 0;
	}

	.ability .sign {
		width: 56px;
	}

	.aboutPiece .services,
	.aboutPiece .relatedNews {
		margin-top: 80px;
	}
}

@media screen and (max-width:1333px) {
	.ability .sign {
		width: 50px;
	}

	.ability .tit {
		font-size: 18px;
		line-height: 28px;
	}

	.ability {
		justify-content: space-between;
	}

	.ability .item:nth-child(n) {
		width: 48%;
		margin-right: 0;
		margin-top: 30px;
		padding: 20px 0;
	}

	.ability .item:nth-child(-n+2) {
		margin-top: 0;
	}

	.ability .item:nth-child(2n)::after {
		display: none;
	}

	.ability .item::after {
		right: -1.5%;
	}

	.services .image {
		margin-right: 0;
	}

	.services {
		justify-content: space-between;
	}

	.services .msg {
		width: 50%;
	}

	.aboutPiece .services,
	.aboutPiece .relatedNews {
		margin-top: 60px;
	}

	.relatedNews .newSwiper {
		margin-top: 40px;
	}

	.services .msg .txts {
		font-size: 16px;
		line-height: 28px;
	}
}

@media screen and (max-width:999px) {
	.ability .sign {
		width: 45px;
	}

	.ability .tit {
		font-size: 16px;
		line-height: 28px;
	}

	.aboutPiece .services,
	.aboutPiece .relatedNews {
		margin-top: 50px;
	}

	.aboutPiece .services {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.services .msg {
		padding: 0;
		width: 100%;
	}

	.services .msg .txts {
		font-size: 14px;
		line-height: 26px;
	}

	.services .image {
		width: 100%;
		margin-top: 30px;
		height: 360px;
	}
}

@media screen and (max-width:768px) {

	.aboutPiece .services,
	.aboutPiece .relatedNews {
		margin-top: 40px;
	}

	.relatedNews .newSwiper {
		margin-top: 30px;
	}

	.ability .sign {
		width: 40px;
	}

	.ability .item:nth-child(n) {
		padding: 10px 0;
	}

	.services .image {
		height: 300px;
	}
}

@media screen and (max-width:538px) {
	.ability .item:nth-child(n) {
		width: 100%;
		margin-top: 30px;
		padding: 0;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(0, 0, 0, .2);
	}

	.ability .item:nth-child(1) {
		margin-top: 0;
	}

	.ability .item:nth-child(n)::after {
		display: none;
	}

	.ability .sign {
		width: 36px;
	}

	.services .image {
		height: 260px;
	}

	.relatedNews .title {
		flex-direction: column;
		align-items: flex-start;
	}

	.relatedNews .title .btn {
		margin-left: 0;
		margin-top: 10px;
	}
}

/* 3-1-Customizations */

.customizations {
	padding: 101px 0 70px 0;
}

.customizations .title1 {
	color: #333;
	text-align: center;
	font-family: Inter-Bold;
	font-size: 40px;
	line-height: 50px;
}

.customizations .iTips {
	margin-top: 17px;
	color: #333;
	display: block;
}

.customizations .con {
	margin-top: 87px;
	display: flex;
	justify-content: space-between;
}



.customizations .image {
	width: 54.85%;
}

.customizations .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}


.cusTit {
	color: #D71918;
	font-family: Inter-Bold;
	font-size: 30px;
	line-height: 40px;
}

.customizations .msg {
	padding: 35px 0;
	width: 36%;
}

.customizations .txts {
	margin-top: 35px;
}


.customizations .txts p {
	color: #333;
	font-size: 16px;
	line-height: 30px;
}

.customizations .txts p em {
	display: inline-block;
	padding-left: 41px;
	font-style: normal;
	position: relative;
}



.customizations .txts p em::after {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 19px;
	height: 19px;
	background-image: url("../images/customizationsSign.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}


.customizedSolution {
	background-color: #F5F5F5;
	padding: 60px 0 111px 0;
}

.customizedSolution .msg {
	margin-top: 32px;
}

.customizedSolution .msg p {
	color: #333;
	font-size: 16px;
	line-height: 30px;
}


.customizedSolution .msg p strong {
	font-family: Inter-Bold;
}

.customizedPiece {
	padding: 99px 0 100px 0;
}


@media screen and (max-width:1560px) {
	.customizations .iTips {
		margin-top: 40px;
	}

	.customizations .con {
		margin-top: 60px;
	}

	.cusTit {
		font-size: 26px;
		line-height: 38px;
	}
}

@media screen and (max-width:1333px) {
	.customizations .con {
		margin-top: 50px;
	}

	.cusTit {
		font-size: 24px;
		line-height: 36px;
	}

	.customizations .msg {
		width: 40%;
	}
}

@media screen and (max-width:999px) {
	.customizations .iTips {
		margin-top: 30px;
	}

	.customizations .con {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 40px;
	}

	.customizations .msg {
		width: 100%;
		padding: 0;
	}

	.customizations .txts {
		margin-top: 20px;
	}

	.cusTit {
		font-size: 20px;
		line-height: 30px;
	}

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

	.customizations .txts p em::after {
		top: 3px;
	}
}

@media screen and (max-width:768px) {
	.cusTit {
		font-size: 18px;
		line-height: 28px;
	}

	.customizations .txts p em {
		padding-left: 30px;
	}
}

@media screen and (max-width:538px) {}


/* 4-1-Appliaction */

.appList {
	padding: 88px 0 95px 0;
}

.appList .dis .title1 {
	font-size: 40px;
}


.appList .dis .txts {
	margin-top: 15px;
}

.appList .dis .txts p {
	color: #666;
	font-size: 16px;
	line-height: 30px;
}

.appList .dis .cBtn {
	margin-top: 40px;
	height: 46px;
	width: 146px;
}

.appList .list {
	margin-top: 100px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.appList .list .item {
	width: 48.57%;
	margin-top: 50px;
}

.appList .list .item:nth-child(-n+2) {
	margin-top: 0;
}


.appList .list .box {
	position: relative;
}


.appList .list .cBtn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	opacity: 0;
}

.appList .list .box:hover .cBtn {
	opacity: 1;
}

.appList .list .cBtn:hover {
	background-color: #D71918;
	color: #ffffff;
}


.appList .list .image {
	overflow: hidden;
}

.appList .list .image:hover img {
	transform: none;
}



.appList .list .msg {
	margin-top: 30px;
	padding: 0 15px;
}


.appList .list .tit {
	color: #333;
	font-family: Inter-Bold;
	font-size: 22px;
	line-height: 30px;
}


.appList .list .tit:hover {
	color: #D71918;
}

.appList .list .txts {
	color: #333;
	font-size: 16px;
	line-height: 30px;
	margin-top: 15px;
}


.appList .pager {
	margin-top: 96px;
}

.appListPiece {
	padding: 100px 0 100px 0;
}


@media screen and (max-width:1560px) {
	.appList .dis .txts {
		margin-top: 30px;
	}

	.appList .list {
		margin-top: 60px;
	}

	.appList .list .tit {
		font-size: 20px;
	}

	.appList .pager {
		margin-top: 80px;
	}
}

@media screen and (max-width:1333px) {
	.appList .dis .cBtn {
		height: 40px;
		width: 140px;
		margin-top: 30px;
	}

	.appList .list .tit {
		font-size: 18px;
		line-height: 30px;
	}

	.appList .list .msg {
		margin-top: 20px;
		padding: 0 10px;
	}

	.appList .pager {
		margin-top: 50px;
	}

	.appList .list .item {
		margin-top: 40px;
	}

}

@media screen and (max-width:999px) {
	.appList .dis .cBtn {
		height: 36px;
	}

	.appList .list .msg {
		padding: 0;
	}

	.appList .list .txts {
		font-size: 14px;
		line-height: 26px;
	}

	.appList .list .tit {
		font-size: 16px;
		line-height: 28px;
	}

	.appList .list .item {
		margin-top: 30px;
	}

	.appList .pager {
		margin-top: 40px;
	}

	.appList .list {
		margin-top: 50px;
	}
}

@media screen and (max-width:768px) {
	.appList .dis .cBtn {
		height: 32px;
	}

	.appList .list {
		margin-top: 40px;
	}
}


@media screen and (max-width:538px) {
	.appList .list .item:nth-child(n) {
		width: 100%;
		margin-top: 30px;
	}

	.appList .list .item:nth-child(1) {
		margin-top: 0;
	}
}

/* 4-2-Application */

.appDet {
	padding: 99px 0 100px 0;
}


.appDet h1 {
	text-align: center;
	color: #333;
	text-align: center;
	font-family: Montserrat-Bold;
	font-size: 40px;
	line-height: 50px;
}


.appDet .tips {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 33px;
}


.appDet .tips .time {
	color: #666;
	font-size: 16px;
	line-height: 26px;
	flex-shrink: 0;
	margin-right: 29px;
}

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

.share span {
	color: #666;
	font-size: 16px;
	line-height: 26px;
	flex-shrink: 0;
	margin-right: 6px;
}

.appDet .dis {
	border-top: 1px solid rgba(0, 0, 0, .1);
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding: 37px 0 40px 0;
	margin-top: 38px;
}


.appDet .dis p {
	color: #333;
	font-size: 16px;
	line-height: 30px;
}

.appDet .dis p em {
	display: inline-block;
	font-style: normal;
	padding: 10px 30.5px 10px;
	margin-bottom: 20px;
	color: #FFF;
	font-family: Inter-Bold;
	font-size: 16px;
	background-color: #D71918;
}


.prevOrNext>div {
	display: flex;
	align-items: center;
}

.prevOrNext .name,
.prevOrNext .tit {
	color: #333;
	font-size: 16px;
	line-height: 30px;
}

.prevOrNext .tit {
	flex-shrink: 0;
	margin-right: 5px;
}

.prevOrNext div.name {
	color: #666;
}

.prevOrNext a.name:hover {
	color: #D71918;
}

.prevOrNext .name {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}


.appDet .prevOrNext {
	margin-top: 38px;
}

.relatedProducts {
	background-color: #F8F8F8;
	padding: 84px 0 85px 0;
}

.relatedProducts .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.relatedProducts .title .sBtns {
	justify-content: flex-end;
	flex-shrink: 0;
	margin-left: 40px;
}

.relatedProducts .title .sBtns>div.prev {
	margin-right: 17px;
}

.relatedProducts .productSwiper {
	margin-top: 32px;
}


@media screen and (max-width:1560px) {
	.appDet .dis p em {
		padding: 10px 20px;
	}
}

@media screen and (max-width:1333px) {
	.appDet .tips {
		margin-top: 30px;
	}

	.appDet .dis {
		padding: 30px 0;
		margin-top: 30px;
	}

	.appDet .dis p em {
		padding: 6px 20px;
	}

	.appDet .prevOrNext {
		margin-top: 30px;
	}
}

@media screen and (max-width:999px) {
	.share span {
		font-size: 14px;
		line-height: 24px;
	}

	.appDet .dis p em {
		font-size: 14px;
		line-height: 26px;
	}

	.prevOrNext .name,
	.prevOrNext .tit {
		font-size: 14px;
		line-height: 26px;
	}

	.prevOrNext>div.prev {
		margin-bottom: 10px;
	}
}

@media screen and (max-width:538px) {
	.appDet .tips {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.appDet .tips .time {
		margin-right: 0;
		margin-bottom: 10px;
	}

	.appDet .dis p em {
		padding: 4px 20px;
	}

	.relatedProducts .title {
		flex-direction: column;
		align-items: flex-start;
	}

	.relatedProducts .title .sBtns {
		margin-left: 0;
		margin-top: 20px;
	}
}

/* 5-1-News */

.news {
	padding: 101px 0 95px 0;
}


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


.newsShow .imgSwiper {
	width: 47.14%;
	overflow: hidden;
}

.newsShow .imgSwiper .image {
	height: 100%;
}

.newsShow .imgSwiper .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}

.newsShow .msgSwiper {
	width: 50.1%;
	overflow: hidden;
}

.newsShow .msgSwiper .swiper-slide {
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.newsShow .time {
	color: #D71918;
	font-size: 16px;
	line-height: 26px;
}

.newsShow .title {
	color: #333;
	font-family: Inter-Bold;
	font-size: 30px;
	line-height: 40px;
	margin-top: 9px;
}

.newsShow .title:hover {
	color: #D71918;
}

.newsShow .txts {
	color: #666;
	font-size: 16px;
	line-height: 30px;
	min-height: 90px;
	margin-top: 17px;
}


.newsShow .cBtn {
	margin-top: 31px;
	width: 156px;
}




.newsShow .swiper-pagination {
	position: static;
	margin-top: 53px;
}

.newsShow .swiper-pagination span {
	opacity: 1;
	background-color: #E2E2E2;
	border-radius: 50px;
	width: 18px;
	height: 4px;
	margin: 5px 5px !important;
}

.newsShow .swiper-pagination span.swiper-pagination-bullet-active {
	width: 35px;
	background-color: #D71918;
}

.news .newCategroy {
	margin-top: 74px;
}


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

.newCategroy a {
	margin: 16px 33px;
	color: #333;
	font-family: Inter-Bold;
	font-size: 20px;
	line-height: 30px;
	position: relative;
}

.newCategroy a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -19px;
	height: 1px;
	background-color: #D71918;
	transition: .4s ease all;
	width: 0;
}


.newCategroy a.active,
.newCategroy a:hover {
	color: #D71918;
}

.newCategroy a.active::after,
.newCategroy a:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}



.news .newList {
	margin-top: 55px;
}

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

.newList .newItem {
	width: 31.5%;
	margin-right: 2.75%;
	margin-top: 60px;
}

.newList .newItem:nth-child(3n) {
	margin-right: 0;
}

.newList .newItem:nth-child(-n+3) {
	margin-top: 0;
}

.news .pager {
	margin-top: 95px;
}

@media screen and (max-width:1560px) {
	.newsShow .title {
		font-size: 26px;
		line-height: 38px;
		margin-top: 20px;
	}

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

	.newCategroy a::after {
		bottom: -6px;
	}

	.newCategroy a {
		margin: 10px 26px;
	}

	.news .newList {
		margin-top: 60px;
	}

	.newList .newItem {
		margin-top: 40px;
	}

	.news .pager {
		margin-top: 60px;
	}

	.news .newCategroy {
		margin-top: 60px;
	}
}

@media screen and (max-width:1333px) {
	.news .newCategroy {
		margin-top: 40px;
	}

	.news .newList {
		margin-top: 40px;
	}

	.newsShow .title {
		font-size: 22px;
		line-height: 32px;
	}

	.newsShow .cBtn {
		width: 140px;
	}

	.newCategroy a {
		font-size: 18px;
		line-height: 28px;
	}

	.news .pager {
		margin-top: 50px;
	}

	.newsShow .txts {
		min-height: 84px;
	}
}

@media screen and (max-width:999px) {
	.newsShow .title {
		font-size: 18px;
		line-height: 28px;
		margin-top: 10px;
	}

	.newsShow .txts {
		min-height: 72px;
		-webkit-line-clamp: 2;
	}

	.newsShow .cBtn {
		width: 130px;
		margin-top: 30px;
	}

	.newsShow .swiper-pagination {
		margin-top: 30px;
	}

	.newCategroy a {
		font-size: 16px;
		line-height: 28px;
		margin: 8px 16px;
	}

	.news .newCategroy,
	.news .newList {
		margin-top: 30px;
	}

	.newList {
		justify-content: space-between;
	}

	.newList .newItem:nth-child(n) {
		width: 48%;
		margin-right: 0;
		margin-top: 30px;
	}

	.newList .newItem:nth-child(-n+2) {
		margin-top: 0;
	}

	.news .pager {
		margin-top: 40px;
	}
}

@media screen and (max-width:768px) {
	.newsShow .box {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.newsShow .msgSwiper .swiper-slide {
		padding: 0;
	}

	.newsShow .txts {
		min-height: 56px;
		-webkit-line-clamp: 2;
	}

	.newsShow .msgSwiper {
		width: 100%;
	}

	.newsShow .cBtn {
		margin-top: 20px;
	}

	.newsShow .imgSwiper {
		width: 100%;
		height: 300px;
		margin-top: 30px;
	}

	.newCategroy a {
		margin: 8px 6px;
	}

	.news .pager {
		margin-top: 30px;
	}
}

@media screen and (max-width:450px) {
	.newList .newItem:nth-child(n) {
		width: 100%;
		margin-top: 30px;
	}

	.newList .newItem:nth-child(1) {
		margin-top: 0;
	}

	.newsShow .imgSwiper {
		height: 260px;
	}

}


/* 5-2-News */

.newDet {
	padding: 102px 0 100px 0;
}

.newDet h1 {
	color: #333;
	font-family: Inter-Bold;
	font-size: 40px;
	font-weight: 700;
	line-height: 50px;
}

.newDet .tips {
	margin-top: 29px;
	display: flex;
	align-items: center;
}

.newDet .tips .time {
	color: #666;
	font-size: 16px;
	line-height: 26px;
	margin-right: 30px;
}

.newDet .dis {
	margin-top: 39px;
	padding: 29px 0 62px 0;
	border-top: 1px solid rgba(0, 0, 0, .1);
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.newDet .dis p {
	color: #333;
	font-size: 16px;
	line-height: 30px;
}

.newDet .dis p strong {
	font-family: Inter-Bold;
	font-weight: normal;
}

.newDet .dis p em {
	font-style: normal;
	color: #D71918;
	font-family: Inter-Bold;
	font-size: 20px;
	display: inline-block;
	margin-bottom: 22px;
}

.newDet .prevOrNext {
	margin-top: 39px;
}

@media screen and (max-width:1560px) {
	.newDet .dis {
		padding: 30px 0;
		margin-top: 30px;
	}

	.newDet .prevOrNext {
		margin-top: 30px;
	}
}

@media screen and (max-width:999px) {
	.newDet .dis p em {
		font-size: 18px;
	}
}

@media screen and (max-width:538px) {
	.newDet .tips {
		flex-direction: column;
		align-items: flex-start;
	}

	.newDet .tips .time {
		margin-right: 0;
		margin-bottom: 10px;
	}
}


/* 6-1-Contact Us */

.contactUs {
	padding: 110px 0 95px 0;
}

.contactUs .title1 {
	font-size: 40px;
}

.contactUs .infoList {
	margin-top: 58px;
}


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


.contactUs .infoList .item {
	width: 47.28%;
	margin-top: 73px;
}

.contactUs .infoList .item:nth-child(-n+2) {
	margin-top: 0;
}

.contactUs .infoList .tit {
	color: #333;
	font-family: Inter-Bold;
	font-size: 30px;
	line-height: 40px;
}

.contactUs .infoList .line {
	width: 100%;
	height: 1px;
	margin-top: 24px;
	background-color: rgba(0, 0, 0, .1);
}

.contactUs .infoList ul {
	margin-top: 29px;
}

.contactUs .infoList ul li {
	margin-top: 12px;
	display: flex;
	align-items: flex-start;
}

.contactUs .infoList ul li:nth-child(1) {
	margin-top: 0;
}

.contactUs .infoList ul li.email .num {
	word-break: break-all;
}

.contactUs .infoList .name,
.contactUs .infoList .num {
	display: inline;
	color: #666;
	font-size: 16px;
	line-height: 28px;
}


.contactUs .infoList .name {
	font-family: Inter-Bold;
	margin-right: 4px;
	font-weight: bold;
}


.contactUs .infoList ul li i {
	flex-shrink: 0;
	margin-right: 12px;
	transform: translateY(5px);
	color: #D71918;
	font-size: 22px;
}


.contactUs .infoList a.num:hover {
	color: #D71918;
}


.contactUs .blogrolls {
	display: flex;
	flex-wrap: wrap;
	margin-top: 23px;
}

.contactUs .blogrolls a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background-color: #E5E5E5;
	margin: 5px 0;
	margin-right: 10px;
}

.contactUs .blogrolls a:hover {
	background-color: #D71918;
	color: #ffffff;
}

@media screen and (max-width:1560px) {
	.contactUs .infoList .tit {
		font-size: 26px;
		line-height: 38px;
	}

	.contactUs .infoList .item {
		margin-top: 60px;
	}
}

@media screen and (max-width:1333px) {
	.contactUs .infoList .tit {
		font-size: 22px;
		line-height: 34px;
	}

	.contactUs .infoList .item {
		margin-top: 50px;
	}

	.contactUs .infoList ul {
		margin-top: 20px;
	}
}

@media screen and (max-width:999px) {
	.contactUs .infoList .item:nth-child(n) {
		width: 100%;
		margin-top: 30px;
	}

	.contactUs .infoList .item:nth-child(1) {
		margin-top: 0;
	}

	.contactUs .infoList {
		margin-top: 40px;
	}

	.contactUs .infoList .tit {
		font-size: 20px;
		line-height: 30px;
	}

	.contactUs .infoList .name,
	.contactUs .infoList .num {
		font-size: 14px;
		line-height: 26px;
	}

	.contactUs .infoList .line {
		margin-top: 20px;
	}

	.contactUs .blogrolls a {
		width: 36px;
		height: 36px;
	}
}

@media screen and (max-width:768px) {
	.contactUs .infoList .tit {
		font-size: 18px;
		line-height: 28px;
	}

	.contactUs .infoList ul li i {
		font-size: 20px;
	}

	.contactUs .infoList {
		margin-top: 30px;
	}

	.contactUs .blogrolls a {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
}

@media screen and (max-width:538px) {
	.contactUs .infoList ul li .box {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.contactUs .infoList .name {
		margin-right: 0;
		margin-bottom: 5px;
	}
}



.map iframe{
	display: block;
}


.map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
	display: block;
}

.onlineMessage {
	margin-top:80px;
}


.onlineMessage .cFrom {
	position: relative;
	z-index: 9;
	/*margin-top: -16.6%;*/
	padding: 91px 0 91px 0;
}


.onlineMessage .cFrom::after {
	content: "";
	position: absolute;
	height: 100%;
	width: calc(100vw - 220px);
	min-width: calc(100% + 80px);
	background-color: #ffffff;
	z-index: -1;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
	left: 50%;
	transform: translateX(-50%);
	top: 0;
}


.cFrom .title1 {
	text-align: center;
}


.cFrom .iTips {
	margin-top: 18px;
	font-size: 16px;
	line-height: 30px;
}

.cFrom form .xunpanc {
	margin-top: 39px;
}

.cFrom form {
	margin-top: 62px;
}


.cFrom form ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}


.cFrom form ul li {
	width: 31.75%;
	margin-right: 2.375%;
	margin-top: 39px;
}

.cFrom form ul li:nth-child(3n) {
	margin-right: 0;
}

.cFrom form ul li:nth-child(-n+3) {
	margin-top: 0;
}

.cFrom form .name {
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 26px;
	color: #333333;
	margin-bottom: 7px;
	padding-left: 19px;
	position: relative;
}


.cFrom form .name span {
	color: #F00;
	flex-shrink: 0;
	margin-right: 5px;
	position: absolute;
	left: 6px;
	top: 0;
}



.cFrom form input {
	border-radius: 4px;
	border: 1px solid #DDD;
	background-color: #ffffff;
	height: 48px;
	padding: 0 13px;
	width: 100%;
}


.cFrom form textarea {
	height: 170px;
	padding: 13px 13px;
	width: 100%;
	border: 1px solid #DDD;
	background-color: #ffffff;
	border-radius: 4px;
}

.cFrom form li.message {
	width: 100%;
	margin-right: 0;
	margin-bottom: -4px;
}

.cFrom .codeCon {
	width: 34%;
	margin-right: 0;
}

.cFrom .codeCon .box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #ffffff;
	border: solid 1px #cccccc;
	overflow: hidden;
	border-radius: 4px;
	height: 48px;
}





.cFrom form li.codeCon .box input {
	border: none;
	flex: 1;
	height: 100%;
}


.cFrom form li.codeCon .codeImg {
	cursor: pointer;
	background-color: #f3fbfe;
	flex-shrink: 0;
	height: 100%;
	margin-right: 8px;
}


.cFrom form li.codeCon .codeImg img {
	display: block;
	height: 100%;
	max-width: 96px;
}


.cFrom form li.subBtn {
	width: 230px;
	margin-right: 0;
	margin-left: 2.6%;
}

.cFrom form li.subBtn input {
	color: #ffffff;
	width: 100%;
	background-color: #D71918;
	border-radius: 4px;
	overflow: hidden;
	border-color: #D71918;
	cursor: pointer;
}

.cFrom form li.subBtn input:hover {
	background-color: #ffffff;
	color: #D71918;
}


.cFrom form .m-formcountry {
	position: relative;
}

.cFrom form .m-formcountry .drop-btn {
	position: relative;
}

.cFrom form .m-formcountry .drop-btn i,
.cFrom form .m-formcountry .drop-btn svg {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	font-size: 12px;
	color: #333333;
	font-weight: bold;
}

.cFrom 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: #D71918 rgba(0, 0, 0, 0.05);
	scrollbar-width: thin;
}

.cFrom form .m-formcountry .drop-list::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

.cFrom form .m-formcountry .drop-list::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
}

.cFrom form .m-formcountry .drop-list::-webkit-scrollbar-thumb {
	background-color: #D71918;
}

.cFrom form .m-formcountry .drop-list li {
	font-size: 16px;
	line-height: 24px;
	overflow: hidden;
	padding: 0;
	padding: 5px 13px;
	cursor: pointer;
	border: none;
	border-bottom: 1px solid #e6e6e6;
	color: #999;
	height: auto;
	width: 100%;
	margin: 0;
}

.cFrom form .m-formcountry .drop-list li.on {
	background-color: #D71918;
	color: #ffffff;
}


.cFrom form input::-webkit-input-placeholder,
.cFrom form textarea::-webkit-input-placeholder {
	color: #999;
	font-size: 16px;
}

.cFrom form input:-moz-placeholder,
.cFrom form textarea:-moz-placeholder {
	color: #999;
	font-size: 16px;
}

.cFrom form input::-moz-placeholder,
.cFrom form textarea::-moz-placeholder {
	color: #999;
	font-size: 16px;
}

.cFrom form input:-ms-input-placeholder,
.cFrom form textarea:-ms-input-placeholder {
	color: #999;
	font-size: 16px;
}



@media screen and (max-width:1560px) {
	.onlineMessage .cFrom {
		padding: 80px 0;
	}

	.cFrom .iTips {
		width: 80%;
		margin-top: 30px;
	}
}

@media screen and (max-width:1333px) {
	.onlineMessage .cFrom {
		padding: 60px 0;
	}

	.cFrom .iTips {
		width: 90%;
	}

	.cFrom form input {
		height: 40px;
	}

	.cFrom .codeCon .box {
		height: 40px;
	}

	.cFrom form {
		margin-top: 50px;
	}
	.onlineMessage {
    	margin-top:60px;
    }
}

@media screen and (max-width:999px) {
	.onlineMessage .cFrom {
		padding: 50px 0;
		margin-top: 0;
	}

	.cFrom .iTips {
		width: 95%;
	}

	.cFrom form {
		margin-top: 40px;
	}

	.cFrom form .name {
		font-size: 14px;
	}

	.cFrom form .m-formcountry .drop-list li {
		font-size: 14px;
		line-height: 26px;
	}

	.cFrom form ul li {
		margin-top: 30px;
	}
	.onlineMessage {
    	margin-top:50px;
    }
}

@media screen and (max-width:768px) {
	.onlineMessage .cFrom::after {
		display: none;
	}

	.onlineMessage .cFrom {
		padding: 0;
	}

	.cFrom form ul {
		justify-content: space-between;
	}

	.cFrom form ul li:nth-child(n) {
		width: 48%;
		margin-right: 0;
		margin-top: 20px;
	}

	.cFrom form ul li:nth-child(-n+2) {
		margin-top: 0;
	}

	.cFrom form ul li.message,
	.cFrom form ul li.country {
		width: 100%;
	}

	.cFrom form textarea {
		height: 140px;
	}

	.cFrom form {
		margin-top: 30px;
	}
	.onlineMessage {
    	margin-top:40px;
    }
}

@media screen and (max-width:538px) {
	.cFrom form ul li:nth-child(n) {
		width: 100%;
		margin-top: 15px;
	}

	.cFrom form ul li:nth-child(1) {
		margin-top: 0;
	}

	.cFrom form input,
	.cFrom .codeCon .box {
		height: 36px;
	}

	.cFrom form li.subBtn {
		margin-left: 0;
	}
}


/* 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: #666666;
	margin: 5px 8px;
	border-radius: 5px;
	border: 1px solid #DDD;
	background-color: #ffffff;
}


.pager .pageList a.active,
.pager .pageList a:hover {
	color: #ffffff;
	background-color: #D71918;
}

.pager .pageList a.big {
	width: 100px;
}

.pager .pageList a.prev {
	width: 100px;
}

.pager .pageList a.next {
	width: 80px;
}

.pager .addTo {
	display: flex;
	align-items: center;
	padding: 5px 17px;
}


.pager .addTo input {
	font-family: Inter-Regular, Arial, sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #666666;
	background-color: transparent;
	margin-right: 11px;
	cursor: pointer;
}



/* crumb */

.crumb {
	padding: 15px 0;
	background-color: #D71918;
}

.crumb a,
.crumb i {
	font-size: 16px;
	color: #FFF;
}

.crumb a.active,
.crumb a:hover {
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-underline-offset: 3px;
}

.crumb i {
	font-style: normal;
}


@media screen and (max-width:1560px) {
	.crumb {
		padding: 10px 0;
	}

	.pager .pageList a {
		margin: 5px;
	}
}

@media screen and (max-width:1333px) {}

@media screen and (max-width:999px) {

	.crumb a,
	.crumb i {
		font-size: 14px;
		line-height: 26px;
	}

	.pager .pageList a {
		font-size: 14px;
		border-radius: 3px;
		width: 32px;
		height: 32px;
	}

	.pager .pageList a.big {
		width: 90px;
	}

	.pager .pageList a.prev {
		width: 90px;
	}

	.pager .pageList a.next {
		width: 70px;
	}

	.appList .list .cBtn {
		display: none;
	}
}

@media screen and (max-width:768px) {}

@media screen and (max-width:538px) {}


/* footer */


footer {
	background-color: #F5F5F5;
	padding: 38px 0 47px 0;
}

footer a {
	display: inline-block;
}

footer .fMsg {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


footer .fLogo {
	width: 216px;
	flex-shrink: 0;
	margin-right: 40px;
}

footer .fLogo:hover img {
	transform: none;
}

footer .blogrolls {
	display: flex;
	align-items: center;
}


footer .blogrolls .name {
	color: #333;
	font-size: 16px;
	line-height: 30px;
	flex-shrink: 0;
}


footer .blogrolls .list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}



footer .blogrolls a {
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: #E5E5E5;
	overflow: hidden;
	color: #333333;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
	margin: 5px 0;
	margin-left: 10px;
}


footer .blogrolls a:hover {
	background-color: #D71918;
	color: #ffffff;
}



footer .footerList {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 39px 0 53px 0;
	border-top: 1px solid rgba(0, 0, 0, .1);
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	margin: 31px 0 25px 0;
}


footer .footerList .box {
	margin-top: 26px;
}

footer .footerList ul li {
	margin-top: 8px;
}

footer .footerList ul li:nth-child(1) {
	margin-top: 0;
}


footer .footerList .fNav {
	width: 14%;
	margin-right: 3.1%;
}

footer .footerList .fProducts {
	width: 18%;
	margin-right: 3.4%;
}

footer .footerList .fContact {
	width: 24%;
	margin-right: 2.7%;
}


footer .footerList .fInquiry {
	width: 34.8%;
}


footer .footerList .fInquiry form {
	margin-top: 37px;
	padding-left: 9px;
	padding-right: 3px;
}


footer a,
footer p,
footer div {
	color: #333;
	font-size: 16px;
	line-height: 26px;
}


footer a:hover {
	color: #D71918;
}


footer .title {
	color: #333;
	font-family: Inter-Bold;
	font-size: 20px;
	line-height: 30px;
	display: inline-block;
}


footer a.title:hover {
	color: #D71918;
}


footer .titBox {
	display: flex;
	align-items: center;
	justify-content: space-between;
}


footer .titBox .menuBtn {
	display: none;
}



footer .footerList li.fContact li {
	display: flex;
	align-items: flex-start;
}

footer .footerList li.fContact li:nth-child(1) {
	margin-top: 0;
}


footer .footerList li.fContact li i {
	flex-shrink: 0;
	margin-right: 13px;
	font-size: 18px;
	transform: translateY(1px);
	color: #D71918;
}

footer .footerList li.fContact .address {
	margin-top: 9px;
}

footer .footerList li.fContact .address .num {
	line-height: 24px;
}



footer .email a {
	word-break: break-all;
}



footer form ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: -2px;
	justify-content: space-between;
	align-items: flex-end;
}


footer .footerList form li {
	width: 48.2%;
	background-color: #ffffff;
	margin-bottom: 0 !important;
	height: 42px;
	padding: 0 10px;
	margin-top: 13px;
	border-radius: 8px;
}



footer .footerList form li:nth-child(-n+2) {
	margin-top: 0;
}



footer .footerList form li.must {
	position: relative;
	padding: 0 16px;
}

footer .footerList form li.must::after {
	content: "*";
	position: absolute;
	left: 8px;
	top: 7px;
	color: #FA4616;
	font-size: 16px;
}



footer form input,
footer form textarea {
	background-color: transparent;
	width: 100%;
	height: 100%;
	color: #333333;
}


footer form ul li.message {
	height: 83px;
	padding: 11px 10px;
	margin-top: 18px;
	width: 100%;
}

footer form li.code.must {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	overflow: hidden;
}


footer form li.code input {
	flex-shrink: 1;
	padding: 0 16px;
}


footer form li.code .codeImg {
	height: 100%;
	flex-shrink: 0;
	width: 81px;
	height: 38px;
	cursor: pointer;
	background-color: #f3fbfe;
}


footer form li.code .codeImg img {
	height: 100%;
}


footer form li.subBtn {
	padding: 0;
	background-color: transparent;
	border: none;
	overflow: hidden;
}


footer form li.subBtn input {
	background-color: #D71918;
	color: #ffffff;
	cursor: pointer;
}



footer form li.subBtn input:hover {
	background-color: #ffffff;
	color: #D71918;
}



footer form input::-webkit-input-placeholder,
footer form textarea::-webkit-input-placeholder {
	color: #666;
}

footer form input:-moz-placeholder,
footer form textarea:-moz-placeholder {
	color: #666;
}

footer form input::-moz-placeholder,
footer form textarea::-moz-placeholder {
	color: #666;
}

footer form input:-ms-input-placeholder,
footer form textarea:-ms-input-placeholder {
	color: #666;
}


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


footer .copyright,
footer .links,
footer .copyright a,
footer .links a,
footer .copyright p {
	color: #666;
	font-size: 16px;
	line-height: 30px;
}


footer .links a {
	margin-right: 10px;
}

footer .links span {
	margin-right: 10px;
}

footer .copyright p {
	display: inline;
}


footer .copyright a {
	display: inline-block;
}

footer .copyright a:hover,
footer .links a:hover {
	color: #D71918;
}

footer .copyright .image {
	margin-left: 5px;
}

form li.m-formcountry {
	position: relative;
	padding: 0;
}

footer .footerList form li.m-formcountry {
	padding: 0;
}

form li.m-formcountry .drop-btn {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0 10px;
}

form li.m-formcountry .drop-btn i,
form li.m-formcountry .drop-btn svg {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	font-size: 12px;
}

form li.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: #D71918 rgba(0, 0, 0, 0.05);
	scrollbar-width: thin;
}

form li.m-formcountry .drop-list::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

form li.m-formcountry .drop-list::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
}

form li.m-formcountry .drop-list::-webkit-scrollbar-thumb {
	background-color: #D71918;
}

form li.m-formcountry .drop-list li {
	font-size: 16px;
	line-height: 20px;
	overflow: hidden;
	width: 100%;
	height: auto;
	border-radius: 0;
	margin: 0;
	padding: 5px 10px;
	cursor: pointer;
	border-bottom: 1px solid #e6e6e6;
	color: #999;
}

form li.m-formcountry .drop-list li.on {
	background-color: #D71918;
	color: #ffffff;
}



@media screen and (max-width:1560px) {
	footer {
		padding: 60px 0;
	}

	footer .footerList {
		justify-content: space-between;
		padding: 40px 0;
		margin: 40px 0;
	}

	footer .footerList>li:nth-child(n) {
		margin-right: 0;
	}

	footer .footerList .box,
	footer form {
		margin-top: 30px;
	}

	footer .fLogo {
		width: 180px;
	}

	footer .footerList form li {
		border-radius: 4px;
	}

}

@media screen and (max-width:1333px) {

	footer .blogrolls a {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	footer .fLogo {
		width: 160px;
	}

	footer .title {
		font-size: 18px;
		line-height: 28px;
	}


	footer .footerList {
		padding: 30px 0;
		margin: 30px 0;
	}


	footer .footerList .fInquiry form {
		padding: 0;
	}

	footer .footerList form li:nth-child(n) {
		width: 100%;
		margin-top: 10px;
	}

	footer .footerList form li:nth-child(1) {
		margin-top: 0;
	}

	footer .footerList form li {
		height: 38px;
	}


	footer .footerList form li.must::after {
		left: 5px;
		top: 5px;
	}

	form li.m-formcountry .drop-list li {
		margin-top: 0;
	}


	footer .footerList .fContact {
		width: 26%;
	}

	footer .footerList .box,
	footer .footerList .fInquiry form {
		margin-top: 20px;
	}

}


@media screen and (max-width:999px) {

	footer {
		padding: 50px 0 80px;
	}

	footer .fMsg {
		flex-direction: column;
		align-items: flex-start;
	}

	footer .blogrolls a {
		font-size: 14px;
		width: 32px;
		height: 32px;
	}

	footer .blogrolls .name {
		font-size: 14px;
	}

	.footerCon {
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-start;
	}


	footer .fLogo {
		width: 120px;
		margin-right: 0;
		margin-bottom: 20px;
	}

	footer .footerList {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	footer .footerList {
		margin: 20px 0;
		padding: 20px 0;
	}

	footer a,
	footer p,
	footer div {
		font-size: 14px;
		line-height: 26px;
	}

	footer .footerList>li:nth-child(n) {
		width: 100%;
		margin-top: 15px;
	}

	footer .footerList>li:nth-child(1) {
		margin-top: 0;
	}

	footer .footerList li.fContact .box {
		margin-top: 10px;
	}


	footer .footerList .box {
		margin-top: 10px;
		display: none;
		transition: none;
	}


	footer .footerList .box ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	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 .titBox .menuBtn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 35px;
		height: 35px;
		font-size: 12px;
		color: #333333;
		font-weight: bold;
	}

	footer .titBox .menuBtn.active {
		transform: rotate(90deg);
	}

	footer .footerList li.fContact .address {
		width: 100%;
	}

	footer .footerList .box ul li:nth-child(n) {
		margin-right: 0;
	}

	footer .footerList .list li.fContact .address {
		width: 100%;
	}

	footer .footerList li.fContact .address .num {
		line-height: 26px;
	}

	footer form {
		margin-top: 15px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	footer form ul>li:nth-child(n) {
		width: 100%;
		margin-top: 10px;
	}

	footer form ul>li:nth-child(-n+2) {
		margin-top: 0;
	}

	footer .footerList form li:nth-child(n) {
		height: 40px;
	}

	footer .footerList form li:nth-child(n) {
		width: 48%;
	}

	footer .footerList form li.message {
		height: 100px;
		width: 100%;
	}

	footer form li.code .codeImg {
		width: 75px;
		height: 32px;
	}

	footer form ul li.message {
		width: 100%;
	}

	footer form {
		display: none;
		transform: none;
		transition: none;
	}

	footer .phone .num {
		font-size: 16px;
		line-height: 28px;
	}

	footer .title {
		font-size: 16px;
		line-height: 26px;
	}

	footer .footerList .fInquiry form {
		margin-top: 10px;
	}

	footer .copyright,
	footer .links,
	footer .copyright a,
	footer .links a,
	footer .copyright p {
		font-size: 14px;
		line-height: 24px;
	}

	footer .links {
		margin-top: 10px;
	}

	form li.m-formcountry .drop-list li:nth-child(n) {
		width: 100%;
		margin: 0;
		font-size: 14px;
		line-height: 24px;
	}
}

@media screen and (max-width:768px) {
	footer .fLogo {
		width: 100px;
	}

	footer {
		padding: 40px 0 60px 0;
	}

	footer .footerList>li:nth-child(n) {
		margin-top: 10px;
	}

	footer .footerList>li:nth-child(1) {
		margin-top: 0;
	}

	footer .footerList .box {
		margin-top: 5px;
	}

}


@media screen and (max-width:538px) {

	footer .blogrolls {
		flex-direction: column;
		align-items: flex-start;
	}

	footer .blogrolls a {
		margin-left: 0;
		margin-right: 10px;
	}

	footer .blogrolls .list {
		margin-top: 10px;
	}

	footer .footerList .fMsg ul li:nth-child(n),
	footer .footerList .box ul li:nth-child(n) {
		width: 100%;
		margin-top: 10px;
	}

	footer .footerList .fMsg ul li:nth-child(1),
	footer .footerList .box ul li:nth-child(1) {
		margin-top: 0;
	}

}

@media screen and (max-width:450px) {
	footer .footerList form li:nth-child(n) {
		width: 100%;
		margin-top: 10px;
	}

	footer .footerList form li:nth-child(1) {
		margin-top: 0;
	}

}



/* 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: Inter-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: 0px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99999;
}

.customer>div a,
.customer>div div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #BBB;
	color: #ffffff;
	border-radius: 5px;
	margin-bottom: 5px;
	margin-right: 11px;
	font-size: 26px;
}

.customer .top a {
	width: 60px;
	height: 60px;
	background-color: #BBB;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	position: fixed;
	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;
	font-size: 30px;
}


.customer>div div {
	cursor: pointer;
}

.customer>div a:hover,
.customer>div div:hover {
	background-color: #D71918;
}


.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: -1;
	opacity: 0;
	pointer-events: none;
}

.customer .code:hover img {
	transform: translateX(0);
	opacity: 1;
	pointer-events: all;
}


@media screen and (max-width: 1560px) {

	.customer>div a,
	.customer>div div,
	.customer .top a {
		width: 54px;
		height: 54px;
		font-size: 22px;
	}

	.customer .top a i {
		font-size: 26px;
	}
}

@media screen and (max-width: 1333px) {

	.customer>div a,
	.customer>div div {
		margin-right: 5px;
	}

	.customer>div a,
	.customer>div div,
	.customer .top a {
		width: 50px;
		height: 50px;
		font-size: 20px;
		border-radius: 5px;
	}

	.customer .top a i {
		font-size: 24px;
	}
}

@media screen and (max-width: 999px) {
	.youlian {
		display: none;
	}

	.customer .top a {
		width: 20%;
		height: 42px;
		line-height: 40px;
		bottom: 0px;
		right: 0px;
		border-radius: 0px;
		border: none;
		box-shadow: none;
	}

	.customer {
		width: 100%;
		right: auto;
		top: auto;
		margin: auto;
		left: 0px;
		bottom: 0px;
		transform: translateY(0);
	}

	.customer>div {
		width: 20%;
		float: left;
	}

	.customer>div a,
	.customer>div div {
		font-size: 18px;
		height: 42px;
		margin: auto;
		width: 100%;
		color: #fff !important;
		border-radius: 0px;
	}

	.customer>div a:hover,
	.customer>div div:hover {
		background-color: #BBB;
	}

	.customer>div.active a,
	.customer>div.active div {
		background-color: #D71918;
	}

	.customer .top a i {
		font-size: 20px;
	}

	.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%);
	}

	.customer .code img {
		pointer-events: all;
	}

}


@font-face {
	font-family: 'Inter-Bold';
	src: url('../fonts/InterBold.eot');
	src: url('../fonts/InterBold.eot') format('embedded-opentype'),
		url('../fonts/InterBold.woff2') format('woff2'),
		url('../fonts/InterBold.woff') format('woff'),
		url('../fonts/InterBold.ttf') format('truetype'),
		url('../fonts/InterBold.svg#InterBold') format('svg');
}

@font-face {
	font-family: 'Inter-Medium';
	src: url('../fonts/InterMedium.eot');
	src: url('../fonts/InterMedium.eot') format('embedded-opentype'),
		url('../fonts/InterMedium.woff2') format('woff2'),
		url('../fonts/InterMedium.woff') format('woff'),
		url('../fonts/InterMedium.ttf') format('truetype'),
		url('../fonts/InterMedium.svg#InterMedium') format('svg');
}

@font-face {
	font-family: 'Inter-Regular';
	src: url('../fonts/InterRegular.eot');
	src: url('../fonts/InterRegular.eot') format('embedded-opentype'),
		url('../fonts/InterRegular.woff2') format('woff2'),
		url('../fonts/InterRegular.woff') format('woff'),
		url('../fonts/InterRegular.ttf') format('truetype'),
		url('../fonts/InterRegular.svg#InterRegular') 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";
}




.record {
	padding: 101px 0 100px 0;
}


.record .safeRange {
	padding: 53px 0 60px;
	position: relative;
}


.record .safeRange::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: calc(100vw - 80px);
	max-width: 1700px;
	height: 100%;
	background: #FFF;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
	z-index: -1;
}


.record .con {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}


.record .msg {
	flex: 1;
}

.record .image {
	flex-shrink: 0;
	margin-right: 60px;
	width: 630px;
}

.record .sign {
	width: 123px;
}

.record .title {
	color: #333;
	font-family: Inter-Bold;
	font-size: 30px;
	line-height: 56px;
	margin-top: 5px;
}

.record .txts {
	color: #333;
	font-size: 18px;
	line-height: 30px;
	margin-top: 25px;
}


.record .btns {
	display: flex;
	align-items: center;
	/* margin-top: 39px; */
	justify-content: flex-end;
	margin-bottom: 38px;
}


.record .btns a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #D71918;
	color: #D71918;
	font-size: 16px;
	line-height: 26px;
	height: 42px;
}


.record .btns a:nth-child(1) {
	width: 134px;
	margin-right: 31px;
}

.record .btns a:nth-child(2) {
	width: 197px;
}


.record .btns a:hover {
	background-color: #D71918;
	color: #ffffff;
}

.record .info {
	margin-top: 40px;
	overflow: auto;
}

.record .info .list {
	min-width: 300px;
}

.record .info .list li {
	display: flex;
	justify-content: center;
}

.record .info .list li div {
	width: 50%;
	padding: 16px 20px;
	position: relative;
	color: #333;
	font-size: 18px;
	line-height: 30px;
	border: 1px solid rgba(0, 0, 0, .15);
	border-bottom: none;
}

.record .info .list li:last-child div {
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.record .info .list li div:nth-child(2n-1) {
	border-right: none;
}

.record .info .list li div:nth-child(2n) {
	background-color: #F5F5F5;
	border-right-color: #F5F5F5;
}

.record .info .list li:nth-child(1) div:nth-child(2n) {
	border-top-color: #F5F5F5;
}

.record .info .list li:last-child div:nth-child(2n) {
	border-bottom: #F5F5F5;
}

.record .info .list:nth-child(2n) {
	background-color: #F5F5F5;
	border: 1px solid #F5F5F5;
}


@media screen and (max-width:1560px) {
	.record .safeRange {
		padding: 60px 0;
	}

	.record .info .list li div {
		padding: 14px 20px;
		font-size: 16px;
		line-height: 28px;
	}

	.record .title {
		font-size: 28px;
		line-height: 44px;
		margin-top: 20px;
	}

	.record .btns {
		margin-bottom: 30px;
	}
}

@media screen and (max-width:1333px) {
	.record .title {
		font-size: 24px;
		line-height: 40px;
	}

	.record .btns a:nth-child(1) {
		margin-right: 20px;
	}

	.record .info .list li div {
		padding: 10px 20px;
	}

	.record .info {
		margin-top: 40px;
	}
	
	.record .image{
		width: 100%;
		max-width: 430px;
		margin-right: 40px;
	}
}

@media screen and (max-width:999px) {
	.record .title {
		font-size: 20px;
		line-height: 30px;
	}

	.record .btns a {
		font-size: 14px;
		line-height: 24px;
		height: 36px;
	}

	.record .btns a:nth-child(1) {
		width: 120px;
	}

	.record .btns a:nth-child(2) {
		width: 170px;
	}

	.record .sign {
		width: 100px;
	}

	.record .info .list li div {
		font-size: 14px;
		line-height: 26px;
	}

	.record .safeRange {
		padding: 50px 0;
	}
	.record .con{
		flex-direction: column;
		align-items: flex-start;
	}
	.record .msg{
		margin-top: 30px;
	}
	.record .btns{
		margin-bottom: 0;
	}
	.record .image{
		margin-right: 0;
	}
}

@media screen and (max-width:768px) {
	.record .safeRange::after {
		width: 100%;
	}

	.record .safeRange {
		padding: 40px 30px;
	}

	.record .con {
		flex-direction: column;
		align-items: flex-start;
	}

	.record .title {
		font-size: 18px;
		line-height: 30px;
	}

	.record .sign {
		width: 80px;
	}

	.record .txts {
		margin-top: 20px;
	}

	.record .btns {
		margin-top: 0px;
	}

	.record .info .list li div {
		padding: 10px 10px;
	}

	.record .info {
		margin-top: 30px;
	}
}

@media screen and (max-width:450px) {
	.record .btns {
		flex-direction: column;
		align-items: flex-start;
	}

	.record .safeRange {
		padding: 30px 15px;
	}

	.record .btns a:nth-child(1) {
		margin-right: 0;
		margin-bottom: 10px;
	}
}



.customer form {
	position: relative;
	margin-bottom: 5px;
	width: 60px;
	height: 60px;
}


.customer form .snBtn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-family: Inter-Bold;
	font-size: 0;
	width: 100%;
	height: 100%;
}

.customer form .snBtn:hover {
	background-color: #D71918;
}


.customer form .snSearch {
	position: absolute;
	right: 100%;
	top: 50%;
	padding-right: 3px;
	transform: translateY(-50%);
}

.customer form .snSearch input {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background: #FFF;
	height: 48px;
	width: 0;
	padding: 0;
}

.customer form:hover .snSearch input {
	padding: 0 8px;
	width: 141px;
}

.customer form input input::-webkit-input-placeholder {
	color: #666;
}

.customer form input input:-moz-placeholder {
	color: #666;
}

.customer form input input::-moz-placeholder {
	color: #666;
}

.customer form input input:-ms-input-placeholder {
	color: #666;
}



.customer form .subBtn {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-family: Inter-Bold;
	font-size: 20px;
	background: #BBB;
	border-radius: 5px;
	overflow: hidden;
}

.customer form .subBtn:hover {
	background-color: #D71918;
}


.customer form .subBtn i {
	display: none;
}


.customer form .subBtn input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
}


@media screen and (max-width:1560px) {
	.customer form {
		width: 54px;
		height: 54px;
	}

	.customer form .subBtn {
		font-size: 18px;
	}
}

@media screen and (max-width:1333px) {
	.customer form {
		width: 50px;
		height: 50px;
	}
}

@media screen and (max-width:999px) {
	.customer form {
		float: left;
		height: 42px;
		border-radius: 0;
		width: 20%;
		margin: 0;
	}

	.customer form .subBtn {
		border-radius: 0;
		position: static;
		font-size: 0;
	}

	.customer form .snBtn {
		font-size: 16px;
		background-color: #BBB;
	}

	.customer form .snSearch {
		position: static;
		transform: translateY(0);
	}

	.snBox {
		position: absolute;
		left: 0;
		bottom: 100%;
		display: flex;
		justify-content: space-between;
		background-color: #ffffff;
		transform: translateY(100%);
		z-index: -1;
	}

	.snBox.active {
		transform: translateY(0%);
	}

	.customer form .snSearch input {
		padding: 0 8px;
		width: 141px;
		box-shadow: none;
	}

	.customer form .subBtn {
		width: 50px;
		height: 50px;
		position: relative;
		background-color: transparent;
	}

	.customer form .snSearch {
		padding-right: 0;
	}

	.customer form .subBtn i {
		font-size: 16px;
		display: flex;
		color: #333333;
	}

	.customer form .subBtn:hover {
		background-color: #ffffff;
	}

	.customer form .snBtn:hover {
		background-color: #bbbbbb;
	}

	.customer form .snBtn.active {
		background-color: #D71918;
	}
}
.productCon .con .table table tr:nth-child(1) {
	position: sticky;
	top: 0;
	z-index: 100;
}

.productCon .con .table table tr:nth-child(1)::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: rgba(51, 51, 51, .1);
	left: 0;
	bottom: 0;
	z-index: 9;
}

.productCon .con .table table tr td {
	padding: 20px 10px;
	font-size: 16px;
	line-height: 28px;
	color: #333333;
	border: none;
	border-bottom: 1px solid rgba(51, 51, 51, .1);
text-align: left;word-break: break-word;
}

.productCon .con .table table tr:nth-child(1) td {
	background-color: #ffffff;
	color: #333;
	border-color: #ffffff;
	border-bottom: 1px solid rgba(51, 51, 51, .1);
}


.productCon .con .table table tr td:nth-child(1),
.productCon .con .table table tr td:nth-child(2) {
	position: sticky;
	left: 0;
	background-color: #ffffff;
	z-index: 9;
	border-right: 1px solid #ffffff;
}

.productCon .con .table table tr td:nth-child(2) {
	left: 33px;
}



.productCon .con .table a {
	color: #D71918;
	font-family: Inter-Bold;
	font-size: 16px;
	line-height: 30px;
}


.productCon .con .table a:hover {
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-underline-offset: 5px;
}


.productCon .con .table .checkBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	outline: 1px solid #D9D9D9;
	width: 13px;
	height: 13px;
}



.productCon .con .table .checkBtn input {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	cursor: pointer;
	width: 100%;
	height: 100%;
	z-index: 9;
}


.productCon .con .table .checkBtn i {
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
	opacity: 0;
}

.productCon .con .table .checkBtn.active {
	background-color: #D71918;
	outline-color: #D71918;
}

.productCon .con .table .checkBtn.active i {
	opacity: 1;
}

.productCon .con .subBtn {
	margin-left: auto;
	width: 170px;
	height: 35px;
	position: relative;
	border: 1px solid #D71918;
	background: #D71918;
	border: 1px solid #DDD;
	border-radius: 5px;
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 16px;
}

.productCon .con .subBtn input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.productCon .con .subBtn:hover {
	background-color: #ffffff;
	border-color: #D71918;
	color: #D71918;
}

.productCon .con .inquireBtn {
	margin-left: auto;
	width: 330px;
	height: 35px;
	position: relative;
	border-radius: 5px;
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.productCon .con .inquireBtn a {
	margin-left: 10px;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	cursor: pointer;
	border-radius: 5px;
	border: 1px solid #D71918;
	background: #D71918;
	border: 1px solid #DDD;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.productCon .con .inquireBtn a:hover {
	background-color: #ffffff;
	border-color: #D71918;
	color: #D71918;
}

.products .cases {
	margin-top: 101px;
}

.products .mbox{
	margin-top: 80px;
	height: 180px;
}


@media screen and (max-width:1560px) {
	.productCon {
		margin-top: 50px;
	}

	.productFilter .slides .checks {
		padding: 20px 20px;
		height: 220px;
	}

	.productFilter .slides .btns {
		height: 50px;
	}


	.productCon .slides .title {
		font-size: 20px;
	}

	.productCon .slides>div {
		margin-bottom: 60px;
	}

	.productCon .con .btns {
		margin-top: 0;
	}

	.productCon .con .btns a,
	.productCon .con .btns div {
		padding: 10px 20px;
	}

	.productCon .con form {
		margin-top: 60px;
	}

	.productCon .con .show .btn {
		height: 40px;
		margin-top: 30px;
	}


	.products .cases {
		margin-top: 80px;
	}

	.productCon .con .show .txts {
		margin-top: 20px;
	}

	.productCon .con .show {
		margin-top: 40px;
	}

    .productCon .con .btns a,
	.productCon .con .btns div {
		padding: 6px 20px;
		margin-right: 15px;
	}

	.productCon .con .subBtn {
		margin-top: 50px;
	}
}

@media screen and (max-width:1333px) {
	.productFilter .item:nth-child(n) {
		width: 30%;
		margin-right: 5%;
		margin-top: 20px;
		flex: none;
	}

	.productFilter .item:nth-child(3n) {
		margin-right: 0;
	}

	.productFilter .item:nth-child(-n+3) {
		margin-top: 0;
	}
	

	.productCon .con {
		width: 66%;
	}

	.productCon .slides {
		width: 30%;
	}

	.productCon .con .show .box {
		margin-top: 0;
	}

	.productCon .con form {
		margin-top: 50px;
	}

	.productCon .con .table table tr td {
		padding: 10px;
	}

	.productCon .con .subBtn {
		margin-top: 40px;
	}

	.products .cases {
		margin-top: 60px;
	}
	
	.productCon .con .table {
    	max-height: 561px;
    }
    .products .mbox{
    	margin-top: 60px;
    	height:168px;
    }
}

@media screen and (max-width:999px) {
	.productCon {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.productCon .con {
		width: 100%;
	}

	.productCon .con .table table tr td,
	.productCon .con .table a {
		font-size: 14px;
		line-height: 26px;
	}

	.productFilter {
		justify-content: space-between;
	}

	.productFilter .item:nth-child(n) {
		width: 48%;
		margin-right: 0;
		margin-top: 20px;
		max-width:none;
	}

	.productFilter .item:nth-child(-n+2) {
		margin-top: 0;
	}
	
	.productFilter .resetAllBtn{
		font-size: 14px;
		height: 32px;
		line-height: 24px;
	}

	.productFilter .tit {
		font-size: 14px;
		line-height: 26px;
	}

	.productFilter .slides ul li {
		font-size: 14px;
		line-height: 24px;
	}

	.productFilter .slides .checks {
		height: 185px;
		padding: 10px;
	}

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

	.productFilter .slides .btns>div {
		font-size: 14px;
		height: 26px;
		margin-right: 20px;
	}

	.productFilter .slides .btns {
		height: 45px;
	}

    .productCon .con .btns a,
	.productCon .con .btns div {
		font-size: 14px;
		line-height: 24px;
	}

	.productCon {
		margin-top: 40px;
	}

	.productFilter .show {
		padding: 0 16px;
	}

	.productFilter .slides {
		top: 32px;
	}

	.productCon .con .show .btn {
		height: 36px;
	}

	.productCon .con form {
		margin-top: 40px;
	}

	.productCon .con .subBtn {
		margin-top: 30px;
	}

	.productCon .slides {
		width: 100%;
		margin-top: 40px;
	}

	.slideCategroy .list li a {
		font-size: 14px;
		line-height: 26px;
	}

	.productCon .slides .title {
		font-size: 18px;
	}

	.slideNews .list .item {
		padding: 20px 0;
	}

	.slideNews .list .tit {
		font-size: 14px;
		line-height: 24px;
	}

	.productCon .slides>div {
		margin-bottom: 30px;
	}

	.products .cases {
		margin-top: 50px;
	}

	.productCon .slides .title .menuBtn {
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.productCon .slides .menuBtn.active i {
		transform: rotate(45deg);
	}

	.productCon .slides .menuBtn i {
		color: #ffffff;
		font-weight: bold;
	}

	.slideCategroy .list,
	.slideNews .list {
		display: none;
		transition: none;
	}
	.productCon .con .table {
    	max-height: 517px;
    }
    
     .products .mbox{
    	margin-top: 50px;
    	height:156px;
    }
}

@media screen and (max-width:768px) {
	.productCon {
		margin-top: 30px;
	}

	.productCon .con .show {
		margin-top: 30px;
	}

	.productCon .con .show .btn {
		height: 32px;
		width: 180px;
	}

	.productCon .con form {
		margin-top: 30px;
	}

	.slideCategroy .list li a {
		padding: 6px 10px;
	}

	.products .cases {
		margin-top: 40px;
	}
	  .products .mbox{
    	margin-top: 40px;
    }
}

@media screen and (max-width:538px) {
	.productCon .con .show {
		flex-direction: column;
		align-items: flex-start;
	}

	.productCon .con .show .image {
		width: 200px;
		margin: 0 auto;
	}

	.productCon .con .show .box {
		margin-top: 20px;
		flex:none;
		width:100%;
	}
}



@media screen and (max-width:450px) {
	.productFilter .item:nth-child(n) {
		width: 100%;
		margin-top: 20px;
	}

	.productFilter .item:nth-child(1) {
		margin-top: 0;
	}

    .productCon .con .btns a,
	.productCon .con .btns div {
		padding: 4px 12px;
		margin-right: 10px;
	}
}

