/* 只隐藏公告(el-alert)内容里的 message 图标 */
.el-alert .el-alert__description i.el-icon-message{
  display: none !important;
}

/* 兜底：有些版本用伪元素渲染 */
.el-alert .el-alert__description i.el-icon-message::before{
  content: "" !important;
}

/* 只隐藏你这个公告用的 Alert（更精准） */
.el-alert.el-alert--null.is-light .el-alert__closebtn{
  display: none !important;
}

/* 可选：去掉为了 close 预留的右侧间距（看你实际效果要不要） */
.el-alert.el-alert--null.is-light{
  padding-right: 12px !important;
}


