/*底部友情链接 begin*/
.friendin .three-d-box {
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	pointer-events: none;
	display: block;
	width: 100%;
	height: 100%;
	transform: translatez(-24px);
	-webkit-transform: translatez(-24px);
	-moz-transform: translatez(-24px);
	transition: all .32s ease-out;
}
.friendin .friendtop dl.defal,
.friendin .friendtop dl.end {
	width: 100%;
	color: #fff;
	height: 48px;
	line-height: 48px;
	font-size: 14px;
	padding: 0 20px;
	font-weight: 300;
	background: #c6181f;
	border-radius: 2px;
}
.friendin .friendtop dl.defal {
	transform: rotatex(0deg) translatez(24px);
	-webkit-transform: rotatex(0deg) translatez(24px);
	-moz-transform: rotatex(0deg) translatez(24px);
	-ms-transform: rotatex(0deg) translatez(24px);
}
.friendin .friendtop dl.end {
	transform: rotatex(-90deg) translatez(-24px);
	-webkit-transform: rotatex(-90deg) translatez(-24px);
	-moz-transform: rotatex(-90deg) translatez(-24px);
	-ms-transform: rotatex(-90deg) translatez(-24px);
}

.friendin {
	width: 240px;
	height: 48px;
	line-height: 48px;
	position: relative;
}

.friendtop {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	perspective: 220px;
	-webkit-perspective: 220px;
	cursor: pointer;
}
.friendin:hover .friendtop .three-d-box {
	transform: translateZ(-24px) rotateX(90deg);
	-webkit-transform: translateZ(-24px) rotateX(90deg);
	-moz-transform: translateZ(-24px) rotateX(90deg);
	-ms-transform: translateZ(-24px) rotateX(90deg);
}
.friendin:hover .friendtop dl.defal,
.friendin:hover .friendtop dl.end {
	background: #e9383f;
}

.friend-list {
	position: absolute;
	left: 0;
	bottom: 48px;
	width: 100%;
	display: none;
	z-index: 10;
}

.friend-list li {
	height: 48px;
	margin-bottom: 2px;
	position: relative;
	background: #c6181f;
	border-radius: 2px;
}

.friend-list li a {
	display: block;
	padding: 0 20px;
	color: #fff;
	font-size: 14px;
	width: 100%;
	font-weight: 300;
}

.friend-list li:hover {
	background: #e9383f;
}

/*底部友情链接 end*/


/*手机导航按钮*/

@keyframes sjnav {
	0% {
		width: 0;
	}
	25% {
		width: 15px;
	}
	50% {
		width: 30px;
	}
	75% {
		width: 15px;
	}
	100% {
		width: 0;
	}
}


/*圆形图标扩散效果*/
.circle dl {
	width: 130px;
	height: 130px;
	position: relative;
	margin: 0 auto;
}

.circle dd {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0%;
	left: 0%;
	transform: scale(0);
	border-radius: 50%;
	background-color: #fff;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-animation: circleScale 4s linear infinite;
	-moz-animation: circleScale 4s linear infinite;
	-ms-animation: circleScale 4s linear infinite;
	animation: circleScale 4s linear infinite;
}

.circle dd:nth-of-type(2) {
	animation-delay: 1s;
}

.circle dd:nth-of-type(3) {
	animation-delay: 2s;
}

.circle dd:nth-of-type(4) {
	animation-delay: 3s;
}

.circle dt {
	cursor: pointer;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	background: #fff;
	border-radius: 50%;
}
/*按钮持续扩散*/

@keyframes circleScale {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes circleScale1 {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(2);
		-moz-transform: scale(2);
		-ms-transform: scale(2);
		transform: scale(2);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(3);
		-moz-transform: scale(3);
		-ms-transform: scale(3);
		transform: scale(3);
	}
}
@keyframes linescroll {
	0% {
		top: 0;
	}
	100% {
		top: 100%;
	}
}

/*水平线滑动*/

@keyframes line {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

/*内页banner 箭头移动*/
@keyframes move {
	0% {
		opacity: 1;
		transform: translateY(-5px);
	}
	100% {
		opacity: 0;
		transform: translateY(5px);
	}
}

.siteBtn {
	width: fit-content;
	padding: 0 35px;
	line-height: 56px;
	color: #FFFFFF;
	background: #c6181f;
	border-radius: 2px;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.siteBtn span{
	display: block;
	font-size: 14px;
	margin-right: 20px;
}
.siteBtn:before{
	content: "";
	width: 0;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	z-index: -1;
	background: #e9383f;
	transition: all 0.4s;
	opacity: 0;
}
.siteBtn:hover:before{
	width: 100%;
	left: 0;
	opacity: 1;
}

@media only screen and (max-width: 1440px) {
	.siteBtn {
		line-height: 54px;
		padding: 0 30px;
	}
}

@media only screen and (max-width: 1200px) {
	.siteBtn {
		line-height: 50px;
		padding: 0 25px;
	}
}

@media only screen and (max-width: 767px) {
	.siteBtn {
		padding: 0 25px;
		line-height: 48px;
	}
	.siteBtn span {
	    margin-right: 15px;
	}
}