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 {
	/* max-width: 1920px; */
	margin: auto;;
	font-family: "PingFang SC", Arial, "微软雅黑";
}
@font-face {
	font-family: 'albb';
	src: url('../fonts/ALIBABA-PUHUITI-MEDIUM.woff2') format('truetype');
}
@font-face {
	font-family: 'albb_b';
	src: url('../fonts/ALIBABA-PUHUITI-BOLD.OTF') format('truetype');
}
@font-face {
	font-family: 'Source';
	src: url('../fonts/SourceHanSerifCN-Bold.otf') format('truetype');
}
/*@font-face {*/
/*	font-family: 'gilroy';*/
/*	src: url('../fonts/gilroy-black-6.otf') format('truetype');*/
/*}*/
/*@font-face {*/
/*	font-family: 'gilroy_bold';*/
/*	src: url('../fonts/gilroy-bold-4.otf') format('truetype');*/
/*}*/

/*@font-face {*/
/*	font-family: 'gilroy_m';*/
/*	src: url('../fonts/Gilroy-Medium-2.otf') format('truetype');*/
/*}*/


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

@font-face {
        font-family: 'gilroy_bold';
        src: url('../fonts/Montserrat-Bold-3.otf') format('truetype');
}

@font-face {
        font-family: 'gilroy_m';
        src: url('../fonts/Montserrat-Medium-7.otf') format('truetype');
}




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

@font-face {
	font-family: 'gotham';
	src: url('../fonts/Gotham-Book.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; 上下换位置 */
/* 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(0, 0, 0, 0.2);
}

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

.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: 2rem;
  font-weight: bold;
  cursor: pointer;
}

input::-webkit-input-placeholder{
	color:#cccccc;
	font-size: 16px;
}
input::-moz-placeholder{ 
	color:#cccccc;
	font-size: 16px;
}
input:-moz-placeholder{ 
	color:#cccccc;
	font-size: 16px;
}
input:-ms-input-placeholder{
   color:#cccccc;
   font-size: 16px;
}


textarea::-webkit-input-placeholder{
	color:#cccccc;
	font-size: 16px;
}
textarea::-moz-placeholder{ 
	color:#cccccc;
	font-size: 16px;
}
textarea:-moz-placeholder{ 
	color:#cccccc;
	font-size: 16px;
}
textarea:-ms-input-placeholder{
   color:#cccccc;
   font-size: 16px;
}
.lpk_pc{
	
}
.lpk_phone{
	display: none;
}
@media screen and (max-width:992px){
	.lpk_pc{
		display: none;
	}
	.lpk_phone{
		display: block;
	}
}
/* 
animation:mymove 5s infinite;
-moz-animation:mymove 5s infinite; 
-webkit-animation:mymove 5s infinite; 
-o-animation:mymove 5s infinite; 
@keyframes mymove{
	from {top:0px;}
	to {top:200px;}
} */



/* a{
	position: relative;
	overflow: hidden;
	display: inline-block;
	border-radius:  1.625rem;
	width: 10.5rem;
	color: @color2;
	span{
		position: relative;
		line-height: 3.125rem;
		border: 1px solid @color2;
		display: inline-block;
		text-align: center;
		border-radius:  1.625rem;
		transition: 0.4s;
		width: 100%;
		box-sizing: border-box;
	}
	&::before{
		content: '';
		position: absolute;
		box-sizing: border-box;
		top: 0px;
		right: 0;
		width: 0%;
		height: calc(100%);
		background: @color2;
		border-radius: 1.625rem;
		transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	}
	&:hover{
		color: #fff;
		&::before{
			width: calc(100%);
			left: 0px;
			right: auto;
		}
	}
} */