:root {
  --boot-ink: #172033;
  --boot-muted: #7a8496;
  --boot-line: #dce3ed;
  --boot-primary: #5f6edb;
  --boot-accent: #168f88;
  --boot-surface: #f4f7fb;
}

.global-boot-loading {
  position: fixed;
  inset: 0;
  z-index: 10000;
  min-width: 320px;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--boot-ink);
  background: var(--boot-surface);
  font-family: 'Source Han Sans SC', 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
  opacity: 1;
  transition: opacity 180ms ease;
  isolation: isolate;
}

.global-boot-loading::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.45;
  background-image:
    linear-gradient(rgb(118 132 158 / 5.5%) 1px, transparent 1px), linear-gradient(90deg, rgb(118 132 158 / 5.5%) 1px, transparent 1px);
  background-size: 32px 32px;
  content: '';
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.global-boot-loading::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, rgb(255 255 255 / 88%), rgb(244 247 251 / 22%) 45%, rgb(232 241 245 / 42%));
  content: '';
}

.global-boot-loading.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.global-boot-loading__stage {
  width: min(420px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: global-boot-stage-enter 550ms ease-out both;
}

.global-boot-loading__mark {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
}

.global-boot-loading__ring {
  position: absolute;
  border-style: solid;
  border-color: var(--boot-line);
  border-radius: 50%;
}

.global-boot-loading__ring--outer {
  inset: 0;
  border-width: 1px;
  border-top-color: var(--boot-primary);
  border-right-color: var(--boot-primary);
  animation: global-boot-ring-spin 2.6s linear infinite;
}

.global-boot-loading__ring--inner {
  inset: 11px;
  border-width: 1px;
  border-bottom-color: var(--boot-accent);
  animation: global-boot-ring-spin-reverse 1.9s linear infinite;
}

.global-boot-loading__ring::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentcolor;
  content: '';
}

.global-boot-loading__ring--outer::after {
  top: 8px;
  right: 19px;
  color: var(--boot-primary);
  box-shadow: 0 0 0 4px rgb(95 110 219 / 10%);
}

.global-boot-loading__ring--inner::after {
  bottom: 4px;
  left: 21px;
  color: var(--boot-accent);
  box-shadow: 0 0 0 4px rgb(22 143 136 / 10%);
}

.global-boot-loading__core {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 86%);
  border-radius: 12px;
  color: #fff;
  background: var(--boot-primary);
  box-shadow: 0 14px 30px rgb(69 84 195 / 24%);
  font-family: STZhongsong, 'Microsoft YaHei UI', sans-serif;
  font-size: 25px;
  font-weight: 800;
  animation: global-boot-core-breathe 2.2s ease-in-out infinite;
}

.global-boot-loading__stage > p {
  margin: 0;
  color: var(--boot-muted);
  font-size: 13px;
  line-height: 20px;
}

.global-boot-loading__progress {
  position: relative;
  width: min(280px, 80vw);
  height: 3px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 3px;
  background: #dfe5ee;
}

.global-boot-loading__progress span {
  position: absolute;
  inset-block: 0;
  left: -42%;
  width: 42%;
  border-radius: inherit;
  background: var(--boot-primary);
  animation: global-boot-progress-travel 1.55s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.global-boot-loading__status {
  min-height: 20px;
  margin-top: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667085;
  font-size: 12px;
}

.global-boot-loading__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--boot-accent);
  animation: global-boot-status-pulse 1.5s ease-out infinite;
}

#global-boot-loading-status {
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

#global-boot-loading-status.is-changing {
  opacity: 0;
  transform: translateY(3px);
}

#global-boot-loading-retry {
  height: 34px;
  margin-top: 16px;
  padding: 0 16px;
  border: 1px solid #cfd6e4;
  border-radius: 7px;
  color: #344054;
  background: #fff;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

#global-boot-loading-retry:hover {
  border-color: #9fa9ba;
  background: #f8fafc;
}

.global-boot-loading footer {
  position: absolute;
  bottom: clamp(24px, 5vh, 48px);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #98a2b3;
  font-size: 11px;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.global-boot-loading footer i {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #98a2b3;
}

@keyframes global-boot-stage-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes global-boot-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes global-boot-ring-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes global-boot-core-breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgb(69 84 195 / 24%);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 18px 38px rgb(69 84 195 / 30%);
  }
}

@keyframes global-boot-progress-travel {
  0% {
    left: -42%;
  }

  55% {
    width: 58%;
  }

  100% {
    left: 100%;
    width: 36%;
  }
}

