/* =========================================
   只针对“运行时间” (#runtime_span) 的设置
   ========================================= */
#runtime_span {
    /* 1. 你的渐变色 */
    background-image: linear-gradient(to right, #f77062, #fe5196, #2af598);

    /* 2. 核心魔法：背景裁剪 + 透明文字 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    
    /* 3. 字体样式 */
    font-weight: bold;
    text-decoration: none;

    /* 4. 【关键】在这里加上过渡动画，让鼠标移入移出都丝滑 */
    transition: filter 0.3s ease-in-out;
    
}

/* =========================================
   鼠标悬停在“运行时间”上时的效果
   ========================================= */
#runtime_span:hover {
    /* 变亮 1.3 倍 (发光效果) */
    filter: brightness(1.3);
}