: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: #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);
    transition: opacity ease-in-out .2s
}

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

.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
}

.adm-safe-area {
    --multiple: var(--adm-safe-area-multiple, 1);
    display: block;
    width: 100%
}

.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))
}

.adm-auto-center {
    display: flex;
    justify-content: center
}

.adm-auto-center-content {
    flex: 0 1 auto
}

.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: 24px;
    min-width: 24px
}

.adm-image-tip>svg {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: var(--adm-color-weak)
}

.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);
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    height: auto;
    padding: 7px 12px;
    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;
    transition: opacity ease .15s;
    -webkit-user-select: none;
    user-select: none
}

.adm-button:focus {
    outline: none
}

.adm-button:before {
    position: absolute;
    top: 0;
    left: 0;
    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: " ";
    box-sizing: content-box
}

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

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

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

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

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

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

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

.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 {
    display: flex;
    height: 1.4em;
    align-items: center;
    justify-content: center
}

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

.adm-dot-loading {
    display: inline-block
}

.adm-divider-horizontal {
    display: flex;
    align-items: center;
    margin: 16px 0;
    border-width: 0;
    border-color: var(--adm-color-border);
    border-style: solid;
    color: var(--adm-color-weak);
    font-size: 14px
}

.adm-divider-left.adm-divider-horizontal:before {
    max-width: 10%
}

.adm-divider-right.adm-divider-horizontal:after {
    max-width: 10%
}

.adm-divider-horizontal:after,.adm-divider-horizontal:before {
    flex: auto;
    display: block;
    content: "";
    border-style: inherit;
    border-color: inherit;
    border-width: 1px 0 0
}

.adm-divider-horizontal .adm-divider-content {
    flex: none;
    padding: 0 16px
}

.adm-divider-vertical {
    position: relative;
    top: -.06em;
    display: inline-block;
    height: .9em;
    margin: 0 16px;
    vertical-align: middle;
    border-top: 0;
    border-left: 1px solid var(--adm-color-border)
}

.adm-spin-loading {
    --color: var(--adm-color-weak);
    --size: 32px;
    width: var(--size);
    height: var(--size)
}

.adm-spin-loading-svg {
    width: 100%;
    height: 100%;
    animation: adm-spin-loading-rotate .8s infinite linear
}

.adm-spin-loading-svg>.adm-spin-loading-fill {
    stroke: var(--color)
}

