.searchMsgBlock {
    padding: 10px 0;
    display: flex;
    background: #ffffff;
    border-bottom: 1px solid #00000020;
}

.searchMsgBlock.tip {
    font-size: 14px;
    color: #00000080;
    text-align: center;
    display: block;
}

.searchMsgBlock.tip span {
    color: #07c160;
}

.searchMsgBlock-avatar {
    display: inline-flex;
    height: 50px;
    width: 50px;
    background: antiquewhite;
    align-items: center;
    border-radius: 5px;
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid #00000020;
    filter: grayscale(50%);
    /* 兼容性 */
    -webkit-filter: grayscale(50%);
    -moz-filter: grayscale(50%);
    -ms-filter: grayscale(50%);
    -o-filter: grayscale(50%);
}

.searchMsgBlock-avatar > span {
    margin: auto;
}

.searchMsgBlock-avatar > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.searchMsgBlock-sub {
    display: flex;
    width: calc(100% - 70px);
    flex-direction: column;
    align-items: flex-start;
    line-height: 25px;
}

.searchMsgBlock-nickname {
    color: #00000080;
    font-size: 16px;
    margin-bottom: 10px;
    width: 100%;
}

.searchMsgBlock-nickname em {
    color: #00000040;
    font-size: 12px;
    float: right;
    margin-right: 10px;
}

.searchMsgBlock-msg {
    font-size: 18px;
    width: fit-content;
    border-radius: 5px;
    word-wrap: break-word; /* 在单词中间断开以防止溢出 */
    overflow-wrap: break-word; /* 同上，这是一个更现代的属性名称 */

    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 隐藏超出的部分 */
    text-overflow: ellipsis; /* 显示为省略号 */
    max-width: 100%; /* 设置最大宽度 */
    display: block; /* 设置为块级元素 */
}