@charset "utf-8";

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: 0;
}

body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
b,
small,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
sub,
sup,
tt,
var,
del,
dfn,
ins,
kbd,
q,
s,
samp,
strike,
applet,
object,
iframe,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
mark,
audio,
video,
input,
textarea,
select {
	margin: 0;
	padding: 0;
}

html,
body {
	position: relative;
	scroll-behavior: smooth;
}

a {
	-webkit-tap-highlight-color: transparent;
	color: inherit;
	outline: none;
	text-decoration: none;
	color: #333;
}

a:hover {
	color: initial;
}

ul,
li {
	list-style: none;
}

img {
	border: 0;
	max-width: 100%;
	max-height: 100%;

}

table {
	border-collapse: collapse;
	width: 100%;
}

input,
button,
textarea {
	border: none;
	font-size: 14px;
	outline: none;
	font-family: var(--font-family-0);
}

input[type='text'] {
	appearance: none;
}

input[type='radio'] {
	appearance: auto;
}

input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
	cursor: pointer;
}

.f-l {
	float: left;
}

.f-r {
	float: right;
}

.hide {
	overflow: hidden;
}

.rel {
	position: relative;
}

/*清楚浮动*/
.clearfix {
	clear: both;
}

.clearfix:after {
	clear: both;
	height: 0;
	content: "";
	line-height: 0;
	font-size: 0;
	zoom: 1;
	display: block;
}

/*图片垂直水平居中*/
.middleCenter {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 100%;
	max-height: 100%;
	display: block;
	text-align: center;
	margin: auto;
}

.indent2 {
	text-indent: 2em;
}

div,
p,
span,
i,
em,
a {
	white-space: inherit !important;
}

.animated {
	-webkit-animation-duration: .5s;
	-moz-animation-duration: .5s;
	-o-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	will-change: transform, opacity;
}

img {
	vertical-align: top;
}