@keyframes adm-spin-loading-rotate {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.adm-list {
    --header-font-size: var(--adm-font-size-7);
    --prefix-width: "auto";
    --prefix-padding-right: 12px;
    --align-items: center;
    --active-background-color: var(--adm-color-border);
    --border-inner: solid 1px var(--adm-color-border);
    --border-top: solid 1px var(--adm-color-border);
    --border-bottom: solid 1px var(--adm-color-border);
    --padding-left: 12px;
    --padding-right: 12px;
    --font-size: var(--adm-font-size-9);
    --extra-max-width: 70%
}

.adm-list-header {
    color: var(--adm-color-weak);
    font-size: var(--header-font-size);
    padding: 8px var(--padding-right) 8px var(--padding-left)
}

.adm-list-body {
    background-color: var(--adm-color-background);
    overflow: hidden;
    font-size: var(--font-size)
}

.adm-list-body-inner {
    margin-top: -1px
}

.adm-list-default .adm-list-body {
    border-top: var(--border-top);
    border-bottom: var(--border-bottom)
}

.adm-list-card {
    margin: 12px
}

.adm-list-card .adm-list-body {
    border-radius: 8px
}

.adm-list-card .adm-list-header {
    padding-left: 0
}

.adm-list-item {
    display: block;
    padding-left: var(--padding-left);
    position: relative;
    background-color: var(--adm-color-background);
    line-height: 1.5
}

.adm-list-item-title,.adm-list-item-description {
    color: var(--adm-color-weak);
    font-size: var(--adm-font-size-main)
}

.adm-list-item-content {
    display: flex;
    align-items: var(--align-items);
    justify-content: flex-start;
    border-top: var(--border-inner);
    padding-right: var(--padding-right)
}

.adm-list-item-content-prefix {
    width: var(--prefix-width);
    flex: none;
    padding-right: var(--prefix-padding-right)
}

.adm-list-item-content-main {
    flex: auto;
    padding: 12px 0
}

.adm-list-item-content-extra {
    flex: none;
    padding-left: 12px;
    font-size: var(--adm-font-size-7);
    color: var(--adm-color-weak);
    max-width: var(--extra-max-width)
}

.adm-list-item-content-arrow {
    flex: none;
    display: flex;
    align-items: center;
    margin-left: 4px;
    color: var(--adm-color-light);
    font-size: 19px
}

.adm-list-item-disabled {
    cursor: not-allowed
}

.adm-list-item-disabled.adm-list-item-disabled>.adm-list-item-content>* {
    opacity: .4;
    pointer-events: none
}

a.adm-list-item:active:not(.adm-list-item-disabled) {
    background-color: var(--active-background-color)
}

a.adm-list-item:active:not(.adm-list-item-disabled):after {
    content: " ";
    display: block;
    position: absolute;
    width: 100%;
    bottom: -1px;
    left: 0;
    border-bottom: var(--border-inner)
}

.adm-checkbox {
    --icon-size: 22px;
    --font-size: var(--adm-font-size-9);
    --gap: 8px;
    display: inline-flex;
    vertical-align: text-bottom;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer
}

.adm-checkbox input {
    display: none
}

.adm-checkbox .adm-checkbox-icon {
    flex: none;
    border: 1px solid var(--adm-color-light);
    border-radius: var(--icon-size);
    box-sizing: border-box;
    width: var(--icon-size);
    height: var(--icon-size);
    color: var(--adm-color-text-light-solid)
}

.adm-checkbox .adm-checkbox-icon>svg {
    display: block;
    width: 100%;
    height: 100%
}

.adm-checkbox.adm-checkbox-block {
    display: flex
}

.adm-checkbox.adm-checkbox-checked .adm-checkbox-icon {
    border-color: var(--adm-color-primary);
    background-color: var(--adm-color-primary)
}

.adm-checkbox.adm-checkbox-disabled {
    cursor: not-allowed
}

.adm-checkbox.adm-checkbox-disabled .adm-checkbox-content {
    opacity: .4
}

.adm-checkbox.adm-checkbox-disabled .adm-checkbox-icon.adm-checkbox-icon {
    color: var(--adm-color-light);
    border-color: var(--adm-color-light);
    background-color: var(--adm-color-fill-content)
}

.adm-checkbox .adm-checkbox-custom-icon {
    font-size: var(--icon-size)
}

.adm-checkbox.adm-checkbox-indeterminate .adm-checkbox-icon {
    background-color: var(--adm-color-background);
    color: var(--adm-color-primary)
}

.adm-checkbox-content {
    flex: 0 1 auto;
    font-size: var(--font-size);
    padding-left: var(--gap)
}

.adm-form {
    --border-inner: solid 1px var(--adm-border-color);
    --border-top: solid 1px var(--adm-border-color);
    --border-bottom: solid 1px var(--adm-border-color);
    --prefix-width: 6.8em;
    ---border-inner: var(--border-inner);
    ---border-top: var(--border-top);
    ---border-bottom: var(--border-bottom);
    ---prefix-width: var(--prefix-width)
}

.adm-form .adm-list.adm-list {
    --padding-left: 16px;
    --padding-right: 12px;
    --border-inner: var(---border-inner);
    --border-top: var(---border-top);
    --border-bottom: var(---border-bottom)
}

.adm-form .adm-form-footer {
    padding: 20px 12px
}

.adm-form .adm-form-item-horizontal.adm-list-item {
    --prefix-width: var(---prefix-width)
}

.adm-form-list-operation {
    text-align: center;
    color: var(--adm-color-primary)
}

.adm-form-item+.adm-form-item {
    border-top: none
}

.adm-form-item-label {
    display: block;
    height: 100%;
    line-height: 1.5;
    box-sizing: border-box;
    position: relative;
    color: var(--adm-color-text-secondary)
}

.adm-form-item-label .adm-form-item-required-asterisk {
    position: absolute;
    left: -.6em;
    top: 0;
    font-family: SimSun,sans-serif;
    color: var(--adm-color-danger);
    -webkit-user-select: none;
    user-select: none
}

.adm-form-item-label .adm-form-item-required-text {
    margin-left: 4px;
    color: var(--adm-color-weak)
}

.adm-form-item-label-help {
    margin-left: 4px;
    cursor: pointer
}

.adm-form-item-child {
    display: flex
}

.adm-form-item-child-position-normal {
    justify-content: normal
}

.adm-form-item-child-position-normal>* {
    flex: auto
}

.adm-form-item-child-position-right {
    justify-content: flex-end
}

.adm-form-item-child-position-right>* {
    flex: none
}

.adm-form-item-feedback-error {
    color: var(--adm-color-danger);
    margin-top: 4px
}

.adm-form-item-feedback-warning {
    color: var(--adm-color-warning);
    margin-top: 4px
}

.adm-form-item.adm-form-item-hidden {
    display: none
}

.adm-form-item.adm-form-item-horizontal.adm-list-item {
    --align-items: stretch
}

.adm-form-item.adm-form-item-horizontal .adm-list-item-content-prefix {
    padding-top: 12px;
    padding-bottom: 12px
}

.adm-form-item.adm-form-item-horizontal .adm-list-item-content-extra {
    align-self: center
}

.adm-form-item.adm-form-item-vertical .adm-form-item-label {
    font-size: var(--adm-font-size-7);
    margin-bottom: 4px
}

.adm-popover {
    --z-index: var(--adm-popover-z-index, 1030);
    --background: #ffffff;
    --arrow-size: 8px;
    --content-padding: 8px 12px;
    color: var(--adm-color-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--z-index);
    white-space: normal;
    text-align: left;
    cursor: auto;
    -webkit-user-select: text;
    user-select: text;
    animation: none
}

.adm-popover.adm-popover-dark {
    --background: rgba(0, 0, 0, .75);
    --adm-color-text: #ffffff;
    color: #fff
}

.adm-popover.adm-popover-dark .adm-popover-inner {
    box-shadow: none
}

.adm-popover:after {
    position: absolute;
    background: #ffffff03;
    content: ""
}

.adm-popover-hidden {
    display: none
}

.adm-popover-inner {
    background-color: var(--background);
    background-clip: padding-box;
    border-radius: 8px;
    box-shadow: 0 0 30px #3333;
    font-size: var(--adm-font-size-7);
    width: -webkit-max-content;
    width: max-content;
    min-width: 32px;
    max-width: calc(100vw - 24px);
    overflow-y: hidden
}

.adm-popover-inner-content {
    padding: var(--content-padding)
}

.adm-popover-arrow {
    position: absolute;
    display: block;
    height: var(--arrow-size);
    width: var(--arrow-size);
    overflow: visible;
    background: transparent
}

.adm-popover-arrow-icon {
    display: block;
    height: var(--arrow-size);
    width: calc(var(--arrow-size) / 8 * 15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(var(--arrow-icon-rotate))
}

.adm-popover .adm-popover-arrow {
    color: var(--background)
}

.adm-popover-menu {
    --border-color: var(--adm-color-border)
}

.adm-popover-menu.adm-popover {
    --content-padding: 0
}

.adm-popover-menu-list {
    overflow: hidden;
    min-width: 120px
}

.adm-popover-menu-list-inner {
    margin-top: -1px
}

.adm-popover-menu-list-scroll {
    padding-right: 2px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: auto
}

.adm-popover-menu-list-scroll::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px
}

.adm-popover-menu-list-scroll::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #ddd
}

