.barrage {
    position: absolute;
    bottom: 70px;
    right: -500px;
    display: inline-block;
    width: 100%;
    z-index: 99
}

.barrage_box {
    background-color: #F5F5F7;
    padding-right: 8px;
    height: 40px;
    border-radius: 25px;
    transition: all .3s;
    overflow: hidden;
    display: flex;
    align-items: center;

}

.barrage_box .portrait {
    display: inline-block;
    margin-left: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.barrage_box .portrait img {
    width: 32px;
    height: 32px;
    border-radius: 50px;
    filter: blur(1px);

}

.barrage_box div.p a {
    margin-right: 2px;
    font-size: 14px;
    color: #fff;
    line-height: 40px;
    margin-left: 18px;
}

.barrage_box div.p a:hover {
    text-decoration: underline;
}

.barrage_box .close {
    visibility: hidden;
    opacity: 0;
    text-align: center;
    width: 25px;
    height: 25px;
    margin-left: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    margin-top: 8px;
}

.barrage_box:hover .close {
    visibility: visible;
    opacity: 1;
}

.barrage_box .close a {
    display: block;
}

.barrage_box .close .icon-close {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    display: inline-block;
    margin-top: 5px;
}

.barrage .z {
    height: 40px;
    display: inline-block;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;

}

.barrage a {
    text-decoration: none;
}