:root {
  --ant-primary: #1677ff;
  --ant-primary-hover: #4096ff;
  --ant-primary-active: #0958d9;
  --ant-primary-bg: #e6f4ff;
  --ant-primary-border: #1677ff;
  --ant-success: #52c41a;
  --ant-success-hover: #73d13d;
  --ant-success-bg: #f6ffed;
  --ant-success-border: #b7eb8f;
  --ant-warning: #faad14;
  --ant-warning-hover: #ffc53d;
  --ant-warning-bg: #fffbe6;
  --ant-warning-border: #ffe58f;
  --ant-error: #ff4d4f;
  --ant-error-hover: #ff7875;
  --ant-error-bg: #fff2f0;
  --ant-error-border: #ffccc7;
  --ant-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  --ant-font-size: 14px;
  --ant-font-size-sm: 12px;
  --ant-font-size-lg: 16px;
  --ant-border-radius: 6px;
  --ant-border-color: #d9d9d9;
  --ant-border-color-hover: #4096ff;
  --ant-bg: #ffffff;
  --ant-bg-layout: #f5f5f5;
  --ant-bg-container: #ffffff;
  --ant-bg-elevated: #ffffff;
  --ant-bg-spotlight: #f0f5ff;
  --ant-text: rgba(0, 0, 0, 0.88);
  --ant-text-secondary: rgba(0, 0, 0, 0.65);
  --ant-text-tertiary: rgba(0, 0, 0, 0.45);
  --ant-text-quaternary: rgba(0, 0, 0, 0.25);
  --ant-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  --ant-shadow-secondary: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-sidebar-width: 208px;
  --ant-sidebar-collapsed-width: 48px;
  --ant-sidebar-bg: #001529;
  --ant-header-height: 48px;
  --ant-header-bg: #ffffff;
  --ant-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  --ant-transition-fast: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.ant-pro-layout {
  display: flex;
  min-height: 100vh;
  font-family: var(--ant-font-family);
  font-size: var(--ant-font-size);
  color: var(--ant-text);
  background: var(--ant-bg-layout);
}

.ant-pro-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  width: var(--ant-sidebar-width);
  height: 100vh;
  background: var(--ant-sidebar-bg);
  transition: var(--ant-transition);
  overflow: hidden;
}

.ant-pro-sidebar.collapsed {
  width: var(--ant-sidebar-collapsed-width);
}

.ant-pro-sidebar-logo {
  display: flex;
  align-items: center;
  height: var(--ant-header-height);
  padding: 0 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--ant-transition);
}

.ant-pro-sidebar.collapsed .ant-pro-sidebar-logo {
  padding: 0;
  justify-content: center;
}

.ant-pro-sidebar-logo img {
  height: 28px;
  width: 28px;
  object-fit: contain;
}

.ant-pro-sidebar-logo h1 {
  margin: 0 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
}

.ant-pro-sidebar.collapsed .ant-pro-sidebar-logo h1 {
  display: none;
}

.ant-pro-sidebar-menu {
  flex: 1;
  padding: 4px 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.ant-pro-sidebar-menu::-webkit-scrollbar {
  width: 4px;
}

.ant-pro-sidebar-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.ant-pro-sidebar-menu-item {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  margin: 2px 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  cursor: pointer;
  transition: var(--ant-transition);
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  user-select: none;
}

.ant-pro-sidebar.collapsed .ant-pro-sidebar-menu-item {
  justify-content: center;
  padding: 0;
  margin: 2px;
}

.ant-pro-sidebar-menu-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.ant-pro-sidebar-menu-item.active {
  color: #ffffff;
  background: var(--ant-primary);
}

.ant-pro-sidebar-menu-item .menu-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ant-pro-sidebar.collapsed .ant-pro-sidebar-menu-item .menu-icon {
  margin-right: 0;
}

.ant-pro-sidebar-menu-item .menu-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ant-pro-sidebar.collapsed .ant-pro-sidebar-menu-item .menu-text {
  display: none;
}

.ant-pro-sidebar-menu-group {
  padding: 16px 16px 4px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
}

.ant-pro-sidebar.collapsed .ant-pro-sidebar-menu-group {
  display: none;
}

.ant-pro-sidebar-collapse-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: var(--ant-transition);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ant-pro-sidebar-collapse-btn:hover {
  color: #ffffff;
}

.ant-pro-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: var(--ant-sidebar-width);
  transition: var(--ant-transition);
  min-width: 0;
}

.ant-pro-sidebar.collapsed ~ .ant-pro-main {
  margin-left: var(--ant-sidebar-collapsed-width);
}

.ant-pro-header {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--ant-header-height);
  padding: 0 16px;
  background: var(--ant-header-bg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.ant-pro-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ant-pro-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ant-pro-header-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: var(--ant-border-radius);
  transition: var(--ant-transition-fast);
}

.ant-pro-header-user:hover {
  background: rgba(0, 0, 0, 0.04);
}

.ant-pro-header-user-name {
  font-size: 14px;
  color: var(--ant-text);
}

.ant-pro-content {
  flex: 1;
  padding: 16px;
}

