:root {
  --adm-radius-s: 4px;
  --adm-radius-m: 8px;
  --adm-radius-l: 12px;
  --adm-font-size-1: 9px;
  --adm-font-size-2: 10px;
  --adm-font-size-3: 11px;
  --adm-font-size-4: 12px;
  --adm-font-size-5: 13px;
  --adm-font-size-6: 14px;
  --adm-font-size-7: 15px;
  --adm-font-size-8: 16px;
  --adm-font-size-9: 17px;
  --adm-font-size-10: 18px;
  --adm-color-primary: #1677ff;
  --adm-color-success: #00b578;
  --adm-color-warning: #ff8f1f;
  --adm-color-danger: #ff3141;
  --adm-color-yellow: #ff9f18;
  --adm-color-orange: #ff6430;
  --adm-color-wathet: #e7f1ff;
  --adm-color-text: #333;
  --adm-color-text-secondary: #666;
  --adm-color-weak: #999;
  --adm-color-light: #ccc;
  --adm-color-border: #eee;
  --adm-color-background: #fff;
  --adm-color-highlight: var(--adm-color-danger);
  --adm-color-white: #fff;
  --adm-color-box: #f5f5f5;
  --adm-color-text-light-solid: var(--adm-color-white);
  --adm-color-text-dark-solid: #000;
  --adm-color-fill-content: var(--adm-color-box);
  --adm-font-size-main: var(--adm-font-size-5);
  --adm-font-family: -apple-system, blinkmacsystemfont, "Helvetica Neue",
    helvetica, segoe ui, arial, roboto, "PingFang SC", "miui",
    "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
  --adm-border-color: var(--adm-color-border);
}
html[data-prefers-color-scheme="dark"] {
  --adm-color-primary: #3086ff;
  --adm-color-success: #34b368;
  --adm-color-warning: #ffa930;
  --adm-color-danger: #ff4a58;
  --adm-color-yellow: #ffa930;
  --adm-color-orange: #e65a2b;
  --adm-color-wathet: #0d2543;
  --adm-color-text: #e6e6e6;
  --adm-color-text-secondary: #b3b3b3;
  --adm-color-weak: grey;
  --adm-color-light: #4d4d4d;
  --adm-color-border: #2b2b2b;
  --adm-color-box: #0a0a0a;
  --adm-color-background: #1a1a1a;
  --adm-color-background-body: var(--adm-color-background);
  --adm-border-color: var(--adm-color-border);
}
:root {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  background-color: var(--adm-color-background-body);
}
body {
  color: var(--adm-color-text);
  font-family: var(--adm-font-family);
  font-size: var(--adm-font-size-main);
}
a,
button {
  cursor: pointer;
}
a {
  color: var(--adm-color-primary);
  transition: opacity 0.2s ease-in-out;
}
a:active {
  opacity: 0.8;
}
.adm-plain-anchor {
  color: unset;
  transition: none;
}
.adm-plain-anchor:active {
  opacity: unset;
}
body.adm-overflow-hidden {
  overflow: hidden !important;
}
div.adm-px-tester {
  --size: 1;
  height: calc(var(--size) / 2 * 2px);
  left: -100vw;
  pointer-events: none;
  position: fixed;
  top: -100vh;
  -webkit-user-select: none;
  user-select: none;
  width: 0;
}
.adm-spin-loading {
  --color: var(--adm-color-weak);
  --size: 32px;
  height: var(--size);
  width: var(--size);
}
.adm-spin-loading-svg {
  animation: adm-spin-loading-rotate 0.8s linear infinite;
  height: 100%;
  width: 100%;
}
.adm-spin-loading-svg > .adm-spin-loading-fill {
  stroke: var(--color);
}
@keyframes adm-spin-loading-rotate {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.adm-picker-view {
  --height: 240px;
  --item-height: 34px;
  --item-font-size: var(--adm-font-size-8);
  background: var(--adm-color-background);
  display: flex;
  height: var(--height);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.adm-picker-view-column {
  flex: 1 1;
  height: 100%;
  position: relative;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 0;
}
.adm-picker-view-column-wheel {
  cursor: grab;
  left: 0;
  position: absolute;
  top: calc(50% - var(--item-height) / 2);
  width: 100%;
}
.adm-picker-view-column-wheel:before {
  content: " ";
  display: block;
  height: 100vh;
  position: absolute;
  top: -100vh;
  width: 100%;
}
.adm-picker-view-column-wheel:after {
  bottom: -100vh;
  content: " ";
  display: block;
  height: 100vh;
  position: absolute;
  width: 100%;
}
.adm-picker-view-column-item {
  align-items: center;
  display: flex;
  font-size: var(--item-font-size);
  height: var(--item-height);
  justify-content: center;
  padding: 0 6px;
}
.adm-picker-view-column-item-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adm-picker-view-column-accessible {
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  padding-bottom: 1px;
  pointer-events: none;
  position: relative;
  top: calc(var(--item-height) * -1);
  width: 100%;
  z-index: 0;
}
.adm-picker-view-column-accessible > * {
  flex: 1 1;
  text-overflow: ellipsis;
}
.adm-picker-view-column-accessible-current {
  height: 100%;
  position: absolute;
  width: 100%;
}
.adm-picker-view-column-accessible-button,
.adm-picker-view-mask {
  height: 100%;
  width: 100%;
}
.adm-picker-view-mask {
  display: flex;
  flex-direction: column;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: 10000;
}
.adm-picker-view-mask-bottom,
.adm-picker-view-mask-top {
  flex: auto;
}
.adm-picker-view-mask-middle {
  border-bottom: 1px solid var(--adm-color-border);
  border-top: 1px solid var(--adm-color-border);
  box-sizing: border-box;
  flex: none;
  height: var(--item-height);
}
.adm-picker-view-mask-top {
  background: var(--adm-color-background);
  -webkit-mask: linear-gradient(0deg, #0009, #000c 50%, #000);
  mask: linear-gradient(0deg, #0009, #000c 50%, #000);
}
.adm-picker-view-mask-bottom {
  background: var(--adm-color-background);
  -webkit-mask: linear-gradient(180deg, #0009, #000c 50%, #000);
  mask: linear-gradient(180deg, #0009, #000c 50%, #000);
}
.adm-picker-view-loading-content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.adm-picker-view-item-height-measure {
  height: var(--item-height);
  left: 0;
  pointer-events: none;
  position: relative;
  top: 0;
  width: 0;
}
.adm-popup {
  --z-index: var(--adm-popup-z-index, 1000);
  position: fixed;
  z-index: var(--z-index);
}
.adm-popup-body {
  background-color: var(--adm-color-background);
  position: fixed;
  z-index: calc(var(--z-index) + 10);
}
.adm-popup-body .adm-popup-close-icon {
  position: absolute;
  z-index: 100;
}
.adm-popup-body-position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
}
.adm-popup-body-position-bottom .adm-popup-close-icon {
  right: 8px;
  top: 8px;
}
.adm-popup-body-position-top {
  left: 0;
  top: 0;
  width: 100%;
}
.adm-popup-body-position-top .adm-popup-close-icon {
  bottom: 8px;
  right: 8px;
}
.adm-popup-body-position-left {
  height: 100%;
  left: 0;
  top: 0;
}
.adm-popup-body-position-left .adm-popup-close-icon {
  right: 8px;
  top: 8px;
}
.adm-popup-body-position-right {
  height: 100%;
  right: 0;
  top: 0;
}
.adm-popup-body-position-right .adm-popup-close-icon {
  left: 8px;
  top: 8px;
}
.adm-popup-close-icon {
  color: var(--adm-color-weak);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
}
.adm-mask {
  --z-index: var(--adm-mask-z-index, 1000);
  display: block;
  position: fixed;
  z-index: var(--z-index);
}
.adm-mask,
.adm-mask-aria-button {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.adm-mask-aria-button {
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
.adm-mask-content {
  z-index: 1;
}
