@charset "UTF-8";
._message_1n2ei_2 {
  padding: 10px 16px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  width: fit-content;
  max-width: 400px;
  min-width: auto;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: #333;
  z-index: 9999;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

._messageIcon_1n2ei_22 {
  margin-right: 8px;
  font-size: 14px;
  line-height: 1;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

._messageContent_1n2ei_35 {
  flex-grow: 1;
  font-size: 13px;
  word-break: break-word;
  line-height: 1.3;
}

._messageSuccess_1n2ei_42 {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
  border: 1px solid rgba(76, 175, 80, 0.2);
}
._messageSuccess_1n2ei_42 ._messageIcon_1n2ei_22 {
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.1);
}

._messageError_1n2ei_51 {
  background: linear-gradient(135deg, #ffeaea 0%, #fff0f0 100%);
  border: 1px solid rgba(244, 67, 54, 0.2);
}
._messageError_1n2ei_51 ._messageIcon_1n2ei_22 {
  color: #c62828;
  background: rgba(198, 40, 40, 0.1);
}

._messageInfo_1n2ei_60 {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
  border: 1px solid rgba(33, 150, 243, 0.2);
}
._messageInfo_1n2ei_60 ._messageIcon_1n2ei_22 {
  color: #1565c0;
  background: rgba(21, 101, 192, 0.1);
}

/* 暗黑模式样式 */
.dark ._message_1n2ei_2 {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.95) 0%, rgba(48, 48, 48, 0.95) 100%);
  color: #e0e0e0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.dark ._messageContent_1n2ei_35 {
  color: #e0e0e0;
}
.dark ._messageSuccess_1n2ei_42 {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.15) 0%, rgba(56, 142, 60, 0.1) 100%);
  border: 1px solid rgba(76, 175, 80, 0.2);
}
.dark ._messageSuccess_1n2ei_42 ._messageIcon_1n2ei_22 {
  color: #81c784;
  background: rgba(129, 199, 132, 0.15);
}
.dark ._messageError_1n2ei_51 {
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.15) 0%, rgba(211, 47, 47, 0.1) 100%);
  border: 1px solid rgba(244, 67, 54, 0.2);
}
.dark ._messageError_1n2ei_51 ._messageIcon_1n2ei_22 {
  color: #e57373;
  background: rgba(229, 115, 115, 0.15);
}
.dark ._messageInfo_1n2ei_60 {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.15) 0%, rgba(30, 136, 229, 0.1) 100%);
  border: 1px solid rgba(33, 150, 243, 0.2);
}
.dark ._messageInfo_1n2ei_60 ._messageIcon_1n2ei_22 {
  color: #64b5f6;
  background: rgba(100, 181, 246, 0.15);
}
/* src/components/Sidebar.module.scss */
/* 气泡卡片样式优化 */
._sidebar-popover_ryvx0_4 {
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 160px;
  z-index: 1001;
  pointer-events: auto;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 12px;
  /* 确保与菜单项无间隙 */
}

/* 添加小尖角 */
._sidebar-popover_ryvx0_4::before {
  content: "";
  position: absolute;
  left: -8px;
  /* 调整尖角的位置 */
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid white;
  /* 尖角的颜色与气泡卡片背景色一致 */
}

._popover-content_ryvx0_36 {
  position: relative;
}

._popover-title_ryvx0_40 {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
}

._popover-title_ryvx0_40._with-divider_ryvx0_46 {
  border-bottom: 1px solid #f0f0f0;
  /* 条件性显示分隔线 */
}

._popover-item_ryvx0_51 {
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

._popover-item_ryvx0_51:hover {
  background: #efefef;
}

/* 用户菜单样式 */
._user-menu-popover_ryvx0_62 {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 4px 0;
  min-width: 140px;
  z-index: 1002;
  pointer-events: auto;
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

._user-menu-popover_ryvx0_62::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid white;
}

._user-menu-popover_ryvx0_62::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid rgba(0, 0, 0, 0.08);
}

._user-menu_ryvx0_62 {
  position: relative;
  padding-top: 5px;
}

._user-menu-item_ryvx0_105 {
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 13px;
  border-radius: 4px;
  margin: 2px 4px;
}

