/*网站按钮*/
.sitebtn{
	display: block;
	border-radius:4px;
	background-image: linear-gradient(135deg, #e5801f 0%, #e6291e 50%, #e5801f 100%);
	overflow: hidden;
    background-size: 200% auto;
    color: #fff;
    text-align: center;
    
}
.sitebtn:hover{
	background-position: right center;
}
.sitebtn1,
.sitebtn2{
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius:4px;
   	padding: 0 30px;
   	line-height: 64px;
   	overflow: hidden;
   	color: #fff;
   	position: relative;
   	z-index: 0;
   	width: max-content;
}
.sitebtn1:before,
.sitebtn2:before{
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	left: 50%;
	top: 0;
	z-index: -1;
	opacity: 0;
	transition: all 0.4s;
}

.sitebtn1:before{
	background: #ff7d00;
}
.sitebtn2:before{
	background: #f10f1a;
}
.sitebtn1:hover:before,
.sitebtn2:hover:before{
	width: 100%;
	left: 0;
	opacity: 1;
}
.sitebtn1 h5,
.sitebtn2 h5{
	font-size: 16px;
}
.sitebtn1 i{
	margin-left: 40px;
}
.sitebtn1{
   	background: #e5801f;
}
.sitebtn2{
   	background: #d6222b;
   	margin-left: 20px;
}

.sitebtn3{
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius:4px;
   	padding: 0 23px;
   	border: 2px solid #e6e6e6;
   	line-height: 52px;
   	overflow: hidden;
   	position: relative;
   	z-index: 0;
   	width: max-content;
}
.sitebtn3 h5{
	color: #1a1a1a;
	font-size: 14px;
	margin-right: 20px;
}
.sitebtn3 svg path{
	fill: #333;
}
.sitebtn3:hover{
	background: #e5801f;
	border-color: #e5801f;
}
.sitebtn3:hover h5{
	color: #fff;
}
.sitebtn3:hover svg path{
	fill: #ffffff;
}

/*旋转*/
@-webkit-keyframes rotation1 {
    from {
        -webkit-transform: translate(-50%,-50%) rotate(0deg);
    }

    to {
        -webkit-transform: translate(-50%,-50%) rotate(360deg);
    }
}

@-webkit-keyframes rotation2 {
    from {
        -webkit-transform: translate(-50%,-50%) rotate(360deg) ;
    }

    to {
        -webkit-transform: translate(-50%,-50%) rotate(0deg) ;
    }
}

/*手机导航按钮*/
@keyframes sjnav{
	0% {
	    width: 0;
	}
	25% {
	    width: 15px;
	}
	50% {
	    width: 30px;
	}
	75% {
	    width: 15px;
	}
	100% {
	    width: 0;
	}
}
/*线条持续移动*/
@keyframes linemove{
  0% {
    top: 0
  }
  to {
    top: 100%
  }
}
/*圆形图标扩散效果*/
.circle dl{
  width:120px;
  height:120px;
  position:relative;
  margin:0 auto;
}
.circle dd{
  width:120px;
  height:120px;
  position:absolute;
  top:0%;
  left:0%;
  transform:scale(0);
  border-radius:50%;
  background: linear-gradient(180deg, #e5801f , #d6222b);
  -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:60px;
  height:60px;
  background: linear-gradient(180deg, #e5801f , #d6222b);
  border-radius:50%;
}
.circle dt i{
	color: #FFFFFF;
	margin-left: 4px;
	font-size: 15px;
}
/*鼠标动效*/
@keyframes mouse-dot{
0% {
    opacity: 0;
}
33% {
    opacity: 1;
}
100% {
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    opacity: 0;
  }
}
.mouseIco {
    border: 2px solid #fff;
    width: 21px;
    height: 35px;
    display: block;
    margin: 0px auto;
    border-radius: 20px;
}
.mouseIco i {
    width: 3px;
    height: 6px;
    border-radius: 1px;
    display: block;
    background-color: #fff;
    position: absolute;
    left: 7px;
    top: 5px;
    -webkit-animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
    animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
/*图标抖动*/
@keyframes jitter {
  from, to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
@-webkit-keyframes jitter {
  from, to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
/*水平线滑动*/
@keyframes line{
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/*鼠标经过按钮扩散*/
@-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;
  }
}
a.hvr-ripple-out {
  display: block;
  transform: translateZ(0px);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 1px;
  backface-visibility: hidden;
  position: relative;
  border-radius:0;
}
a.hvr-ripple-out::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  animation-duration: 1s;
  border-width: 6px;
  border-style: solid;
  border-color: #172029;
  border-image: initial;
  border-radius:0;
}
a.hvr-ripple-out:hover::before{
  animation-name: hvr-ripple-out;
}
@keyframes hvr-ripple-out1 {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
a.hvr-ripple-out1 {
  display: block;
  transform: translateZ(0px);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 1px;
  backface-visibility: hidden;
  position: relative;
  border-radius:0;
}
a.hvr-ripple-out1::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  animation-duration: 1s;
  border-width: 6px;
  border-style: solid;
  border-color: #0068B7;
  border-image: initial;
  border-radius:0;
}
a.hvr-ripple-out1:hover::before{
  animation-name: hvr-ripple-out1;
}
/*图片持续缩放*/
@keyframes ban{
  0%   {
    transform: scale(1);
  }
  25%  {
    transform: scale(1.1);
  }
  50%  {
    transform: scale(1.2);
  }
  75%  {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/*按钮持续扩散*/
@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);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
  }
}

/*按钮特效*/
@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

.btn-1:before, .btn-1:after {
  position: absolute;
  top: 50%;
  content: '';
  width: 10px;
  height: 10px;
  background: #ee202b;
  border-radius: 50%;
  z-index: -1;
}
.btn-1:before {
  left: -20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*     animation: criss-cross-left 0.8s reverse; */
}
.btn-1:after {
  right: -20px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  /*     animation: criss-cross-right 0.8s reverse; */
}
.btn-1:hover:before, .btn-1:hover:after {
  /*       @include size($btn-width); */
}
.btn-1:hover:before {
  -webkit-animation: criss-cross-left 0.8s both;
          animation: criss-cross-left 0.8s both;
}
.btn-1:hover:after {
  -webkit-animation: criss-cross-right 0.8s both;
          animation: criss-cross-right 0.8s both;
}

@media only screen and (max-width: 1440px) {
	/*网站按钮*/
	.sitebtn1,
	.sitebtn2 {
    	line-height: 56px;
    }
    .sitebtn1 h5,
    .sitebtn2 h5 {
	    font-size: 14px;
	}
	.sitebtn1 i {
	    margin-left: 20px;
	}
}
@media only screen and (max-width: 900px) {
	/*网站按钮*/
	.sitebtn1,
	.sitebtn2 {
    	line-height: 52px;
    }
	.sitebtn3{
	   	line-height: 50px;
	}
	/*圆形图标扩散效果*/
	.circle dt {
	    width: 50px;
	    height: 50px;
	}
	.circle dt i{
		margin-left: 4px;
		font-size: 14px;
	}
}
@media only screen and (max-width: 767px) {
	/*网站按钮*/
	.sitebtn{
		border-radius:2px;
	}
	.sitebtn1,
	.sitebtn2 {
    	line-height: 48px;
    	padding: 0 20px;
    	border-radius: 2px;
    	width: calc((100% - 10px) / 2);
    }
    .sitebtn2 {
	    margin-left: 10px;
	}
	.sitebtn1 i {
	    margin-left: 15px;
	}
	.sitebtn1 i svg,
	.sitebtn2 i svg,
	.sitebtn3 i svg{
		width: 14px;
		height: 14px;
	}
	.sitebtn3{
	   	line-height: 44px;
	   	padding: 0px 16px;
	   	border-radius: 2px;
	}
	.sitebtn3 h5{
		margin-right: 15px;
	}
}