.adm-popover-menu-item {
    display: flex;
    padding-left: 20px;
    justify-content: flex-start;
    align-items: center;
    position: relative
}

.adm-popover-menu-item-icon {
    flex: none;
    padding-right: 8px;
    font-size: 20px
}

.adm-popover-menu-item-text {
    flex: auto;
    padding: 14px 20px 14px 0;
    border-top: solid 1px var(--border-color)
}

.adm-popover-menu-item-disabled {
    cursor: not-allowed
}

.adm-popover-menu-item-disabled>* {
    opacity: .4
}

.adm-popover-menu-item:active:not(.adm-popover-menu-item-disabled) {
    background-color: var(--border-color)
}

.adm-popover-menu-item:active:not(.adm-popover-menu-item-disabled):after {
    content: " ";
    display: block;
    position: absolute;
    width: 100%;
    bottom: -1px;
    left: 0;
    border-bottom: solid 1px var(--border-color)
}

.adm-popover.adm-popover-dark.adm-popover-menu {
    --border-color: var(--adm-color-text);
    --background: rgba(0, 0, 0, .9)
}

.adm-grid {
    --gap: 0;
    --gap-horizontal: var(--gap);
    --gap-vertical: var(--gap);
    display: grid;
    grid-gap: 10px;
    -webkit-column-gap: var(--gap-horizontal);
    column-gap: var(--gap-horizontal);
    row-gap: var(--gap-vertical);
    grid-template-columns: repeat(var(--columns),minmax(0,1fr));
    align-items: stretch
}

.adm-grid-item {
    grid-column-end: span var(--item-span)
}

.adm-image-viewer-content {
    width: 100vw;
    height: 100vh;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none
}

.adm-image-viewer-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1
}

.adm-image-viewer-slides {
    height: 100%;
    position: relative;
    z-index: 1;
    cursor: -webkit-grab;
    cursor: grab;
    touch-action: none
}

.adm-image-viewer-slides-inner {
    height: 100%;
    white-space: nowrap
}

.adm-image-viewer-slides-inner>* {
    margin-right: 16px
}

.adm-image-viewer-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block
}

.adm-image-viewer-control {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: -webkit-grab;
    cursor: grab;
    touch-action: none
}

.adm-image-viewer-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.adm-image-viewer-image-wrapper img {
    display: block;
    max-width: 100%;
    max-height: 100%
}

.adm-image-viewer-indicator {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 12px;
    transform: translate(-50%);
    color: var(--adm-color-border);
    font-size: var(--adm-font-size-6)
}

.adm-space-item {
    flex: none
}

.adm-space {
    display: inline-flex;
    --gap: 8px;
    --gap-vertical: var(--gap);
    --gap-horizontal: var(--gap)
}

.adm-space-vertical {
    flex-direction: column
}

.adm-space-vertical>.adm-space-item {
    margin-bottom: var(--gap-vertical)
}