.ant-pro-page-container {
  padding: 0;
}

.ant-pro-page-container-header {
  margin: -16px -16px 16px;
  padding: 16px 24px;
  background: var(--ant-bg-container);
}

.ant-pro-page-container-header-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ant-text);
  margin: 0 0 4px;
}

.ant-pro-page-container-header-content {
  font-size: 14px;
  color: var(--ant-text-secondary);
}

.ant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 32px;
  padding: 4px 15px;
  font-size: 14px;
  font-family: var(--ant-font-family);
  font-weight: 400;
  line-height: 22px;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--ant-border-color);
  border-radius: var(--ant-border-radius);
  background: var(--ant-bg);
  color: var(--ant-text);
  transition: var(--ant-transition);
  user-select: none;
  outline: none;
  text-decoration: none;
}

.ant-btn:hover {
  color: var(--ant-primary-hover);
  border-color: var(--ant-primary-hover);
}

.ant-btn:active {
  color: var(--ant-primary-active);
  border-color: var(--ant-primary-active);
}

.ant-btn-primary {
  color: #ffffff;
  background: var(--ant-primary);
  border-color: var(--ant-primary);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(5, 145, 255, 0.1);
}

.ant-btn-primary:hover {
  color: #ffffff;
  background: var(--ant-primary-hover);
  border-color: var(--ant-primary-hover);
}

.ant-btn-primary:active {
  color: #ffffff;
  background: var(--ant-primary-active);
  border-color: var(--ant-primary-active);
}

.ant-btn-danger {
  color: var(--ant-error);
  border-color: var(--ant-error);
  background: var(--ant-bg);
}

.ant-btn-danger:hover {
  color: var(--ant-error-hover);
  border-color: var(--ant-error-hover);
}

.ant-btn-danger:active {
  color: #d9363e;
  border-color: #d9363e;
}

.ant-btn-danger.ant-btn-primary {
  color: #ffffff;
  background: var(--ant-error);
  border-color: var(--ant-error);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(255, 38, 5, 0.06);
}

.ant-btn-danger.ant-btn-primary:hover {
  color: #ffffff;
  background: var(--ant-error-hover);
  border-color: var(--ant-error-hover);
}

.ant-btn-danger.ant-btn-primary:active {
  color: #ffffff;
  background: #d9363e;
  border-color: #d9363e;
}

.ant-btn-link {
  color: var(--ant-primary);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.ant-btn-link:hover {
  color: var(--ant-primary-hover);
  border-color: transparent;
  background: transparent;
}

.ant-btn-link:active {
  color: var(--ant-primary-active);
  border-color: transparent;
}

.ant-btn-sm {
  height: 24px;
  padding: 0 7px;
  font-size: 12px;
  line-height: 22px;
  border-radius: 4px;
}

.ant-btn-lg {
  height: 40px;
  padding: 6px 15px;
  font-size: 16px;
  line-height: 26px;
  border-radius: 8px;
}

.ant-btn-block {
  display: flex;
  width: 100%;
}

.ant-btn:disabled,
.ant-btn[disabled] {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: rgba(0, 0, 0, 0.04);
  cursor: not-allowed;
  box-shadow: none;
}

.ant-btn:disabled:hover,
.ant-btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: rgba(0, 0, 0, 0.04);
}

.ant-input {
  height: 32px;
  padding: 4px 11px;
  font-size: 14px;
  font-family: var(--ant-font-family);
  line-height: 22px;
  color: var(--ant-text);
  background: var(--ant-bg);
  border: 1px solid var(--ant-border-color);
  border-radius: var(--ant-border-radius);
  transition: var(--ant-transition);
  outline: none;
  width: 100%;
}

.ant-input:hover {
  border-color: var(--ant-border-color-hover);
}

.ant-input:focus {
  border-color: var(--ant-primary);
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.1);
}

.ant-input::placeholder {
  color: var(--ant-text-quaternary);
}

.ant-input:disabled {
  color: rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.04);
  cursor: not-allowed;
  border-color: #d9d9d9;
}

.ant-input-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
  line-height: 26px;
  border-radius: 8px;
}

.ant-input-sm {
  height: 24px;
  padding: 0 7px;
  font-size: 12px;
  line-height: 22px;
  border-radius: 4px;
}

.ant-input-affix-wrapper {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 32px;
  padding: 0 11px;
  background: var(--ant-bg);
  border: 1px solid var(--ant-border-color);
  border-radius: var(--ant-border-radius);
  transition: var(--ant-transition);
}

.ant-input-affix-wrapper:hover {
  border-color: var(--ant-border-color-hover);
}

.ant-input-affix-wrapper:focus-within {
  border-color: var(--ant-primary);
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.1);
}

.ant-input-affix-wrapper .ant-input {
  border: none;
  padding: 0;
  height: auto;
  box-shadow: none;
}

.ant-input-prefix,
.ant-input-suffix {
  display: flex;
  align-items: center;
  color: var(--ant-text-tertiary);
  flex-shrink: 0;
}

.ant-input-prefix {
  margin-right: 4px;
}

