/* [project]/node_modules/antd-mobile/es/global/global.css [app-client] (css) */
: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: gray;
  --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: #0000;
}

html {
  background-color: var(--adm-color-background-body);
}

body {
  color: var(--adm-color-text);
  font-size: var(--adm-font-size-main);
  font-family: var(--adm-font-family);
}

a, button {
  cursor: pointer;
}

a {
  color: var(--adm-color-primary);
  transition: opacity .2s ease-in-out;
}

a:active {
  opacity: .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);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  width: 0;
  position: fixed;
  top: -100vh;
  left: -100vw;
}


/* [project]/node_modules/antd-mobile/es/components/nav-bar/nav-bar.css [app-client] (css) */
.adm-nav-bar {
  --height: 45px;
  --border-bottom: none;
  height: var(--height);
  border-bottom: var(--border-bottom);
  white-space: nowrap;
  align-items: center;
  padding: 0 12px;
  display: flex;
}

.adm-nav-bar-left, .adm-nav-bar-right {
  flex: 1;
}

.adm-nav-bar-title {
  text-align: center;
  text-overflow: ellipsis;
  flex: auto;
  overflow: hidden;
}

.adm-nav-bar-back {
  cursor: pointer;
  align-items: center;
  margin-right: 16px;
  padding: 6px 0;
  display: flex;
}

.adm-nav-bar-back-arrow {
  margin-right: 4px;
  font-size: 24px;
}

