.hollow-text {
    font-size: 2em; /* 调整字体大小 */
    font-weight: bold;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.7), rgba(0, 0, 255, 0.7)); /* 半透明颜色渐变 */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* 设置字体颜色为透明以显示背景渐变 */
    background-size: 200% 200%; /* 设置背景大小 */
    animation: gradient-breath 3s infinite; /* 添加动画 */
}

@keyframes gradient-breath {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
