.xun-avatar-edit-btn {
    position: absolute;
    /* 水平居中：left 50% 后向左偏移自身 50% */
    left: 50%;
    /* 垂直居中：top 50% 后向上偏移自身 50% */
    top: 50%;
    /* 核心：偏移自身的一半 */
    transform: translate(-50%, -50%);
    /* 可选：按钮自身样式 */
    width: 30%;
    height: 30%;
}

.xun-avatar-verified-badge img {
    /* 移除边框相关样式 */
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    /* 移除背景相关样式 */
    background: none !important;       /* 清除背景（最核心） */
    background-color: transparent !important; /* 背景色设为透明 */
    background-image: none !important; /* 清除背景图片 */
    background-repeat: no-repeat !important; /* 防止背景重复 */
    background-position: 0 0 !important; /* 重置背景位置 */
}