.adm-space-vertical>.adm-space-item:last-child {
    margin-bottom: 0
}

.adm-space-horizontal {
    flex-direction: row
}

.adm-space-horizontal:not(:empty) {
    margin-right: calc(var(--gap-horizontal) * -1)
}

.adm-space-horizontal>.adm-space-item {
    margin-right: var(--gap-horizontal)
}

.adm-space-horizontal.adm-space-wrap {
    flex-wrap: wrap;
    margin-bottom: calc(var(--gap-vertical) * -1)
}

.adm-space-horizontal.adm-space-wrap>.adm-space-item {
    padding-bottom: var(--gap-vertical)
}

.adm-space.adm-space-block {
    display: flex
}

.adm-space-align-center {
    align-items: center
}

.adm-space-align-start {
    align-items: flex-start
}

.adm-space-align-end {
    align-items: flex-end
}

.adm-space-align-baseline {
    align-items: baseline
}

.adm-space-justify-center {
    justify-content: center
}

.adm-space-justify-start {
    justify-content: flex-start
}

.adm-space-justify-end {
    justify-content: flex-end
}

.adm-space-justify-between {
    justify-content: space-between
}

.adm-space-justify-around {
    justify-content: space-around
}

.adm-space-justify-evenly {
    justify-content: space-evenly
}

.adm-space-justify-stretch {
    justify-content: stretch
}

.adm-image-uploader {
    --cell-size: 80px;
    --gap: 12px;
    ---gap: var(--gap);
    ---gap-horizontal: var(--gap-horizontal, var(--gap));
    ---gap-vertical: var(--gap-vertical, var(--gap))
}

.adm-image-uploader-grid,.adm-image-uploader-space {
    --gap: var(---gap);
    --gap-horizontal: var(---gap-horizontal);
    --gap-vertical: var(---gap-vertical)
}

.adm-image-uploader-cell {
    position: relative;
    width: var(--cell-size);
    height: var(--cell-size);
    border-radius: 4px;
    overflow: hidden
}

.adm-image-uploader-cell-fail {
    border: red solid 1px;
    box-sizing: border-box
}

.adm-image-uploader-cell-delete {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background-color: #000000b3;
    border-radius: 0 0 0 12px;
    font-size: 8px;
    color: var(--adm-color-white);
    cursor: pointer
}

.adm-image-uploader-cell-delete-icon {
    position: absolute;
    left: 4px;
    top: 3px
}

.adm-image-uploader-cell-mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: var(--adm-color-white);
    background-color: #323233e0
}

.adm-image-uploader-cell-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    padding-top: 8px
}

.adm-image-uploader-cell-mask-message {
    display: inline-block;
    padding: 6px 4px;
    font-size: var(--adm-font-size-4)
}

.adm-image-uploader-cell-image {
    width: var(--cell-size);
    height: var(--cell-size)
}

.adm-image-uploader-upload-button-wrap {
    position: relative
}

.adm-image-uploader-upload-button-wrap .adm-image-uploader-upload-button {
    background-color: var(--adm-color-box);
    text-align: center;
    line-height: var(--cell-size);
    display: block
}

.adm-image-uploader-upload-button-wrap .adm-image-uploader-upload-button-icon {
    color: var(--adm-color-weak);
    font-size: 32px
}

.adm-image-uploader-upload-button-wrap .adm-image-uploader-input {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px
}

.adm-image-uploader .adm-image-uploader-gap-measure {
    position: absolute;
    left: 0;
    top: 0;
    height: var(--gap-horizontal);
    width: 0
}

.adm-input {
    --font-size: var(--adm-font-size-9);
    --color: var(--adm-color-text);
    --placeholder-color: var(--adm-color-light);
    --text-align: left;
    --background-color: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    min-height: 24px;
    background-color: var(--background-color)
}

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

.adm-input-element {
    flex: auto;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    margin: 0;
    color: var(--color);
    font-size: var(--font-size);
    line-height: 1.5;
    background: transparent;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 1.5em;
    text-align: var(--text-align)
}

.adm-input-element::-webkit-input-placeholder {
    color: var(--placeholder-color);
    font-family: inherit
}

.adm-input-element::placeholder {
    color: var(--placeholder-color);
    font-family: inherit
}

.adm-input-element:-webkit-autofill {
    background-color: transparent
}

.adm-input-element:read-only {
    cursor: default
}

.adm-input-element:invalid {
    box-shadow: none
}

.adm-input-element::-ms-clear {
    display: none
}

.adm-input-element::-ms-reveal {
    display: none
}

.adm-input-element::-webkit-search-cancel-button {
    display: none
}

.adm-input-element::-webkit-search-decoration {
    display: none
}

.adm-input-element:disabled {
    opacity: 1
}

.adm-input-element[type=date],.adm-input-element[type=time],.adm-input-element[type=datetime-local] {
    min-height: 1.5em
}

.adm-input-element[type=search] {
    -webkit-appearance: none
}

