/* 浅色工作台顶栏：与设计稿 HTML 一致 rgba(255,255,255,0.04) + blur(65.28px)，底为 #F1F1FF */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(65.28px);
  -webkit-backdrop-filter: blur(65.28px);
  height: auto;
  padding: 0 !important;
}
.header .header-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 16px 0 24px;
  /* 设计稿浅色-首页：轨道 #DFE5FA、边 #CDD4EE、选中块 #8989F6，未选文字 #8F9AA9 */
}
.header .header-container .logo-center {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}
.header .header-container .logo-center .logo-text {
  display: flex;
  align-items: center;
}
.header .header-container .logo-center img {
  width: 36px !important;
  height: 22px !important;
  max-width: 36px;
  max-height: 22px;
  flex-shrink: 0;
  /* 防止被 flex 容器拉伸变形 */
  object-fit: contain;
}
.header .header-container .logo-center .header-logo-text {
  margin-left: 6px;
  color: #5959f4;
  font-family: 'Alibaba PuHuiTi 2.0', 'PingFang SC', sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
  letter-spacing: normal;
  white-space: nowrap;
  flex-shrink: 0;
}
.header .header-container .logo-center h1 {
  color: #5656f7;
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.header .header-container .header-menu {
  border-bottom: none;
  background: transparent;
  min-width: 0;
}
.header .header-container .header-menu .ant-menu-item {
  color: #111111;
  display: flex;
  align-items: center;
  background: transparent;
  width: 0;
  min-width: 0;
  padding: 0;
  overflow: hidden;
}
.header .header-container .header-menu .ant-menu-item.ant-menu-item-selected {
  color: #111111;
}
.header .header-container .header-menu .ant-menu-item::after {
  display: none;
}
.header .header-container .header-menu .ant-menu-item .anticon {
  margin-right: 8px;
}
.header .header-container .header-menu .header-workbench-title {
  display: block;
  width: 125px !important;
  height: 22px !important;
  max-width: 125px;
  max-height: 22px;
  object-fit: contain;
}
.header .header-container .header-right {
  display: flex;
  align-items: center;
  gap: 39px;
}
.header .header-container .theme-switcher {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border-radius: 6px;
  background: #dfe5fa;
  border: 1px solid #cdd4ee;
  box-sizing: border-box;
}
.header .header-container .theme-switcher__option {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 3px 14px;
  font-size: 12px;
  line-height: 18px;
  border-radius: 4px;
  color: #8f9aa9;
  transition: background-color 0.2s, color 0.2s;
}
.header .header-container .theme-switcher__option:hover {
  color: #5656f7;
}
.header .header-container .theme-switcher__option.is-active {
  background: #8989f6;
  color: #ffffff;
  font-weight: 500;
  margin: -3px -1px -3px -3px;
  padding: 6px 16px;
  border-radius: 6px;
}
.header .header-container .auth-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .header-container .auth-buttons .login-btn,
.header .header-container .auth-buttons .register-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0.88px;
  color: #2b313c;
  padding: 0;
}
.header .header-container .auth-buttons .login-btn:hover,
.header .header-container .auth-buttons .register-btn:hover {
  opacity: 0.8;
}
.header .header-container .auth-buttons .divider {
  font-size: 14px;
  color: #2b313c;
  margin: 0 4px;
}
.header .header-container .user-area {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.header .header-container .user-area:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.header .header-container .user-area .user-identity {
  display: flex;
  align-items: center;
}
.header .header-container .user-area .ant-avatar {
  width: 28px;
  height: 28px;
  border: 1px solid #ffffff;
  box-sizing: content-box;
}
.header .header-container .user-area .username {
  margin-left: 6px;
  margin-right: 16px;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.65);
  letter-spacing: normal;
}
.header .header-container .user-area .dropdown-icon {
  width: 8px;
  height: 5px;
  object-fit: contain;
  transition: transform 0.2s;
}
.header .header-container .user-area:hover .dropdown-icon {
  transform: translateY(-2.5px) rotate(180deg);
}
[data-theme='dark'] .header {
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.04);
  background: #131517;
  border-bottom: 1px solid #191a20;
}
[data-theme='dark'] .header .header-container .logo-center .header-logo-text {
  color: #ffffff;
  font-family: 'Alibaba PuHuiTi 2.0', 'PingFang SC', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
  letter-spacing: normal;
}
[data-theme='dark'] .header .header-container .logo-center h1 {
  color: #ffffff;
}
[data-theme='dark'] .header .header-container .header-menu {
  background: transparent;
}
[data-theme='dark'] .header .header-container .header-menu .ant-menu-item {
  color: #b8b3d9;
  background: transparent;
}
[data-theme='dark'] .header .header-container .header-menu .ant-menu-item.ant-menu-item-selected {
  color: #ffffff;
}
[data-theme='dark'] .header .header-container .header-menu .ant-menu-item:hover {
  color: #ffffff;
}
[data-theme='dark'] .header .header-container .theme-switcher {
  background: #151624;
  box-sizing: border-box;
  border: 1px solid #292a44;
  overflow: hidden;
}
[data-theme='dark'] .header .header-container .theme-switcher__option {
  font-family: 'Alibaba PuHuiTi 2.0', 'PingFang SC', sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 22px;
  text-align: center;
  letter-spacing: normal;
  background: #151624;
  color: #8387a2;
}
[data-theme='dark'] .header .header-container .theme-switcher__option:hover {
  color: #ffffff;
}
[data-theme='dark'] .header .header-container .theme-switcher__option.is-active {
  background: #2a2c52;
  color: #ffffff;
  margin-top: -2px;
  margin-right: -3px;
  margin-bottom: -2px;
  margin-left: -1px;
  padding-right: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 16px;
  border-radius: 6px;
  box-shadow: none;
}
[data-theme='dark'] .header .header-container .auth-buttons .login-btn,
[data-theme='dark'] .header .header-container .auth-buttons .register-btn {
  color: #ffffff;
}
[data-theme='dark'] .header .header-container .auth-buttons .divider {
  color: rgba(255, 255, 255, 0.45);
}
[data-theme='dark'] .header .header-container .user-area:hover {
  background-color: rgba(255, 255, 255, 0.06);
}
[data-theme='dark'] .header .header-container .user-area .username {
  color: #ffffff;
}
.user-dropdown .ant-dropdown-menu {
  min-width: 280px;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.user-dropdown .ant-dropdown-menu .user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.user-dropdown .ant-dropdown-menu .user-profile .user-info {
  flex: 1;
}
.user-dropdown .ant-dropdown-menu .user-profile .user-info .user-name {
  font-size: 16px;
  font-weight: 500;
  color: #2b313c;
  margin-bottom: 4px;
}
.user-dropdown .ant-dropdown-menu .user-profile .user-info .user-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #8c8c8c;
}
.user-dropdown .ant-dropdown-menu .user-profile .user-info .user-phone .edit-icon {
  color: #5656f7;
  cursor: pointer;
  font-size: 12px;
}
.user-dropdown .ant-dropdown-menu .user-profile .user-info .user-phone .edit-icon:hover {
  color: #7575f9;
}
.user-dropdown .ant-dropdown-menu .identity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.user-dropdown .ant-dropdown-menu .identity-item .view-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #8c8c8c;
}
.user-dropdown .ant-dropdown-menu .identity-item .view-more .anticon {
  font-size: 10px;
}
.user-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
  padding: 12px 16px;
  border-radius: 4px;
}
.user-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:hover {
  background-color: #f5f5f5;
}
.user-dropdown .ant-dropdown-menu .ant-dropdown-menu-item .anticon {
  margin-right: 0px !important;
}
.user-dropdown .ant-dropdown-menu .ant-dropdown-menu-item-divider {
  margin: 8px 0;
}