@keyframes slideUp2 {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.slideUp2 {
	-webkit-animation-name: slideUp2;
	animation-name: slideUp2;
}

@keyframes slideInDown2 {
	from {
		-webkit-transform: translate3d(0, -50px, 0);
		transform: translate3d(0, -50px, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown2 {
	-webkit-animation-name: slideInDown2;
	animation-name: slideInDown2;
}

@keyframes fadeInUp2 {
	from {
		opacity: 0;
		transform: translate3d(0, 50px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUp2 {
	animation-name: fadeInUp2;
}

@keyframes fadeInDown2 {
	from {
		opacity: 0;
		transform: translate3d(0, -50px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInDown2 {
	animation-name: fadeInDown2;
}

@keyframes fadeInLeft2 {
	from {
		opacity: 0;
		transform: translate3d(-100px, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInLeft2 {
	animation-name: fadeInLeft2;
}

@keyframes fadeInRight2 {
	from {
		opacity: 0;
		transform: translate3d(100px, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInRight2 {
	animation-name: fadeInRight2;
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap !important;
}

.ellipsis1 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
}

/*多行省略隐藏*/
.ellipsis2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}

.ellipsis3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}

@font-face {
	font-family: 'D-DINExp';
	src: url('../fonts/D-DINExp.eot');
	src: url('../fonts/D-DINExp.eot?#iefix') format('embedded-opentype'),
		url('../fonts/D-DINExp.woff2') format('woff2'),
		url('../fonts/D-DINExp.woff') format('woff'),
		url('../fonts/D-DINExp.svg#D-DINExp') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-family-0: var(--font-family-D-D);
	--font-family-D-D: 'D-DINExp';
	--main-color: linear-gradient(to right, #65c5ff, #0364d9);
	--sub-color: #026beb;
}

html,
body {
	position: relative;
	scroll-behavior: smooth;
}

html {
	font-size: 10px;
}

@media screen and (min-width: 1920px) {
	html {
		font-size: 10px !important;
	}
}

body {
	font-family: var(--font-family-0);
	font-size: 14px;
	line-height: 1.5;
	color: #000;
	background: #fff;
}

/*页面主体区域的宽*/
.container {
	width: 98%;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.container02 {
	width: 98%;
	max-width: 1640px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 100px;
}

.container-header {
	width: 98%;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 1600px) {
	.container {
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}
}

.container-2 {
	width: 90%;
	max-width: 1525px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 1600px) {
	.container-2 {
		width: 100%;
		padding-left: 5vw;
		padding-right: 5vw;
	}
}

.pc {
	display: block;
}

.mobile {
	display: none;
}

@media (max-width: 1200px) {
	.mobile {
		display: block;
	}

	.pc {
		display: none;
	}
}

.header {
	background: none;
	color: #fff;
	position: fixed;
	z-index: 999;
	transition: 0.5s;
	top: 0;
	width: 100%;
}

.header a {
	color: #fff;
}

.header>.container-header {
	display: flex;
	justify-content: space-between;
}

.header .lxfs {
	display: flex;
	flex-wrap: wrap;
}

.header .p-1 {

	position: relative;
}

.header .p-1:last-child {
	margin-right: 0;
}

.header .p-1 .icon {
	width: 2.4rem;
	height: 2.4rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0.6rem;
	left: 0;
}

.header .p-1 .icon img {
	width: 1.6rem;
	height: 1.6rem;
}

.header .p-1:last-child {
	margin-bottom: 0;
}

.header .language {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.header .language>a {
	display: inline-flex;
	vertical-align: top;
	align-items: center;
	font-family: arial;
	position: relative;
}

.header .language .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	color: #fff;
	margin-right: 0.5rem;
}

.header .language .icon svg {
	width: 2rem;
	height: 2rem;
	fill: #fff;
}

.header .language .drop {
	opacity: 0;
	visibility: hidden;
	font-size: 1.6rem;
	background: #fff;
	width: 12rem;
	line-height: 4rem;
	text-align: center;
	border-radius: 0.5rem;
	padding: 1rem 0;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
	position: absolute;
	z-index: 999;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 1rem;
	display: none;
	transition: .5s;
	color: #333;
}
.header .language .drop img {
	width: 3rem;
}

.header .language .drop::after {
	content: "";
	border: 0.8rem solid transparent;
	border-bottom-color: #fff;
	width: 0;
	height: 0;
	margin: 0 auto;
	position: absolute;
	top: -1.6rem;
	left: 0;
	right: 0;
}

.header .language a {
	color: #eef5fa;
	font-size: 1.8rem;
}



.header .language .drop a {
	color: #333;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding-left: 2rem;
}

.header .language .drop a:hover {
	background: #eee;
	text-decoration: none;
}
.header .language a img {
	margin-right: 1rem;
}

.header .language .arrow {
	display: inline-block;
	width: 0.6rem;
	height: 0.6rem;
	margin-left: 1rem;
	position: relative;
}

.header .language .arrow::after {
	content: "";
	display: inline-block;
	width: 0.6rem;
	height: 0.6rem;
	border-right: 0.1rem #ffffff solid;
	border-bottom: 0.1rem #ffffff solid;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.header .language:hover .drop {
	opacity: 1;
	visibility: visible;
	display: block;
	margin-top: 0;
}


.header {
	width: 100%;
	background: none;
	color: #333;
	padding: 1.4rem 0;
	font-size: 1.6rem;
	position: fixed;
	z-index: 998;
	top: 0px;
	left: 0;
	transition: 0.2s;
}

.header a {
	color: #333;
}

.header>.container {
	padding-left: 0rem;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.header>.container:after {
	display: none;
}

.header .logo {
	z-index: 1;
	line-height: 6.4rem;
	display: block;
}

.header .logo img {
	vertical-align: middle;
	position: relative;
}


.header .other {
	line-height: 4rem;
	display: inline-flex;
	align-items: center;
}

.header .searchBtn {
	cursor: pointer;
	display: inline-flex;
	width: 4rem;
	height: 4rem;
	align-items: center;
	justify-content: center;
	margin: 0 3rem;
	position: relative;
}

.header .searchBtn:after {
	content: "";
	width: 0.1rem;
	height: 2.1rem;
	background: #ffffff;
	position: absolute;
	right: -1rem;
	top: 50%;
	margin-top: -1.05rem;
	opacity: 0.5;
}

.header .searchBtn .icon {
	display: inline-flex;
	width: 2.6rem;
	height: 2.6rem;
	fill: #d2d2d2;
}

.header .searchBtn .icon svg {
	width: 100%;
	height: 100%;
}

.header .searchBtn:hover .icon {
	fill: var(--sub-color);
}

.header.fixed {
	background: #1e1e1e;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
}

.common-nav .listNav>li>.child {
	display: block;
	width: 22rem;
	text-align: left;
	position: absolute;
	z-index: 999;
	top: 100%;
	left: 50%;
	transform-origin: 0 0;
	transform: scaleY(0) translateX(-50%);
	transition: transform .2s;
	padding: 1rem;
	background: #f7f7f7;
	border-radius: 1rem;
	box-shadow: 0 2.4rem 6rem 0 rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1023px) {
	.header {
		padding: 0;
		padding-left: 5vw;
		padding-right: 5vw;
		font-size: 14px;
		top: 0;
		background: #1e1e1e
	}

	.header.fixed {
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	}

	.header a {
		color: #333;
	}

	.header>.container {
		padding-left: 0;
		padding: 10px 0;
		justify-content: space-between;
	}

	.header .logo {
		position: static;
		height: 50px;
		top: 15px;
		line-height: 50px;
	}
	
	.header .logo .img-1 {
		height: 30px;
	}

	.header .searchBtn {
		display: none;
	}

	.header .language {
		display: none;
	}
	.banner{
		padding-top: 50px;
	}
}


.drop {
	width: 16.66%;
}

.common-nav {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: top;
	text-align: right;
	transition: all .5s;
	padding-left: 4rem;
	position: relative;
}

.common-nav .listNav {
	width: 100%;
	display: flex;
	justify-content: right;
	text-align: right;
}

.common-nav .listNav>li {
	text-align: center;
	position: relative;
}


.common-nav .listNav>li.li-static {
	position: static;
}

.common-nav .listNav>li>a {
	font-family: var(--font-family-D-D);
	font-size: 1.8rem;
	color: #ffffff;
	height: 6.5rem;
	line-height: 6.5rem;
	z-index: 1;
}

.common-nav .listNav>li>a>span {
	display: block;
	overflow: hidden;
	height: 6.5rem;
	line-height: 6.5rem;
}

.common-nav .listNav>li>a .txt-1 {
	display: block;
	height: 6.5rem;
	line-height: 6.5rem;
	padding: 0 3.5rem;
}

.common-nav .listNav>li:hover>a,
.common-nav .listNav>li.active>a {}

.common-nav .listNav .arrow::after {
	content: "";
	display: inline-block;
	width: 0.6rem;
	height: 0.6rem;
	border-right: 0.1rem #ffffff solid;
	border-bottom: 0.1rem #ffffff solid;
	position: absolute;
	top: 50%;
	right: 1.8rem;
	transform: translate(-50%, -50%) rotate(45deg);
}

.common-nav .listNav>li:last-child>a span {}

.common-nav .listNav>li>.child-m:after {
	content: "";
	width: 100%;
	height: 100%;
	background: #ffffff;
	opacity: 0.95;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	border-radius: 1.5rem;
}

.common-nav .listNav>li>.child-p .con {
	z-index: 11;
	position: relative;
}

.common-nav .listNav>li>.child .list {
	z-index: 11;
	position: relative;
}

.common-nav .listNav>li>.child {
	display: block;
	text-align: left;
	z-index: 999;
	min-width: 280px;
	transition: transform .2s;
	background: transparent;
	border-radius: 1rem;
	box-shadow: 0 2.4rem 6rem 0 rgba(0, 0, 0, 0.3);
}

.common-nav .listNav>li>.child>.list {
	position: relative;
}

.common-nav .listNav>li>.child>.list a {
	width: 100%;
	display: block;
	color: #333333;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	border-radius: 1rem;
	padding: 0 10px;
	position: relative;
	text-align: center;
}

.common-nav .listNav>li>.child>.list a::before {}

.common-nav .listNav>li>.child>.list a:hover {
	text-decoration: none;
	background: #ebebeb;
	color: var(--main-color);
}

.common-nav .listNav>li>.child.child-2 {
	width: 80rem;
}

.common-nav .listNav>li>.child.child-2>.list {
	display: flex;
	flex-wrap: wrap;
}

.common-nav .listNav>li>.child.child-2>.list li {
	min-width: 50%;
}

.common-nav .listNav>li>.child.show {
	display: block;
	transform: scaleY(1) translateX(-50%);
}

@media screen and (max-width: 1023px) {
	.common-nav {
		display: none;
	}
}

.common-nav .con .classifyAside .list>li .title {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.common-nav .con .classifyAside .list>li .title>a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #333333;
	position: relative;
	font-size: 1.8rem;
	line-height: 4rem;
	height: 4rem;
}
.common-nav .con .classifyAside .list .icon {
	cursor: pointer;
	width: 2rem;
	height: 2rem;
	position: absolute;
	z-index: 999;
	top: 1rem;
	right: 0.7rem;
}

.common-nav .con .classifyAside .list .icon::after {
	content: "";
	display: inline-block;
	width: 0.6rem;
	height: 0.6rem;
	border-right: 0.1rem #797979 solid;
	border-bottom: 0.1rem #797979 solid;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: rotate(45deg);
	margin-top: -0.3rem;
	margin-left: -0.3rem;
}

.common-nav .con .classifyAside .list li.cur .icon::after {
	content: "";
	display: inline-block;
	width: 0.6rem;
	height: 0.6rem;
	border: none;
	border-left: 0.1rem #797979 solid;
	border-top: 0.1rem #797979 solid;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: rotate(45deg);
	margin-top: -0.3rem;
	margin-left: -0.3rem;
}

.common-nav .rightCon {
	float: right;
	width: 45%;
	margin-left: 10%;
	padding-top: 3rem;
}

.common-nav .rightCon .name {
	font-size: 1.8rem;
	color: #666666;
	text-align: center;
	margin-top: 1rem;
}

.common-nav .leftAside {
	float: left;
	width: 45%;
}

.common-nav .con .classifyAside .list .child {
	z-index: 111
}

.common-nav .con .classifyAside .list .child a {
	color: #666666;
	display: block;
	font-size: 1.6rem;
	line-height: 3.5rem;
	height: 3.5rem;
	background: url(../images/dd.png) no-repeat 0.7rem center;
	padding-left: 2rem;
	overflow: hidden;
}



.common-nav .nav-product .child-p {
	padding: 3rem 5rem !important;
	width: 104.2rem !important;
}

.pic {
	position: relative;
	overflow: hidden;
}

.pic:after {
	content: "";
	display: block;
	padding-top: 100%;
}

.common-nav .nav-product .rightCon .pic:after {
	content: "";
	display: block;
	padding-top: 68%;
}

.common-nav .nav-product .rightCon .pic img {
	border-radius: 2rem;
}

.common-nav .con .classifyAside .list .child a:hover {
	color: #0263d6
}

.nav-product .list .child li .img-box {
	display: none;
}














/*footer*/
.footer {
	background-color: #f7f7f7;
	font-size: 1.6rem;
	color: #fff;
	padding-top: 6rem;
	position: relative;
}

.footer a {
	color: #ffffff;
	transition: all .5s;
}

.footer a:hover {
	color: #347030;
	text-decoration: underline;
}

.footer img {
	vertical-align: top;
}

.footer .socialMedia {
	margin-top: 3rem;
}

.footer .socialMedia a img,
.footer .socialMedia a svg {
	width: 2rem;
	height: 2rem;
	margin-top: 1rem;
}

.footer .socialMedia a:hover svg {
	color: #000000
}


.footer .right {
	width: 70%;
	float: right;
	margin-left: 5%;
}

.footer .leftC {
	max-width: 40rem;
}

.footer .p-1 {
	margin-bottom: 15px;
	font-family: Roboto;
	color: #ffffff;
	font-size: 1.6rem;
}

.footer .p-1 .icon{
	display: block;
	height: 3rem!important;
	width: 2rem;
	float:left
}

.footer .p-1 a {
	font-family: Roboto;
	color: #ffffff;
	font-size: 1.6rem
}

.footer .p-1 img {
	vertical-align: middle;
	width: 12px;
}


.left .left-top {
	margin-bottom: 3.5rem;
	clear: both;
	overflow: hidden;
}

.footer .socialMedia .title {
	color: #ffffff;
	font-size: 1.8rem;
	font-family: var(--font-family-0);
	font-weight: bold;
	margin-bottom: 2rem;
}

.footer .socialMedia a {
	background: #b3b3b3;
	width: 4rem;
	height: 4rem;
	border-radius: 2rem;
	position: relative;
	display: inline-block;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-right: 0.8rem;
	transition: 0.3s;
}

.footer .socialMedia a:hover {
	background: var(--sub-color);
	transition: 0.3s;
}

.footer .left {
	width: 25%;
	float: left;
}

.footer .menu {
	overflow: hidden;
	width: 100%
}

.footer .menu>.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-right:0;
}

.footer .menu>.list>li {}

.footer .menu>.list>li>a,
.footer .menu>.list>li>span {
	display: block;
	text-align: left;
	font-size: 2rem;
	margin-bottom: 16px;
	position: relative;
	color: #ffffff;
	font-weight: bold;
}

.footer .menu .child {
	position: relative;
}

.footer .menu .child a {
	font-size: 1.8rem;
	display: block;
	transition: all .5s;
	position: relative;
	color: #ffffff;
	line-height: 3.6rem;
	opacity: 0.7;
}


.footer .menu .child a:hover {
	color: var(--sub-color);
}

.footer .bottom-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.copyright {
	color: rgba(255, 255, 255, 0.4);
	font-size: 1.4rem;
	text-align: center;
	line-height: 7rem;
	border-top: 1px solid #262626;
	margin-top: 6.5rem;
}



@media screen and (max-width: 1023px) {
	.copyright {
		font-size: 14px;
		line-height: 1.5;
		padding-top: 20px;
		padding-bottom: 20px;
		text-align: left;
	}

	.copyright .container {
		padding-top: 15px;
		padding-bottom: 0;
		border-top: 1px rgba(255, 255, 255, 0.1) solid;
	}

	.copyright .span-1 {
		margin-left: 0;
		margin-right: 0;
	}

	.copyright .span-2 {
		margin-left: 0px;
		float: none;
	}

	.copyright .span-2 a {
		margin-left: 0;
		margin-right: 5px;
	}
}

@media screen and (max-width: 1023px) {}

.common-title {
	color: #616161;
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 400;
	text-align: center;
	position: relative;
	z-index: 1;
	margin-bottom: 6rem;
}

.common-title .title {
	font-size: 4.8rem;
	color: #212121;
}

.common-title .info {
	margin-top: 3rem;
	max-width: 141rem;
	margin-left: auto;
	margin-right: auto;
}

.common-title.alignLeft {
	text-align: left;
}


.floatRight {
	font-size: 16px;
	position: fixed;
	z-index: 999;
	right: 10px;
	bottom: 35%;
	transition: .5s;

}

.floatRight .returnTopBtn {
	opacity: 0;
}

.floatRight .returnTopBtn.show {
	opacity: 1;
}

.floatRight .list li {
	padding-bottom: 4px;
}

.floatRight .list .box {
	width: 50px;
	transition: .5s;
	display: block;
	display: flex;
	align-items: center;
}

.floatRight .list .box:hover {
	opacity: .8;
}

.floatRight .list .box:hover .icon {
	color: #fff;
}

.floatRight .list .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	background: var(--main-color);
	color: #fff;
}

.floatRight .list .icon img,
.floatRight .list .icon svg {
	width: 25px;
	height: 25px;
}

.floatRight .list .txt {
	flex: 1;
	width: calc(100% - 50px);
	font-family: var(--font-family-3);
	background: #2b2c30;
	line-height: 40px;
	text-align: center;
	color: #fff;
}

.floatRight .hoverLi .box:hover {
	transform: translateX(-130px);
}

@media screen and (max-width: 1023px) {
	.floatRight {
		display: none;
	}
}

/*导航按钮*/
.navPhoneBtn {
	display: inline-block;
	padding: 10px;
	cursor: pointer;
	position: absolute;
	z-index: 11;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 36px;
	text-align: right;
	display: none;
}

.navPhoneBtn span {
	display: block;
	width: 20px;
	height: 2px;
	margin-bottom: 5px;
	position: relative;
	background: var(--main-color);
	border-radius: 3px;
	z-index: 1;
	transform-origin: 20px;
	transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.navPhoneBtn span:nth-last-child(2) {
	transform: rotate(0);
	transition: width .5s ease;
}

.navPhoneBtn span:last-child {
	margin-bottom: 0;
}

.navPhoneBtn.close,
.navPhoneBtn.closeMember {
	opacity: 1;
	z-index: 10;
}

.navPhoneBtn.close span,
.navPhoneBtn.closeMember span {
	opacity: 1;
	transform: rotate(45deg);
}

.navPhoneBtn.close span:nth-last-child(3),
.navPhoneBtn.closeMember span:nth-last-child(3) {
	opacity: 1;
	transform: rotate(-45deg);
}

.navPhoneBtn.close span:nth-last-child(2),
.navPhoneBtn.closeMember span:nth-last-child(2) {
	width: 0;
	opacity: 0;
	transform: rotate(0);
	transition: width .5s;
}

.navPhoneBtn.close span:last-child,
.navPhoneBtn.closeMember span:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
	.navPhoneBtn {
		display: block;
	}
}

.common-navM .transparent {
	background: rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	display: none;
}

.common-navM .navMCon {
	background-color: #ffffff;
	width: 90%;
	min-width: 140px;
	max-width: 440px;
	height: 100%;
	border-left: 1px rgba(0, 0, 0, 0.1) solid;
	padding: 10px 20px;
	font-size: 14px;
	line-height: 2;
	position: fixed;
	z-index: 10001;
	top: 0;
	bottom: 0;
	right: auto;
	left: -100%;
	transition: all .5s;
}

.common-navM .navMCon .llist {
	padding-top: 30px;
}

.common-navM .navMWrap {
	overflow-y: auto;
	padding: 10px 20px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.common-navM.open .transparent {
	display: block;
}

.common-navM.open .closeBtn {
	display: block;
}

.common-navM.open .navMCon {
	left: 0;
}

.common-navM .closeBtn {
	opacity: 0;
	display: none;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background: var(--main-color);
	background: #000;
	color: #fff;
	position: absolute;
	z-index: 999;
	right: -40px;
	top: 0;
}

.common-navM .closeBtn:before,
.common-navM .closeBtn:after {
	content: "";
	display: block;
	background: #000;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform: rotate(45deg);
}

.common-navM .closeBtn:before {
	width: 15px;
	height: 1px;
}

.common-navM .closeBtn:after {
	width: 1px;
	height: 15px;
}

.common-navM .titleBig {
	text-align: center;
	padding: 10px 0;
	display: none;
}

.common-navM .navMWrap>.list em {
	font-style: initial;
}

.common-navM .navMWrap>.list .title {
	padding: 10px 0 10px 10px;
	text-indent: 0;
	border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
	position: relative;
}

.common-navM .navMWrap>.list .title .icon {
	width: 40px;
	height: 40px;
	margin: auto;
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	transform: rotate(45deg);
}

.common-navM .navMWrap>.list .title .icon:before,
.common-navM .navMWrap>.list .title .icon:after {
	content: "";
	margin: auto;
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform-origin: center center;
	transition: all .3s ease;
}

.common-navM .navMWrap>.list .title .icon:before {
	width: 10px;
	height: 10px;
	border-top: 1px #aaa solid;
	border-right: 1px #aaa solid;
}

.common-navM .navMWrap>.list .title em {
	font-style: initial;
}

.common-navM .navMWrap>.list .has .title .icon {
	display: block;
}

.common-navM .navMWrap>.list .active>.title .icon:before {
	transform: rotate(90deg);
}

.common-navM .navMWrap>.list>li>.title {

	font-size: 14px;
}

.common-navM .navMWrap>.list>li>.child>.list>li {
	text-indent: 24px;
	font-size: 14px;
}

.common-navM .navMWrap>.list>li>.child>.list>li>.child {
	font-size: 14px;
}

.common-navM .navMWrap>.list>li>.child>.list>li>.child .title {
	padding-left: 20px;
}

.common-navM .navMWrap>.list>li>.child>.list>li>.title {
	padding-left: 48px;
	position: relative;
}

.common-navM .navMWrap>.list>li>.child>.list>li>.title:before {}

.common-navM .navMWrap>.list .tb {
	width: 20px;
	height: 20px;
	display: inline-flex;
	position: absolute;
	top: 7px;
	left: 0;
}

.common-navM .child {
	padding: 0 0 20px 0;
	display: none;
	position: relative;
}

.common-navM .child a {
	color: #666;
	display: block;
	line-height: 28px;
	padding: 5px 0;
	transition: all .5s;
	position: relative;
}

.common-navM .child a:hover {
	color: #000;
	margin-left: 10px;
}

.common-navM .mSearch {
	padding: 10px 0;
	text-align: left;
	overflow: hidden;
	border-bottom: #f3f3f3 1px solid;
	position: relative;
}

.common-navM .mSearch .btn {
	width: 26px;
	height: 26px;
	font-size: 0;
	padding: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
}

.common-navM .mSearch .btn .icon {
	width: 20px;
	height: 20px;
	line-height: 20px;
	vertical-align: top;
}

.common-navM .mSearch input {
	height: 40px;
	line-height: 38px;
	border: 0;
	vertical-align: middle;
	box-sizing: border-box !important;
	color: #333;
	appearance: none;
	transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
	opacity: 1;
	width: 100%;
	padding: 5px 40px 5px 15px;
	border-radius: 2px;
	font-size: 14px;
	background-color: #fff;
	position: static;
	left: 0;
	right: 0;
}

.common-navM .other {
	padding: 10px;
}

.common-navM .read {
	padding-top: 10px;
	padding-bottom: 10px;
}

.common-navM .read .btn-1 {
	display: inline-flex;
	align-items: center;
	padding: 0 5px;
	line-height: 40px;
	height: 40px;
	border-radius: 5px;
	background: linear-gradient(to right, #bf2d32, #a61f24);
	color: #fff;
	text-align: center;
	font-size: 16px;
	position: relative;
}

.common-navM .read .btn-1 .icon-1 {
	width: 30px;
	height: 30px;
	margin-left: 5px;
}

.common-navM .read .btn-1 .icon-2 {
	width: 30px;
	height: 30px;
	border-radius: 5px;
	background: #ffffff url(../images/icon/arrow-right-1.png) no-repeat center center;
	background-size: 20px;
	margin-left: 20px;
}

.common-navM .languageBtn {
	padding: 10px 0;
	display: flex;
	flex-wrap: wrap;
	column-gap: 0;
}

.common-navM .languageBtn>div {
	width: auto;
}

.common-navM .languageBtn .col-2 {
	width: 50%;
}

.common-navM .languageBtn .col-3 {
	width: 33.33333333%;
}

.common-navM .languageBtn .col-4 {
	width: 25%;
}

.common-navM .languageBtn .col-5 {
	width: 20%;
}

.common-navM .languageBtn .col-6 {
	width: 16.66666667%;
}

.common-navM .languageBtn a {
	display: block;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	text-align: center;
	border: 1px #eee solid;
	margin-right: -1px;
	margin-top: -1px;
	background: #fff;
}


#searchPopup {
	height: 100%;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	display: none;
	z-index: 9999;
}

#searchPopup .transparent {
	display: none;
	position: fixed;
	z-index: 9;
	top: 0;
	margin: auto;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

#searchPopup .searchBox {
	color: #fff;
	position: absolute;
	left: 0;
	width: 100%;
	z-index: -1;
	top: 100px;
	opacity: 0;
	transition: all .5s;
	top: 40%;
}

#searchPopup .searchBox.fadeIn {
	top: 50%;
	opacity: 1;
	z-index: 999;
}

#searchPopup .searchBox .container {
	width: 40%;
	border-radius: 10px;
	position: relative;
	z-index: 1;
	margin-left: auto;
	margin-right: auto;
	text-align: right;
}

#searchPopup .searchBox input {
	border-radius: 5px;
	background: #fff;
	color: #333;
	width: 100%;
	padding: 0 10px;
	font-size: 14px;
	height: 60px;
	line-height: 58px;
	transition: .5s;
}

#searchPopup .searchBox input:focus {
	color: #000;
	box-shadow: 0 0 0 1px var(--main-color) inset;
}

#searchPopup .searchBox .btn {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0;
	height: 60px;
	width: 60px;
	background: var(--main-color);
	text-align: center;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

#searchPopup .searchBox .btn svg {
	width: 24px;
	height: 24px;
	fill: #fff;
}

#searchPopup .searchBox .btn:hover {
	opacity: .8;
}

#searchPopup .searchBox .close {
	display: none;
}

#searchPopup .searchBox2.fadeIn {
	top: 95px;
}

@media screen and (max-width: 1023px) {
	#searchPopup .searchBox .container {
		width: 100%;
	}

	#searchPopup .searchBox input {
		width: 100%;
	}

	#searchPopup .searchBox .btn {
		right: 15px;
	}

	#searchPopup .searchBox .btn svg {
		width: 24px;
		height: 24px;
	}
}



@media screen and (max-width: 768px) {
	.header .other {
		display: none;
	}

	.floatRight {
		display: none !important;
	}
}

.about-touch {
	padding: 15rem 0;
}

.about-touch .common-title .title {
	text-align: center;
	font-size: 4.8rem;
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.about-touch .common-title .content {
	text-align: center;
	font-size: 1.8rem;
	color: #ffffff;
	width: 65%;
	margin: 0 auto;
	line-height: 3.5rem;
	margin-bottom: 1.5rem;
}

.about-touch .common-btn {
	width: 20rem;
	height: 4rem;
	border-radius: 2em;
	margin-top: 3.7rem;
	background: var(--main-color);
	font-size: 1.6rem;
	color: #fff;
	display: inline-block;
	line-height: 4rem;
	transition: 0.3s;
}

.about-touch .common-btn:hover {
	width: 22rem;
	transition: 0.3s;
}

.about-touch .common-btn:hover {
	background: var(--main-color);
	transition: 0.3S;
}

.home-news {
	padding: 12rem 0;
}

.home-news .title-big {
	font-size: 4.8rem;
	color: #333;
	text-align: center;

}

.listNews {
	margin-left: -1.25rem;
	margin-right: -1.25rem;
	display: flex;
	flex-wrap: wrap;
	color: #333;
}

.listNews li {
	width: 33.33%;
	padding: 0 1.25rem 0rem 1.25rem;
	float: left;
}

.listNews .box {
	min-height: 100%;
	background-color: #fff;
	overflow: hidden;
	position: relative;
	display: block;
	border: 1px solid #e5e5e5;
	transition: 0.3s;
}

.listNews .pic {
	overflow: hidden;
	display: block;
	position: relative;
}

.listNews .pic:after {
	content: "";
	display: block;
	padding-top: 66%;
}

.listNews .pic img {
	width: 100%;
	object-fit: cover;
	transition: all .5s;
}

.listNews li a {
	border-radius: 2rem;
}

.listNews li:hover .text {
	background: var(--main-color);
	color: #ffffff;
	transition: 0.3s;
}

.listNews li:hover .title {
	color: #ffffff;
	transition: 0.3s;
}

.listNews li:hover .info {
	color: #ffffff;
	transition: 0.3s;
}

.listNews li:hover .date {
	color: #ffffff;
	transition: 0.3s;
}

.listNews li:hover .moreBtn {
	color: #ffffff;
	border: 1px solid #ffffff;
	transition: 0.3s;
}

.listNews .text {
	padding: 3rem 3rem 4rem 3rem;
	background: #f2f6fe;
	transition: 0.3s;
}

.listNews .title {
	color: #333333;
	font-size: 2rem;
	line-height: 2.8rem;
	height: 5.6rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	margin-bottom: 1rem;
	transition: 0.3s;
}

.listNews .info {
	color: #666666;
	font-size: 1.6rem;
	line-height: 2.4rem;
	height: 5.2rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	transition: 0.3s;
}


.listNews .moreBtn {
	color: #333333;
	font-size: 1.6rem;
	border: 1px solid #333333;
	width: 12.8rem;
	height: 4rem;
	text-align: center;
	line-height: 4rem;
	border-radius: 2rem;
	margin-top: 2.5rem;
	transition: 0.3s;
}

.listNews .date {
	font-size: 1.6rem;
	color: #666666;
	margin-bottom: 1rem;
	transition: 0.3s;
}

.listNews .box:hover .pic img {
	transform: scale(1.1);
	transition: 0.3s;
}

.listNews .box:hover .title {
	color: var(--main-color);
	transition: 0.3s;
}

.listNews .box:hover .moreBtn {
	color: var(--main-color);
	transition: 0.3s;
}

/*page*/
.common-page {
	clear: both;
	text-align: center;
	font-size: 0;
	font-family: arial;
	line-height: 1.6rem;
	margin-top: 2.5rem;
}

.common-page em {
	font-style: normal;
	font-size: 1.4rem;
	line-height: 3.8rem;
	vertical-align: middle
}

.common-page a,
.common-page span {
	color: #999999;
	display: inline-block;
	text-align: center;
	font-size: 1.4rem;
	min-width: 4.2rem;
	line-height: 4.2rem;
	height: 4.2rem;
	margin: 0 0.5rem;
	padding: 0 0;
	vertical-align: middle;
	border-radius: 50%;
	border: 1px solid #e8e9e9;
	transition: 0.3s;
}
.common-page .prev,
.common-page .next{
	width: 11rem;
	border-radius: 2.2rem;
	font-size: 1.4rem;
	color: #666666;
}
.common-page a svg,
.common-page span svg {
	fill: #666;
	vertical-align: middle;
	margin-top: -0.3rem;
	margin-right: 0.75rem;
	margin-left: 0.75rem;
	width: 0.6rem;
	height: 0.9rem;
}

.common-page a.cur,
.common-page span.cur,
.common-page a.active,
.common-page span.active,
.common-page a:hover,
.common-page span:hover {
	background: var(--main-color);
	color: #fff;
	transition: 0.3s;
}


.common-page a.prev:hover,
.common-page span.prev:hover,
.common-page a.next:hover,
.common-page span.next:hover,
.common-page a.first:hover,
.common-page span.first:hover,
.common-page a.last:hover,
.common-page span.last:hover {
	background: var(--main-color)
}

.common-page a.prev:hover svg,
.common-page span.prev:hover svg,
.common-page a.next:hover svg,
.common-page span.next:hover svg,
.common-page a.first:hover svg,
.common-page span.first:hover svg,
.common-page a.last:hover svg,
.common-page span.last:hover svg {
	fill: #fff
}

@media screen and (max-width:1023px) {
	.container-header{
		display: none;
	}
	.common-page a,
	.common-page span {
		display: none
	}

	.common-page .prev,
	.common-page .next {
		display: inline-block;
		width: 60px;
		height:30px
	}
	.common-page a svg, .common-page span svg{
		display: inline-block;
		width: 15px;
		height:15px;
		margin-top: 7px;
	}
	.common-page .prev, .common-page .next{
		font-size: 12px;
		line-height:30px;
	}
	.copyright{
		padding-top: 0;
		margin-top: 0;
	}
	.footer{
		padding-top: 0;
	}
}