/* 录像回放的内容 */
.xu-video {
    width: 100%;
    padding: 18px 10px 0px;
    box-sizing: border-box;
}

.xu-video-item {
    width: 100%;
    display: flex;
    border-bottom: 1.8px dashed #742B36;
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 6px;
}

.xu-video-item__text {
    width: 90%;
    font-size: 15px;
    font-weight: bold;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xu-video-item__text::before{
    position: relative;
    top: -2px;
    content: ".";
    font-size: 22px;
    color: #fff;
}

.xu-video-item__img{
    display: block;
    width: 26px;
    height: 26px;
    object-fit: cover;
}