.footer {
  background: linear-gradient(90deg, #5959F4 0%, #7576EA 109%);
  color: #FFFFFF;
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  transition: background 0.3s ease;
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer .footer-container .footer-content .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #FFFFFF;
  font-size: 14px;
}
.footer .footer-container .footer-content .footer-links span {
  color: #FFFFFF;
}
.footer .footer-container .footer-content .footer-links span:not(:nth-child(even)) {
  cursor: pointer;
}
.footer .footer-container .footer-content .footer-links span:not(:nth-child(even)):hover {
  text-decoration: underline;
}
.footer .footer-container .footer-content .footer-copyright {
  margin: 0;
  color: #FFFFFF;
  font-size: 14px;
}
.footer .footer-copyright-beian {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.footer .footer-copyright-beian img {
  width: 16px;
  margin-right: 5px;
}
.footer .footer-copyright-beian a {
  color: #749ae3;
  margin-right: 20px;
}
.footer .footer-copyright-beian a:last-child {
  margin-right: 0;
}

.layout {
  min-height: 100vh;
  min-width: 1200px;
}
.layout .layout-content {
  margin-top: 56px;
  padding: 0;
  min-width: 1200px;
  box-sizing: border-box;
}
[data-theme='dark'] .layout {
  background: #131517;
}
[data-theme='dark'] .layout .layout-content {
  background: #131517;
}

/* 展开外框 228px（215.5 色带 + 药丸溢出）；折叠外框 79px（12+40+15+12，线与药丸同步右移） */
.side-navigation {
  width: 228px;
  min-width: 228px;
  height: auto;
  align-self: stretch;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  overflow: visible;
  /* ① 整列上下 8，与稿一致；勿与 ② 合并删掉其一 */
  padding: 8px 0;
  box-sizing: border-box;
  /* ant-menu 子菜单标题：透明背景 */
  /* 215.5px：实际菜单与底色区域，分割线在此右缘 */
  /* === 分组标题（"总览" / "基础服务"） === */
  /* 设计稿：208×36, padding-left:24, 12/20 PingFang #00000073 */
  /* === 分组分隔线 === */
  /* 收起按钮：相对 &-content 定位；首行因 ② padding-top 下移 8px，故 top 先加 8px 再相对 40px 行高居中 */
  /* === 折叠态：外框 79px（12+40+15+12），分割线与药丸相对展开态整体右移，保留触发右→线前 15 空档 */
  /* === Menu 菜单 === */
}
.side-navigation .ant-menu-submenu-title {
  background-color: transparent !important;
  margin: 0 !important;
}
.side-navigation .ant-menu-submenu-title:hover {
  background-color: rgba(86, 86, 247, 0.06) !important;
}
.side-navigation-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 215.5px;
  min-height: 0;
  align-self: stretch;
  position: relative;
  /* 折叠钮绝对定位相对本区域 */
  box-sizing: border-box;
  transition: width 0.3s ease, min-height 0.3s ease;
  overflow: visible;
  /* 药丸一半压在主区，勿裁切 */
  /* 设计稿 HTML：侧栏色带 216×… rgba(255,255,255,0.04) + blur(65.28px)，叠在 #F1F1FF 上 */
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(65.28px);
  -webkit-backdrop-filter: blur(65.28px);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  /* ② 毛玻璃顶 → 首项 8px（相对 .side-navigation 外层 ① 是第二层） */
  padding-top: 8px;
}
.side-navigation .side-navigation-group-title {
  height: 36px;
  padding: 8px 0 0 39px;
  /* 15（侧栏水平内边距语义）+ 24 原稿分组缩进 */
  color: rgba(0, 0, 0, 0.45);
  font-family: 'PingFang SC', sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  user-select: none;
}
.side-navigation .side-navigation-divider {
  width: 155.5px;
  /* 约等于内槽宽，避免溢出 15 边距 */
  height: 1px;
  margin: 8px auto;
  /* 居中 */
  background: rgba(0, 0, 0, 0.06);
  border: none;
}
.side-navigation .side-navigation-collapse {
  width: 24px;
  height: 19.56px;
  position: absolute;
  left: calc(100% - 12px);
  right: auto;
  top: calc(8px + (40px - 19.56px) / 2);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  /* 药丸形状 */
  background: #ffffff;
  /* 白色背景 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: left 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.side-navigation .side-navigation-collapse:hover {
  background: #f5f5ff;
  box-shadow: 0 2px 8px rgba(86, 86, 247, 0.15);
}
.side-navigation .side-navigation-collapse .anticon {
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
}
.side-navigation.collapsed {
  width: 79px !important;
  min-width: 79px !important;
  transition: width 0.3s ease, min-width 0.3s ease;
}
.side-navigation.collapsed .ant-menu-item-group-title {
  display: none !important;
}
.side-navigation.collapsed .ant-menu-item-divider {
  display: none !important;
}
.side-navigation.collapsed .side-navigation-content {
  width: 79px !important;
}
.side-navigation.collapsed .side-navigation-menu {
  width: 79px !important;
  padding: 0 12px !important;
  margin-top: 0 !important;
}
.side-navigation.collapsed .ant-menu {
  border-right: none !important;
  border-inline-end: none !important;
}
.side-navigation .side-navigation-menu {
  border: none;
  background: transparent;
  width: 215.5px;
  flex: 0 0 auto;
  align-self: stretch;
  /* 左 15 = 触发条距屏；右 15 = 触发条右缘距折叠钮左缘；内槽 185.5 */
  padding: 0 15px !important;
  box-sizing: border-box;
  margin: 0 !important;
  /* 覆盖 antd Menu 默认负 margin，避免把首项「吸」到顶 */
  /* === 普通菜单项：与触发态保持一致，174×40 === */
  /* === 高亮态：174×40；右缘 15+ 药丸一半(12) → 药丸中心落在 content 右缘（分割线）=== */
  /* 子菜单标题样式（含子项的"账单管理"） */
  /* 分组标题（antd type:'group' 的样式覆盖） */
  /* 分隔线（antd type:'divider' 的样式覆盖） */
  /* === 收起态：ul 拉满 content（79），左右 12 → 内槽 55 放 40 宽图标；触发右 52 到分割线 79 空 15 + 药丸左半 12 */
}
.side-navigation .side-navigation-menu .ant-menu-item {
  height: 40px !important;
  line-height: 40px !important;
  width: 174px !important;
  min-width: 174px !important;
  max-width: 174px !important;
  /* 屏左 15 + 左内边距 9 → 图标区约 24px 与设计稿对齐 */
  padding: 0 14px 0 9px !important;
  margin: 0 0 4px 0 !important;
  color: #737583;
  font-family: 'PingFang SC', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  border-radius: 6px;
  transition: all 0.2s ease;
  /* 图标 ↔ 文字间距，让文字落到 left:48
         图标 left:24, 图标宽 16, 加 8 间距 = left:48 ✓ */
  /* hover 态：浅紫底 + 品牌紫文字/图标，active 再升级为紫底白字 */
}
.side-navigation .side-navigation-menu .ant-menu-item .ant-menu-title-content {
  margin-inline-start: 8px;
}
.side-navigation .side-navigation-menu .ant-menu-item .ant-menu-item-icon {
  font-size: 16px;
  color: #737583;
}
.side-navigation .side-navigation-menu .ant-menu-item img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(7%) saturate(441%) hue-rotate(192deg) brightness(96%) contrast(88%) !important;
}
.side-navigation .side-navigation-menu .ant-menu-item:hover {
  background: rgba(86, 86, 247, 0.06) !important;
  color: #5656f7 !important;
}
.side-navigation .side-navigation-menu .ant-menu-item:hover .anticon,
.side-navigation .side-navigation-menu .ant-menu-item:hover .ant-menu-item-icon {
  color: #5656f7 !important;
}
.side-navigation .side-navigation-menu .ant-menu-item:hover img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(68%) saturate(1720%) hue-rotate(222deg) brightness(101%) contrast(94%) !important;
}
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected,
.side-navigation .side-navigation-menu .ant-menu-item-selected {
  width: 174px !important;
  min-width: 174px !important;
  max-width: 174px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  background-color: #5656f7 !important;
  background-image: none !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  backdrop-filter: blur(65.28px);
  -webkit-backdrop-filter: blur(65.28px);
  isolation: isolate;
  /* 让 SVG 图标在选中态变白色 */
}
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected::before,
.side-navigation .side-navigation-menu .ant-menu-item-selected::before,
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected::after,
.side-navigation .side-navigation-menu .ant-menu-item-selected::after {
  display: none !important;
}
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected:hover,
.side-navigation .side-navigation-menu .ant-menu-item-selected:hover,
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected:focus,
.side-navigation .side-navigation-menu .ant-menu-item-selected:focus,
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected:active,
.side-navigation .side-navigation-menu .ant-menu-item-selected:active {
  background-color: #5656f7 !important;
  background-image: none !important;
  color: #ffffff !important;
  backdrop-filter: blur(65.28px);
  -webkit-backdrop-filter: blur(65.28px);
}
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected .ant-menu-title-content,
.side-navigation .side-navigation-menu .ant-menu-item-selected .ant-menu-title-content,
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected .anticon,
.side-navigation .side-navigation-menu .ant-menu-item-selected .anticon,
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected .ant-menu-item-icon,
.side-navigation .side-navigation-menu .ant-menu-item-selected .ant-menu-item-icon {
  color: #ffffff !important;
}
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected .ant-menu-title-content,
.side-navigation .side-navigation-menu .ant-menu-item-selected .ant-menu-title-content {
  font-family: 'PingFang SC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: normal;
}
.side-navigation .side-navigation-menu.ant-menu .ant-menu-item.ant-menu-item-selected img,
.side-navigation .side-navigation-menu .ant-menu-item-selected img {
  filter: brightness(0) invert(1) !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu {
  margin: 0 0 4px 0 !important;
  /* 子菜单展开后的子项也对齐 */
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-submenu-title {
  height: 40px !important;
  line-height: 40px !important;
  width: 174px !important;
  min-width: 174px !important;
  max-width: 174px !important;
  padding: 0 14px 0 9px !important;
  margin: 0 !important;
  color: #737583 !important;
  font-size: 14px !important;
  border-radius: 6px;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-submenu-title .ant-menu-title-content {
  margin-inline-start: 8px;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-submenu-title .ant-menu-item-icon,
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-submenu-title .anticon {
  color: #737583 !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-submenu-title img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(7%) saturate(441%) hue-rotate(192deg) brightness(96%) contrast(88%) !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-submenu-title:hover {
  background: rgba(86, 86, 247, 0.06) !important;
  color: #5656f7 !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-submenu-title:hover .ant-menu-item-icon,
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-submenu-title:hover .anticon {
  color: #5656f7 !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-submenu-title:hover img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(68%) saturate(1720%) hue-rotate(222deg) brightness(101%) contrast(94%) !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-sub {
  background: transparent !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-sub .ant-menu-item {
  padding-left: 48px !important;
  /* 子项缩进，对齐父项文字位置 */
  color: #737583 !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-sub .ant-menu-item.ant-menu-item-selected {
  background-color: #5656f7 !important;
  color: #ffffff !important;
  border-radius: 6px !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-sub .ant-menu-item.ant-menu-item-selected .anticon,
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-sub .ant-menu-item.ant-menu-item-selected .ant-menu-item-icon {
  color: #ffffff !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-sub .ant-menu-item.ant-menu-item-selected .ant-menu-title-content {
  font-family: 'PingFang SC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: normal;
  color: #ffffff !important;
}
.side-navigation .side-navigation-menu .ant-menu-submenu .ant-menu-sub .ant-menu-item.ant-menu-item-selected img {
  filter: brightness(0) invert(1) !important;
}
.side-navigation .side-navigation-menu .ant-menu-item-group .ant-menu-item-group-title {
  height: 36px;
  padding: 8px 0 0 39px;
  color: rgba(0, 0, 0, 0.45);
  font-family: 'PingFang SC', sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}
.side-navigation .side-navigation-menu .ant-menu-item-group .ant-menu-item-group-list .ant-menu-item {
  margin-left: 0 !important;
}
.side-navigation .side-navigation-menu .ant-menu-item-divider {
  width: 155.5px;
  height: 1px;
  margin: 8px auto;
  background: rgba(0, 0, 0, 0.06);
  border: none;
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 12px !important;
  box-sizing: border-box !important;
  margin-block: 0 !important;
  border: none !important;
  border-inline-end: none !important;
  /* 清除 antd Menu 容器的边框装饰条 */
  /* === Submenu 外层容器（如「账单管理」）===
         必须先控制外层容器，再控制内部 title，否则 height 会被默认 40px 顶到下方 */
  /* === 折叠态高亮：必须与展开态同优先级覆盖 208px，否则选中项仍 208px 宽会撑破侧栏 === */
  /* 折叠态：子路由命中时父级图标应与一级选中态一致（antd 只加 submenu-selected，不自动紫底） */
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed::before,
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed::after {
  display: none !important;
  content: none !important;
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-submenu {
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
  /* 清除 submenu 容器的额外间距 */
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-submenu > .ant-menu-submenu-title {
  height: 40px !important;
  line-height: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-item,
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-submenu-title {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  padding: 0 !important;
  margin: 0 0 4px 0 !important;
  text-align: center !important;
  border-radius: 6px !important;
  box-sizing: border-box !important;
  position: relative;
  overflow: hidden;
  /* 清除 antd item 的色条 */
  /* 折叠时隐藏文字 */
  /* 限制 img 元素本身的尺寸 */
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-item::before,
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-submenu-title::before,
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-item::after,
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-submenu-title::after {
  display: none !important;
  content: none !important;
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-item .ant-menu-title-content,
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-submenu-title .ant-menu-title-content {
  display: none !important;
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-item img,
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-submenu-title img {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  object-fit: contain;
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-item.ant-menu-item-selected {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  background: #5656f7 !important;
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-item.ant-menu-item-selected::before,
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-item.ant-menu-item-selected::after {
  display: none !important;
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-item.ant-menu-item-selected img {
  filter: brightness(0) invert(1);
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-submenu-selected > .ant-menu-submenu-title {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  background: #5656f7 !important;
  color: #ffffff !important;
  backdrop-filter: blur(65.28px);
  -webkit-backdrop-filter: blur(65.28px);
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-submenu-selected > .ant-menu-submenu-title img {
  filter: brightness(0) invert(1) !important;
}
.side-navigation .side-navigation-menu.ant-menu-inline-collapsed .ant-menu-submenu .ant-menu-submenu-arrow {
  display: none !important;
}
/* 折叠态子菜单浮层挂在 body，与侧栏内选中条同色 */
.side-navigation-submenu-popup.ant-menu-submenu-popup .ant-menu-item.ant-menu-item-selected {
  background-color: #5656f7 !important;
  color: #ffffff !important;
  border-radius: 6px !important;
}
.side-navigation-submenu-popup.ant-menu-submenu-popup .ant-menu-item.ant-menu-item-selected img {
  filter: brightness(0) invert(1) !important;
}
[data-theme='dark'] .side-navigation-submenu-popup.ant-menu-submenu-popup .ant-menu-item.ant-menu-item-selected {
  background-color: #5656f7 !important;
  color: #ffffff !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation {
  background: transparent;
  border: none;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation-content {
  background: #131517;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation-content .ant-menu-inline-collapsed .ant-menu-item-selected {
  background: #5656f7 !important;
  color: #ffffff !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation-content .ant-menu-inline-collapsed .ant-menu-item-selected img {
  filter: brightness(0) invert(1) !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation-content .ant-menu-inline-collapsed .ant-menu-submenu-selected > .ant-menu-submenu-title {
  background: #5656f7 !important;
  color: #ffffff !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation-content .ant-menu-inline-collapsed .ant-menu-submenu-selected > .ant-menu-submenu-title img {
  filter: brightness(0) invert(1) !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .ant-menu-submenu-title {
  color: #737583 !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .ant-menu-submenu-title:hover {
  background-color: rgba(255, 255, 255, 0.04) !important;
  color: #5656f7 !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .ant-menu-submenu-title:hover .anticon,
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .ant-menu-submenu-title:hover .ant-menu-item-icon {
  color: #5656f7 !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .ant-menu-submenu-title:hover img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(68%) saturate(1720%) hue-rotate(222deg) brightness(101%) contrast(94%) !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .ant-menu-submenu-title .anticon {
  color: #737583 !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .ant-menu-submenu-title img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(7%) saturate(441%) hue-rotate(192deg) brightness(96%) contrast(88%) !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-header .logo .logo-text {
  color: #ffffff;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-collapse {
  background: #1c1c24;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-collapse .anticon {
  color: #737583;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item {
  color: #737583;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(7%) saturate(441%) hue-rotate(192deg) brightness(96%) contrast(88%) !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #5656f7;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item:hover .anticon,
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item:hover .ant-menu-item-icon {
  color: #5656f7;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item:hover img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(68%) saturate(1720%) hue-rotate(222deg) brightness(101%) contrast(94%) !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item.ant-menu-item-selected {
  background: #5656f7 !important;
  color: #ffffff !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item.ant-menu-item-selected:hover {
  color: #ffffff !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item.ant-menu-item-selected .anticon {
  color: #ffffff !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item.ant-menu-item-selected .ant-menu-title-content {
  font-family: 'PingFang SC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: normal;
  color: #ffffff !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item.ant-menu-item-selected img {
  filter: brightness(0) invert(1) !important;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .side-navigation .side-navigation-menu .ant-menu-item .anticon {
  color: #737583;
}

.app {
  min-height: 100vh;
  /* 全局背景：设计稿规范浅紫色，与侧边栏融为一体 */
  background-color: #f1f1ff;
}
[data-theme='dark'] .app {
  background-color: #131517;
}

.app-side-nav-layout {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: calc(100vh - 112px);
  box-sizing: border-box;
  /* 整个布局容器使用设计稿规范的 #F1F1FF 浅紫底，侧边栏透明就能透出此色 */
  background: #f1f1ff;
  background-repeat: no-repeat;
  position: relative;
  /* 侧栏总宽由组件自身控制：展开 228px（含药丸溢出区）、折叠 79px（12+40+15+药丸半宽） */
}
.app-side-nav-layout > .side-navigation {
  width: auto;
  min-width: 0;
  flex-shrink: 0;
  align-self: stretch;
  /* 撑满全高，让分割线贯穿到底 */
  /* 背景由 SideNavigation 自身提供（浅紫条 #eaebf9），与设计稿侧栏区分于主内容区 */
  background: transparent;
  /* 关键：创建独立的堆叠上下文，隔离主区内各卡片上可能出现的 backdrop-filter，
       否则易模糊侧边栏高亮按钮，让 #5656F7 显示成浅紫色 */
  position: relative;
  z-index: 10;
  isolation: isolate;
  /* 勿用 translateZ(0)：与侧栏 backdrop-filter 叠层时，易让顶部 padding 视觉上像被「首页」贴没 */
}
.app-side-nav-layout .main-content {
  flex: 1;
  /* 自适应剩余宽度，避免右侧空白 */
  min-width: 0;
  /* 防止内容溢出撑爆容器 */
  overflow-x: auto;
  /* 视口窄于内容最小宽时，主内容区横向滚动兜底 */
  display: flex;
  flex-direction: column;
  background: transparent;
  /* 也透明，让外层 #f1f1ff 透出，统一基调 */
  min-height: calc(100vh - 148px);
  /* 与侧栏隔离堆叠，减轻首页毛玻璃 backdrop-filter 对左侧选中的采样 */
  isolation: isolate;
  position: relative;
  z-index: 0;
}
.app-side-nav-layout:has(.user-center) {
  background-image: url(https://cdn.aigcprotect.com/1.1.8/images/user-center-bg.61a4b9fe12050ea6cbb1.png);
  background-size: 100% auto;
  background-position: left 0 top -56px;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) {
  background: #131517;
}
[data-theme='dark'] .app-side-nav-layout:has(.user-center) .main-content {
  background: #131517;
}

/* stylelint-disable */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@-ms-viewport {
  width: device-width;
}
body {
  margin: 0;
}
[tabindex='-1']:focus {
  outline: none;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  text-align: left;
  caption-side: bottom;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
mark {
  padding: 0.2em;
  background-color: #feffe6;
}

.reveal {
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-0.6rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(0.8rem);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.reveal-fade.revealed {
  opacity: 1;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(0.3rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.reveal-up-slow {
  opacity: 0;
  transform: translateY(0.8rem);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up-slow.revealed {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.35s;
}
.delay-4 {
  transition-delay: 0.5s;
}
.delay-5 {
  transition-delay: 0.65s;
}
.delay-6 {
  transition-delay: 0.8s;
}
.delay-7 {
  transition-delay: 0.95s;
}
.delay-8 {
  transition-delay: 1.1s;
}
.delay-9 {
  transition-delay: 1.25s;
}
.delay-10 {
  transition-delay: 1.4s;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}
#root {
  height: 100%;
}
:root {
  --primary-color: #5656f7;
  --success-color: #52c41a;
  --warning-color: #faad14;
  --error-color: #f5222d;
  --text-color: #333;
  --text-color-secondary: #666;
  --border-color: #d9d9d9;
  --background-color: #f5f5f5;
}
.home-contact-tooltip .ant-tooltip-inner {
  width: 244px !important;
  min-height: 146px !important;
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  box-shadow: 0px 0px 10px 0px #C0CAD8 !important;
  padding: 20px !important;
  border-radius: 8px !important;
  color: inherit !important;
}
.home-contact-tooltip .ant-tooltip-arrow .ant-tooltip-arrow-content {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}
.home-contact-tooltip .ant-tooltip-arrow::before {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}
.home-contact-tooltip .ant-tooltip-arrow::after {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}
.home-contact-tooltip .ant-tooltip-inner {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}
.home-contact-tooltip .ant-tooltip-arrow-content {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}
.home-contact-tooltip .ant-tooltip-inner[style] {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}
.contact-content {
  width: 100% !important;
  height: 100% !important;
}
.contact-content .contact-item {
  margin-bottom: 16px !important;
}
.contact-content .contact-item:last-child {
  margin-bottom: 0 !important;
}
.contact-content .contact-item .contact-label {
  color: #AAB3C0 !important;
  font-size: 14px !important;
  line-height: 14px !important;
  margin-bottom: 8px !important;
}
.contact-content .contact-item .contact-value {
  color: #2B313C !important;
  font-size: 16px !important;
  line-height: 16px !important;
}
.offline-content .offline-description {
  color: #AAB3C0;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}
.offline-content .offline-item {
  display: flex !important;
  gap: 0px !important;
  margin-bottom: 14px;
}
.offline-content .offline-item .offline-label {
  color: #2B313C !important;
  font-size: 16px !important;
  line-height: 16px !important;
  white-space: nowrap !important;
}
.offline-content .offline-item .offline-value {
  color: #2B313C !important;
  font-size: 16px !important;
  line-height: 16px !important;
}
.offline-content .offline-item .offline-qrcode img {
  width: 132px !important;
  height: 132px !important;
  display: block !important;
}
.ant-select-dropdown,
.ant-picker-panel-container {
  background-color: #fff !important;
}