.adm-input-element[readonly] {
    pointer-events: none
}

.adm-input-clear {
    flex: none;
    margin-left: 8px;
    color: var(--adm-color-light);
    padding: 4px;
    cursor: pointer
}

.adm-input-clear:active {
    color: var(--adm-color-weak)
}

.adm-input-clear .antd-mobile-icon {
    display: block;
    font-size: var(--adm-font-size-7)
}

.adm-text-area {
    --font-size: var(--adm-font-size-9);
    --color: var(--adm-color-text);
    --placeholder-color: var(--adm-color-light);
    --disabled-color: var(--adm-color-weak);
    --text-align: left;
    --count-text-align: right;
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 100%
}

.adm-text-area-element {
    font-family: var(--adm-font-family);
    resize: none;
    flex: auto;
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    margin: 0;
    color: var(--color);
    font-size: var(--font-size);
    line-height: 1.5;
    background: transparent;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 1.5em;
    text-align: var(--text-align)
}

.adm-text-area-element::-webkit-input-placeholder {
    color: var(--placeholder-color);
    font-family: inherit
}

.adm-text-area-element::placeholder {
    color: var(--placeholder-color);
    font-family: inherit
}

.adm-text-area-element:-webkit-autofill {
    background-color: transparent
}

.adm-text-area-element:disabled {
    color: var(--disabled-color);
    cursor: not-allowed;
    opacity: 1;
    -webkit-text-fill-color: var(--disabled-color)
}

.adm-text-area-element:read-only {
    cursor: default
}

.adm-text-area-element:invalid {
    box-shadow: none
}

.adm-text-area-element::-ms-clear {
    display: none
}

.adm-text-area-element-hidden {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1000
}

.adm-text-area-count {
    text-align: var(--count-text-align);
    color: var(--adm-color-weak);
    font-size: var(--adm-font-size-9);
    padding-top: 8px
}

.adm-toast-mask .adm-toast-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center
}

.adm-toast-mask .adm-toast-main {
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    max-width: 204px;
    max-height: 70%;
    overflow: auto;
    color: #fff;
    word-break: break-all;
    background-color: #000000b3;
    border-radius: 8px;
    pointer-events: all;
    font-size: var(--adm-font-size-7);
    line-height: 1.5;
    box-sizing: border-box;
    text-align: initial
}

.adm-toast-mask .adm-toast-main-text {
    padding: 12px;
    min-width: 0
}

.adm-toast-mask .adm-toast-main-icon {
    padding: 35px 12px;
    min-width: 150px
}

.adm-toast-mask .adm-toast-main-icon .adm-toast-icon {
    text-align: center;
    margin-bottom: 8px;
    font-size: 36px;
    line-height: 1
}

.adm-toast-loading {
    --size: 48px;
    margin: 0 auto 8px
}

.adm-footer {
    --background-color: var(--adm-color-background);
    color: var(--adm-color-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background-color)
}

.adm-footer-label {
    width: 100%
}

.adm-footer-label .adm-divider.adm-divider {
    color: var(--adm-color-light)
}

.adm-footer-links {
    margin: 8px 0;
    color: var(--adm-color-primary);
    white-space: nowrap
}

.adm-footer-links a {
    text-decoration: none
}

.adm-footer-content {
    display: flex;
    align-items: center;
    margin: 8px 0;
    color: var(--adm-color-light)
}

.adm-footer-chips {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: 8px 0
}

.adm-footer-chip {
    white-space: nowrap;
    margin-right: 20px;
    font-size: 12px;
    background-color: var(--adm-color-fill-content);
    color: var(--adm-color-weak);
    padding: 4px 12px;
    border-radius: 100px
}

.adm-footer-chip-link {
    cursor: pointer;
    background-color: var(--adm-color-wathet);
    color: var(--adm-color-primary)
}

.adm-footer-chip:last-child {
    margin-right: 0
}