.ant-input-suffix {
  margin-left: 4px;
}

.ant-select {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 11px;
  font-size: 14px;
  color: var(--ant-text);
  background: var(--ant-bg);
  border: 1px solid var(--ant-border-color);
  border-radius: var(--ant-border-radius);
  cursor: pointer;
  transition: var(--ant-transition);
  position: relative;
  min-width: 120px;
  user-select: none;
}

.ant-select:hover {
  border-color: var(--ant-border-color-hover);
}

.ant-select:focus,
.ant-select.ant-select-focused {
  border-color: var(--ant-primary);
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.1);
  outline: none;
}

.ant-select-selection {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ant-select-placeholder {
  color: var(--ant-text-quaternary);
}

.ant-select-arrow {
  display: flex;
  align-items: center;
  color: var(--ant-text-tertiary);
  margin-left: 4px;
  transition: transform 0.2s;
}

.ant-select-dropdown {
  position: absolute;
  z-index: 1050;
  min-width: 120px;
  padding: 4px;
  background: var(--ant-bg-elevated);
  border-radius: var(--ant-border-radius);
  box-shadow: var(--ant-shadow-secondary);
}

.ant-select-dropdown-item {
  padding: 5px 12px;
  font-size: 14px;
  color: var(--ant-text);
  cursor: pointer;
  border-radius: 4px;
  transition: var(--ant-transition-fast);
}

.ant-select-dropdown-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.ant-select-dropdown-item.active {
  background: var(--ant-primary-bg);
  color: var(--ant-primary);
  font-weight: 600;
}

.ant-select-dropdown-item:disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}

.ant-table-wrapper {
  background: var(--ant-bg-container);
  border-radius: var(--ant-border-radius);
  overflow: hidden;
}

.ant-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
}

.ant-table-thead > tr > th {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ant-text);
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  white-space: nowrap;
}

.ant-table-tbody > tr > td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--ant-text);
  transition: background 0.2s;
}

.ant-table-tbody > tr:hover > td {
  background: rgba(0, 0, 0, 0.02);
}

.ant-table-tbody > tr:nth-child(even) > td {
  background: rgba(0, 0, 0, 0.01);
}

.ant-table-tbody > tr:nth-child(even):hover > td {
  background: rgba(0, 0, 0, 0.02);
}

.ant-table-tbody > tr:last-child > td {
  border-bottom: none;
}

.ant-table-placeholder {
  padding: 32px;
  text-align: center;
  color: var(--ant-text-tertiary);
}

.ant-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ant-text);
  list-style: none;
  margin: 0;
  padding: 0;
}

.ant-pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  border: 1px solid var(--ant-border-color);
  border-radius: var(--ant-border-radius);
  cursor: pointer;
  transition: var(--ant-transition);
  user-select: none;
  font-size: 14px;
}

.ant-pagination-item:hover {
  border-color: var(--ant-primary);
  color: var(--ant-primary);
}

.ant-pagination-item.active {
  border-color: var(--ant-primary);
  color: var(--ant-primary);
  background: var(--ant-primary);
  color: #ffffff;
  font-weight: 500;
}

.ant-pagination-item.active:hover {
  background: var(--ant-primary-hover);
  border-color: var(--ant-primary-hover);
  color: #ffffff;
}

.ant-pagination-prev,
.ant-pagination-next {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border: 1px solid var(--ant-border-color);
  border-radius: var(--ant-border-radius);
  cursor: pointer;
  transition: var(--ant-transition);
  color: var(--ant-text);
}

.ant-pagination-prev:hover,
.ant-pagination-next:hover {
  border-color: var(--ant-primary);
  color: var(--ant-primary);
}

.ant-pagination-prev:disabled,
.ant-pagination-next:disabled {
  color: rgba(0, 0, 0, 0.25);
  border-color: var(--ant-border-color);
  cursor: not-allowed;
}

.ant-pagination-total-text {
  margin-right: 8px;
}

.ant-pagination-options {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.ant-card {
  background: var(--ant-bg-container);
  border-radius: var(--ant-border-radius);
  box-shadow: var(--ant-shadow);
  overflow: hidden;
}

.ant-card-head {
  padding: 0 24px;
  min-height: 48px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.ant-card-head-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ant-text);
  flex: 1;
  padding: 12px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ant-card-extra {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.ant-card-body {
  padding: 24px;
}

.ant-card-bordered {
  border: 1px solid #f0f0f0;
}

.ant-card-hoverable:hover {
  box-shadow: var(--ant-shadow-secondary);
  border-color: transparent;
  cursor: pointer;
}

.ant-form {
  font-size: var(--ant-font-size);
}

.ant-form-item {
  margin-bottom: 24px;
}

.ant-form-item-label {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
}

.ant-form-item-label > label {
  font-size: 14px;
  color: var(--ant-text);
  font-weight: 400;
}

.ant-form-item-label > label::after {
  content: ':';
  margin: 0 8px 0 2px;
  position: relative;
  top: -0.5px;
}

.ant-form-item-label > label.ant-form-item-required::before {
  content: '*';
  color: var(--ant-error);
  margin-right: 4px;
  font-size: 14px;
  font-family: SimSun, sans-serif;
}

.ant-form-item-explain {
  font-size: 12px;
  color: var(--ant-text-secondary);
  margin-top: 4px;
}

.ant-form-item-explain-error {
  color: var(--ant-error);
}

.ant-form-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.ant-form-horizontal .ant-form-item {
  display: flex;
  align-items: flex-start;
}

.ant-form-horizontal .ant-form-item-label {
  flex-shrink: 0;
  padding-bottom: 0;
  padding-right: 12px;
  height: 32px;
}

.ant-form-horizontal .ant-form-item-control {
  flex: 1;
  min-width: 0;
}

.ant-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.45);
  animation: antModalMaskIn 0.2s ease;
}