.adm-nav-bar-left {
  font-size: var(--adm-font-size-7);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.adm-nav-bar-title {
  white-space: nowrap;
  font-size: var(--adm-font-size-10);
  justify-content: center;
  padding: 0 12px;
}

.adm-nav-bar-right {
  text-align: right;
}


/* [project]/node_modules/antd-mobile/es/components/tab-bar/tab-bar.css [app-client] (css) */
.adm-tab-bar-wrap {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 48px;
  display: flex;
  overflow: hidden;
}

.adm-tab-bar-item {
  color: var(--adm-color-text-secondary);
  white-space: nowrap;
  cursor: pointer;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: min-content;
  padding: 4px 8px;
  display: flex;
  position: relative;
}

.adm-tab-bar-item-icon {
  height: 24px;
  font-size: 24px;
  line-height: 1;
}

.adm-tab-bar-item-title {
  font-size: var(--adm-font-size-2);
  line-height: 15px;
}

.adm-tab-bar-item-title-with-icon {
  margin-top: 2px;
}

.adm-tab-bar-item-active {
  color: var(--adm-color-primary);
}

.adm-tab-bar-icon-badge {
  --top: 6px;
}

.adm-tab-bar-title-badge {
  --right: -2px;
  --top: -2px;
}


/* [project]/node_modules/antd-mobile/es/components/badge/badge.css [app-client] (css) */
.adm-badge-wrapper {
  display: inline-block;
  position: relative;
}

.adm-badge {
  vertical-align: middle;
  box-sizing: content-box;
  background-color: var(--color);
  --right: 0;
  --top: 0;
  --color: var(--adm-badge-color, var(--adm-color-highlight));
  border-radius: 100px;
  display: inline-flex;
}

.adm-badge-content {
  color: var(--adm-color-text-light-solid);
  box-sizing: border-box;
  min-width: 8px;
  font-size: var(--adm-font-size-1);
  white-space: nowrap;
  text-align: center;
  padding: 1px 4px;
  font-weight: normal;
  line-height: 12px;
}

.adm-badge-fixed {
  right: var(--right);
  top: var(--top);
  position: absolute;
  transform: translate(50%, -50%);
}

.adm-badge-dot {
  border-radius: 5px;
  width: 10px;
  min-width: 10px;
  height: 10px;
}

.adm-badge-bordered {
  border: solid 1px var(--adm-color-text-light-solid);
}


/* [project]/node_modules/antd-mobile/es/components/safe-area/safe-area.css [app-client] (css) */
.adm-safe-area {
  --multiple: var(--adm-safe-area-multiple, 1);
  width: 100%;
  display: block;
}

.adm-safe-area-position-top {
  padding-top: calc(env(safe-area-inset-top) * var(--multiple));
}

.adm-safe-area-position-bottom {
  padding-bottom: calc(env(safe-area-inset-bottom) * var(--multiple));
}


/* [project]/node_modules/antd-mobile/es/components/empty/empty.css [app-client] (css) */
.adm-empty {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  display: flex;
}

.adm-empty-image-container {
  justify-content: center;
  display: flex;
}

.adm-empty-image-container .adm-empty-image {
  width: 64px;
  height: intrinsic;
}

.adm-empty-description {
  font-size: var(--adm-font-size-6);
  color: var(--adm-color-light);
  margin-top: 8px;
}


/* [project]/node_modules/antd-mobile/es/components/button/button.css [app-client] (css) */
.adm-button {
  --color: var(--adm-color-text-light-solid);
  --text-color: var(--adm-button-text-color, var(--adm-color-text));
  --background-color: var(--adm-button-background-color, var(--adm-color-background));
  --border-radius: var(--adm-button-border-radius, 4px);
  --border-width: var(--adm-button-border-width, 1px);
  --border-style: var(--adm-button-border-style, solid);
  --border-color: var(--adm-button-border-color, var(--adm-color-border));
  color: var(--text-color);
  background-color: var(--background-color);
  box-sizing: border-box;
  height: auto;
  font-size: var(--adm-font-size-9);
  text-align: center;
  border: var(--border-width) var(--border-style) var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  margin: 0;
  padding: 7px 12px;
  line-height: 1.4;
  transition: opacity .15s;
  display: inline-block;
  position: relative;
}

.adm-button:focus {
  outline: none;
}

.adm-button:before {
  transform: translate(calc(var(--border-width) * -1), calc(var(--border-width) * -1));
  background-color: var(--adm-color-text-dark-solid);
  border: var(--border-width) var(--border-style) var(--adm-color-text-dark-solid);
  border-radius: var(--border-radius);
  opacity: 0;
  content: " ";
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.adm-button:active:before {
  opacity: .08;
}

.adm-button-default.adm-button-fill-outline {
  --background-color: transparent;
  --border-color: var(--adm-color-text);
}

.adm-button-default.adm-button-fill-none {
  --background-color: transparent;
  --border-width: 0px;
}

.adm-button:not(.adm-button-default) {
  --text-color: var(--adm-color-text-light-solid);
  --background-color: var(--color);
  --border-color: var(--color);
}

.adm-button:not(.adm-button-default).adm-button-fill-outline {
  --text-color: var(--color);
  --background-color: transparent;
}

.adm-button:not(.adm-button-default).adm-button-fill-none {
  --text-color: var(--color);
  --background-color: transparent;
  --border-width: 0px;
}

.adm-button-primary {
  --color: var(--adm-color-primary);
}

.adm-button-success {
  --color: var(--adm-color-success);
}

.adm-button-danger {
  --color: var(--adm-color-danger);
}

.adm-button-warning {
  --color: var(--adm-color-warning);
}

.adm-button-block {
  width: 100%;
  display: block;
}

.adm-button-disabled {
  cursor: not-allowed;
  opacity: .4;
}

.adm-button-disabled:active:before {
  display: none;
}

.adm-button.adm-button-mini {
  font-size: var(--adm-font-size-main);
  padding-top: 3px;
  padding-bottom: 3px;
}

.adm-button.adm-button-mini.adm-button-shape-rounded {
  padding-left: 9px;
  padding-right: 9px;
}

.adm-button.adm-button-small {
  font-size: var(--adm-font-size-7);
  padding-top: 3px;
  padding-bottom: 3px;
}

.adm-button.adm-button-large {
  font-size: var(--adm-font-size-10);
  padding-top: 11px;
  padding-bottom: 11px;
}

.adm-button.adm-button-shape-rounded {
  --border-radius: 1000px;
}

.adm-button.adm-button-shape-rectangular {
  --border-radius: 0;
}

.adm-button-loading {
  vertical-align: bottom;
}

.adm-button-loading-wrapper {
  justify-content: center;
  align-items: center;
  height: 1.4em;
  display: flex;
}

.adm-button-loading-wrapper > .adm-loading {
  opacity: .6;
}


/* [project]/node_modules/antd-mobile/es/components/dot-loading/dot-loading.css [app-client] (css) */
.adm-dot-loading {
  display: inline-block;
}


/* [project]/node_modules/antd-mobile/es/components/floating-bubble/floating-bubble.css [app-client] (css) */
.adm-floating-bubble {
  --initial-position-left: var(--initial-position-left);
  --initial-position-right: var(--initial-position-right);
  --initial-position-top: var(--initial-position-top);
  --initial-position-bottom: var(--initial-position-bottom);
  --z-index: 1;
  --edge-distance: 0;
  --size: 48px;
  --border-radius: 50%;
  --background: var(--adm-color-primary);
}

.adm-floating-bubble-boundary-outer {
  width: 100vw;
  height: 100vh;
  padding: var(--edge-distance);
  box-sizing: border-box;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
}

.adm-floating-bubble-boundary {
  width: 100%;
  height: 100%;
  position: relative;
}

.adm-floating-bubble-button {
  top: var(--initial-position-top);
  bottom: var(--initial-position-bottom);
  left: var(--initial-position-left);
  right: var(--initial-position-right);
  box-sizing: border-box;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  background: var(--background);
  color: var(--adm-color-white);
  border-radius: var(--border-radius);
  z-index: var(--z-index);
  justify-content: center;
  align-items: center;
  transition: opacity .15s;
  display: flex;
  position: fixed;
  overflow: hidden;
}


/* [project]/node_modules/antd-mobile/es/components/tabs/tabs.css [app-client] (css) */
.adm-tabs {
  --title-font-size: var(--adm-font-size-9);
  --content-padding: 12px;
  --active-line-height: 2px;
  --active-line-border-radius: var(--active-line-height);
  --active-line-color: var(--adm-color-primary);
  --active-title-color: var(--adm-color-primary);
  min-width: 0;
  position: relative;
}

.adm-tabs-header {
  border-bottom: solid 1px var(--adm-color-border);
  position: relative;
}

.adm-tabs-tab-list {
  scrollbar-width: none;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow-x: scroll;
}

.adm-tabs-tab-list::-webkit-scrollbar {
  display: none;
}

.adm-tabs-tab-wrapper {
  padding: 0 12px;
}

.adm-tabs-tab-wrapper-stretch {
  flex: auto;
}

.adm-tabs-tab {
  white-space: nowrap;
  width: min-content;
  font-size: var(--title-font-size);
  cursor: pointer;
  margin: 0 auto;
  padding: 8px 0 10px;
  position: relative;
}

.adm-tabs-tab-active {
  color: var(--active-title-color);
}

.adm-tabs-tab-disabled {
  opacity: .5;
  cursor: not-allowed;
}

.adm-tabs-tab-line {
  height: var(--active-line-height);
  background: var(--active-line-color);
  border-radius: var(--active-line-border-radius);
  position: absolute;
  bottom: 0;
}

.adm-tabs-content {
  padding: var(--content-padding);
}

.adm-tabs-header-mask {
  z-index: 1;
  pointer-events: none;
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}

.adm-tabs-header-mask-left {
  background: linear-gradient(to right, var(--adm-color-background), #fff0);
  left: 0;
}

.adm-tabs-header-mask-right {
  background: linear-gradient(to left, var(--adm-color-background), #fff0);
  right: 0;
}


/* [project]/node_modules/antd-mobile/es/components/notice-bar/notice-bar.css [app-client] (css) */
.adm-notice-bar {
  --background-color: var(--adm-color-weak);
  --border-color: var(--adm-color-weak);
  --text-color: var(--adm-color-text-light-solid);
  --font-size: var(--adm-font-size-7);
  --icon-font-size: var(--adm-font-size-10);
  --height: 40px;
  --adm-notice-bar-border-radius: 4px;
  --adm-notice-bar-border-width: 1px;
  height: var(--height);
  box-sizing: border-box;
  font-size: var(--font-size);
  border: solid var(--adm-notice-bar-border-width) var(--border-color);
  background-color: var(--background-color);
  color: var(--text-color);
  border-left-width: 0;
  border-right-width: 0;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  display: flex;
}

.adm-notice-bar > span[role="img"] {
  color: var(--text-color);
}

.adm-notice-bar.adm-notice-bar-alert {
  --background-color: #fff9ed;
  --border-color: #fff3e9;
  --text-color: var(--adm-color-orange);
}

.adm-notice-bar.adm-notice-bar-error {
  --background-color: var(--adm-color-danger);
  --border-color: #d9281e;
  --text-color: #fff;
}

.adm-notice-bar.adm-notice-bar-info {
  --background-color: #d0e4ff;
  --border-color: #bcd8ff;
  --text-color: var(--adm-color-primary);
}

.adm-notice-bar.adm-notice-bar-success {
  --background-color: #d1fff0;
  --border-color: #a8f0d8;
  --text-color: var(--adm-color-success);
}

.adm-notice-bar .adm-notice-bar-left {
  font-size: var(--icon-font-size);
  flex-shrink: 0;
  margin-right: 8px;
}

.adm-notice-bar .adm-notice-bar-content {
  flex: 1;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.adm-notice-bar .adm-notice-bar-content .adm-notice-bar-content-inner {
  white-space: nowrap;
  width: auto;
  transition-timing-function: linear;
}

.adm-notice-bar-wrap.adm-notice-bar .adm-notice-bar-content .adm-notice-bar-content-inner {
  white-space: normal;
}

.adm-notice-bar .adm-notice-bar-right {
  flex-shrink: 0;
  align-items: center;
  margin-left: 12px;
  display: flex;
}

.adm-notice-bar-close {
  width: 24px;
  height: 24px;
  font-size: var(--adm-font-size-10);
  justify-content: center;
  align-items: center;
  margin-right: -3px;
  display: flex;
}

.adm-notice-bar-wrap {
  align-items: flex-start;
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 22px;
}

.adm-notice-bar-neutral {
  border-radius: var(--adm-notice-bar-border-radius);
}

.adm-notice-bar-rounded {
  border-radius: 1000px;
}

.adm-notice-bar-bordered {
  border-left-width: var(--adm-notice-bar-border-width);
  border-right-width: var(--adm-notice-bar-border-width);
}

.adm-notice-bar-without-border {
  border-top-width: 0;
  border-bottom-width: 0;
}


/*# sourceMappingURL=node_modules_antd-mobile_es_12f3493a._.css.map*/