.barrage{
    width: 100%;
    position: fixed;
    top: 92px;
    right: 0;
    height: 280px;
    z-index: 50;
    overflow: hidden;
    padding: 20px 0;
    transition: all .5s;
}
.barrage:hover{
    background:rgba(0, 0, 0, 0.15);
}
.barrage .barrage-content{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.barrage span{
    position: absolute;
    top: 20px;
    white-space: nowrap;
    line-height: 0;
    padding: 15px 20px;
    font-size: 15px;
    border-radius: 12px;
    background: rgba(255, 0, 0, 0.1);
}
.barrage span.active{
    border: 1px solid #454545;
}
.barrage .send{
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding-right: 100px;
    align-items:flex-end;
}
.barrage .send input{
    padding: 0 10px;
    font-size: 14px;
    width: 600px;
    height: 40px;
    background: rgba(0,0,0,0.36);
    border: 1px solid #ffffff;
    color: #fff;
}
input::-webkit-input-placeholder{
    color:#fff;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#fff;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#fff;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
    color:#fff;
}
.barrage .send .sendBtn{
    background: #fff;
    height: 40px;
    line-height: 40px;
    color: #3171ff;
    cursor: pointer;
    width: 140px;
    text-align: center;
}
.barrage .loseBtn{
    /* position: absolute;
    right: 150px;
    bottom: 20px; */
    color: #004fff;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
}
.barrage .loseBtn i{
    font-size: 16px;
}
.close{
    position: fixed;
    bottom: 30px;
    right: 10px;
    width: 54px;
    height: 54px;
    box-shadow: 0 10px 20px #eee;
    background: #fff;
    padding-top: 8px;
    justify-content:center;
    border-radius: 5px;
    z-index: 999;
}
.close p{
    font-size: 12px;
    text-align: center;
}
@media screen and (max-width: 960px) {
    .barrageBox{
        display: none;
    }
}