body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
figure,
figcaption,
th,
td,
span {
	margin: 0;
	padding: 0;
	outline: none;
	/* transition: 0.3s; */
}

a>img {
	cursor: pointer;
}

a>div {
	cursor: pointer;
}

a>p {
	cursor: pointer;
}

a>h5 {
	cursor: pointer;
}

a>h4 {
	cursor: pointer;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
/* strong, */
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
}

a,
input,
button,
select,
textarea {
	outline: none;
}


abbr,
acronym {
	border: 0;
}

a {
	cursor: pointer;
}

body {
	display: none;
	font-size: 0.2rem;
	font-family: 'arial', "PingFang SC", Arial, "微软雅黑";
}


@font-face {
	font-family: 'gilroy_bold';
	src: url('../fonts/gilroy-bold-4.otf') format('truetype');
}

@font-face {
	font-family: 'gilroy_regular';
	src: url('../fonts/gilroy-regular-3.otf') format('truetype');
}

@font-face {
	font-family: 'arial';
	src: url('../fonts/arial.ttf') format('truetype');
}



.clearfix:after {
	content: "";
	height: 0;
	display: block;
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}


/* wrap：换行，第一行在上方。 */
/* wrap-reverse：换行，第一行在下方。 */
/* flex-direction: row | row-reverse | column | column-reverse; */
/* flex-direction属性决定主轴的方向（即项目的排列方向）。 */
/* flex-flow: row-reverse;  左右换位置    column-reverse*/
/* flex-direction: column-reverse  column; 上下换位置 */
/* flex: 0 29.375rem;
   flex: 1 1; */
.flexBetween {
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flexStart {
	display: -webkit-flex;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.flexCenter {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.flexEnd {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.ellipsis {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.ellipsis2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-align: justify;
	text-justify: distribute-all-lines;
}

.ellipsis3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-align: justify;
	text-justify: distribute-all-lines;
}

.ellipsis4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-align: justify;
	text-justify: distribute-all-lines;
}

.ellipsis5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
	text-align: justify;
	text-justify: distribute-all-lines;
}

.ellipsis6 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
	text-align: justify;
	text-justify: distribute-all-lines;
}

.l_scrollx {
	overflow: auto;
	overflow-x: scroll;
	overflow-y: auto;
	padding-right: 10px;
}

.l_scrolly {
	overflow: auto;
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 10px;
}

.l_scroll::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 1px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 2px;
}

.l_scroll::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 2px;
	/* -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
	background: rgba(255, 255, 255, 0.7);
}

.l_scroll::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	/* -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.3);
}

.layerVideo {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: rgba(0, 0, 0, 0.5);
	display: none;
}

.layerVideo .box {
	max-width: 56.25rem;
	position: absolute;
	top: 50%;
	left: 50%;
	max-height: 34.375rem;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
}

.layerVideo .box video {
	width: 100%;
}

.layerVideo .box span {
	position: absolute;
	right: -2.1875rem;
	top: -2.1875rem;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

.input::-webkit-input-placeholder {
	color: #999;
	font-size: 16px;
}

.input::-moz-placeholder {
	color: #999;
	font-size: 16px;
}

.input:-moz-placeholder {
	color: #999;
	font-size: 16px;
}

.input:-ms-input-placeholder {
	color: #999;
	font-size: 16px;
}

.textarea::-webkit-input-placeholder {
	color: #999;
	font-size: 16px;
}

.textarea::-moz-placeholder {
	color: #999;
	font-size: 16px;
}

.textarea:-moz-placeholder {
	color: #999;
	font-size: 16px;
}

.textarea:-ms-input-placeholder {
	color: #999;
	font-size: 16px;
}

@-webkit-keyframes bounce-up {
	10% {
		transform: rotate(20deg)
	}

	20% {
		transform: rotate(-10deg)
	}

	30% {
		transform: rotate(5deg)
	}

	40% {
		transform: rotate(-5deg)
	}

	50%,
	to {
		transform: rotate(0deg)
	}
}

/* ::-webkit-input-placeholder { color:#fff; }
input[type="text"]::-moz-placeholder { color:#fff; }
input[type="text"]:-moz-placeholder { color:#fff; } */