@keyframes antModalMaskIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ant-modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: auto;
}

.ant-modal {
  position: relative;
  width: 520px;
  max-width: calc(100vw - 32px);
  background: var(--ant-bg-elevated);
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  animation: antModalIn 0.2s ease;
}

@keyframes antModalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ant-modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ant-modal-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ant-text);
  margin: 0;
}

.ant-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--ant-text-secondary);
  transition: var(--ant-transition-fast);
  border: none;
  background: transparent;
  font-size: 16px;
}

.ant-modal-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--ant-text);
}

.ant-modal-body {
  padding: 24px;
  font-size: 14px;
  color: var(--ant-text);
  max-height: calc(100vh - 240px);
  overflow-y: auto;
}

.ant-modal-footer {
  padding: 12px 24px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.ant-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 7px;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  border-radius: 4px;
  border: 1px solid;
  font-weight: 400;
}

.ant-tag-blue {
  color: #1677ff;
  background: #e6f4ff;
  border-color: #91caff;
}

.ant-tag-green {
  color: #52c41a;
  background: #f6ffed;
  border-color: #b7eb8f;
}

.ant-tag-red {
  color: #ff4d4f;
  background: #fff2f0;
  border-color: #ffccc7;
}

.ant-tag-orange {
  color: #fa8c16;
  background: #fff7e6;
  border-color: #ffd591;
}

.ant-tag-cyan {
  color: #13c2c2;
  background: #e6fffb;
  border-color: #87e8de;
}

.ant-tag-purple {
  color: #722ed1;
  background: #f9f0ff;
  border-color: #d3adf7;
}

.ant-tag-gold {
  color: #d48806;
  background: #fffbe6;
  border-color: #ffe58f;
}

.ant-tag-success {
  color: #52c41a;
  background: #f6ffed;
  border-color: #b7eb8f;
}

.ant-tag-warning {
  color: #faad14;
  background: #fffbe6;
  border-color: #ffe58f;
}

.ant-tag-error {
  color: #ff4d4f;
  background: #fff2f0;
  border-color: #ffccc7;
}

.ant-tag-processing {
  color: #1677ff;
  background: #e6f4ff;
  border-color: #91caff;
}

.ant-tag-default {
  color: var(--ant-text-secondary);
  background: rgba(0, 0, 0, 0.04);
  border-color: #d9d9d9;
}

.ant-badge {
  display: inline-flex;
  position: relative;
  align-items: center;
}

.ant-badge-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ant-error);
  transform: translate(50%, -50%);
}

.ant-badge-count {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
  background: var(--ant-error);
  border-radius: 10px;
  transform: translate(50%, -50%);
  white-space: nowrap;
}

.ant-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ant-badge-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.ant-badge-status-dot.success {
  background: var(--ant-success);
}

.ant-badge-status-dot.error {
  background: var(--ant-error);
}

.ant-badge-status-dot.warning {
  background: var(--ant-warning);
}

.ant-badge-status-dot.processing {
  background: var(--ant-primary);
}

.ant-badge-status-dot.default {
  background: #d9d9d9;
}

.ant-badge-status-text {
  font-size: 14px;
  color: var(--ant-text);
}

.ant-statistic {
  font-size: 14px;
}

.ant-statistic-title {
  font-size: 14px;
  color: var(--ant-text-secondary);
  margin-bottom: 4px;
}

