<style>
body { background: #000; }
.pa {
position: absolute;
font-size: 4vw;
font-weight: bold;
background: linear-gradient(180deg, cyan, white) no-repeat 0 0 / 35% 100%;
background-clip: text;
color: rgba(250, 250, 250, .25);
text-shadow: 2px 2px 4px rgba(0, 200, 0, .15);
filter: drop-shadow(2px 2px 4px lightgreen);
animation: bmove linear 6s infinite alternate;
}
@keyframes bmove {
to { background-position: 100% 100%; }
}
</style>
<div class="pa">自古英雄出少年,似水红颜惹人怜</div>