.verify {
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.verify-logo {
    margin-top: 100px;
    height: 48px
}

.verify-form {
    --adm-color-background: none;
    --adm-color-text: #fff;
    width: 320px;
    margin-top: 40px
}

.verify-form .adm-list-body,.verify-form .adm-list-item-content {
    border: none
}

.verify-form .adm-list-item {
    border-radius: 30px;
    background: #fff3;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    margin-bottom: 20px
}

.verify-form .adm-input-element {
    --placeholder-color: #fff;
    font-size: 16px
}

.verify-form-verificationCodeButton {
    width: 70px;
    height: 36px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: var(--color)
}

.verify-form .adm-button {
    height: 44px;
    border-radius: 20px
}

.uploadUI .adm-image-uploader-cell {
    width: 152px;
    height: 100px
}

.uploadUI .adm-image-uploader-cell-image {
    width: 100%;
    height: 100%
}

.uploadUI .adm-image-uploader-upload-button {
    line-height: 100px
}

.uploadUI .adm-image-uploader-space {
    --gap-vertical: 0
}

.uploadUI .adm-image-uploader-cell-delete {
    width: 24px;
    height: 24px;
    right: 2px;
    top: 2px;
    background: none
}

.applyAgent {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    overflow-y: auto
}

.applyAgent-content {
    box-sizing: border-box;
    padding: 10px
}

.applyAgent-content .adm-list-body {
    background-color: transparent
}

.applyAgent-content-card {
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    background: #fff;
    margin-bottom: 12px
}

.applyAgent-content-card .cardHeader {
    box-sizing: border-box;
    padding: 0 12px;
    width: 100%;
    height: 36px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg,var(--color4) 0%,#fff 100%);
    border-radius: 8px 8px 0 0
}

.applyAgent-content-card .cardHeader span {
    color: var(--red);
    margin-right: 4px
}

.applyAgent-content-card .cardContent .adm-list-item:last-child {
    border-radius: 0 0 8px 8px
}

.applyAgent-footer {
    display: flex;
    justify-content: center
}

.applyAgent-footer .adm-button {
    width: 80%;
    height: 44px;
    border-radius: 20px
}

.applyAgent-successPage {
    display: flex;
    flex-direction: column;
    align-items: center
}

.applyAgent-successPage-image {
    width: 200px;
    height: 200px;
    margin-top: 8vh
}

.applyAgent-successPage-text {
    font-size: 16px;
    font-weight: 700;
    text-align: center
}

.taxCalculator {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto
}

.taxCalculator-content {
    flex: 1;
    background-size: 100% 220px;
    background-repeat: no-repeat
}

.taxCalculator-content-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.taxCalculator-content-header-logo {
    margin-top: 20px;
    margin-left: 20px
}

.taxCalculator-content-header-share {
    box-sizing: border-box;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #fff;
    margin-top: 10px;
    margin-right: 10px;
    position: relative
}

.taxCalculator-content-header-share:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    top: -8px;
    right: 14px
}

.taxCalculator-content-body {
    box-sizing: border-box;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    margin: 140px 12px 0
}

.taxCalculator-content-body .taxBasis {
    box-sizing: border-box;
    padding: 6px 0;
    color: #00a0e9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 4px;
    background: #f5f5f5
}

.taxCalculator-content-body .amountCard .amountCard-header,.taxCalculator-content-body .amountCard .monthCard-header,.taxCalculator-content-body .monthCard .amountCard-header,.taxCalculator-content-body .monthCard .monthCard-header {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px
}

.taxCalculator-content-body .amountCard .amountCard-header-icon,.taxCalculator-content-body .amountCard .monthCard-header-icon,.taxCalculator-content-body .monthCard .amountCard-header-icon,.taxCalculator-content-body .monthCard .monthCard-header-icon {
    width: 6px;
    height: 14px;
    border-radius: 4px;
    background: var(--color)
}

.taxCalculator-content-body .amountCard-header-differentAmounts {
    box-sizing: border-box;
    padding: 6px 8px;
    color: var(--color);
    font-size: 14px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: var(--color1);
    margin-left: auto
}

.taxCalculator-content-body .amountCard-content {
    height: 32px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 12px
}

.taxCalculator-content-body .monthCard-header-selectAll {
    margin-left: auto
}

.taxCalculator-content-body .monthCard-header-selectAll .adm-checkbox-icon {
    width: 16px;
    height: 16px
}

.taxCalculator-content-body .monthCard-header-selectAll .adm-checkbox-content {
    font-size: 14px
}

.taxCalculator-content-body .monthCard-content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 12px
}

.taxCalculator-content-body .monthCard-content-item {
    box-sizing: border-box;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f7f7f7;
    border: 1px solid #f7f7f7
}

.taxCalculator-content-body .monthCard-content-item.selected {
    background: var(--color2);
    border-color: var(--color)
}

.taxCalculator-content-body .monthCard-content-item.close {
    position: relative;
    background: #fff;
    border: 1px solid #d9d9d9
}

.taxCalculator-content-body .monthCard-content-item.close .i-icon {
    position: absolute;
    top: -8px;
    right: -8px
}

