/* 通知图标脉冲动画 */
@keyframes notification-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.notification-pulse {
  animation: notification-pulse 2s infinite;
}

/* 通知图标高亮效果 */
.notification-pulse .anticon-bell {
  color: #1890ff !important;
  filter: drop-shadow(0 0 2px rgba(24, 144, 255, 0.5));
}

/* 通知Badge动画 */
.notification-pulse .ant-badge-count {
  animation: notification-pulse 1.5s infinite;
  background-color: #ff4d4f !important;
  box-shadow: 0 0 4px rgba(255, 77, 79, 0.5);
}

/* 通知下拉菜单样式 */
.ant-dropdown .ant-dropdown-menu {
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e6e6e6;
  background: #ffffff;
  max-width: 320px;
  overflow: hidden;
}

/* 通知下拉菜单头部样式 */
.notification-dropdown-header {
  background-color: #fafafa !important;
  border-bottom: 1px solid #e8e8e8 !important;
  padding: 12px 16px !important;
  min-height: 44px !important;
}

/* 通知下拉菜单底部样式 */
.notification-dropdown-footer {
  background-color: #fafafa !important;
  border-top: 1px solid #e8e8e8 !important;
  padding: 12px 16px !important;
  min-height: 44px !important;
}

/* 未读通知项样式 */
.notification-item-unread {
  background-color: #e6f7ff !important;
  border-left: 3px solid #1890ff;
}

/* 通知列表项悬停效果 */
.ant-list-item:hover {
  background-color: #f5f5f5 !important;
}

/* 通知时间样式 */
.notification-time {
  font-size: 11px;
  color: #999;
  white-space: nowrap;
}

/* 通知状态图标样式 */
.notification-status-icon {
  font-size: 14px;
  margin-right: 8px;
}

/* 通知内容省略号样式 */
.notification-content {
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .notification-dropdown {
    width: 280px !important;
  }
  
  .notification-content {
    max-width: 180px;
  }
}

/* 深色主题适配 */
[data-theme='dark'] .notification-pulse .anticon-bell {
  color: #177ddc !important;
}

[data-theme='dark'] .notification-item-unread {
  background-color: #162312 !important;
  border-left-color: #389e0d;
}

/* 通知计数器闪烁效果 */
@keyframes notification-blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0.3;
  }
}

.notification-count-blink {
  animation: notification-blink 1s infinite;
}
/* 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;
}

/* 全局样式 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
    'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.85);
  background-color: #f5f5f5;
}

/* 滚动条样式 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 布局相关 */
.layout-content {
  padding: 24px;
  margin: 0;
  min-height: calc(100vh - 64px);
  background: #f5f5f5;
}

.page-container {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  box-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);
}

.page-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.page-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  margin: 0 0 8px 0;
}

.page-description {
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
}

/* 工具栏样式 */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 16px;
  background: #fafafa;
  border-radius: 6px;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 状态标签 */
.status-tag {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.status-success {
  background: #f6ffed;
  border: 1px solid #b7eb8f;
  color: #389e0d;
}

.status-failed {
  background: #fff1f0;
  border: 1px solid #ffa39e;
  color: #cf1322;
}

.status-warning {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  color: #d48806;
}

.status-timeout {
  background: #f9f0ff;
  border: 1px solid #d3adf7;
  color: #722ed1;
}

/* 统计卡片 */
.stat-card {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.stat-card:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin: 8px 0;
}

.stat-title {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  margin: 0;
}

.stat-trend {
  font-size: 12px;
  margin-top: 8px;
}

.stat-trend.up {
  color: #52c41a;
}

.stat-trend.down {
  color: #ff4d4f;
}

/* 表格相关 */
.table-actions {
  display: flex;
  gap: 8px;
}

.table-actions .ant-btn {
  padding: 4px 8px;
  height: auto;
  font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .layout-content {
    padding: 16px;
  }
  
  .page-container {
    padding: 16px;
  }
  
  .toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .toolbar-left,
  .toolbar-right {
    justify-content: center;
  }
  
  .ant-table-wrapper {
    overflow-x: auto;
  }
}

/* 认证页面样式 */
.auth-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.auth-header {
  text-align: center;
  padding: 32px 32px 24px;
  background: #fff;
}

.auth-logo {
  font-size: 28px;
  font-weight: 600;
  color: #1890ff;
  margin-bottom: 8px;
}

.auth-subtitle {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}

.auth-form {
  padding: 0 32px 32px;
}

.auth-form .ant-form-item:last-child {
  margin-bottom: 0;
}

.auth-form .ant-btn {
  width: 100%;
  height: 40px;
}

.auth-links {
  text-align: center;
  padding: 16px 32px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

.auth-links a {
  color: #1890ff;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

/* OTP相关样式 */
.qr-code-container {
  text-align: center;
  padding: 24px;
  background: #fafafa;
  border-radius: 6px;
  margin: 16px 0;
}

.backup-codes {
  background: #fff7e6;
  border: 1px solid #ffd666;
  border-radius: 6px;
  padding: 16px;
  margin: 16px 0;
}

.backup-codes-title {
  font-weight: 600;
  color: #d48806;
  margin-bottom: 12px;
}

.backup-codes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.backup-code {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 14px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #e6f7ff;
  text-align: center;
}

/* 加载动画 */
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.loading-full-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 工具提示样式 */
.ant-tooltip-inner {
  max-width: 300px;
}

/* 自定义消息样式 */
.menshen-message {
  z-index: 10000;
}

/* 禁用状态 */
.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/*# sourceMappingURL=main.661e03d24c7da42b98ba.css.map*/