.ant-statistic-content {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.ant-statistic-content-value {
  font-size: 24px;
  font-weight: 600;
  color: var(--ant-text);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.ant-statistic-content-prefix {
  font-size: 16px;
  color: var(--ant-text-secondary);
}

.ant-statistic-content-suffix {
  font-size: 16px;
  color: var(--ant-text-secondary);
}

.ant-alert {
  display: flex;
  align-items: flex-start;
  padding: 8px 12px;
  border-radius: var(--ant-border-radius);
  font-size: 14px;
  line-height: 22px;
  gap: 8px;
}

.ant-alert-icon {
  font-size: 16px;
  line-height: 22px;
  flex-shrink: 0;
}

.ant-alert-content {
  flex: 1;
  min-width: 0;
}

.ant-alert-message {
  font-weight: 500;
  color: var(--ant-text);
}

.ant-alert-description {
  color: var(--ant-text-secondary);
  margin-top: 2px;
}

.ant-alert-info {
  color: #1677ff;
  background: #e6f4ff;
  border: 1px solid #91caff;
}

.ant-alert-success {
  color: #52c41a;
  background: #f6ffed;
  border: 1px solid #b7eb8f;
}

.ant-alert-warning {
  color: #faad14;
  background: #fffbe6;
  border: 1px solid #ffe58f;
}

.ant-alert-error {
  color: #ff4d4f;
  background: #fff2f0;
  border: 1px solid #ffccc7;
}

.ant-alert-banner {
  border: none;
  border-radius: 0;
}

.ant-alert-closable {
  padding-right: 28px;
  position: relative;
}

.ant-alert-close-icon {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  color: var(--ant-text-tertiary);
  font-size: 12px;
}

.ant-alert-close-icon:hover {
  color: var(--ant-text-secondary);
}

.ant-tabs {
  font-size: 14px;
}

.ant-tabs-nav {
  display: flex;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.ant-tabs-tab {
  display: flex;
  align-items: center;
  padding: 12px 0;
  margin-right: 32px;
  font-size: 14px;
  color: var(--ant-text-secondary);
  cursor: pointer;
  transition: var(--ant-transition);
  white-space: nowrap;
  position: relative;
  user-select: none;
}

.ant-tabs-tab:hover {
  color: var(--ant-primary-hover);
}

.ant-tabs-tab.active {
  color: var(--ant-primary);
  font-weight: 500;
}

.ant-tabs-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ant-primary);
  border-radius: 2px 2px 0 0;
}

.ant-tabs-tab-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}

.ant-tabs-tab-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
}

.ant-tabs-content {
  padding: 16px 0;
}

.ant-tabs-tabpane {
  display: none;
}

.ant-tabs-tabpane.active {
  display: block;
}

.ant-tabs-card .ant-tabs-nav {
  border-bottom: 1px solid #f0f0f0;
}

.ant-tabs-card .ant-tabs-tab {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid #f0f0f0;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  padding: 8px 16px;
  margin-right: 2px;
}

.ant-tabs-card .ant-tabs-tab.active {
  background: #ffffff;
  border-color: #f0f0f0;
  border-bottom-color: #ffffff;
}

.ant-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--ant-text-tertiary);
  list-style: none;
  margin: 0;
  padding: 0;
}

.ant-breadcrumb-item {
  display: flex;
  align-items: center;
}

.ant-breadcrumb-item + .ant-breadcrumb-item::before {
  content: '/';
  margin: 0 8px;
  color: var(--ant-text-quaternary);
}

.ant-breadcrumb-item a {
  color: var(--ant-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.ant-breadcrumb-item a:hover {
  color: var(--ant-primary);
}

.ant-breadcrumb-item:last-child {
  color: var(--ant-text);
  font-weight: 500;
}

.ant-breadcrumb-separator {
  margin: 0 8px;
  color: var(--ant-text-quaternary);
}

.ant-dropdown {
  position: absolute;
  z-index: 1050;
  min-width: 120px;
  padding: 4px;
  background: var(--ant-bg-elevated);
  border-radius: var(--ant-border-radius);
  box-shadow: var(--ant-shadow-secondary);
  animation: antDropdownIn 0.15s ease;
}

@keyframes antDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ant-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.ant-dropdown-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  font-size: 14px;
  color: var(--ant-text);
  cursor: pointer;
  border-radius: 4px;
  transition: var(--ant-transition-fast);
  white-space: nowrap;
}

.ant-dropdown-menu-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.ant-dropdown-menu-item.danger {
  color: var(--ant-error);
}

.ant-dropdown-menu-item.danger:hover {
  background: var(--ant-error-bg);
}

.ant-dropdown-menu-item:disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}

.ant-dropdown-menu-item:disabled:hover {
  background: transparent;
}

.ant-dropdown-menu-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 4px 0;
}

.ant-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ant-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  overflow: hidden;
  user-select: none;
  flex-shrink: 0;
}

.ant-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ant-avatar-lg {
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 40px;
}

.ant-avatar-sm {
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 24px;
}

.ant-avatar-square {
  border-radius: var(--ant-border-radius);
}

.ant-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin: 16px 0;
}

.ant-divider-horizontal {
  display: block;
  clear: both;
  width: 100%;
  min-width: 100%;
}