.taxCalculator-content-body .button {
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.taxCalculator-content-body .button .adm-button {
    width: 80%;
    color: #fff;
    border-radius: 20px;
    background: #ffa420
}

.taxCalculator-content-body .button .clear {
    color: #ffa420;
    border-color: #ffa4201a;
    background: #ffa4201a
}

.taxCalculator-content-body .cooperate {
    color: var(--color);
    font-size: 16px;
    text-align: center;
    margin-top: 12px
}

.taxCalculator-content-body .table {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px
}

.taxCalculator-content-body .table>table {
    width: 100%;
    border-collapse: collapse
}

.taxCalculator-content-body .table>table th,.taxCalculator-content-body .table>table td {
    box-sizing: border-box;
    padding: 12px 4px;
    min-width: 40px;
    text-align: center;
    border: 1px solid #d4d6d9
}

.taxCalculator-content-body .table>table th {
    color: #666;
    background: #f9f9f9
}

.taxCalculator-content-body .table>table .tableContent-summary {
    background: var(--color5)
}

.taxCalculatorDifferentAmounts {
    box-sizing: border-box;
    padding: 12px;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
    overflow-y: auto
}

.taxCalculatorDifferentAmounts-content {
    box-sizing: border-box;
    padding: 12px 20px;
    flex: 1;
    border-radius: 12px;
    background: #fff
}

.taxCalculatorDifferentAmounts-content-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.taxCalculatorDifferentAmounts-content-form .formItem {
    display: flex;
    align-items: center;
    column-gap: 8px
}

.taxCalculatorDifferentAmounts-content-form .formItem-left {
    flex: 1;
    display: flex;
    gap: 12px;
    border-radius: 8px;
    border: 1px solid #d9d9d9
}

.taxCalculatorDifferentAmounts-content-form .formItem-left-month {
    width: 54px;
    color: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 0 8px;
    background: var(--color2)
}

.taxCalculatorDifferentAmounts-content-form .formItem-left .adm-input {
    flex: 1
}

.taxCalculatorDifferentAmounts-content-form .formItem-left .adm-input-element {
    height: 44px
}

.taxCalculatorDifferentAmounts-content-button {
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.taxCalculatorDifferentAmounts-content-button .adm-button {
    width: 80%;
    color: #fff;
    border-radius: 20px;
    background: #ffa420
}

.taxCalculatorDifferentAmounts-content-button .clear {
    color: #ffa420;
    border-color: #ffa4201a;
    background: #ffa4201a
}

.taxCalculatorDifferentAmounts-content-table {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px
}

.taxCalculatorDifferentAmounts-content-table>table {
    width: 100%;
    border-collapse: collapse
}

.taxCalculatorDifferentAmounts-content-table>table th,.taxCalculatorDifferentAmounts-content-table>table td {
    box-sizing: border-box;
    padding: 12px 4px;
    min-width: 40px;
    text-align: center;
    border: 1px solid #d4d6d9
}

.taxCalculatorDifferentAmounts-content-table>table th {
    color: #666;
    background: #f9f9f9
}

.taxCalculatorDifferentAmounts-content-table>table .tableContent-summary {
    background: var(--color5)
}

.taxCalculatorDifferentAmounts-back {
    box-sizing: border-box;
    padding: 12px 0;
    color: var(--color);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center
}

.taxCalculatorDifferentAmounts-back-content {
    color: var(--color);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.taxBasis {
    box-sizing: border-box;
    padding: 12px;
    width: 100%;
    /* height: 100%; */
    overflow-y: auto
}

.taxBasis-info {
    border: 1px solid #d9d9d9;
    border-bottom: none
}

.taxBasis-info-item {
    display: flex;
    border-bottom: 1px solid #d9d9d9
}

.taxBasis-info-item-label {
    box-sizing: border-box;
    padding: 6px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color1);
    border-right: 1px solid #d9d9d9
}

.taxBasis-info-item-value {
    box-sizing: border-box;
    padding: 12px;
    flex: 1;
    color: #666
}

.taxBasis-table {
    margin-top: 12px
}

.taxBasis-table-header {
    box-sizing: border-box;
    padding: 16px;
    text-align: center;
    background: var(--color1)
}

.taxBasis-table-header-title {
    font-size: 20px;
    font-weight: 700
}

.taxBasis-table-header-remark {
    color: #666
}

.taxBasis-table-content {
    width: 100%;
    border-collapse: collapse
}

.taxBasis-table-content th,.taxBasis-table-content td {
    border: 1px solid #d4d6d9
}

.taxBasis-table-content thead tr {
    height: 44px;
    color: #666;
    background: #f9f9f9
}

.taxBasis-table-content tbody tr td {
    box-sizing: border-box;
    padding: 12px 4px;
    text-align: center
}

.taxBasis-basis {
    color: #00a0e9;
    margin-top: 12px
}

.applyCooperate {
    box-sizing: border-box;
    padding: 12px;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
    overflow-y: auto
}

.applyCooperate-content {
    flex: 1
}

.applyCooperate-content .adm-list-body {
    border: none;
    background: none
}

.applyCooperate-content .adm-list-item {
    padding: 0 12px;
    background: none
}

.applyCooperate-content .adm-list-item-content-prefix {
    width: 80px
}

.applyCooperate-content .adm-form-item-label {
    color: #333
}

.applyCooperate-content-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center
}

.applyCooperate-content-typeCard {
    box-sizing: border-box;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    border-radius: 8px;
    border: 1px solid #fff;
    background: #fff;
    margin-top: 12px
}

.applyCooperate-content-typeCard-left {
    width: 48px;
    height: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--color)
}

.applyCooperate-content-typeCard-name {
    color: #666;
    font-size: 20px;
    font-weight: 700
}