.lpk_pc {}

.lpk_phone {
	display: none;
}
.headLogo{
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

@media screen and (max-width:992px) {
	.lpk_pc {
		display: none;
	}

	.lpk_phone {
		display: block;
	}
}
.page_zh,.page_en{
	display: none;
}
/*

animation:mymove 5s linear infinite;
-moz-animation:mymove 5s infinite;
-webkit-animation:mymove 5s infinite;
-o-animation:mymove 5s infinite;
@keyframes mymove{
	from {top:0px;}
	to {top:200px;}
} */
#swiperContainerTwo .swiper-pagination-two{
	text-align: center;
	padding: 10px 0;
}
.pr10 {
	cursor: pointer;
	padding-right: 10px;
}

.header {
	height: 55px;
	line-height: 55px;
	position: fixed;
	left: 0;
	z-index: 51;
	font-weight: 400;
	transform: translateY(-100%);
	transform: translate(0);
	width: 100%;
	top: 0;
	box-sizing: border-box;
	transition: all .3s ease;
	display: flex;
	justify-content: space-between;
	padding: 0 2%;
	background: #282828;
	color: #fff;
	font-size: 14px;
}

.rowTitle {
	font-size: 0.35rem;
	text-align: center;
}

.rowSubTitle {
	font-size: 16px;
}

.footer {
	background: #282828;
	color: #fff;
	font-size: 14px;
	padding: 0 25%;
	text-align: center;
}

.footer .footerTitle {
	font-size: 30px;
	padding: 0.8rem 0 0.3rem;
}

.footer .footerSunTitle {
	padding: 0 0 30px;
}

.footer .textDiv {
	display: flex;
	justify-content: space-between;
	line-height: 32px;
}
.footer .textDiv>div{
	width: 20%;
}
.footerInputDiv {
	width: 45%;
	margin: 0 auto;
	position: relative;
}

.footerInputDiv img {
	position: absolute;
	right: 5px;
	top: 13px;
}

.footerInput {
	width: 100%;
	height: 35px;
	margin-bottom: 70px;
}

.footer .textDiv .textDivTitle {
	font-size: 18px;
}

.erweimaDiv {
	position: relative;
}
.pageTo{
	cursor: pointer;
}
.erweimaDiv img {
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translateX(-50%);
}

.xuanfuDiv {
	position: fixed;
	right: 0;
	bottom: 10%;
	background: #fff;
	text-align: center;
	z-index: 10;
}

.xuanfuDiv div {
	font-size: 0.18rem;
	width: 0.8rem;
	height: 0.8rem;
	cursor: pointer;
}
.xuanfuDiv a{
	color: #333;
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 0.5rem;
	box-sizing: border-box;
	line-height: 0.2rem;
}

.xuanfuDiv img{
	width: 0.3rem;
	position: absolute;
	left: 0.25rem;
	top: 0.1rem;
}

.xuanfuDiv div:nth-child(1) {
	display: none;
	border-bottom: 1px solid #000;
}

.navBtn {
	cursor: pointer;
}

.dialog {
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;
	color: #fff;
}

.dialogBg {
	padding: 70px 2% 0;

	width: 800px;
	height: 100%;
	background: rgba(0, 0, 0, .6);


}

.dialog div {}

.dialog div a {
	line-height: 0.5rem;
	color: #fff;
	font-size: 0.3rem;
	text-decoration: none;

}

.dialog div a:hover {
	color: #bfbfbf;

}

.swiperBtn {
	width: 60px;
	height: 60px;
	background-size: cover;
	border-radius: 30px;
	background-position: center;
	display: none;
}

