.danmu-content {
    margin: 10px 10px;
    height: 220px;
}
.opeate button {
    margin: 10px;
}
.screen {
    /* width: 100vw; */
    height: 100%;
    background-color: beige;
    border-radius: 10px;
}
.danmu-item {
    margin: 5px;
    overflow: hidden;
    display: inline-block;
    word-break: keep-all;
    white-space: nowrap;
}
.screen {
    will-change: 'auto';
}
.msg-box{
    display: inline-flex;
    border-radius: 100px;
    background-color: #7e7e7f;
    height: 34px;
}

.msg-box .avatar {
    margin: 2px;
    width: 30px;
    height: 30px;
    border-radius:50%;
}
    .msg-box .avatar:hover {
    cursor: pointer;
}
.msg-box div{
    color:white;
    max-width: 350px;
    padding-top: 5px;
    margin-right: 5px;
    font-size: 100%; 
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.msg-box div:hover{
    cursor:text;
    color: black;
}
.msg-box:has(div:hover){
    background-color:white;
}