/* SR logo 去叠影：logo 已是透明底 PNG，去掉所有阴影光晕/底板/描边，直接显示图片本身
 * 覆盖三处：启动屏 .lg（蓝色光晕）、侧栏 .sidebar .logo-img（圆角阴影板）、登录页 .login-logo（蓝色发光）
 * 选择器用 html body + 类名双写，特异性 ≥ (0,2,2)，压过 srx-design 的 .sidebar .logo-img (0,2,0) !important
 * 必须加载在所有设计 CSS 之后（index.html 中置于最后）
 */
html body img.lg,
html body .lg.lg,
html body .logo-img.logo-img,
html body .sidebar .logo-img,
html body .login-logo.login-logo,
html body .menu__logo img,
html body img[class*="logo"] {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  outline: none !important;
  border-radius: 0 !important;
}
