/* Please ❤ this if you like it! */

/* #Progress
================================================== */

.return-to-last-progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 100px;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(245, 245, 245, 0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	/* -webkit-transition: all 0ms linear; */
    /* transition: all 0ms linear; */
}
.return-to-last-progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.return-to-last-progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '\e843';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: #4f7dde; /* 箭头的颜色 */
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	/* -webkit-transition: all 200ms linear; */
    /* transition: all 200ms linear; */
}
.return-to-last-progress-wrap:hover::after {
	opacity: 0;
}
.return-to-last-progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\e843';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background-image: linear-gradient(298deg, #4f7dde, #4f7dde); /* 鼠标滑过的箭头颜色 */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	z-index: 2;
	/* -webkit-transition: all 200ms linear; */
    /* transition: all 200ms linear; */
}
.return-to-last-progress-wrap:hover::before {
	opacity: 1;
}
.return-to-last-progress-wrap svg path { 
	fill: none; 
}
.return-to-last-progress-wrapp svg.progress-circle path {
	stroke: #4f7dde; /* 边框的颜色 */
	stroke-width: 4;
	box-sizing:border-box;
	/* -webkit-transition: all 200ms linear; */
    /* transition: all 200ms linear; */
}
body.light .return-to-last-progress-wrap {
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);
}
body.light .return-to-last-progress-wrap::after {
	color: black;
}
body.light .return-to-last-progress-wrap svg.progress-circle path {
	stroke: rgb(0, 0, 0);
}

