/* 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;
  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;
}
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


#app {
  height: 100vh;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 列表页搜索筛选:inline 表单换行时保持上下行间距,风格统一 */
.ant-collapse-content-box .ant-form-inline {
  row-gap: 12px;
}
.ant-collapse-content-box .ant-form-inline .ant-form-item {
  margin-bottom: 0;
}

.login-page[data-v-2d66651a] {
  display: flex;
  height: 100vh;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== Left 品牌区 ===== */
.login-left[data-v-2d66651a] {
  flex: 1;
  background: linear-gradient(135deg, #0f1026 0%, #16213e 45%, #1a3a6b 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 64px;
  position: relative;
  overflow: hidden;
}
/* 背景发光装饰 */
.glow[data-v-2d66651a] {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}
.glow-a[data-v-2d66651a] { width: 420px; height: 420px; background: #667eea; top: -120px; right: -80px;
}
.glow-b[data-v-2d66651a] { width: 360px; height: 360px; background: #764ba2; bottom: -100px; left: -60px;
}
.glow-c[data-v-2d66651a] { width: 220px; height: 220px; background: #3ec6d0; top: 40%; left: 55%; opacity: 0.18;
}
.left-brand[data-v-2d66651a] {
  z-index: 2;
}
.brand-text[data-v-2d66651a] { font-size: 22px; font-weight: 800; letter-spacing: 0.5px;
}
.brand-dot[data-v-2d66651a] { color: #667eea;
}
.left-body[data-v-2d66651a] {
  max-width: 460px;
  z-index: 2;
  position: relative;
  margin: 40px auto 0;
}
.left-badge[data-v-2d66651a] {
  display: inline-block;
  background: rgba(102, 126, 234, 0.18);
  border: 1px solid rgba(102, 126, 234, 0.35);
  color: #9db4ff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.left-title[data-v-2d66651a] {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.left-desc[data-v-2d66651a] {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.7;
}
.left-features[data-v-2d66651a] { display: flex; flex-direction: column; gap: 18px;
}
.left-item[data-v-2d66651a] {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.left-item-icon[data-v-2d66651a] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(82, 196, 26, 0.16);
  color: #52c41a;
  font-size: 13px;
  flex-shrink: 0;
}
.left-item-sub[data-v-2d66651a] {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: auto;
}
.left-footer[data-v-2d66651a] {
  z-index: 2;
  margin-top: auto;
}
.left-metrics[data-v-2d66651a] {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.metric-value[data-v-2d66651a] {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.metric-label[data-v-2d66651a] {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}
.left-copyright[data-v-2d66651a] {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ===== Right 表单区 ===== */
.login-right[data-v-2d66651a] {
  width: 480px;
  background: #f6f7fb;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6vh;
  position: relative;
  overflow-y: auto;
}
.login-right[data-v-2d66651a]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}
.login-card-wrap[data-v-2d66651a] { width: 100%; max-width: 380px;
}
.login-card[data-v-2d66651a] {
  background: #fff;
  border-radius: 16px;
  padding: 28px 34px 24px;
  box-shadow: 0 8px 40px rgba(31, 45, 61, 0.08);
  border: 1px solid rgba(31, 45, 61, 0.04);
}
.login-greeting[data-v-2d66651a] { margin-bottom: 20px;
}
.login-greeting[data-v-2d66651a]::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
  margin-top: 12px;
}
.login-greeting h2[data-v-2d66651a] { font-size: 22px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px;
}
.login-greeting p[data-v-2d66651a] { font-size: 13px; color: #8c8c9c;
}
.login-more[data-v-2d66651a] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.login-more a[data-v-2d66651a] { color: #8c8c9c; font-size: 13px; text-decoration: none; transition: color .2s;
}
.login-more a[data-v-2d66651a]:hover { color: #667eea;
}
.more-divider[data-v-2d66651a] { width: 1px; height: 12px; background: #e5e6eb;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
.login-left[data-v-2d66651a] { display: none;
}
.login-right[data-v-2d66651a] { width: 100%;
}
.login-right[data-v-2d66651a]::before { display: none;
}
}
@media (max-width: 480px) {
.login-card[data-v-2d66651a] { margin: 0 16px;
}
}

.layout[data-v-7fd4dd7d] { height: 100vh;
}
.logo[data-v-7fd4dd7d] { height: 64px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: bold; gap: 8px;
}
.logo img[data-v-7fd4dd7d] { width: 32px; height: 32px;
}
.header[data-v-7fd4dd7d] { background: #fff; padding: 0 24px; display: flex; align-items: center; box-shadow: 0 1px 4px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100;
}
.trigger[data-v-7fd4dd7d] { font-size: 18px; cursor: pointer;
}
.header-right[data-v-7fd4dd7d] { margin-left: auto;
}
.user-info[data-v-7fd4dd7d] { display: flex; align-items: center; gap: 8px; color: rgba(0,0,0,0.85);
}
.content[data-v-7fd4dd7d] { margin: 24px; min-height: 280px;
}
@media (max-width: 768px) {
.content[data-v-7fd4dd7d] { margin: 12px;
}
.header[data-v-7fd4dd7d] { padding: 0 12px;
}
}

.layout[data-v-575b3bcd] { height: 100vh;
}
.logo[data-v-575b3bcd] { height: 64px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: bold; gap: 8px;
}
.logo img[data-v-575b3bcd] { width: 32px; height: 32px;
}
.header[data-v-575b3bcd] { background: #fff; padding: 0 24px; display: flex; align-items: center; box-shadow: 0 1px 4px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100;
}
.trigger[data-v-575b3bcd] { font-size: 18px; cursor: pointer;
}
.header-right[data-v-575b3bcd] { margin-left: auto;
}
.user-info[data-v-575b3bcd] { display: flex; align-items: center; gap: 8px; color: rgba(0,0,0,0.85);
}
.content[data-v-575b3bcd] { margin: 24px; min-height: 280px;
}
@media (max-width: 768px) {
.content[data-v-575b3bcd] { margin: 12px;
}
.header[data-v-575b3bcd] { padding: 0 12px;
}
}