.swiper-button-prev {
	left: 5%;
	background-image: url("../images/bannerBtnLeft.png");

}

.swiper-button-next {
	right: 5%;
	background-image: url("../images/bannerBtnRight.png");
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
	content: '';
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
	content: '';
}

/* video::-webkit-media-controls-fullscreen-button {
    display: none;
} */

/* video::-webkit-media-controls-play-button {
	display: none;
} */

.rowDiv1 video::-webkit-media-controls-timeline {
    display: none;
}

video::-webkit-media-controls-current-time-display {
	display: none;
}

video::-webkit-media-controls-time-remaining-display {
	display: none;
}

/* .rowDiv1  video::-webkit-media-controls-mute-button {
    display: none;
} */

video::-webkit-media-controls-toggle-closed-captions-button {
	display: none;
}

/* .rowDiv1 video::-webkit-media-controls-enclosure {
 splay: none;
}*/

/* .rowDiv1 video::-webkit-media-controls-volume-slider {
    display: none;
}  */


.pc50mp30 {
	font-size: 0.5rem;
}

.webhide{
	display: block;
}
.webshow{
	display: none;
}

.qrcode{
	width: 1rem;
	display: block;
	margin: 0 auto 0.5rem;
}
.ProductCenterNav{
	width: 100%;
	height: 100%;
	background: black;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
	transform: translateY(-100%);
	opacity: 0;
	overflow-y: auto;
	overflow-x: hidden;
	transition: all 0.5s cubic-bezier(0.165, 0.840, 0.440, 1.000) 0s;
}
.ProductCenterNav.ok{
	transform: none;
	opacity: 1;
}
.z_230208_pc_nav{
	width: 60%;
	padding: 65px 2.5%;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	left: 50%;
	top: 55%;
	transform: translate(-50%,-50%);
	color: white;
	text-align: center;
	
}
.z_230208_pc_nav li{
	width: 50%;
	padding: 0 1.5%;
	box-sizing: border-box;
}
.z_230208_pc_nav_src{
	width: 100%;
	border: 3px solid transparent;
}
.z_230208_pc_nav a{
	display: block;
	color: white;
}
.z_230208_pc_nav p{
	line-height: 120px;
	display: flex;
	align-items: center;
    justify-content: center;
}
.z_230208_pc_nav p img{
	width: 69px;
	display: inline-block;
	margin-right: 20px;
}
.z_230208_pc_nav li:hover .z_230208_pc_nav_src{
	border: 3px solid white;
}
#ProductCenter{
	margin-right: 80px;
}
@media screen and (max-width: 1020px) {
	body {
		font-size: 0.28rem;
	}
	#ProductCenter{
		margin-right: 0;
	}
	.webhide{
		display: none;
	}
	.webshow{
		display: block;
	}

	.footer {
		padding: 0 2%;
	}

	.footer .footerTitle {
		font-size: 18px;
		padding: 20px 0;
	}

	.footer .footerSunTitle{
		padding: 0 0 20px;
	}
	.footerInputDiv {
		width: 80%;
		margin: 0 auto;
		position: relative;
	}

	.footer .textDiv .textDivTitle {
		font-size: 14px;
	}
	.textDiv{
        display: none !important;
    }
	.pc50mp30 {
		font-size: 18px;
	}
	.qrcode{
		width: 1.6rem;
		margin: 0 auto 0.1rem;
	}
	.rowTitle {
		font-size: 24px;
		text-align: center;
	}
	#footerCopy{
		opacity: 0;
		padding: 0 !important;
	}
	.footerInput{
        margin-bottom:35px;
    }
	.dialog div a{
        font-size: 16px;
        line-height: 38px;
    }
	.z_230208_pc_nav{
		width: 100%;
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		transform: translateY(0);
	}
	.z_230208_pc_nav li{
		width: 100%;
	}
	.z_230208_pc_nav p{
		line-height: 80px;
	}
}