@keyframes global-boot-status-pulse {
  70% {
    box-shadow: 0 0 0 7px rgb(22 143 136 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(22 143 136 / 0%);
  }
}

@media (max-width: 520px) {
  .global-boot-loading__mark {
    transform: scale(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-boot-loading,
  .global-boot-loading *,
  .global-boot-loading::before,
  .global-boot-loading::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-ease: initial;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-blue-600: oklch(54.6% .245 262.881);
    --color-gray-600: oklch(44.6% .03 256.802);
    --color-gray-900: oklch(21% .034 264.665);
    --spacing: .25rem;
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --tracking-tight: -.025em;
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .\!visible {
    visibility: visible !important;
  }

  .collapse {
    visibility: collapse;
  }

  .invisible {
    visibility: hidden;
  }

  .visible {
    visibility: visible;
  }

  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .sticky {
    position: sticky;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .m-1 {
    margin: var(--spacing);
  }

  .m-63\.25 {
    margin: calc(var(--spacing) * 63.25);
  }

  .\!hidden {
    display: none !important;
  }

  .block {
    display: block;
  }

  .contents {
    display: contents;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .hidden\! {
    display: none !important;
  }

  .inline {
    display: inline;
  }

  .inline-block {
    display: inline-block;
  }

  .inline-flex {
    display: inline-flex;
  }

  .list-item {
    display: list-item;
  }

  .table {
    display: table;
  }

  .table\! {
    display: table !important;
  }

  .table-cell {
    display: table-cell;
  }

  .table-column {
    display: table-column;
  }

  .table-column-group {
    display: table-column-group;
  }

  .table-row {
    display: table-row;
  }

  .table-row-group {
    display: table-row-group;
  }

  .w-full {
    width: 100%;
  }

  .shrink {
    flex-shrink: 1;
  }

  .grow {
    flex-grow: 1;
  }

  .border-collapse {
    border-collapse: collapse;
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .resize {
    resize: both;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

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

  .gap-1 {
    gap: var(--spacing);
  }

  .truncate {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .rounded {
    border-radius: .25rem;
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border\! {
    border-style: var(--tw-border-style) !important;
    border-width: 1px !important;
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .tracking-tight {
    --tw-tracking: var(--tracking-tight);
    letter-spacing: var(--tracking-tight);
  }

  .text-\[\#6b7280\] {
    color: #6b7280;
  }

  .text-blue-600 {
    color: var(--color-blue-600);
  }

  .text-gray-600 {
    color: var(--color-gray-600);
  }

  .text-gray-900 {
    color: var(--color-gray-900);
  }

  .lowercase {
    text-transform: lowercase;
  }

  .uppercase {
    text-transform: uppercase;
  }

  .italic {
    font-style: italic;
  }

  .line-through {
    text-decoration-line: line-through;
  }

  .overline {
    text-decoration-line: overline;
  }

  .underline {
    text-decoration-line: underline;
  }

  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .\!outline {
    outline-style: var(--tw-outline-style) !important;
    outline-width: 1px !important;
  }

  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .invert {
    --tw-invert: invert(100%);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }

  @media (hover: hover) {
    .hover\:bg-\[\#5e6ad2\]\/10:hover {
      background-color: oklab(56.7377% .0143835 -.157872 / .1);
    }
  }
}

* {
  box-sizing: border-box;
}

html, body, #app {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  color: #111827;
  background: #f6f8fb;
  font-family: Arial, Microsoft YaHei, sans-serif;
}

button, input {
  font: inherit;
}

button {
  cursor: pointer;
}

.el-form-item.is-feedback-hidden .el-form-item__error {
  display: none;
}

.el-input, .el-textarea, .el-select, .el-cascader, .el-autocomplete, .el-input-number, .el-date-editor {
  --el-input-focus-border: #6674e8;
  --el-input-focus-border-color: #6674e8;
  --el-select-input-focus-border-color: #6674e8;
}

.el-input__wrapper.is-focus, .el-select__wrapper.is-focused, .el-textarea__inner:focus {
  box-shadow: inset 0 0 0 1px #6674e8 !important;
}

.el-input__wrapper, .el-select__wrapper {
  border-radius: 8px;
  min-height: 40px;
}

.el-textarea__inner {
  border-radius: 8px;
}

.el-table {
  --el-table-header-text-color: #6b7280;
}

.el-table th.el-table__cell {
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
}

.element-compat-spinner {
  z-index: 2;
  background: #ffffffb8;
  place-items: center;
  display: grid;
  position: absolute;
  inset: 0;
}

.element-compat-spinner span {
  border: 3px solid #dbe3f0;
  border-top-color: #409eff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: .8s linear infinite element-compat-spin;
}

@keyframes element-compat-spin {
  to {
    transform: rotate(360deg);
  }
}

.auth-card__mark {
  color: #fff;
  background: #0f766e;
  border-radius: 8px;
  place-items: center;
  width: 34px;
  height: 34px;
  font-weight: 700;
  display: grid;
}

.brand-logo {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.brand-logo__mark {
  color: #fff;
  background: linear-gradient(135deg, #5d6fe5, #7b8bf1);
  border-radius: 8px;
  place-items: center;
  width: 33px;
  height: 33px;
  font-weight: 800;
  display: grid;
  box-shadow: 0 10px 20px #5b6ce247;
}

.brand-logo--light {
  color: #fff;
}

.brand-logo--dark {
  color: #111827;
}

.page-header span {
  color: #475467;
  background: #f2f4f7;
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
}

.page, .workspace-page {
  flex: 1;
  min-width: 0;
}

.page-header {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 20px 24px;
  display: flex;
}

.page-header h1 {
  margin: 0;
  font-size: 22px;
}

.page-header p {
  color: #667085;
  margin: 8px 0 0;
  font-size: 13px;
}

.app-shell {
  background: #f6f8fb;
  min-width: 1180px;
  height: 100%;
}

.app-shell.n-layout, .app-shell__content.n-layout {
  height: 100%;
}

.app-shell__content.n-layout {
  flex: 1;
  width: 0;
  min-width: 0;
  display: block;
}

.app-shell__aside {
  background: #fff;
  border-right: 1px solid #e5e7eb;
  flex-direction: column;
  transition: width .24s;
  display: flex;
}

.app-shell__current-app {
  color: #111827;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 64px;
  padding: 0 18px;
  transition: padding .24s;
  display: flex;
  overflow: hidden;
}

.app-shell__current-app-name {
  color: #111827;
  letter-spacing: -.025em;
  text-align: left;
  opacity: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 0 auto;
  min-width: 0;
  max-width: 160px;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  transform: translateX(0);
}

.app-shell__aside.n-layout-sider--collapsed .app-shell__current-app-name {
  display: none;
}

.app-shell__aside.n-layout-sider--collapsed .app-shell__current-app {
  justify-content: center;
  padding: 0;
}

.app-shell__aside.n-layout-sider--collapsed .app-shell__menu {
  padding: 10px 8px;
}

.app-shell__aside.n-layout-sider--collapsed .app-shell__menu .el-menu-item {
  justify-content: center;
  align-items: center;
  width: 40px;
  padding: 0;
}

.app-shell__app-icon, .app-switcher button span {
  color: #fff;
  border-radius: 8px;
  flex: none;
  place-items: center;
  width: 30px;
  height: 30px;
  font-weight: 700;
  display: grid;
}

.app-shell__menu {
  border-right: 0;
  flex-direction: column;
  flex: 1;
  gap: 13px;
  padding: 14px 10px;
  transition: padding .24s;
  display: flex;
}

.app-shell__menu, .app-shell__menu.el-menu--collapse {
  width: 100%;
}

.app-shell__menu {
  --el-menu-active-color: #fff;
  --el-menu-hover-bg-color: #fff4f0;
  --el-menu-bg-color: transparent;
  font-weight: 600;
}

.app-shell__menu .el-menu-item {
  border-radius: 8px;
  height: 42px;
  margin-bottom: 0;
}

.app-shell__menu .el-menu-item.is-active {
  background: #ef6b4f;
}

.app-shell__header {
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding: 0;
  display: flex;
  position: relative;
}

.app-shell.is-user-groups-prototype {
  background: #f6f7f9;
}

.app-shell.is-user-groups-prototype .app-shell__aside, .app-shell.is-user-groups-prototype .app-shell__header {
  border-color: #edf0f5;
}

.app-shell.is-user-groups-prototype .app-shell__current-app--user-groups {
  cursor: pointer;
}

.app-shell.is-user-groups-prototype .app-shell__current-app--user-groups .app-shell__app-icon {
  background: #ff6b12;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  box-shadow: 0 8px 16px #ff6b1233;
}

.app-shell.is-user-groups-prototype .app-shell__current-app--user-groups .svg-icon {
  width: 20px;
  height: 20px;
}

.app-shell.is-user-groups-prototype .app-shell__current-app--user-groups .app-shell__current-app-name {
  font-size: 16px;
}

.el-menu-item .el-menu-tooltip__trigger {
  justify-content: center !important;
}

.app-shell.is-user-groups-prototype .app-shell__aside.n-layout-sider--collapsed .app-shell__menu {
  padding: 10px 11px;
}

.app-shell.is-user-groups-prototype .app-shell__menu .el-menu-item.is-active {
  background: #6673df;
  box-shadow: 0 7px 12px #6673df38;
}

.app-shell.is-user-groups-prototype .app-shell__main {
  background: #f6f7f9;
  padding: 20px 24px;
}

.app-shell__main {
  background: #f6f8fb;
  height: calc(100% - 64px);
  padding: 20px 24px;
  overflow: auto;
}

.app-switcher {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.app-switcher p {
  color: #98a2b3;
  margin: 0 0 6px;
  font-size: 13px;
}

.app-switcher button {
  color: #374151;
  text-align: left;
  background: none;
  border: 0;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 6px 10px;
  display: flex;
}

.app-switcher button.is-active, .app-switcher button:hover {
  background: #f3f6ff;
}

.app-switcher__home {
  margin-top: 8px;
  color: #667085 !important;
  border-top: 1px solid #eef1f6 !important;
}

.metric-grid, .action-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  display: grid;
}

.metric-grid article, .action-grid article {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  min-height: 92px;
  padding: 16px;
}

.metric-grid span, .action-grid span {
  color: #667085;
  font-size: 13px;
  display: block;
}

.metric-grid strong, .action-grid strong {
  margin-top: 10px;
  font-size: 24px;
  display: block;
}

.panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  min-height: 260px;
  margin-top: 16px;
  padding: 24px;
}

.panel h2 {
  margin: 0;
  font-size: 16px;
}

.panel p {
  color: #667085;
  margin: 10px 0 0;
  line-height: 1.7;
}

.workspace-card {
  border-radius: 12px;
  min-height: calc(100vh - 116px);
}

.workspace-card__header {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  display: flex;
}

.workspace-card__header strong {
  font-size: 18px;
}

.workspace-card__tools {
  align-items: center;
  gap: 12px;
  display: flex;
}

.workspace-card__search {
  width: 220px;
}

.folder-grid {
  grid-template-columns: repeat(4, minmax(180px, 242px));
  gap: 16px;
  padding: 8px 0;
  display: grid;
}

.folder-card {
  color: #111827;
  background: #f8fafc;
  border: 0;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 140px;
  padding: 20px;
  transition: transform .18s, box-shadow .18s;
  display: flex;
}

.folder-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px #0f172a14;
}

.folder-card span {
  color: #fff;
  background: #6366f1;
  border-radius: 12px;
  place-items: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: grid;
}

.folder-card strong {
  margin-top: 12px;
  font-size: 15px;
}

.folder-card small {
  color: #98a2b3;
  margin-top: 6px;
}

.folder-list {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.folder-list__row {
  color: #111827;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  grid-template-columns: 28px 1fr 80px 130px;
  place-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  display: grid;
}

.folder-list__row span, .folder-list__row small {
  color: #667085;
}

.blue-shield-note {
  margin-top: 18px;
}

.blue-shield-entry {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  display: flex;
}

.blue-shield-entry p {
  color: #667085;
  word-break: break-all;
  margin: 8px 0 0;
}

.blue-shield-mode-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  display: grid;
}

.blue-shield-mode-grid article {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  gap: 8px;
  min-height: 104px;
  padding: 16px;
  display: grid;
}

.blue-shield-mode-grid .n-icon {
  color: #2f74f5;
  font-size: 22px;
}

.api-platform-page {
  min-height: calc(100vh - 116px);
}

.api-file-row {
  color: #111827;
  text-align: left;
  background: #f8f9fb;
  border: 0;
  border-radius: 8px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 0 78px 0 13px;
  transition: transform .16s, background .16s, box-shadow .16s;
  display: grid;
}

.api-file-row:hover {
  background: #fff6f2;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px #ef6b4f1a;
}

.api-file-row.is-grid {
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: start;
  min-height: 148px;
  padding: 18px;
}

.api-file-row__icon {
  color: #fff;
  background: #ef6b4f;
  border-radius: 10px;
  place-items: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  display: grid;
}

.api-file-row.is-file .api-file-row__icon {
  color: #ef6b4f;
  background: #fff0eb;
}

.api-file-row__name {
  color: #111827;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  font-weight: 700;
  overflow: hidden;
}

.api-file-row__meta {
  color: #475467;
  text-align: right;
  min-width: 48px;
  font-weight: 700;
}

.api-chat-shell {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.api-chat-shell__bar {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 18px 0 20px;
  display: flex;
}

.api-chat-shell__bar strong {
  color: #0f172a;
  font-size: 16px;
  display: block;
}

.api-chat-shell__bar span {
  color: #667085;
  margin-top: 4px;
  font-size: 12px;
  display: block;
}

.api-chat-shell__mode {
  background: #f8fafc;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  flex: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  width: 260px;
  padding: 3px;
  display: grid;
}

.api-chat-shell__mode button {
  color: #667085;
  background: none;
  border: 0;
  border-radius: 6px;
  height: 32px;
  font-size: 13px;
  font-weight: 800;
}

.api-chat-shell__mode button.is-active {
  color: #fff;
  background: #ef6b4f;
}

.api-chat {
  grid-template-columns: 260px minmax(0, 1fr);
  height: calc(100vh - 186px);
  min-height: 620px;
  display: grid;
}

.api-chat__new {
  color: #fff;
  background: #ef6b4f;
  border: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 42px;
  margin-bottom: 18px;
  font-weight: 800;
  display: inline-flex;
}

.api-chat__session {
  color: #111827;
  text-align: left;
  background: none;
  border: 0;
  border-radius: 8px;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  min-height: 58px;
  margin-top: 10px;
  padding: 10px 12px;
  display: flex;
}

.api-chat__session.is-active, .api-chat__session:hover {
  background: #fff0eb;
}

.api-chat__session span {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  overflow: hidden;
}

.api-chat__session small {
  color: #98a2b3;
}

.api-chat__main {
  grid-template-rows: 70px minmax(0, 1fr) auto;
  min-width: 0;
  display: grid;
}

.api-chat__header {
  border-bottom: 1px solid #edf0f5;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  display: flex;
}

.api-chat__header strong, .api-placeholder strong {
  color: #111827;
  font-size: 18px;
  font-weight: 800;
  display: block;
}

.api-chat__header span, .api-placeholder p {
  color: #667085;
  margin-top: 4px;
  font-size: 13px;
  display: block;
}

.api-chat__model {
  width: 168px;
}

.api-chat__messages {
  min-height: 0;
  padding: 24px;
  overflow: auto;
}

.api-chat__empty {
  text-align: center;
  align-content: center;
  place-items: center;
  min-height: 220px;
  display: grid;
}

.api-chat__empty-icon, .api-placeholder span {
  color: #ef6b4f;
  background: #fff0eb;
  border-radius: 16px;
  place-items: center;
  width: 64px;
  height: 64px;
  font-size: 32px;
  display: grid;
}

.api-chat.is-safe-claw .api-chat__empty-icon {
  color: #1677ff;
  background: #eaf5ff;
}

.api-chat__empty strong {
  margin-top: 14px;
  font-size: 24px;
}

.api-chat__empty p {
  color: #667085;
  margin: 6px 0 0;
}

.api-chat__prompts {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  display: flex;
}

.api-chat__prompts button {
  color: #475467;
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.api-chat__prompts button:hover {
  color: #ef6b4f;
  background: #fff8f5;
  border-color: #f5b09e;
}

.api-message {
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  display: flex;
}

.api-message__content {
  max-width: min(72%, 760px);
}

.api-message.is-user {
  justify-content: flex-end;
  margin-left: auto;
}

.api-message__avatar {
  color: #ef6b4f;
  background: #fff0eb;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 32px;
  height: 32px;
  display: grid;
  overflow: hidden;
}

.api-message__bubble {
  color: #111827;
  white-space: pre-wrap;
  background: #f3f5f8;
  border-radius: 8px;
  padding: 12px 14px;
  line-height: 1.7;
}

.api-message.is-user .api-message__bubble {
  color: #fff;
  background: #ef6b4f;
}

.api-message__trace {
  gap: 8px;
  margin-top: 8px;
  display: grid;
}

.api-message__trace-item {
  background: #fff8f5;
  border-radius: 8px;
  padding: 10px 12px;
}

.api-message__trace-item strong, .api-message__trace-item span {
  font-size: 12px;
  display: block;
}

.api-message__trace-item span {
  color: #667085;
  margin-top: 4px;
}

.api-chat__composer {
  background: #fff;
  border-top: 1px solid #edf0f5;
  align-items: flex-end;
  gap: 10px;
  padding: 14px 18px;
  display: flex;
}

.api-chat__composer .n-input {
  flex: 1;
}

.api-placeholder {
  text-align: center;
  align-content: center;
  place-items: center;
  padding: 72px 24px;
  display: grid;
}

.api-placeholder p {
  max-width: 360px;
  line-height: 1.7;
}

.auth-page {
  background: #eef4f3;
  place-items: center;
  min-height: 100%;
  padding: 24px;
  display: grid;
}

.auth-card {
  background: #fff;
  border: 1px solid #d9e4e2;
  border-radius: 8px;
  flex-direction: column;
  gap: 16px;
  width: 380px;
  padding: 30px;
  display: flex;
  box-shadow: 0 18px 42px #0f172a14;
}

.auth-card h1 {
  margin: 6px 0 0;
  font-size: 24px;
}

.auth-card p {
  color: #667085;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.auth-card label {
  color: #475467;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  display: flex;
}

.auth-card .el-input__wrapper {
  border-radius: 8px;
  min-height: 40px;
}

.primary-button, .text-button {
  border: 0;
  border-radius: 8px;
  height: 40px;
}

.primary-button {
  color: #fff;
  background: #0f766e;
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: .62;
}

.text-button {
  color: #0f766e;
  background: none;
}

.app-shell.is-zhiji-prototype {
  background: #eaf3fd;
  min-width: 0;
}

.app-shell.is-zhiji-prototype .app-shell__aside, .app-shell.is-zhiji-prototype .app-shell__header {
  display: none;
}

.app-shell.is-zhiji-prototype .app-shell__main {
  background: #eaf3fd;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.app-shell.is-zhiji-prototype .api-platform-page {
  min-height: 100vh;
}

.app-shell.is-safe-claw-app .app-shell__main {
  background: #f3f8ff;
  height: 100dvh;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
}

.app-shell.is-safe-claw-app .api-platform-page {
  height: 100dvh;
  min-height: 100dvh;
}

.apps-page {
  background: radial-gradient(circle at 28% 22%, #e7ebff8c, #0000 26%), radial-gradient(circle at 83% 73%, #e4eefcb8, #0000 24%), linear-gradient(135deg, #f9fafc 0%, #fff 48%, #f8fafc 100%);
  justify-content: center;
  min-height: 100%;
  padding: 94px 24px 36px;
  display: flex;
}

.apps-page__inner {
  width: min(100%, 1044px);
  transform: translateX(-36px);
}

.apps-page__brand {
  color: #111827;
  padding: 0;
}

.apps-page__brand strong {
  font-size: 20px;
  font-weight: 800;
}

.apps-page__header {
  text-align: center;
  margin-top: 22px;
}

.apps-page__header h1 {
  color: #111827;
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.apps-page__header p {
  color: #667085;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  font-size: 15px;
  display: inline-flex;
}

.apps-page__header .n-icon {
  color: #5f6ee8;
  font-size: 15px;
}

.app-entry-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
  display: grid;
}

.apps-page__status {
  color: #667085;
  background: #ffffffd1;
  border: 1px solid #e3e7ef;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 49px auto 0;
  padding: 9px 18px;
  font-size: 14px;
  display: flex;
  box-shadow: 0 10px 24px #0f172a0f;
}

.apps-page__status span {
  background: #55d981;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

@media (max-width: 1100px) {
  .apps-page__inner {
    transform: none;
  }

  .app-entry-grid, .folder-grid, .metric-grid, .action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .workspace-card__header, .workspace-card__tools {
    flex-direction: column;
    align-items: stretch;
  }

  .workspace-card__search {
    width: 100%;
  }

  .folder-grid, .app-entry-grid, .metric-grid, .action-grid {
    grid-template-columns: 1fr;
  }

  .apps-page__status {
    text-align: center;
    width: 100%;
  }

  .api-chat-shell__bar {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .api-chat-shell__mode {
    width: 100%;
  }

  .api-chat {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 640px;
  }

  .api-chat__main {
    min-height: 560px;
  }

  .api-chat__header {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .api-message__content {
    max-width: calc(100vw - 96px);
  }
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

@property --tw-tracking {
  syntax: "*";
  inherits: false
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-ease {
  syntax: "*";
  inherits: false
}