.ant-divider-vertical {
  display: inline-block;
  width: 1px;
  height: 0.9em;
  margin: 0 8px;
  vertical-align: middle;
  border-top: none;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.ant-divider-with-text {
  display: flex;
  align-items: center;
  margin: 16px 0;
  color: var(--ant-text);
  font-size: 14px;
  font-weight: 500;
}

.ant-divider-with-text::before,
.ant-divider-with-text::after {
  content: '';
  flex: 1;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ant-divider-with-text::before {
  margin-right: 16px;
}

.ant-divider-with-text::after {
  margin-left: 16px;
}

.ant-space {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ant-space-vertical {
  flex-direction: column;
}

.ant-space-align-center {
  align-items: center;
}

.ant-space-align-start {
  align-items: flex-start;
}

.ant-space-align-end {
  align-items: flex-end;
}

.ant-space-align-baseline {
  align-items: baseline;
}

.ant-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}

.ant-empty-image {
  width: 64px;
  height: 41px;
  margin-bottom: 8px;
}

.ant-empty-image svg {
  width: 100%;
  height: 100%;
}

.ant-empty-description {
  font-size: 14px;
  color: var(--ant-text-tertiary);
}

.ant-empty-small .ant-empty-image {
  width: 48px;
  height: 32px;
}

.ant-skeleton {
  display: table;
  width: 100%;
}

.ant-skeleton-header {
  display: table-cell;
  padding-right: 16px;
  vertical-align: top;
}

.ant-skeleton-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  animation: antSkeletonLoading 1.4s ease infinite;
}

.ant-skeleton-avatar-square {
  border-radius: var(--ant-border-radius);
}

.ant-skeleton-content {
  display: table-cell;
  width: 100%;
  vertical-align: top;
}

.ant-skeleton-title {
  height: 16px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin-bottom: 12px;
  animation: antSkeletonLoading 1.4s ease infinite;
}

.ant-skeleton-paragraph {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ant-skeleton-paragraph li {
  height: 16px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin-bottom: 8px;
  animation: antSkeletonLoading 1.4s ease infinite;
}

.ant-skeleton-paragraph li:last-child {
  width: 61%;
}

@keyframes antSkeletonLoading {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.ant-skeleton-title,
.ant-skeleton-paragraph li,
.ant-skeleton-avatar {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.06) 25%, rgba(0, 0, 0, 0.15) 37%, rgba(0, 0, 0, 0.06) 63%);
  background-size: 400px 100%;
}

.ant-skeleton-round .ant-skeleton-title,
.ant-skeleton-round .ant-skeleton-paragraph li {
  border-radius: 100px;
}

.ant-pro-login {
  display: flex;
  min-height: 100vh;
  background: #f0f2f5;
  font-family: var(--ant-font-family);
}

.ant-pro-login-content {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.ant-pro-login-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 64px;
  max-width: 560px;
}

.ant-pro-login-left-title {
  font-size: 33px;
  font-weight: 600;
  color: var(--ant-text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ant-pro-login-left-desc {
  font-size: 16px;
  color: var(--ant-text-secondary);
  line-height: 1.6;
}

.ant-pro-login-form {
  width: 400px;
  max-width: 100%;
  padding: 32px 40px;
  background: var(--ant-bg-container);
  border-radius: 8px;
  box-shadow: var(--ant-shadow-secondary);
}

.ant-pro-login-form-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--ant-text);
  text-align: center;
  margin-bottom: 8px;
}

.ant-pro-login-form-subtitle {
  font-size: 14px;
  color: var(--ant-text-tertiary);
  text-align: center;
  margin-bottom: 32px;
}

.ant-pro-login-form-item {
  margin-bottom: 20px;
}

.ant-pro-login-form-item label {
  display: block;
  font-size: 14px;
  color: var(--ant-text);
  margin-bottom: 8px;
  font-weight: 500;
}

.ant-pro-login-form-item .ant-input {
  height: 40px;
  font-size: 14px;
}

.ant-pro-login-form-item .ant-input-affix-wrapper {
  height: 40px;
}

.ant-pro-login-form-submit {
  width: 100%;
  height: 40px;
  font-size: 16px;
  margin-top: 8px;
}

.ant-pro-login-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 14px;
}

.ant-pro-login-form-footer a {
  color: var(--ant-primary);
  text-decoration: none;
}

.ant-pro-login-form-footer a:hover {
  color: var(--ant-primary-hover);
}

.ant-pro-login-form-other {
  text-align: center;
  margin-top: 24px;
  color: var(--ant-text-secondary);
  font-size: 14px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.flex {
  display: flex;
}

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

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

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .ant-pro-sidebar {
    width: var(--ant-sidebar-collapsed-width);
  }

  .ant-pro-sidebar .ant-pro-sidebar-logo h1 {
    display: none;
  }

  .ant-pro-sidebar .ant-pro-sidebar-logo {
    padding: 0;
    justify-content: center;
  }

  .ant-pro-sidebar .ant-pro-sidebar-menu-item {
    justify-content: center;
    padding: 0;
    margin: 2px;
  }

  .ant-pro-sidebar .ant-pro-sidebar-menu-item .menu-icon {
    margin-right: 0;
  }

  .ant-pro-sidebar .ant-pro-sidebar-menu-item .menu-text {
    display: none;
  }

  .ant-pro-sidebar .ant-pro-sidebar-menu-group {
    display: none;
  }

  .ant-pro-main {
    margin-left: var(--ant-sidebar-collapsed-width);
  }

  .ant-pro-login-left {
    display: none;
  }

  .ant-pro-login-form {
    width: 100%;
    padding: 24px;
  }

  .ant-pro-login-content {
    padding: 16px;
  }

  .ant-table-thead > tr > th,
  .ant-table-tbody > tr > td {
    padding: 8px 12px;
    font-size: 12px;
  }

  .ant-pro-content {
    padding: 12px;
  }

  .ant-modal {
    width: calc(100vw - 32px);
    margin: 16px auto;
  }

  .ant-modal-wrap {
    padding: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .ant-pro-sidebar {
    position: fixed;
    width: 0;
    transform: translateX(-100%);
  }

  .ant-pro-sidebar.mobile-open {
    width: var(--ant-sidebar-width);
    transform: translateX(0);
  }

  .ant-pro-main {
    margin-left: 0;
  }

  .ant-pro-login-form {
    padding: 20px;
  }

  .ant-pro-login-form-title {
    font-size: 22px;
  }
}

.ant-pro-sidebar-mobile-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.45);
}

