/*内页 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: 100px;
	height: 100px;
	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(90deg, #0c7e87 , #2fa8b2);
	-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%;
	background: linear-gradient(90deg, #0c7e87 , #2fa8b2);
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	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%;
	}
}

/*网站按钮*/
.sitebtn{
	width: -webkit-fit-content;
	background-image: linear-gradient(90deg, #0c7e87 0%, #2fa8b2 50%, #0c7e87 100%);
	overflow: hidden;
    background-size: 200% auto;
    line-height: 64px;
    padding: 0 30px;
}
.sitebtn i{
	margin-left: 40px;
}
.sitebtn:hover{
	background-position: right center;
}

@media only screen and (max-width: 1600px) {
	/*网站按钮*/
	.sitebtn{
	    line-height: 61px;
	    padding: 0 30px;
	}
	.sitebtn i {
	    margin-left: 30px;
	}
	.sitebtn i svg {
	    width: 17px;
	    height: 17px;
	}
}

@media only screen and (max-width: 1440px) {
	/*网站按钮*/
	.sitebtn{
	    line-height: 56px;
	    padding: 0 25px;
	}
	.sitebtn i {
	    margin-left: 25px;
	}
	.sitebtn i svg {
	    width: 16px;
	    height: 16px;
	}
}
@media only screen and (max-width: 1200px) {
	/*网站按钮*/
	.sitebtn{
	    line-height: 54px;
	}
	.sitebtn i {
	    margin-left: 20px;
	}
	.sitebtn i svg {
	    width: 14px;
	    height: 14px;
	}
}

@media only screen and (max-width: 959px) {
	/*网站按钮*/
	.sitebtn{
	    line-height: 52px;
	}
	.sitebtn i {
	    margin-left: 15px;
	}
}


@media only screen and (max-width: 767px) {
	/*网站按钮*/
	.sitebtn{
	    line-height: 46px;
	    padding: 0 20px;
	}
	.sitebtn span{
		font-size: 12px;
	}
	.sitebtn i {
	    margin-left: 12px;
	}
}