.adds_44886 {
    font-size: 12px;
    color: #4682B4;
    display: inline-block;
    margin-left: 5px;
    animation: change 3s linear 0s infinite;
}

#test {

    font-size: 30px;
    font-weight: 700;
}

@keyframes change {
    0% {
        color: #4e72b8;
    }

    25% {
        color: #181d4b;
    }

    50% {
        color: #0000;
    }

    75% {
        color: #f60;
    }

    100% {
        color: #f00;
    }
}
/*页面中间广告，让它不要受p的限制，宽度不够，就居中*/
.message .content-adds a[a-type="img"]{
    line-height: 0;
    font-size: 0;
    display: inline-block;
    position: relative;
    margin: 0px auto;
    width: 100%;/*由于在p设置了首行缩进2em，这里就需要设置图片a两头都有缩进，好看点*/
  }
  /*为了手机端好看，这里只能放长条形图片广告*/
  .message .content-adds a[a-type="img"]>img{
    width: 100%;/*由于上级a设置了最大宽度，这里就不两段缩进了*/
  }
  .message .content-adds a[a-type="img"]::after{
    background: url(/plugin/44886_theme_new/img/a_img_out.png) no-repeat center;
    background-size: contain;
    content: ' ';
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }