font.a {
color: #FF0000;
}
.a::after {
content: "准";
}
font.c {
color: #FF0000;
}
.c::after {
color: #808080;
content: "错";
}
.abc {text-align: center;
display: inline-block;
width: 40px;
color: #ffff00;
background: #dd3221;
margin: 0 auto;
border-radius: 18px;
animation: dong 2s linear infinite;
animation-fill-mode: both;
box-shadow: 0 0 10px #f94370;
transition: color 0.4s;text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;}
@keyframes dong{
0%{transform: scaleX(1);}
50%{transform: scale3d(1.05,1.05,1.05);}
100%{transform: scaleX(1);}
}