<div class="text">距离下班还剩 xxx 秒</div>
.text {
//盒子大小
width: 100px;
height: 100px;
//渐变
background: linear-gradient(to bottom, rgb(191, 192, 192), rgb(5, 5, 5));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: bold;
//文字居中
text-align: center;
}