/*------------------------------按鈕-gotop------------------------------*/
.gotop {
	position: fixed;
	bottom: 5em;/*10/16*/
	right: 10px;/*10/16*/
	z-index: 1;
}
.gotop__btn {
	background: rgba(170, 170, 170, .9);
	display: block;
	height: 40px;
	width: 40px;
}
/* icon父層 */
.gotop__icon-wrap{
}
/* icon */
.gotop__btn-icon {
	color: #fff;
	margin: 10px;
	line-height: 20px;
	font-size: 20px;
	-webkit-transition: transform .25s ease-in-out;
	-moz-transition: transform .25s ease-in-out;
	transition: transform .25s ease-in-out;
}
.gotop__btn:active {
	background: rgba(127,127,127,.9);
}
.gotop__text{
	font-size: 10px;
	display: block;
	margin: 5px 0;
	text-align: center;
	display: none;
}
/* 跳至最下方 */
.gotop--down .gotop__btn-icon{
	transform: rotate(180deg);
}
@media screen and (min-width: 1024px) {
	/*------------------------------按鈕-gotop------------------------------*/
	.gotop {
		bottom: 100px;
		right: 30px;
	}
	.gotop__btn {
		transition: .3s background cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.gotop__btn:active,
	.gotop__btn:hover {
		background: rgba(127,127,127,.9);
	}
}