/*内页 banner 图标效果*/
@keyframes move {
	0% {
		opacity: 1;
		transform: translateY(-5px);
	}
	100% {
		opacity: 0;
		transform: translateY(5px);
	}
}

/*手机导航按钮*/
@keyframes sjnav {
	0% {
		width: 0;
	}
	25% {
		width: 15px;
	}
	50% {
		width: 30px;
	}
	75% {
		width: 15px;
	}
	100% {
		width: 0;
	}
}

/*折叠效果*/
.fold{
	position: relative;
	z-index: 0;
}
.fold:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #ef0202;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transform: perspective(300px) rotateX(-90deg);
    transform-origin: top;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.circle dd {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0%;
	left: 0%;
	transform: scale(0);
	border-radius: 50%;
	background: linear-gradient(0deg, #ef0202 , #ff4800);
	-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: 80px;
	height: 80px;
	background: linear-gradient(0deg, #ef0202 , #ff4800);
	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%;
	}
}

/*网站按钮1*/
.sitebtn1 {
	width: fit-content;
	padding: 0 30px;
	border-radius: 2px;
	position: relative;
	z-index: 0;
	overflow: hidden;
	border: 1px solid #fff;
}
.sitebtn1 span{
	display: block;
	font-size: 15px;
	padding: 22px 0;
}
.sitebtn1 i {
	margin-left: 12px;
}
.sitebtn1 i svg{
	transform: translateX(-3px);
}
.sitebtn1:before{
	content: "";
	width: 0;
	height: 100%;
	background: #e50012;
	position: absolute;
	left: 50%;
	top: 0;
	z-index: -1;
	opacity: 0;
	transition: all 0.4s ease;
}
.sitebtn1:hover{
	border-color: #e50012;
}
.sitebtn1:hover:before{
	width: 100%;
	left: 0;
	opacity: 1;
}
/*网站按钮2*/
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.sitebtn2{
	width: fit-content;
	padding: 0 30px;
	border-radius: 2px;
	position: relative;
	z-index: 0;
}
.sitebtn2 span{
	display: block;
	font-size: 15px;
	padding: 22px 0;
}
.sitebtn2 i{
	margin-left: 12px;
}
.sitebtn2 i svg{
	transform: translateX(-3px);
}
.sitebtn2.hvr-ripple-out::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  animation-duration: 1s;
  border: 6px solid #e50012;
  border-radius:2px;
}
.sitebtn2.hvr-ripple-out:hover::before{
  animation-name: hvr-ripple-out;
}


@media only screen and (max-width: 1600px) {
	/*网站按钮*/
	.sitebtn {
		padding: 0 25px;
		line-height: 59px;
	}
	.sitebtn span{
		margin-right: 10px;
		font-size: 15px;
	}
	.sitebtn i svg{
		width: 15px;
		height: 15px;
	}
}

@media only screen and (max-width: 1440px) {
	.sitebtn1,
	.sitebtn2{
	    padding: 0 25px;
	}
	.sitebtn1 span,
	.sitebtn2 span{
	    font-size: 14px;
	    padding: 20px 0;
	}
	.sitebtn1 i,
	.sitebtn2 i{
	    margin-left: 10px;
	}
}
@media only screen and (max-width: 1200px) {
	/*网站按钮*/
	.sitebtn1 span,
	.sitebtn2 span{
	    padding: 19px 0;
	}
	.sitebtn1 i,
	.sitebtn2 i {
	    margin-left: 8px;
	}
}
@media only screen and (max-width: 767px) {
	/*网站按钮*/
	.sitebtn1,
	.sitebtn2{
	    padding: 0 20px;
	}
	.sitebtn1 span,
	.sitebtn2 span{
	    padding: 17px 0;
	}
	.sitebtn1 i svg,
	.sitebtn2 i svg{
	    width: 16px;
	    height: 16px;
	}
	
}