.ant-pro-sidebar.mobile-open ~ .ant-pro-sidebar-mobile-mask {
  display: block;
}

.ant-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ant-text);
  user-select: none;
}

.ant-checkbox-input {
  width: 16px;
  height: 16px;
  accent-color: var(--ant-primary);
  cursor: pointer;
}

.ant-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ant-text);
  user-select: none;
}

.ant-radio-input {
  width: 16px;
  height: 16px;
  accent-color: var(--ant-primary);
  cursor: pointer;
}

.ant-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--ant-transition);
  border: none;
  outline: none;
}

.ant-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  transition: var(--ant-transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.ant-switch.checked {
  background: var(--ant-primary);
}

.ant-switch.checked::after {
  left: 24px;
}

.ant-switch:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ant-tooltip {
  position: absolute;
  z-index: 1070;
  max-width: 250px;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 1.6;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 6px;
  word-wrap: break-word;
  animation: antTooltipIn 0.15s ease;
}

@keyframes antTooltipIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ant-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ant-progress-outer {
  flex: 1;
}

.ant-progress-inner {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 100px;
  overflow: hidden;
}

.ant-progress-bg {
  height: 100%;
  background: var(--ant-primary);
  border-radius: 100px;
  transition: width 0.3s ease;
}

.ant-progress-success .ant-progress-bg {
  background: var(--ant-success);
}

.ant-progress-text {
  font-size: 14px;
  color: var(--ant-text);
  white-space: nowrap;
  min-width: 2em;
  text-align: left;
}

.ant-spin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ant-spin-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ant-spin-dot-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ant-primary);
  animation: antSpinDot 1.4s ease-in-out infinite both;
}

.ant-spin-dot-item:nth-child(1) {
  animation-delay: -0.32s;
}

.ant-spin-dot-item:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes antSpinDot {
  0%, 80%, 100% {
    transform: scale(0.4);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.ant-spin-container {
  position: relative;
  transition: opacity 0.3s;
}

.ant-spin-container.spinning {
  opacity: 0.5;
  pointer-events: none;
}

.ant-spin-nested-loading {
  position: relative;
}

.ant-spin-nested-loading > .ant-spin {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
}

.ant-message {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.ant-message-notice {
  padding: 8px 16px;
  pointer-events: auto;
  animation: antMessageIn 0.2s ease;
}

@keyframes antMessageIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ant-message-notice-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--ant-bg-elevated);
  border-radius: var(--ant-border-radius);
  box-shadow: var(--ant-shadow-secondary);
  font-size: 14px;
  color: var(--ant-text);
}

.ant-notification {
  position: fixed;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.ant-notification-topRight {
  top: 24px;
  right: 24px;
}

.ant-notification-topLeft {
  top: 24px;
  left: 24px;
}

.ant-notification-bottomRight {
  bottom: 24px;
  right: 24px;
}

.ant-notification-bottomLeft {
  bottom: 24px;
  left: 24px;
}

.ant-notification-notice {
  width: 384px;
  max-width: calc(100vw - 48px);
  padding: 16px 24px;
  background: var(--ant-bg-elevated);
  border-radius: var(--ant-border-radius);
  box-shadow: var(--ant-shadow-secondary);
  pointer-events: auto;
  animation: antNotificationIn 0.2s ease;
  position: relative;
}

@keyframes antNotificationIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ant-notification-notice-message {
  font-size: 14px;
  font-weight: 500;
  color: var(--ant-text);
  margin-bottom: 4px;
  padding-right: 20px;
}

.ant-notification-notice-description {
  font-size: 14px;
  color: var(--ant-text-secondary);
}

.ant-notification-notice-close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  color: var(--ant-text-tertiary);
  font-size: 14px;
}

.ant-notification-notice-close:hover {
  color: var(--ant-text-secondary);
}

.ant-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 32px;
}

.ant-result-icon {
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 1;
}

.ant-result-icon.success {
  color: var(--ant-success);
}

.ant-result-icon.error {
  color: var(--ant-error);
}

.ant-result-icon.warning {
  color: var(--ant-warning);
}

.ant-result-icon.info {
  color: var(--ant-primary);
}

.ant-result-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--ant-text);
  margin-bottom: 8px;
}

.ant-result-subtitle {
  font-size: 14px;
  color: var(--ant-text-secondary);
  margin-bottom: 24px;
}

.ant-result-extra {
  display: flex;
  gap: 8px;
}

.ant-descriptions {
  font-size: 14px;
}

