/* 素材：w20240420参考会员注册文字效果背景色变化实现热喷涂火焰效果css */


.picbg_24 {
	
    background-color: linear-gradient(40deg, #ffffff 0%, #000000 100%, #fff);
    animation: glow-animation 5s infinite linear;
   }

@keyframes glow-animation{
    0%{filter:hue-rotate(-360deg)}
    50%{filter:hue-rotate(3600deg)}
}
