/**
 * 用户提及系统样式
 */

/* 提及系统结果容器 */
.zf-mention-results {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    width: 250px;
    z-index: 9999;
}

/* 用户项 */
.zf-mention-user-item {
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.zf-mention-user-item:hover {
    background-color: #f7f7f7;
}

/* 激活的用户项 */
.zf-mention-active {
    background-color: #f0f7ff;
}

/* 用户项内容包装 */
.zf-mention-item-wrap {
    display: flex;
    align-items: center;
}

/* 用户头像 */
.zf-mention-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

/* 用户名 */
.zf-mention-name {
    font-size: 14px;
    color: #333;
}

/* 内容中的用户提及样式 */
a.user-mention {
    color: #3897f0;
    font-weight: 500;
    text-decoration: none;
}

a.user-mention:hover {
    text-decoration: underline;
} 