._user-menu-item_ryvx0_105:hover {
  background: #f0f2f5;
  color: #1a73e8;
}

._user-menu-icon_ryvx0_123 {
  font-size: 14px;
  color: #666;
  width: 16px;
  height: 16px;
}

._user-menu-item_ryvx0_105:hover ._user-menu-icon_ryvx0_123 {
  color: #1a73e8;
}

/* 侧边栏基础样式 */
._sidebar_ryvx0_4 {
  --sidebar-width: 250px;
  --collapsed-width: 80px;
  --transition-speed: 0.3s;
  --submenu-indent: 50px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: var(--sidebar-width);
  transition: width var(--transition-speed) ease;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  filter: "blur(7px)";
  /* backdrop-filter: blur(7px); */
}

/* -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background: linear-gradient(180deg, hsla(0, 0%, 100%, .22), hsla(0, 0%, 100%, .65));
  border-radius: 16px;
  bottom: 0;
  box-shadow: inset 0 0 6px 0 hsla(0, 0%, 100%, .3); */
._sidebar_ryvx0_4 ._nav-link-wrapper_ryvx0_159._active_ryvx0_159 {
  color: #2354f4;
  font-weight: 500;
}

._sidebar_ryvx0_4 ._nav-link-wrapper_ryvx0_159._exact-active_ryvx0_164 {
  background: #eaf2fe;
  border-radius: 8px;
}

._sidebar_ryvx0_4 ._submenu_ryvx0_169 ._nav-link-wrapper_ryvx0_159._active_ryvx0_159 {
  background: #eaf2fe;
}

._sidebar_ryvx0_4._collapsed_ryvx0_173 {
  width: var(--collapsed-width);
}