.ant-descriptions-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.ant-descriptions-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ant-text);
  margin: 0;
  flex: 1;
}

.ant-descriptions-view {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.ant-descriptions-view th {
  padding: 12px 16px;
  font-weight: 400;
  font-size: 14px;
  color: var(--ant-text-secondary);
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  white-space: nowrap;
}

.ant-descriptions-view td {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ant-text);
  border-bottom: 1px solid #f0f0f0;
}

.ant-descriptions-bordered .ant-descriptions-view {
  border: 1px solid #f0f0f0;
}

.ant-descriptions-bordered .ant-descriptions-view th,
.ant-descriptions-bordered .ant-descriptions-view td {
  border: 1px solid #f0f0f0;
}

.ant-steps {
  display: flex;
  width: 100%;
}

.ant-steps-item {
  flex: 1;
  display: flex;
  position: relative;
}

.ant-steps-item-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ant-steps-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 500;
  color: var(--ant-text-secondary);
  background: #ffffff;
  margin-bottom: 8px;
  transition: var(--ant-transition);
}

.ant-steps-item-process .ant-steps-item-icon {
  border-color: var(--ant-primary);
  background: var(--ant-primary);
  color: #ffffff;
}

.ant-steps-item-finish .ant-steps-item-icon {
  border-color: var(--ant-primary);
  color: var(--ant-primary);
}

.ant-steps-item-title {
  font-size: 14px;
  color: var(--ant-text-secondary);
  font-weight: 500;
  padding-right: 16px;
}

.ant-steps-item-process .ant-steps-item-title {
  color: var(--ant-text);
}

.ant-steps-item-finish .ant-steps-item-title {
  color: var(--ant-text);
}

.ant-steps-item-tail {
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  padding-left: 48px;
}

.ant-steps-item-finish .ant-steps-item-tail {
  background: var(--ant-primary);
}

.ant-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ant-timeline-item {
  position: relative;
  padding-bottom: 20px;
  padding-left: 24px;
}

.ant-timeline-item-tail {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 1px;
  height: calc(100% - 8px);
  background: rgba(0, 0, 0, 0.06);
}

.ant-timeline-item:last-child .ant-timeline-item-tail {
  display: none;
}

.ant-timeline-item-head {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ant-primary);
  border: 2px solid var(--ant-primary);
}

.ant-timeline-item-head-default {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
}

.ant-timeline-item-content {
  font-size: 14px;
  color: var(--ant-text);
}

.ant-popover {
  position: absolute;
  z-index: 1030;
  min-width: 177px;
  max-width: 300px;
  background: var(--ant-bg-elevated);
  border-radius: var(--ant-border-radius);
  box-shadow: var(--ant-shadow-secondary);
  animation: antPopoverIn 0.15s ease;
}

@keyframes antPopoverIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ant-popover-inner {
  padding: 12px 16px;
}

.ant-popover-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ant-text);
  margin-bottom: 4px;
}

.ant-popover-content {
  font-size: 14px;
  color: var(--ant-text-secondary);
}

.ant-image {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

.ant-image img {
  width: 100%;
  height: auto;
  border-radius: var(--ant-border-radius);
}

.ant-image-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--ant-border-radius);
}

.ant-image:hover .ant-image-mask {
  opacity: 1;
}

.ant-list {
  font-size: 14px;
}

.ant-list-header {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.ant-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ant-list-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.ant-list-item:last-child {
  border-bottom: none;
}

.ant-list-item-content {
  flex: 1;
  color: var(--ant-text);
}

.ant-list-item-action {
  display: flex;
  gap: 8px;
  margin-left: 16px;
  color: var(--ant-text-secondary);
}

.ant-list-footer {
  padding: 12px 0;
  border-top: 1px solid #f0f0f0;
}

.ant-pro-grid-content {
  width: 100%;
  min-height: 100%;
  transition: var(--ant-transition);
}

.ant-pro-grid-content.wide {
  max-width: 1200px;
  margin: 0 auto;
}

.ant-pro-footer {
  padding: 16px;
  text-align: center;
  color: var(--ant-text-tertiary);
  font-size: 14px;
  background: var(--ant-bg-layout);
}

.ant-pro-footer a {
  color: var(--ant-primary);
  text-decoration: none;
}

.ant-pro-footer a:hover {
  color: var(--ant-primary-hover);
}

.ant-pro-watermark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-repeat: repeat;
  opacity: 0.06;
  z-index: 9;
}

.ant-pro-setting-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  width: 300px;
  height: 100vh;
  background: var(--ant-bg-container);
  box-shadow: var(--ant-shadow-secondary);
  transform: translateX(100%);
  transition: transform 0.2s ease;
}

.ant-pro-setting-drawer.open {
  transform: translateX(0);
}

.ant-pro-setting-drawer-handle {
  position: absolute;
  top: 240px;
  left: -40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ant-primary);
  color: #ffffff;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  font-size: 18px;
}

.ant-pro-setting-drawer-content {
  padding: 24px;
}

.ant-pro-setting-drawer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ant-text);
  margin-bottom: 24px;
}
