/* 字体集 */
@font-face {
	font-family: LoveLetter;
	src: url(../jxtianfeiCSSjsFONT/fonts/LoveLetter.ttf);
}

.LoveLetter {
	font-family: LoveLetter;
}

@font-face {
	font-family: WidthDeer;
	src: url(../jxtianfeiCSSjsFONT/fonts/WidthDeer.ttf);
}

.WidthDeer {
	font-family: WidthDeer;
}

/* 字体集over */
/* 按键特效 */
.custom-btn {
	width: 130px;
	height: 40px;
	color: #fff;
	border-radius: 5px;
	font-family: 'Lato', sans-serif;
	font-weight: 500;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
		7px 7px 20px 0px rgba(0, 0, 0, .1),
		4px 4px 5px 0px rgba(0, 0, 0, .1);
	outline: none;

	padding: 6px 12px;
	margin: 15px 7px 7px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	white-space: nowrap;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	user-select: none;
	background-image: none;
	background-color: #1e8bc3;
	border: 1px solid transparent;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	min-width: 90px;
}

/* 6 */
.btn-6 {
	background: #1e8bc3;
	background: radial-gradient(circle, #1e8bc3 0%, rgba(118, 174, 241, 1) 100%);
	line-height: 42px;
	padding: 0;
	border: none;
}

.btn-6 span {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.btn-6:before,
.btn-6:after {
	position: absolute;
	content: "";
	height: 0%;
	width: 1px;
	box-shadow:
		-1px -1px 20px 0px rgba(255, 255, 255, 1),
		-4px -4px 5px 0px rgba(255, 255, 255, 1),
		7px 7px 20px 0px rgba(0, 0, 0, .4),
		4px 4px 5px 0px rgba(0, 0, 0, .3);
}

.btn-6:before {
	right: 0;
	top: 0;
	transition: all 500ms ease;
}

.btn-6:after {
	left: 0;
	bottom: 0;
	transition: all 500ms ease;
}

.btn-6:hover {
	background: transparent;
	color: #76aef1;
	box-shadow: none;
}

.btn-6:hover:before {
	transition: all 500ms ease;
	height: 100%;
}

.btn-6:hover:after {
	transition: all 500ms ease;
	height: 100%;
}

.btn-6 span:before,
.btn-6 span:after {
	position: absolute;
	content: "";
	box-shadow:
		-1px -1px 20px 0px rgba(255, 255, 255, 1),
		-4px -4px 5px 0px rgba(255, 255, 255, 1),
		7px 7px 20px 0px rgba(0, 0, 0, .4),
		4px 4px 5px 0px rgba(0, 0, 0, .3);
}

.btn-6 span:before {
	left: 0;
	top: 0;
	width: 0%;
	height: .5px;
	transition: all 500ms ease;
}

.btn-6 span:after {
	right: 0;
	bottom: 0;
	width: 0%;
	height: .5px;
	transition: all 500ms ease;
}

.btn-6 span:hover:before {
	width: 100%;
}

.btn-6 span:hover:after {
	width: 100%;
}

/* 9 */
.btn-9 {
	border: none;
	transition: all 0.3s ease;
	overflow: hidden;
}

.btn-9:after {
	position: absolute;
	content: " ";
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1fd1f9;
	background-image: linear-gradient(315deg, #1fd1f9 0%, #b621fe 74%);
	transition: all 0.3s ease;
}

.btn-9:hover {
	background: transparent;
	box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .5),
		-4px -4px 6px 0 rgba(116, 125, 136, .2),
		inset -4px -4px 6px 0 rgba(255, 255, 255, .5),
		inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
	color: #fff;
}

.btn-9:hover:after {
	-webkit-transform: scale(2) rotate(180deg);
	transform: scale(2) rotate(180deg);
	box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .5),
		-4px -4px 6px 0 rgba(116, 125, 136, .2),
		inset -4px -4px 6px 0 rgba(255, 255, 255, .5),
		inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}

/* 按键特效 */

/*header部分---------------------------------*/
.navbar {
	position: fixed;
	/*导航悬浮*/
	z-index: 1000;
	/* 优先级 */
	left: 0;
	right: 0;
	/*居中对齐*/
	/* background-color: rgba(0, 0, 0, 0) */
	/* 透明 */
}

.logo img {
	transform: translate(10px, -5px);
}

/* #headerTop {
	顶部导航栏-初始样式 
	background-color: rgba(0, 0, 0, 0); 
	width: 100%;
}
#headerTop .sticky {
	滑动鼠标滚轮后
	background: olivedrab;
	background-color: whitesmoke;
	-webkit-transform: translateY(-20%);
	transform: translateY(-20%);
	-webkit-transform-origin: 50% 20%;
	transform-origin: 50% 20%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: .8s;
	transition-duration: .8s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: cubic-bezier(0.93, 0.39, 0.1, 0.98);
} */
/*header部分over*/
/*index-合作商部分---------------------------------*/

.friends {
	/*合作商*/
	overflow: hidden;
}

.friends img {
	min-width: 70%;
}

/*合作商部分over*/

footer {
	padding: 0 0;
}

.nullheader {
	overflow: hidden;
}

ul li {
	list-style: none;
}

.nullheader ul {
	1 padding-left: 0;
}

/* index部分over------------------------------------ */
/* about1部分 */
.body-About1 {
	width: 100%;
}

.content-About1 {
	position: relative;
	float: left;
}

@media(min-width:1201px) {

	/* 屏幕宽度不小于1201时 */
	.content-About1 {
		height: 300px;
		width: 48%;
		margin: 5% 1%;
	}

	.content-About1 img {
		height: 300px;
	}
}

@media(max-width:1200px) {

	/*不大于1200时*/
	.content-About1 {
		height: 300px;
		width: 98%;
		margin: 20px 1%;
	}

	@media (max-width:560px) {
		.content-About1 {}
	}

	.content-About1 img {
		height: auto;
		float: left;
	}
}


.body-About1 .aboutText {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	padding: 0 8px;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
	display: flex;
	align-content: center;
	flex-wrap: wrap;
}

.body-About1 img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
}

/* 盒子圆角样式 */
#dv-all {
	/* 全圆角样式 */
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
}

#dv-top-left {
	/* 园左上角 */
	border-top-left-radius: 15px;
	-webkit-border-top-radius: 15px;
	-moz-border-top-radius: 15px;
}

#dv-top-right {
	border-top-right-radius: 15px;
	-webkit-border-top-right-radius: 15px;
	-moz-border-top-right-radius: 15px;
}

#dv-bottom-left {
	border-bottom-left-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-moz-border-bottom-left-radius: 15px;
}

#dv-bottom-right {
	border-bottom-right-radius: 15px;
	-webkit-border-bottom-right-radius: 15px;
	-moz-border-bottom-right-radius: 15px;
}

/* 盒子圆角样式 over*/
/* 微信公众号名片样式 */
.wxgzh{
		transform: scale(0.5,0.5);
	}
	.wxgzh #dv-all{
		border:2px solid #0050E3;
		width: 900px;
		transform: translate(-150px,-100px);
	}
	.wxgzh img{
		margin: 8px auto;
		
	}
	

/* 微信公众号名片样式over */


/* 产品介绍 */
/* .met-banner-ny img{
	width: 18%;
} */