._sidebar-content_ryvx0_177 {
  padding: 20px 12px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* 用户区域样式 */
._user-section_ryvx0_187 {
  display: flex;
  align-items: center;
  padding: 15px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

._user-avatar_ryvx0_196 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #2254f4;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

._avatar-image_ryvx0_207 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

._avatar-placeholder_ryvx0_213 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

._avatar-icon_ryvx0_222 {
  color: white;
  font-size: 24px;
}

._user-info_ryvx0_227 {
  margin-left: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

._user-name_ryvx0_235 {
  font-weight: 600;
  color: #2b2d42;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._logout-btn_ryvx0_244 {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

._logout-btn_ryvx0_244:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

/* 折叠状态下的用户区域 */
._sidebar_ryvx0_4._collapsed_ryvx0_173 ._user-section_ryvx0_187 {
  justify-content: center;
  padding: 15px 0;
}

._sidebar_ryvx0_4._collapsed_ryvx0_173 ._user-avatar_ryvx0_196 {
  width: 40px;
  height: 40px;
}

._sidebar_ryvx0_4._collapsed_ryvx0_173 ._user-info_ryvx0_227 {
  display: none;
}

._sidebar_ryvx0_4 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

._sidebar_ryvx0_4 li {
  margin: 10px 0;
  position: relative;
}

._sidebar_ryvx0_4 a,
._nav-link-wrapper_ryvx0_159 {
  color: #333;
  text-decoration: none;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  overflow: hidden;
  cursor: pointer;
}

._sidebar_ryvx0_4 a:hover,
._nav-link-wrapper_ryvx0_159:hover {
  background-color: #eaf2fe;
  color: #333;
}

._sidebar_ryvx0_4 a._active_ryvx0_159 {
  background: #efefef;
  color: #2354f4;
  font-weight: 500;
}

._nav-icon_ryvx0_315 {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 固定图标容器的宽度和位置 */
._nav-icon-container_ryvx0_329 {
  min-width: 40px;
  /* 固定宽度 */
  padding: 0 8px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* 防止图标容器被压缩 */
}

/* 文本容器样式 */
._nav-text-container_ryvx0_342 {
  overflow: hidden;
  transition: opacity 0.3s ease;
  margin-left: 12px;
  white-space: nowrap;
  flex-grow: 1;
}

._sidebar_ryvx0_4._collapsed_ryvx0_173 ._nav-text-container_ryvx0_342 {
  opacity: 0;
  /* 隐藏文本 */
  width: 0;
  margin-left: 0;
}

._submenu-arrow_ryvx0_357 {
  transition: transform 0.3s ease;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

._submenu-arrow_ryvx0_357._rotated_ryvx0_365 {
  transform: rotate(90deg);
}

._submenu_ryvx0_169 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  margin-left: var(--submenu-indent);
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  padding-left: 8px;
}

._submenu_ryvx0_169 ._nav-link-wrapper_ryvx0_159 {
  font-size: 0.9em;
  color: #666;
  padding: 8px 10px;
}

._submenu_ryvx0_169 ._nav-icon-container_ryvx0_329 {
  margin-left: 12px;
}

._submenu_ryvx0_169 ._nav-text-container_ryvx0_342 {
  margin-left: 6px;
}

._submenu_ryvx0_169 ._nav-link-wrapper_ryvx0_159:hover {
  background-color: #f5f5f5;
  color: #333;
}

._submenu_ryvx0_169 ._nav-link-wrapper_ryvx0_159._active_ryvx0_159 {
  background: #e8f4fd;
  color: #2354f4;
  font-weight: 400;
}

._has-submenu_ryvx0_403._open_ryvx0_403 ._submenu_ryvx0_169 {
  max-height: 200px;
}

._has-submenu_ryvx0_403._open_ryvx0_403 ._submenu_ryvx0_169 ._submenu_ryvx0_169 {
  margin-left: calc(var(--submenu-indent) * 2);
}

._has-submenu_ryvx0_403._open_ryvx0_403 ._submenu_ryvx0_169 ._has-submenu_ryvx0_403._open_ryvx0_403 ._submenu_ryvx0_169 {
  margin-left: calc(var(--submenu-indent) * 3);
}

/* Collapsed state styles */
._sidebar_ryvx0_4._collapsed_ryvx0_173 a,
._sidebar_ryvx0_4._collapsed_ryvx0_173 ._nav-link-wrapper_ryvx0_159 {
  justify-content: center;
  /* 确保内容居中 */
  /* padding: 10px 0; 保持原有的 padding */
}

._sidebar_ryvx0_4._collapsed_ryvx0_173 ._nav-icon-container_ryvx0_329 {
  margin-left: 0;
  /* 移除左边距 */
  display: flex;
  align-items: center;
  justify-content: center;
  /* 确保图标居中 */
}

._sidebar_ryvx0_4._collapsed_ryvx0_173 ._submenu-arrow_ryvx0_357 {
  display: none;
}

._sidebar_ryvx0_4._collapsed_ryvx0_173 ._submenu_ryvx0_169 {
  display: none;
}

._sidebar_ryvx0_4._collapsed_ryvx0_173 ._has-submenu_ryvx0_403:hover ._submenu_ryvx0_169 {
  display: none;
}

._sidebar_ryvx0_4._collapsed_ryvx0_173 ._has-submenu_ryvx0_403:hover ._submenu_ryvx0_169 li {
  margin: 4px 0;
}

._sidebar_ryvx0_4._collapsed_ryvx0_173 ._has-submenu_ryvx0_403:hover ._submenu_ryvx0_169 a {
  padding: 8px;
}

/* Sidebar footer */
._sidebar-footer_ryvx0_453 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Theme toggle button */
._theme-toggle-btn_ryvx0_465 {
  background: rgb(247, 247, 248);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  border: none;
  color: #333;
  padding: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

._theme-toggle-btn_ryvx0_465:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Collapse button */
._collapse-btn_ryvx0_487 {
  background: rgb(247, 247, 248);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  border: none;
  color: #333;
  padding: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

._collapse-btn_ryvx0_487:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

svg {
  vertical-align: -0.15em;
  transform: scale(1.05);
  overflow: visible;
}

@media (max-width: 768px) {
  ._sidebar_ryvx0_4 {
    width: var(--collapsed-width);
  }
  ._sidebar_ryvx0_4:not(._collapsed_ryvx0_173) {
    width: var(--sidebar-width);
    z-index: 1001;
  }
  ._sidebar_ryvx0_4._collapsed_ryvx0_173 + ._main-content_ryvx0_522 {
    margin-left: var(--collapsed-width);
  }
  ._sidebar-footer_ryvx0_453 {
    position: relative;
    bottom: auto;
    margin: 20px auto;
    transform: none;
    left: auto;
  }
}
/* 暗黑模式样式 */
.dark ._sidebar_ryvx0_4 {
  background: rgba(30, 30, 30, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.dark ._user-section_ryvx0_187 {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.dark ._user-name_ryvx0_235 {
  color: #e0e0e0;
}
.dark ._logout-btn_ryvx0_244 {
  color: #adb5bd;
}
.dark ._logout-btn_ryvx0_244:hover {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}
.dark ._nav-link-wrapper_ryvx0_159 {
  color: #e0e0e0;
}
.dark ._nav-link-wrapper_ryvx0_159:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.dark ._nav-link-wrapper_ryvx0_159._active_ryvx0_159 {
  background: rgba(34, 84, 244, 0.2);
  color: #4a9eff;
}
.dark ._nav-link-wrapper_ryvx0_159._exact-active_ryvx0_164 {
  background: rgba(34, 84, 244, 0.3);
  color: #ffffff;
}
.dark ._nav-icon_ryvx0_315 {
  color: inherit;
}
.dark ._submenu_ryvx0_169 {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}
.dark ._submenu_ryvx0_169 ._nav-icon-container_ryvx0_329 {
  margin-left: 12px;
}
.dark ._submenu_ryvx0_169 ._nav-text-container_ryvx0_342 {
  margin-left: 6px;
}
.dark ._submenu_ryvx0_169 ._nav-link-wrapper_ryvx0_159 {
  color: #b0b0b0;
  font-size: 0.9em;
}
.dark ._submenu_ryvx0_169 ._nav-link-wrapper_ryvx0_159:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.dark ._submenu_ryvx0_169 ._nav-link-wrapper_ryvx0_159._active_ryvx0_159 {
  background: rgba(34, 84, 244, 0.15);
  color: #4a9eff;
  font-weight: 400;
}
.dark ._sidebar-popover_ryvx0_4 {
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.dark ._sidebar-popover_ryvx0_4::before {
  border-right-color: #2a2a2a;
}
.dark ._popover-title_ryvx0_40 {
  color: #e0e0e0;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.dark ._popover-item_ryvx0_51 {
  color: #b0b0b0;
}
.dark ._popover-item_ryvx0_51:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.dark ._theme-toggle-btn_ryvx0_465,
.dark ._collapse-btn_ryvx0_487 {
  background: rgba(60, 60, 60, 0.8);
  color: #e0e0e0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}
.dark ._theme-toggle-btn_ryvx0_465:hover,
.dark ._collapse-btn_ryvx0_487:hover {
  background: rgba(80, 80, 80, 0.9);
  color: #ffffff;
}
.dark ._user-menu-popover_ryvx0_62 {
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.dark ._user-menu-popover_ryvx0_62::before {
  border-right-color: #2a2a2a;
  top: 50%;
  left: -6px;
}
.dark ._user-menu-popover_ryvx0_62::after {
  border-right-color: rgba(255, 255, 255, 0.1);
  top: 50%;
  left: -7px;
}
.dark ._user-menu-item_ryvx0_105 {
  color: #e0e0e0;
}
.dark ._user-menu-item_ryvx0_105:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #4a9eff;
}
.dark ._user-menu-icon_ryvx0_123 {
  color: #b0b0b0;
}
.dark ._user-menu-item_ryvx0_105:hover ._user-menu-icon_ryvx0_123 {
  color: #4a9eff;
}
/* Tabs.module.scss */
._tabsContainer_1yrs3_3 {
  position: fixed;
  top: 0;
  left: 20px;
  right: 0;
  height: 50px;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 999;
  transition: background 0.3s ease;
  gap: 8px;
  overflow-x: auto;
}
@media (max-width: 768px) {
  ._tabsContainer_1yrs3_3 {
    left: 0;
    padding: 0 10px;
  }
}

._tabItem_1yrs3_25 {
  height: 32px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid transparent;
  color: #333;
  flex-shrink: 0;
}
._tabItem_1yrs3_25:hover:not(._active_1yrs3_39) {
  background: #e9ecef;
}
._tabItem_1yrs3_25._dragging_1yrs3_42 {
  opacity: 0.9;
  transform: scale(1.02) translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: transform 0.1s ease, opacity 0.1s linear;
  cursor: grabbing;
  border-color: #2354f4;
  pointer-events: auto;
}
._tabItem_1yrs3_25._active_1yrs3_39 {
  background: #2354f4;
  color: #fff;
  font-weight: 500;
}

._closeBtn_1yrs3_58 {
  margin-left: 8px;
  width: 18px;
  height: 18px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
._closeBtn_1yrs3_58:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* 暗黑模式样式 */
.dark ._tabsContainer_1yrs3_3 {
  background: transparent !important;
}
.dark ._tabItem_1yrs3_25 {
  background: #2a2a2a !important;
  color: #e0e0e0 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.dark ._tabItem_1yrs3_25:hover:not(._active_1yrs3_39) {
  background: #3a3a3a !important;
}
.dark ._tabItem_1yrs3_25._dragging_1yrs3_42 {
  background: #3a3a3a !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  border-color: #2354f4 !important;
}
.dark ._tabItem_1yrs3_25._active_1yrs3_39 {
  background: #2354f4 !important;
  color: #fff !important;
}
.dark ._closeBtn_1yrs3_58:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}._sso_1r5bg_1 {
  display: flex;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
}

._sso__content_ad_1r5bg_10 {
  flex: 0.9;
  position: relative;
  width: 45%;
  min-height: 100vh;
  background: #f8f9fa;
  overflow: hidden;
}
@media (max-width: 768px) {
  ._sso__content_ad_1r5bg_10 {
    display: none;
  }
}

._sso__content_login_1r5bg_24 {
  flex: 1.1;
  position: relative;
  width: 55%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
._sso__content_login_1r5bg_24::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(45px) brightness(1.15) saturate(1.2);
  transform: scale(1.1);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
._sso__content_login_1r5bg_24::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1;
}
@media (max-width: 768px) {
  ._sso__content_login_1r5bg_24 {
    width: 100%;
    padding: 20px;
  }
  ._sso__content_login_1r5bg_24::before {
    display: none;
  }
  ._sso__content_login_1r5bg_24::after {
    background: #f8fafc;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

._sso__content_login_container_1r5bg_79 {
  width: 100%;
  max-width: 400px;
  padding: 0 40px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  ._sso__content_login_container_1r5bg_79 {
    max-width: none;
    padding: 0 20px;
  }
}

._sso__content_login_box_1r5bg_92 {
  width: 100%;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 40px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  ._sso__content_login_box_1r5bg_92 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
  }
}

._logoArea_1r5bg_115 {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

._logo_1r5bg_115 {
  display: flex;
  align-items: center;
  justify-content: center;
}

._logoImg_1r5bg_127 {
  height: 40px;
  width: auto;
}
@media (max-width: 768px) {
  ._logoImg_1r5bg_127 {
    height: 36px;
  }
}

._loginForm_1r5bg_137 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

._loginHeader_1r5bg_143 {
  text-align: center;
  margin-bottom: 40px;
}
._loginHeader_1r5bg_143 h2 {
  font-size: 26px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  ._loginHeader_1r5bg_143 h2 {
    font-size: 22px;
  }
}
._loginHeader_1r5bg_143 p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

._formGroup_1r5bg_166 {
  position: relative;
  margin-bottom: 16px;
}

._inputWrapper_1r5bg_171 {
  position: relative;
  display: flex;
  align-items: center;
}
._inputWrapper_1r5bg_171:hover ._inputIcon_1r5bg_176 {
  opacity: 0.8;
}

._inputIcon_1r5bg_176 {
  position: absolute;
  left: 14px;
  z-index: 1;
  color: #2254f4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
._inputIcon_1r5bg_176 svg {
  width: 20px;
  height: 20px;
}

._input_1r5bg_171 {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 42px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #1a1a1a;
  background: #f8fafc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  outline: none;
  line-height: 1.5;
}
._input_1r5bg_171::placeholder {
  color: #94a3b8;
  opacity: 0.8;
}
._input_1r5bg_171:focus {
  background: white;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px var(--shadow-color);
}
._input_1r5bg_171:focus ~ ._inputIcon_1r5bg_176 {
  opacity: 0.8;
  color: var(--theme-color);
}
._input_1r5bg_171:hover {
  border-color: #d1d5db;
}
@media (max-width: 768px) {
  ._input_1r5bg_171 {
    height: 48px;
    font-size: 16px;
    padding-left: 44px;
  }
}

._loginButton_1r5bg_236 {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #2254f4 0%, #4285f4 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  box-shadow: 0 4px 15px rgba(34, 84, 244, 0.25);
}
._loginButton_1r5bg_236::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
._loginButton_1r5bg_236:hover::before {
  left: 100%;
}
._loginButton_1r5bg_236:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(34, 84, 244, 0.25);
}
._loginButton_1r5bg_236:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(34, 84, 244, 0.2);
}
._loginButton_1r5bg_236:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  ._loginButton_1r5bg_236 {
    height: 48px;
    font-size: 16px;
  }
}

._loginLinks_1r5bg_286 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
@media (max-width: 768px) {
  ._loginLinks_1r5bg_286 {
    justify-content: center;
    gap: 16px;
  }
}

._link_1r5bg_299 {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
._link_1r5bg_299:hover {
  color: #3b82f6;
}

._divider_1r5bg_309 {
  position: relative;
  text-align: center;
  margin: 24px 0 16px;
}
._divider_1r5bg_309::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}
._divider_1r5bg_309 span {
  background: #ffffff;
  padding: 0 12px;
  font-size: 13px;
  color: #6b7280;
  position: relative;
  z-index: 1;
}

._socialLogin_1r5bg_332 {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

._socialButton_1r5bg_339 {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
._socialButton_1r5bg_339:hover {
  border-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
._socialButton_1r5bg_339:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
._socialButton_1r5bg_339 svg {
  transition: transform 0.2s ease;
}
._socialButton_1r5bg_339:hover svg {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  ._socialButton_1r5bg_339 {
    width: 44px;
    height: 44px;
  }
}

._wechatFollowCard_1r5bg_373 {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 400px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 768px) {
  ._wechatFollowCard_1r5bg_373 {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
    margin-top: 32px;
    border-radius: 8px;
    padding: 16px;
    gap: 12px;
  }
}

._wechatFollowCard__content_1r5bg_404 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
@media (max-width: 768px) {
  ._wechatFollowCard__content_1r5bg_404 {
    justify-content: center;
  }
}

._wechatFollowCard__icon_1r5bg_416 {
  width: 36px;
  height: 36px;
  background: #10b981;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
._wechatFollowCard__icon_1r5bg_416 svg {
  width: 18px;
  height: 18px;
}

._wechatFollowCard__text_1r5bg_432 {
  flex: 1;
}

._wechatFollowCard__title_1r5bg_436 {
  font-size: 13px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.3;
}

._wechatFollowCard__subtitle_1r5bg_444 {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
}

._wechatFollowCard__action_1r5bg_450 {
  flex-shrink: 0;
}

._wechatFollowCard__buttonContainer_1r5bg_454 {
  display: flex;
  justify-content: center;
}

._wechatFollowCard__button_1r5bg_454 {
  background: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
._wechatFollowCard__button_1r5bg_454:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}
._wechatFollowCard__button_1r5bg_454:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.1);
}
@media (max-width: 768px) {
  ._wechatFollowCard__button_1r5bg_454 {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  ._sso__content_ad_1r5bg_10 {
    flex: 0.8;
    width: 45%;
  }
  ._sso__content_login_1r5bg_24 {
    flex: 1.2;
    width: 55%;
  }
}
@media (max-width: 768px) {
  ._sso_1r5bg_1 {
    background: #f8fafc;
    padding: 16px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  ._sso__content_login_1r5bg_24 {
    width: 100%;
    min-height: auto;
    padding: 0;
  }
  ._sso__content_login_container_1r5bg_79 {
    padding: 0;
  }
  ._sso__content_login_box_1r5bg_92 {
    margin: 0;
  }
  ._wechatFollowCard_1r5bg_373 {
    margin-top: 24px;
  }
}
@keyframes _fadeInUp_1r5bg_1 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
._sso__content_login_box_1r5bg_92 {
  animation: _fadeInUp_1r5bg_1 0.6s ease-out;
}

._loading_1r5bg_533 {
  pointer-events: none;
  opacity: 0.6;
}

._error_1r5bg_538 {
  border-color: #ef4444;
}
._error_1r5bg_538:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

@media (max-width: 480px) {
  ._sso_1r5bg_1 {
    padding: 12px;
  }
  ._sso__content_login_container_1r5bg_79 {
    padding: 0 12px;
  }
  ._sso__content_login_box_1r5bg_92 {
    padding: 24px 16px;
  }
  ._wechatFollowCard_1r5bg_373 {
    padding: 12px 16px;
  }
  ._loginHeader_1r5bg_143 {
    margin-bottom: 24px;
  }
  ._loginForm_1r5bg_137 {
    gap: 12px;
  }
}._carousel_f80q7_1 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

._embla_f80q7_8 {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
}

._embla__container_f80q7_15 {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

._embla__slide_f80q7_22 {
  flex: 0 0 100%;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

._embla__slide_img_f80q7_31 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

._embla__slide_footer_f80q7_38 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
  padding: 80px 60px 60px;
  color: white;
  z-index: 2;
}

._embla__slide_footer_content_f80q7_49 {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

._embla__slide_footer_title_f80q7_55 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

._embla__slide_footer_desc_f80q7_64 {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  font-weight: 400;
}
._embla__slide_footer_desc_f80q7_64 div {
  margin-bottom: 8px;
}
._embla__slide_footer_desc_f80q7_64 div:last-child {
  margin-bottom: 0;
}

._embla__controls_f80q7_77 {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

._embla__dots_f80q7_85 {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

._embla__dot_f80q7_85 {
  width: 16px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  outline: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
._embla__dot_f80q7_85:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
._embla__dot_f80q7_85._embla__dot__selected_f80q7_109 {
  background-color: rgba(255, 255, 255, 0.25);
  width: 24px;
  height: 4px;
  border-radius: 2px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
._embla__dot_f80q7_85._embla__dot__selected_f80q7_109::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  z-index: 1;
}
._embla__dot_f80q7_85._embla__dot__selected_f80q7_109::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  z-index: 2;
  animation: _progressFill_f80q7_1 var(--animation-duration, 5s) linear forwards;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  will-change: width, background-color;
  transform: translateZ(0);
}

@keyframes _progressFill_f80q7_1 {
  0% {
    width: 0%;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
  }
  1% {
    background-color: rgb(255, 255, 255);
    opacity: 1;
  }
  100% {
    width: 100%;
    background-color: rgb(255, 255, 255);
    opacity: 1;
  }
}
@media (max-width: 1440px) {
  ._embla__slide_footer_title_f80q7_55 {
    font-size: 26px;
  }
  ._embla__slide_footer_desc_f80q7_64 {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  ._embla__slide_footer_f80q7_38 {
    padding: 60px 40px 40px;
  }
  ._embla__slide_footer_title_f80q7_55 {
    font-size: 24px;
  }
  ._embla__slide_footer_desc_f80q7_64 {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  ._embla__slide_footer_f80q7_38 {
    padding: 50px 30px 35px;
  }
  ._embla__slide_footer_title_f80q7_55 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  ._embla__slide_footer_desc_f80q7_64 {
    font-size: 13px;
  }
  ._embla__controls_f80q7_77 {
    bottom: 24px;
  }
}
@media (max-width: 768px) {
  ._embla__slide_footer_f80q7_38 {
    padding: 40px 25px 30px;
  }
  ._embla__slide_footer_title_f80q7_55 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  ._embla__slide_footer_desc_f80q7_64 {
    font-size: 12px;
    line-height: 1.5;
  }
  ._embla__controls_f80q7_77 {
    bottom: 20px;
  }
  ._embla__dots_f80q7_85 {
    gap: 6px;
  }
  ._embla__dot_f80q7_85 {
    width: 12px;
    height: 3px;
    border-radius: 1.5px;
  }
  ._embla__dot_f80q7_85._embla__dot__selected_f80q7_109 {
    width: 18px;
    height: 3px;
    border-radius: 1.5px;
  }
  ._embla__dot_f80q7_85._embla__dot__selected_f80q7_109::before {
    border-radius: 1.5px;
  }
  ._embla__dot_f80q7_85._embla__dot__selected_f80q7_109::after {
    border-radius: 1.5px;
  }
}
/* App.module.scss */
body {
  padding: 0;
  margin: 0;
  font-family: Roboto, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif, Helvetica Neue, -apple-system, BlinkMacSystemFont, noto sans;
  font-size: 14px;
  background-color: #F7FBFD;
  color: #2b2d42;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}
 {
  /* 暗黑模式全局样式 */
}
body.dark {
  background-color: #1a1a1a;
  color: #e0e0e0;
}
html, body {
  height: 100%;
}
 {
  /* 链接样式 */
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
  outline: none;
}
a :hover, a :focus {
  color: #2254f4;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a :focus-visible {
  box-shadow: 0 0 0 2px rgba(34, 84, 244, 0.3);
  border-radius: 2px;
}
a[disabled] {
  color: #999;
  cursor: not-allowed;
  opacity: 0.7;
}
a[target=_blank]::after {
  content: "↗";
  display: inline-block;
  margin-left: 2px;
  font-size: 0.9em;
  vertical-align: baseline;
}

/* 主容器 */
._appContainer_o1zr9_61 {
  position: relative;
  min-height: 100vh;
  background-repeat: no-repeat;
}

._headerContent_o1zr9_67 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._userInfo_o1zr9_74 {
  font-weight: 500;
  color: #2254f4;
  padding: 8px 16px;
  border-radius: 4px;
  background: rgba(34, 84, 244, 0.1);
}

/* 新增 Tabs 容器样式 */
._tabsContainer_o1zr9_83 {
  position: fixed;
  right: 0;
  height: 50px;
  backdrop-filter: blur(10px);
  z-index: 99;
  display: flex;
  align-items: center;
  width: calc(100% - var(--sidebar-tabs-left, 250px));
  transition: background-color 0.3s ease;
}

/* 主内容区 */
._mainContent_o1zr9_96 {
  transition: margin-left 0.3s ease;
  min-height: 100vh;
  padding: 20px;
  opacity: 0;
  animation: _fadeIn_o1zr9_1 0.3s ease forwards;
  padding-top: 80px !important;
}

@keyframes _fadeIn_o1zr9_1 {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 加载动画 */
._loadingOverlay_o1zr9_116 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

._spinner_o1zr9_129 {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #2254f4;
  animation: _spin_o1zr9_129 1s linear infinite;
}

@keyframes _spin_o1zr9_129 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 响应式设计 */
@media (max-width: 768px) {
  ._mainContent_o1zr9_96 {
    padding-top: 120px !important;
  }
  ._tabsContainer_o1zr9_83 {
    width: calc(100% - 80px);
  }
  .sidebar:not(.collapsed) + ._mainContent_o1zr9_96 {
    margin-left: 250px !important;
    position: relative;
    z-index: 1;
  }
  ._appHeader_o1zr9_159 {
    width: calc(100% - 80px);
  }
}
/* 暗黑模式样式 */
.dark ._tabsContainer_o1zr9_83 {
  background: rgba(30, 30, 30, 0.8);
}
.dark ._mainContent_o1zr9_96 {
  background-color: #1a1a1a;
}
.dark ._userInfo_o1zr9_74 {
  background: rgba(35, 84, 244, 0.2);
  color: #2354f4;
}
.dark ._loadingOverlay_o1zr9_116 {
  background: #1a1a1a;
}
.dark ._spinner_o1zr9_129 {
  border-color: #333;
  border-top-color: #2354f4;
}

/* 全局加载组件样式 */
._globalLoading_o1zr9_183 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F7FBFD;
  z-index: 9999;
}

._globalSpinner_o1zr9_196 {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(35, 84, 244, 0.1);
  border-top: 3px solid #2354f4;
  border-radius: 50%;
  animation: _spin_o1zr9_129 1s linear infinite;
}

/* 暗黑模式下的全局加载 */
.dark ._globalLoading_o1zr9_183 {
  background-color: #1a1a1a;
}

.dark ._globalSpinner_o1zr9_196 {
  border-color: rgba(255, 255, 255, 0.1);
  border-top-color: #2354f4;
}