 /* 标题效果 FETO_TextEffect_1 */
        .FETO_TextEffect_1 {
            color: #fff;
            text-shadow: 
                0 0 5px #ff00ff,
                0 0 10px #ff00ff,
                0 0 20px #ff00ff,
                0 0 40px #ff00ff;
            animation: flash-neon 0.15s infinite alternate;
        }
        
        @keyframes flash-neon {
            0% {
                opacity: 0.2;
                text-shadow: 
                    0 0 2px #ff00ff,
                    0 0 5px #ff00ff;
            }
            100% {
                opacity: 1;
                text-shadow: 
                    0 0 5px #ff00ff,
                    0 0 10px #ff00ff,
                    0 0 20px #ff00ff,
                    0 0 40px #ff00ff,
                    0 0 80px #ff00ff,
                    0 0 120px #ff00ff;
            }
        }


 /* 标题效果 FETO_TextEffect_2 */
  .FETO_TextEffect_2{ 
    font-weight:bold;
    background: linear-gradient(left, #746a12, #d6bb24, #746a12, #d6bb24, #746a12, #d6bb24, #746a12, #d6bb24, #746a12, #d6bb24); 
    background: -webkit-linear-gradient(left, #746a12, #d6bb24, #746a12, #d6bb24, #746a12, #d6bb24, #746a12, #d6bb24, #746a12, #d6bb24);
    background: -o-linear-gradient(right, #746a12, #d6bb24, #746a12, #d6bb24, #746a12, #d6bb24, #746a12, #d6bb24, #746a12, #d6bb24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation:FETO_scratchy 0.253s linear forwards infinite;
    /* 其它浏览器兼容性前缀 */
    -webkit-animation:FETO_scratchy 0.253s linear forwards infinite;
    -moz-animation: FETO_scratchy 0.253s linear forwards infinite;
    -ms-animation: FETO_scratchy 0.253s linear forwards infinite;
    -o-animation: FETO_scratchy 0.253s linear forwards infinite;
}  
@keyframes  FETO_scratchy {
    0% {
        background-position: 0 0;
    }
    25% {
        background-position: 0 0;
    }
    26% {
        background-position: 20px -20px;
    }
    50% {
        background-position: 20px -20px;
    }
    51% {
        background-position: 40px -40px;
    }
    75% {
        background-position: 40px -40px;
    }
    76% {
        background-position: 60px -60px;
    }
    99% {
        background-position: 60px -60px;
    }
    100% {
        background-position: 0 0;
    }
}
/* 添加兼容性前缀 */
@-webkit-keyframes FETO_scratchy {
    0% {
        background-position: 0 0;
    }
    25% {
        background-position: 0 0;
    }
    26% {
        background-position: 20px -20px;
    }
    50% {
        background-position: 20px -20px;
    }
    51% {
        background-position: 40px -40px;
    }
    75% {
        background-position: 40px -40px;
    }
    76% {
        background-position: 60px -60px;
    }
    99% {
        background-position: 60px -60px;
    }
    100% {
        background-position: 0 0;
    }
}
@-moz-keyframes FETO_scratchy {
    0% {
        background-position: 0 0;
    }
    25% {
        background-position: 0 0;
    }
    26% {
        background-position: 20px -20px;
    }
    50% {
        background-position: 20px -20px;
    }
    51% {
        background-position: 40px -40px;
    }
    75% {
        background-position: 40px -40px;
    }
    76% {
        background-position: 60px -60px;
    }
    99% {
        background-position: 60px -60px;
    }
    100% {
        background-position: 0 0;
    }
}
@-ms-keyframes FETO_scratchy {
   0% {
        background-position: 0 0;
    }
    25% {
        background-position: 0 0;
    }
    26% {
        background-position: 20px -20px;
    }
    50% {
        background-position: 20px -20px;
    }
    51% {
        background-position: 40px -40px;
    }
    75% {
        background-position: 40px -40px;
    }
    76% {
        background-position: 60px -60px;
    }
    99% {
        background-position: 60px -60px;
    }
    100% {
        background-position: 0 0;
    }
}
@-o-keyframes FETO_scratchy {
   0% {
        background-position: 0 0;
    }
    25% {
        background-position: 0 0;
    }
    26% {
        background-position: 20px -20px;
    }
    50% {
        background-position: 20px -20px;
    }
    51% {
        background-position: 40px -40px;
    }
    75% {
        background-position: 40px -40px;
    }
    76% {
        background-position: 60px -60px;
    }
    99% {
        background-position: 60px -60px;
    }
    100% {
        background-position: 0 0;
    }
}


 /* 标题效果 FETO_TextEffect_3 */
.FETO_TextEffect_3 {
            margin: 0 auto;
}
        
.FETO_TextEffect_3 span {
            display: inline-block;
}


 /* 标题效果 FETO_TextEffect_4 */
.FETO_TextEffect_4 {
            background: linear-gradient(left, #0f0, #00f) 0 0 no-repeat;
            background: -webkit-linear-gradient(left, #0f0, #00f) 0 0 no-repeat;
            background-size: 120px;
            -webkit-background-size: 120px;
            background-clip: text;
            -webkit-background-clip: text;
            color: rgba(255, 255, 255, 0.5);
            -webkit-text-fill-color: rgba(255, 255, 255, 0.3);
            animation: shine 2s ease-in-out infinite alternate;
            -webkit-animation: shine 2s ease-in-out infinite alternate;
        }
        
        @keyframes shine {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 100% 0;
            }
        }
        
        @-webkit-keyframes shine {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 100% 100%;
            }
        }


 /* 标题效果 FETO_TextEffect_5 */
.FETO_TextEffect_5 {
    background: linear-gradient(to right, red, orange, yellow, green, cyan, blue,  purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation:  hue 2s linear infinite;
	font-weight:bold;
}
@keyframes hue {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}


 /* 标题效果 FETO_TextEffect_6 */
        .FETO_TextEffect_6 {
            display: inline-block;
            background-color: #280747;
            color: #fff;
            padding: 2px 4px;
            border-radius: 2px;
            animation: text-block-background 0.8s ease-in-out infinite;
        }
        
        @keyframes text-block-background {
            0% {
                background-color: #280747;
            }
            20% {
                background-color: #9a0007;
            }
            40% {
                background-color: #c25600;
            }
            60% {
                background-color: #1b5e20;
            }
            80% {
                background-color: #0d47a1;
            }
            100% {
                background-color: #280747;
            }
        }


 /* 标题效果 FETO_TextEffect_7 */
        .FETO_TextEffect_7 {
            font-weight: bold;
            text-align: center;
        }
        
        .FETO_TextEffect_7 span {
            transition: color 0.2s ease;
        }


           
/* 17. 变色效果 */
.FETO_TextEffect_8 {  
            display: inline-block;
            color: #ff0000;
            animation: color-cycle 1s ease-in-out infinite;
        }
        
        @keyframes color-cycle {
            0% {
                color: #ff0000;
                text-shadow: 0 0 20px #ff0000;
            }
            20% {
                color: #ff9900;
                text-shadow: 0 0 20px #ff9900;
            }
            40% {
                color: #ffff00;
                text-shadow: 0 0 20px #ffff00;
            }
            60% {
                color: #00ff00;
                text-shadow: 0 0 20px #00ff00;
            }
            80% {
                color: #5DADE2;
                text-shadow: 0 0 20px #5DADE2;
            }
            100% {
                color: #9900ff;
                text-shadow: 0 0 20px #9900ff;
            }
        }


        /* 11. 霓虹灯(快) */
        .FETO_TextEffect_9 {
            display: inline-block;
        }
        
        .FETO_TextEffect_9 span {
            display: inline-block;
        }

        /* 12. 霓虹灯(慢) */
        .FETO_TextEffect_10 {
            display: inline-block;
        }
        
        .FETO_TextEffect_10 span {
            display: inline-block;
        }

         /* 14. 追逐点亮的文字 */
        .FETO_TextEffect_11 {
            color: #FFFF00;
        }
        
        .FETO_TextEffect_11 .highlight {
            color: #FF0000;
        }


