.yx_flex {
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

.yx_flexJC {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.yx_InLine p span:nth-child(1) {
    width: 6px;
    background: rgb(231,27,36);
    animation: fa_span01_ani 1.2s linear infinite alternate;
}

.yx_InLine p span {
    display: inline-block;
    margin: 0 6px 0 0;
    height: 6px;
    border-radius: 6px;
}

.yx_InLine p span:nth-child(2) {
    width: 6px;
    background: rgb(231,27,36);
    animation: fa_span02_ani 1.2s linear infinite alternate;
}


@keyframes fa_span01_ani{
0% {
    width: 6px;
}
100% {
    width: 40px;
}
}

@keyframes fa_span02_ani{
0% {
    width: 40px;
}
100% {
    width: 6px;
}
}
