
/* 隐藏原始按钮文本 */
.swal2-cancel.swal2-styled {
    position: relative;
    overflow: hidden; /* 防止伪元素超出按钮范围 */
}

/* 使用伪元素覆盖按钮文本 */
.swal2-cancel.swal2-styled::after {
    content: '取消';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* 防止伪元素影响点击 */
    background-color: white; /* 与按钮背景颜色一致 */
    color: black; /* 设置文本颜色 */
    font-size: 16px; /* 设置字体大小 */
}


/*------------仪表盘信息隐藏----------------*/

/* 隐藏个人信息提示 */
.user-registration-myaccount-notice-box {
    display: none !important;
}

