<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* æ·¡å…¥ */
@keyframes fadeTo {
	from {
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		opacity: 0.4;
	}

	60% {
		opacity: 0.6;
	}

	80% {
		opacity: 0.8;
	}

	to {
		opacity: 1;
	}
}

.page-enter-active {
	animation: fadeTo 0.3s;
	animation-timing-function: ease;
}
</pre></body></html>