.applyCooperate-content .typeCardActive {
    border-color: var(--color);
    background: var(--color2)
}

.applyCooperate-content .typeCardActive .applyCooperate-content-typeCard-name {
    color: #333
}

.applyCooperate-content .cardWrapper {
    overflow: hidden;
    will-change: max-height,transform,opacity;
    transition: all .4s cubic-bezier(.4,0,.2,1)
}

.applyCooperate-content .cardWrapper-inner {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.applyCooperate-content .companyCard,.applyCooperate-content .personalCard {
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    background: #fff;
    margin-top: 12px
}

.applyCooperate-content .companyCard-header,.applyCooperate-content .personalCard-header {
    box-sizing: border-box;
    padding: 0 12px;
    min-height: 36px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    column-gap: 4px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg,var(--color2) 0%,#fff 100%)
}

.applyCooperate-content .companyCard-header>span,.applyCooperate-content .personalCard-header>span {
    color: var(--red)
}

.applyCooperate-content .companyCard-content,.applyCooperate-content .personalCard-content {
    border-radius: 0 0 8px 8px
}

.applyCooperate-content .companyCard-content .adm-list-item:first-child .adm-list-item-content,.applyCooperate-content .personalCard-content .adm-list-item:first-child .adm-list-item-content {
    border-top: none
}

.applyCooperate-content .phoneCard {
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    background: #fff
}

.applyCooperate-content .phoneCard .adm-list-item {
    background: none
}

.applyCooperate-content .phoneCard .adm-list-item-content-prefix {
    width: 80px
}

.applyCooperate-content .phoneCard .adm-form-item-label {
    color: #333
}

.applyCooperate-content .phoneCard .adm-list-item:first-child .adm-list-item-content {
    border-top: none
}

.applyCooperate-content .phoneCard-verificationCodeButton {
    color: #00a0e9
}

.applyCooperate-content-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.applyCooperate-content-footer .adm-button {
    width: 260px;
    border-radius: 20px
}

.applyCooperate-centerContent {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.applyCooperate-success {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center
}

.applyCooperate-success .adm-image {
    width: 200px;
    height: 200px;
    margin-top: 8vh
}

.applyCooperate-back {
    box-sizing: border-box;
    padding: 12px 0;
    color: var(--color);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center
}

.applyCooperate-back-content {
    color: var(--color);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.applyCooperate-back-button {
    width: 260px;
    border-radius: 20px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

li {
    list-style: none
}

img {
    vertical-align: middle;
    border: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none
}

a {
    color: var(--color)
}

body {
    --textBlack: #333;
    --red: #ff4d4f;
    --color: #ffa420;
    --color0: #ffffff;
    --color0_5: #fffaf4;
    --color1: #fff6e9;
    --color1_5: #fff1de;
    --color2: #ffedd2;
    --color2_5: #ffe8c7;
    --color3: #ffe4bc;
    --color3_5: #ffdfb1;
    --color4: #ffdba6;
    --color4_5: #ffd69b;
    --color5: #ffd290;
    --color5_5: #ffcd84;
    --color6: #ffc879;
    --color6_5: #ffc46e;
    --color7: #ffbf63;
    --color7_5: #ffbb58;
    --color8: #ffb64d;
    --color8_5: #ffb241;
    --color9: #ffad36;
    --color9_5: #ffa92b;
    color: var(--textBlack);
    font-size: 14px
}

#root {
    width: 100vw;
    height: 100vh;
    overflow: hidden
}

:root {
    --adm-color-primary: #ffa420
}

:root .adm-form {
    --prefix-width: 90px
}

:root .adm-list {
    --font-size: 14px
}

:root .adm-input {
    --font-size: 14px
}

:root .adm-text-area {
    --font-size: 14px
}

:root .adm-form-item-label {
    line-height: 24px
}

.i-icon {
    display: inline-block;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.i-icon-spin svg {
    animation: i-icon-spin 1s infinite linear
}

.i-icon-rtl {
    transform: scaleX(-1)
}

@keyframes i-icon-spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes i-icon-spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@media (min-width:760px){
	.taxCalculator-content-body{
		padding: 0.3rem 0.2rem 1.8rem 0.2rem;
		margin: 3.2rem 3.5rem 0rem;
	}
	.taxCalculator-content{
	    background-image: url('/public/static/img/taxCalculator_bg2.jpg') !important;
		background-size:100% 4.2rem;
	}
	.taxBasis-info-item-label{
	    width: 1.8rem;
	}
	.taxCalculatorDifferentAmounts-content{
	    margin: 0rem 3.2rem;
	    padding:0rem;
	}
	.taxCalculatorDifferentAmounts{
	    background: #fff;
	}
	.taxBasis{
	    margin: 0rem 4rem;
	    width: auto;
	}
	.taxCalculator-content-body .taxBasis{
	    width: 100%;
	    margin: 0rem;
	    padding: 0.2rem 0rem;
	    font-size: 0.15rem;
	}
}