#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	transition:all 0.3s;
	color: #fff;
}
#page-top {
	position: fixed;
	right: 20px;
	z-index: 1;
	opacity: 0;
	transform: translateY(100px);
	background-color: #F39608;
	border-radius: 50px;
	line-height: 1.2rem;
	padding-top: 17px;
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
@media(max-width:768px){
	#page-top{
		padding-top: 12px;
	}
}