.adm-nav-bar {
  --height: 0.9rem;
  --border-bottom: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--height);
  border-bottom: var(--border-bottom);
  padding: 0 0.24rem;
  white-space: nowrap;
}

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

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

.adm-nav-bar-back {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.32rem;
  padding: 0.12rem 0;
  cursor: pointer;
}

.adm-nav-bar-back-arrow {
  font-size: 0.48rem;
  margin-right: 0.08rem;
}

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

.adm-nav-bar-title {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  font-size: var(--adm-font-size-10);
  padding: 0 0.24rem;
}

.adm-nav-bar-right {
  text-align: right;
}
.adm-dialog {
  --z-index: var(--adm-dialog-z-index, 1000);
  ---z-index: var(--z-index);
}

.adm-dialog .adm-center-popup {
  --z-index: var(---z-index);
}

.adm-dialog-body {
  width: 100%;
  max-height: 70vh;
  font-size: var(--adm-font-size-6);
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.adm-dialog-body > * {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.adm-dialog-body > .adm-dialog-content {
  -webkit-box-flex: 1;
  -webkit-flex: auto;
      -ms-flex: auto;
          flex: auto;
}

.adm-dialog-body:not(.adm-dialog-with-image) {
  padding-top: 0.4rem;
}

.adm-dialog-image-container {
  margin-bottom: 0.24rem;
  max-height: 40vh;
}

.adm-dialog-header {
  margin-bottom: 0.16rem;
  padding: 0 0.24rem;
}

.adm-dialog-title {
  margin-bottom: 0.16rem;
  padding: 0 0.24rem;
  font-weight: bold;
  font-size: var(--adm-font-size-10);
  line-height: 0.5rem;
  text-align: center;
}

.adm-dialog-content {
  padding: 0 0.24rem 0.4rem;
  max-height: 70vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: var(--adm-font-size-7);
  line-height: 1.4;
  color: var(--adm-color-text);
}

.adm-dialog-content-empty {
  padding: 0;
  height: 0.24rem;
}

.adm-dialog-footer {
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

.adm-dialog-footer .adm-dialog-action-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-top: 0.01rem solid var(--adm-color-border);
}

.adm-dialog-footer .adm-dialog-action-row > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button {
  padding: 0.2rem;
  font-size: var(--adm-font-size-10);
  line-height: 0.5rem;
  border-radius: 0;
  border-right: solid 0.01rem var(--adm-color-border);
}

.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button-bold {
  font-weight: bold;
}

.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button:last-child {
  border-right: none;
}

.adm-dialog-image-container {
  overflow-y: auto;
}
.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, 8px);
  --border-width: var(--adm-button-border-width, 2px);
  --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);
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  padding: 0.14rem 0.24rem;
  margin: 0;
  font-size: var(--adm-font-size-9);
  line-height: 1.4;
  text-align: center;
  border: var(--border-width) var(--border-style) var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  -webkit-transition: opacity ease 0.15s;
  transition: opacity ease 0.15s;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

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

.adm-button::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(calc(var(--border-width) * -1), calc(var(--border-width) * -1));
          transform: translate(calc(var(--border-width) * -1), calc(var(--border-width) * -1));
  width: 100%;
  height: 100%;
  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: ' ';
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.adm-button:active::before {
  opacity: 0.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: 0;
}

.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: 0;
}

.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 {
  display: block;
  width: 100%;
}

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

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

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

.adm-button.adm-button-mini.adm-button-shape-rounded {
  padding-left: 0.18rem;
  padding-right: 0.18rem;
}

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

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

.adm-button.adm-button-shape-rounded {
  --border-radius: 20rem;
}

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

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

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

.adm-button-loading-wrapper > .adm-loading {
  opacity: 0.6;
}
.adm-dot-loading {
  display: inline-block;
}
.adm-image {
  --width: var(--adm-image-width, auto);
  --height: var(--adm-image-height, auto);
  width: var(--width);
  height: var(--height);
  display: block;
  overflow: hidden;
}

.adm-image-img {
  width: 100%;
  height: 100%;
}

.adm-image-tip {
  position: relative;
  background-color: var(--adm-color-fill-content);
  height: 100%;
  min-height: 0.48rem;
  min-width: 0.48rem;
}

