.cpFont {
    font-size: 24px !important
}

#btn_full {
    position: absolute;
    right: 10px;
    top: 10px;
    display: none
}

#btn_full a {
    display: block;
    line-height: 24px;
    padding: 0 10px;
    font-size: 16px;
    border-radius: 15px;
    background: rgba(107, 106, 106, 0.6);
    color: #fff
}

/*此处为每条弹幕的样式*/
#video_iframe .list {
    position: absolute;
    left: 100%;
    white-space: nowrap;
    height: 38px;
    line-height: 38px;
    font-size: 22px;
    color: #fff;
    text-shadow: 0 0 3px #000;
    -webkit-transition: -webkit-transform 25s linear;
    -moz-transition: -moz-transform 25s linear;
    -o-transition: -o-transform 25s linear;
    transition: transform 25s linear;
    z-index: 999;
}

/*此处弹幕的移动动画，使用transform不会引起页面的重绘，性能更好*/
#video_iframe .list.animate {
    -webkit-transform: translateX(-3420px);
    -moz-transform: translateX(-3420px);
    -ms-transform: translateX(-3420px);
    -o-transform: translateX(-3420px);
    transform: translateX(-4000px);
}

#video_iframe .list .content {
    display: inline-block;
    opacity: 1;
}

#video_iframe .list img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    border-radius: 50%;
    vertical-align: text-top;
}