#comment-danmu-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; /* 占据整个屏幕 */
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.comment-danmu-item {
    position: absolute;
    bottom: 0;
    color: white;
    font-size: 14px;
    padding: 5px 10px; /* 更小的内边距 */
    border-radius: 15px; /* 更圆的气泡 */
    opacity: 0;
    white-space: nowrap; /* 防止内容换行 */
    background-color: rgba(0, 0, 0, 0.6); /* 半透明背景 */
}