.adm-image-tip > svg {
  width: 0.48rem;
  height: 0.48rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--adm-color-weak);
}
.adm-auto-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.adm-auto-center-content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
.adm-center-popup {
  --background-color: var(--adm-center-popup-background-color, var(--adm-color-background));
  --border-radius: var(--adm-center-popup-border-radius, 16px);
  --max-width: var(--adm-center-popup-max-width, 75vw);
  --min-width: var(--adm-center-popup-min-width, 560px);
  --z-index: var(--adm-center-popup-z-index, 1000);
  position: fixed;
  z-index: var(--z-index);
}

.adm-center-popup .adm-center-popup-mask {
  z-index: 0;
}

.adm-center-popup-wrap {
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: var(--min-width);
  max-width: var(--max-width);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.adm-center-popup-body {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
}

.adm-center-popup-close {
  position: absolute;
  z-index: 100;
  right: 0.16rem;
  top: 0.16rem;
  cursor: pointer;
  padding: 0.08rem;
  font-size: 0.36rem;
  color: var(--adm-color-weak);
}
.adm-mask {
  --z-index: var(--adm-mask-z-index, 1000);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index);
  display: block;
  width: 100%;
  height: 100%;
}

.adm-mask-aria-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.adm-mask-content {
  z-index: 1;
}
.hing-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.hing-layout-topsafearea {
  display: block;
  width: 100%;
  padding-top: constant(safe-area-inset-top);
  /* 兼容 iOS < 11.2 */
  padding-top: env(safe-area-inset-top);
  /* 兼容 iOS >= 11.2 */
}
.hing-layout-btnsafearea {
  display: block;
  width: 100%;
  padding-bottom: constant(safe-area-inset-bottom);
  /* 兼容 iOS < 11.2 */
  padding-bottom: env(safe-area-inset-bottom);
  /* 兼容 iOS >= 11.2 */
}
.hing-layout-arrow {
  margin-left: 0.1rem;
  display: inline-block;
  width: 0.24rem;
  height: 0.24rem;
  background-color: transparent;
  border-color: #fff;
  border-style: solid;
  border-width: 0.03rem 0.03rem 0 0;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.hing-layout-navbar {
  height: 0.9rem;
}
.hing-layout > .adm-nav-bar {
  background-color: var(--h-bg);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  z-index: 9999;
}
.hing-layout > .adm-nav-bar > .adm-nav-bar-title {
  color: #fff;
}
.hing-layout > .adm-nav-bar > .adm-nav-bar-right > span > img {
  width: 0.4rem;
}
.hing-layout-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
Application Settings Go Here
------------------------------------
This file acts as a bundler for all variables/mixins/themes, so they
can easily be swapped out without `core.scss` ever having to know.

For example:

@import './variables/colors';
@import './variables/components';
@import './themes/default';
*/
html {
  font-family: "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
}
body {
  margin: 0;
  line-height: 1.2;
  color: #00234e;
  font-size: 0.24rem;
  background-color: #f5f5f9;
  overflow-x: hidden;
  height: 100%;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
svg:not(:root) {
  overflow: hidden;
}
a {
  background: transparent;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  color: #0088cc;
}
a:active {
  outline: 0;
}
a:active {
  color: #006699;
}
abbr[title] {
  border-bottom: 0.01rem dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  vertical-align: middle;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  font-size: 0.15rem;
  vertical-align: -0.04rem;
  margin: 0 0.04rem;
  *vertical-align: middle;
  /*ie7 ie6*/
  _vertical-align: 0.03rem;
  /*ie6*/
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 0.01rem solid #c0c0c0;
  margin: 0 0.02rem;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  resize: vertical;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
html,
button,
input,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
form,
blockquote {
  margin: 0;
}
ul,
ol,
li,
dl,
dd {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none outside none;
}
h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: normal;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #cccccc;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cccccc;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #cccccc;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  *zoom: 1;
}
.csm-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.csm-flex-column > div {
  width: 100%;
}
.csm-flex-column .csm-flex-scroll-item {
  -webkit-flex-basis: 0%;
      -ms-flex-preferred-size: 0%;
          flex-basis: 0%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  overflow: scroll;
  margin-left: 0;
}
.sprite {
  background-size: 100% 100%;
}
button {
  margin: 0;
  padding: 0;
  list-style-type: none;
  background: none;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}
.csm-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.csm-flex-column > div {
  width: 100%;
}
.csm-flex-column .csm-flex-scroll-item {
  -webkit-flex-basis: 0%;
      -ms-flex-preferred-size: 0%;
          flex-basis: 0%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  overflow: scroll;
  margin-left: 0;
}
i {
  font-style: normal;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
input {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  border: none;
  border-color: #fff;
}
table,
th,
td {
  border: none;
  border-collapse: collapse;
}
html {
  height: 100%;
}
.none {
  display: none;
}
.grayLine {
  width: 0.02rem;
  height: 0.15rem;
  display: inline-block;
  margin: 0 0.1rem;
  background-color: #e8ecef;
}
#root {
  height: 100%;
}
:root:root {
  --adm-color-danger: #e5004a;
  --adm-color-primary: #008acb;
  --adm-color-success: #00b578;
  --adm-color-warning: #ff8f1f;
  --adm-color-white: #fff;
  --adm-color-weak: #999;
  --adm-color-light: #ccc;
  --adm-border-color: #eee;
  --adm-font-size-main: 0.24rem;
  --adm-color-text: #00234e;
  --adm-font-family: -apple-system, blinkmacsystemfont, "Helvetica Neue",
    helvetica, segoe ui, arial, roboto, "PingFang SC", "miui",
    "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
  --h-fs-n: #008acb;
  --h-fs-e: #00234e;
  --h-fs-r: #e5004a;
  --h-bg: #008acb;
  --h-bg-red: #e5004a;
  --h-bg-grey: #eef2f5;
  --h-size-s: 0.26rem;
  --h-size-c: 0.28rem;
  --h-size-b: 0.32rem;
  --h-f-w: bold;
  --h-round-s: 0.02rem;
  --h-round-m: 0.04rem;
  --h-round-b: 0.06rem;
  --h-round-l: 0.6rem;
  --h-pd-s: 0.04rem;
  --h-pd-m: 0.1rem;
  --h-pd-b: 0.2rem;
  --h-pd-l: 0.32rem;
  --h-border-grey: #d1d9e0;
  --h-border-bule: #008acb;
}
:global(.tip-animation-fadeOut) {
  -webkit-animation: fadeOut 0.4s ease-in-out forwards;
          animation: fadeOut 0.4s ease-in-out forwards;
}
.icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.icon > img {
  width: 0.24rem;
}
.gray {
  color: #798691;
}
.adm-button-disabled {
  opacity: 1;
  background-color: #d1d9e0;
  color: #fff;
  border-color: #d1d9e0;
}
.lodaing-requst-ing.adm-toast-mask {
  z-index: 9999;
}
@-webkit-keyframes fadeOut {
  0% {
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  50% {
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes fadeOut {
  0% {
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  50% {
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

:root {
  --adm-radius-s: 0.08rem;
  --adm-radius-m: 0.16rem;
  --adm-radius-l: 0.24rem;
  --adm-font-size-1: 0.18rem;
  --adm-font-size-2: 0.2rem;
  --adm-font-size-3: 0.22rem;
  --adm-font-size-4: 0.24rem;
  --adm-font-size-5: 0.26rem;
  --adm-font-size-6: 0.28rem;
  --adm-font-size-7: 0.3rem;
  --adm-font-size-8: 0.32rem;
  --adm-font-size-9: 0.34rem;
  --adm-font-size-10: 0.36rem;
  --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: #333333;
  --adm-color-text-secondary: #666666;
  --adm-color-weak: #999999;
  --adm-color-light: #cccccc;
  --adm-color-border: #eeeeee;
  --adm-color-background: #ffffff;
  --adm-color-highlight: var(--adm-color-danger);
  --adm-color-white: #ffffff;
  --adm-color-box: #f5f5f5;
  --adm-color-text-light-solid: var(--adm-color-white);
  --adm-color-text-dark-solid: #000000;
  --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: #808080;
  --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-size: var(--adm-font-size-main);
  font-family: var(--adm-font-family);
}

a,
button {
  cursor: pointer;
}

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

a:active {
  opacity: 0.8;
}

.adm-plain-anchor {
  color: unset;
  -webkit-transition: none;
  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 * 0.04rem);
  width: 0;
  position: fixed;
  left: -100vw;
  top: -100vh;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  pointer-events: none;
}
