: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-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-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-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-border-color: var(--adm-color-border)
}

:root {
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

body {
    color: #333;
    color: var(--adm-color-text);
    font-family: -apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,segoe ui,arial,roboto,PingFang SC,miui,Hiragino Sans GB,Microsoft Yahei,sans-serif;
    font-family: var(--adm-font-family);
    font-size: 13px;
    font-size: var(--adm-font-size-main)
}

a,button {
    cursor: pointer
}

a {
    color: #1677ff;
    color: var(--adm-color-primary);
    transition: opacity .2s ease-in-out
}

a:active {
    opacity: .8
}

.adm-plain-anchor {
    color: inherit;
    transition: none
}

.adm-plain-anchor:active {
    opacity: 1
}

body.adm-overflow-hidden {
    overflow: hidden!important
}

div.adm-px-tester {
    --size: 1;
    bottom: -100vh;
    height: calc(var(--size)/2*2px);
    pointer-events: none;
    position: fixed;
    right: -100vw;
    width: 0
}

.adm-button,div.adm-px-tester {
    -webkit-user-select: none;
    user-select: none
}

.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));
    background-color: var(--background-color);
    border: var(--border-width) var(--border-style) var(--border-color);
    border-radius: var(--border-radius);
    box-sizing: border-box;
    color: var(--text-color);
    cursor: pointer;
    display: inline-block;
    font-size: var(--adm-font-size-9);
    height: auto;
    line-height: 1.4;
    margin: 0;
    padding: 7px 12px;
    position: relative;
    text-align: center;
    transition: opacity .15s ease
}

.adm-button:focus {
    outline: none
}

.adm-button:before {
    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);
    box-sizing: initial;
    content: " ";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 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%
}

.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 {
    font-size: var(--adm-font-size-main);
    padding-bottom: 3px;
    padding-top: 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-bottom: 3px;
    padding-top: 3px
}

.adm-button.adm-button-large {
    font-size: var(--adm-font-size-10);
    padding-bottom: 11px;
    padding-top: 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 {
    align-items: center;
    display: flex;
    height: 1.4em;
    justify-content: center
}

.adm-button-loading-wrapper>.adm-loading {
    opacity: .6
}

.adm-dot-loading {
    display: inline-block
}

.adm-check-list-item-extra {
    color: var(--adm-color-primary);
    font-size: var(--adm-font-size-10);
    line-height: 1
}

.adm-check-list-item-readonly {
    cursor: inherit
}

.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);
    font-size: var(--font-size);
    overflow: hidden
}

.adm-list-body-inner {
    margin-top: -1px
}

.adm-list-default .adm-list-body {
    border-bottom: var(--border-bottom);
    border-top: var(--border-top)
}

.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 {
    background-color: var(--adm-color-background);
    display: block;
    line-height: 1.5;
    padding-left: var(--padding-left);
    position: relative
}

.adm-list-item-description,.adm-list-item-title {
    color: var(--adm-color-weak);
    font-size: var(--adm-font-size-main)
}

.adm-list-item-content {
    align-items: var(--align-items);
    border-top: var(--border-inner);
    display: flex;
    justify-content: flex-start;
    padding-right: var(--padding-right)
}

.adm-list-item-content-prefix {
    flex: none;
    padding-right: var(--prefix-padding-right);
    width: var(--prefix-width)
}

.adm-list-item-content-main {
    flex: auto;
    padding: 12px 0
}

.adm-list-item-content-extra {
    color: var(--adm-color-weak);
    flex: none;
    font-size: var(--adm-font-size-7);
    max-width: var(--extra-max-width);
    padding-left: 12px
}

.adm-list-item-content-arrow {
    align-items: center;
    color: var(--adm-color-light);
    display: flex;
    flex: none;
    font-size: 19px;
    margin-left: 4px
}

.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 {
    border-bottom: var(--border-inner);
    bottom: -1px;
    content: " ";
    display: block;
    left: 0;
    position: absolute;
    width: 100%
}

.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 {
    display: flex;
    flex-direction: column;
    font-size: var(--adm-font-size-6);
    max-height: 70vh;
    overflow: hidden;
    width: 100%
}

.adm-dialog-body>* {
    flex: none
}

.adm-dialog-body>.adm-dialog-content {
    flex: auto
}

.adm-dialog-body:not(.adm-dialog-with-image) {
    padding-top: 20px
}

.adm-dialog-image-container {
    margin-bottom: 12px;
    max-height: 40vh
}

.adm-dialog-header,.adm-dialog-title {
    margin-bottom: 8px;
    padding: 0 12px
}

.adm-dialog-title {
    font-size: var(--adm-font-size-10);
    font-weight: 700;
    line-height: 25px;
    text-align: center
}

.adm-dialog-content {
    color: var(--adm-color-text);
    font-size: var(--adm-font-size-7);
    line-height: 1.4;
    max-height: 70vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 12px 20px
}

.adm-dialog-content-empty {
    height: 12px;
    padding: 0
}

.adm-dialog-footer {
    -webkit-user-select: none;
    user-select: none
}

.adm-dialog-footer .adm-dialog-action-row {
    align-items: stretch;
    border-top: .5px solid var(--adm-color-border);
    display: flex
}

.adm-dialog-footer .adm-dialog-action-row>* {
    flex: 1 1
}

.adm-dialog-footer .adm-dialog-action-row>.adm-dialog-button {
    border-radius: 0;
    border-right: .5px solid var(--adm-color-border);
    font-size: var(--adm-font-size-10);
    line-height: 25px;
    padding: 10px
}

.adm-dialog-footer .adm-dialog-action-row>.adm-dialog-button-bold {
    font-weight: 700
}

.adm-dialog-footer .adm-dialog-action-row>.adm-dialog-button:last-child {
    border-right: none
}

.adm-dialog-image-container {
    overflow-y: auto
}

.adm-image {
    --width: var(--adm-image-width,auto);
    --height: var(--adm-image-height,auto);
    display: block;
    height: var(--height);
    overflow: hidden;
    width: var(--width)
}

.adm-image-img {
    height: 100%;
    width: 100%
}

.adm-image-tip {
    background-color: var(--adm-color-fill-content);
    height: 100%;
    min-height: 24px;
    min-width: 24px;
    position: relative
}

.adm-image-tip>svg {
    color: var(--adm-color-weak);
    height: 24px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 24px
}

.adm-auto-center {
    display: flex;
    justify-content: center
}

.adm-auto-center-content {
    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,8px);
    --max-width: var(--adm-center-popup-max-width,75vw);
    --min-width: var(--adm-center-popup-min-width,280px);
    --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 {
    left: 50%;
    max-width: var(--max-width);
    min-width: var(--min-width);
    position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: auto;
    z-index: 1
}

.adm-center-popup-body {
    background-color: var(--background-color);
    border-radius: var(--border-radius)
}

.adm-center-popup-close {
    color: var(--adm-color-weak);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 100
}

.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
}

.adm-dropdown {
    background-color: var(--adm-color-background)
}

.adm-dropdown .adm-dropdown-nav {
    border-bottom: 1px solid transparent;
    display: flex
}

.adm-dropdown-open .adm-dropdown-nav {
    border-bottom-color: var(--adm-color-border)
}

.adm-dropdown-item {
    cursor: pointer;
    display: flex;
    flex: 1 1;
    justify-content: center;
    min-width: 0
}

.adm-dropdown-item .adm-dropdown-item-title {
    align-items: center;
    display: flex;
    font-size: var(--adm-font-size-main);
    max-width: 100%;
    padding: 12px;
    position: relative
}

.adm-dropdown-item .adm-dropdown-item-title-text {
    margin-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.adm-dropdown-item .adm-dropdown-item-title-arrow {
    color: var(--adm-color-light);
    font-size: 9px;
    -webkit-transform: rotate(0deg) translateY(1px);
    transform: rotate(0deg) translateY(1px);
    transition: all .2s ease
}

.adm-dropdown-item .adm-dropdown-item-title-arrow-active {
    -webkit-transform: rotate(-180deg) translateY(-1px);
    transform: rotate(-180deg) translateY(-1px)
}

.adm-dropdown-item .adm-dropdown-item-title:active {
    opacity: .7
}

.adm-dropdown-item-highlight {
    color: var(--adm-color-primary)
}

.adm-dropdown-item-active .adm-dropdown-item-title:after {
    margin-top: -1px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.adm-dropdown-item-content {
    background: var(--adm-color-background);
    width: 100%
}

.adm-dropdown-item-content-hidden {
    display: none
}

.adm-dropdown-popup {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    width: 100%
}

.adm-dropdown-popup .adm-dropdown-popup-body,.adm-dropdown-popup .adm-dropdown-popup-mask {
    position: absolute
}

.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-empty {
    align-items: center;
    flex-direction: column;
    padding: 24px 0
}

.adm-empty,.adm-empty-image-container {
    display: flex;
    justify-content: center
}

.adm-empty-image-container .adm-empty-image {
    height: intrinsic;
    width: 64px
}

.adm-empty-description {
    color: var(--adm-color-light);
    font-size: var(--adm-font-size-6);
    margin-top: 8px
}

.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 {
    color: var(--adm-color-primary);
    text-align: center
}

.adm-form-item+.adm-form-item {
    border-top: none
}

.adm-form-item-label {
    box-sizing: border-box;
    color: var(--adm-color-text-secondary);
    display: block;
    height: 100%;
    line-height: 1.5;
    position: relative
}

.adm-form-item-label .adm-form-item-required-asterisk {
    color: var(--adm-color-danger);
    font-family: SimSun,sans-serif;
    left: -.6em;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    user-select: none
}

.adm-form-item-label .adm-form-item-required-text {
    color: var(--adm-color-weak);
    margin-left: 4px
}

.adm-form-item-label-help {
    cursor: pointer;
    margin-left: 4px
}

.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-bottom: 12px;
    padding-top: 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: #fff;
    --arrow-size: 8px;
    --content-padding: 8px 12px;
    -webkit-animation: none;
    animation: none;
    color: var(--adm-color-text);
    cursor: auto;
    left: 0;
    position: absolute;
    text-align: left;
    top: 0;
    -webkit-user-select: text;
    user-select: text;
    white-space: normal;
    z-index: var(--z-index)
}

.adm-popover.adm-popover-dark {
    --background: rgba(0,0,0,.75);
    --adm-color-text: #fff;
    color: #fff
}

.adm-popover.adm-popover-dark .adm-popover-inner {
    box-shadow: none
}

.adm-popover:after {
    background: hsla(0,0%,100%,.01);
    content: "";
    position: absolute
}

.adm-popover-hidden {
    display: none
}

.adm-popover-inner {
    background-clip: padding-box;
    background-color: var(--background);
    border-radius: 8px;
    box-shadow: 0 0 30px 0 rgba(51,51,51,.2);
    font-size: var(--adm-font-size-7);
    max-width: calc(100vw - 24px);
    min-width: 32px;
    overflow-y: hidden;
    width: -webkit-max-content;
    width: max-content
}

.adm-popover-inner-content {
    padding: var(--content-padding)
}

.adm-popover-arrow {
    background: transparent;
    overflow: visible;
    width: var(--arrow-size)
}

.adm-popover-arrow,.adm-popover-arrow-icon {
    display: block;
    height: var(--arrow-size);
    position: absolute
}

.adm-popover-arrow-icon {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(var(--arrow-icon-rotate));
    transform: translate(-50%,-50%) rotate(var(--arrow-icon-rotate));
    width: calc(var(--arrow-size)/8*15)
}

.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 {
    min-width: 120px;
    overflow: hidden
}

.adm-popover-menu-list-inner {
    margin-top: -1px
}

.adm-popover-menu-item {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    padding-left: 20px;
    position: relative
}

.adm-popover-menu-item-icon {
    flex: none;
    font-size: 20px;
    padding-right: 8px
}

.adm-popover-menu-item-text {
    border-top: 1px solid var(--border-color);
    flex: auto;
    padding: 14px 20px 14px 0
}

.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 {
    border-bottom: 1px solid var(--border-color);
    bottom: -1px;
    content: " ";
    display: block;
    left: 0;
    position: absolute;
    width: 100%
}

.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);
    grid-gap: 10px;
    grid-column-gap: var(--gap-horizontal);
    grid-row-gap: var(--gap-vertical);
    align-items: stretch;
    -webkit-column-gap: var(--gap-horizontal);
    column-gap: var(--gap-horizontal);
    display: grid;
    grid-template-columns: repeat(var(--columns),minmax(0,1fr));
    row-gap: var(--gap-vertical)
}

.adm-grid-item {
    grid-column-end: span var(--item-span)
}

.adm-image-viewer-content {
    height: 100vh;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    width: 100vw
}

.adm-image-viewer-footer {
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 1
}

.adm-image-viewer-slides {
    cursor: grab;
    height: 100%;
    position: relative;
    touch-action: none;
    z-index: 1
}

.adm-image-viewer-slides-inner {
    height: 100%;
    white-space: nowrap
}

.adm-image-viewer-slides-inner>* {
    margin-right: 16px
}

.adm-image-viewer-slide {
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%
}

.adm-image-viewer-control {
    cursor: grab;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    touch-action: none;
    width: 100%;
    z-index: 1
}

.adm-image-viewer-image-wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%
}

.adm-image-viewer-image-wrapper img {
    display: block;
    max-height: 100%;
    max-width: 100%
}

.adm-image-viewer-indicator {
    color: #e6e6e6;
    font-size: var(--adm-font-size-6);
    left: 50%;
    position: absolute;
    top: 12px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2
}

.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-index-bar {
    --color: var(--adm-color-text);
    --sticky-offset-top: 0;
    background-color: var(--adm-color-background);
    height: 100%;
    overflow: hidden;
    position: relative
}

.adm-index-bar-body {
    height: 100%;
    overflow: scroll;
    width: 100%
}

.adm-index-bar-body::-webkit-scrollbar {
    display: none
}

.adm-index-bar-anchor-title {
    background-color: var(--adm-color-fill-content);
    color: var(--adm-color-weak);
    display: flex;
    flex-direction: column;
    font-size: var(--adm-font-size-main);
    height: 35px;
    justify-content: center;
    padding: 0 12px
}

.adm-index-bar-sidebar {
    color: var(--adm-color-weak);
    font-size: var(--adm-font-size-4);
    overflow: visible;
    right: 0;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 910
}

.adm-index-bar-sidebar,.adm-index-bar-sidebar-bubble {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.adm-index-bar-sidebar-bubble {
    background: var(--adm-color-light);
    border-radius: 50%;
    color: var(--adm-color-text-light-solid);
    font-size: 25px;
    height: 47px;
    line-height: 47px;
    right: 60px;
    text-align: center;
    width: 47px
}

.adm-index-bar-sidebar-row {
    cursor: pointer;
    padding: 0 12px;
    position: relative;
    text-align: right;
    width: auto
}

.adm-index-bar-sidebar-row>* {
    pointer-events: none
}

.adm-index-bar-sidebar-item {
    align-items: center;
    display: inline-flex;
    height: 16px;
    justify-content: center;
    line-height: 16px;
    width: 16px
}

.adm-index-bar-sidebar-item-active {
    background-color: var(--adm-color-primary);
    border-radius: 50%;
    color: var(--adm-color-text-light-solid)
}

.adm-index-bar-sidebar-interacting {
    width: 100%
}

.adm-index-bar-sticky .adm-index-bar-anchor-title {
    left: 0;
    position: -webkit-sticky;
    position: sticky;
    top: var(--sticky-offset-top);
    z-index: 900
}

.adm-infinite-scroll {
    align-items: center;
    color: var(--adm-color-weak);
    display: flex;
    font-size: var(--adm-font-size-main);
    justify-content: center;
    padding: 18px
}

.adm-infinite-scroll-failed-text {
    display: inline-block;
    margin-right: 8px
}

.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;
    align-items: center;
    background-color: var(--background-color);
    display: flex;
    justify-content: flex-start;
    max-height: 100%;
    max-width: 100%;
    min-height: 24px;
    width: 100%
}

.adm-input-disabled {
    cursor: not-allowed;
    opacity: .4
}

.adm-input-element {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    box-sizing: border-box;
    color: var(--color);
    display: inline-block;
    flex: auto;
    font-size: var(--font-size);
    line-height: 1.5;
    margin: 0;
    max-height: 100%;
    max-width: 100%;
    min-height: 1.5em;
    outline: none;
    padding: 0;
    text-align: var(--text-align);
    width: 100%
}

.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: initial
}

.adm-input-element:read-only {
    cursor: default
}

.adm-input-element:invalid {
    box-shadow: none
}

.adm-input-element::-ms-clear,.adm-input-element::-ms-reveal {
    display: none
}

.adm-input-element::-webkit-search-cancel-button,.adm-input-element::-webkit-search-decoration {
    display: none
}

.adm-input-element:disabled {
    opacity: 1
}

.adm-input-element[type=date],.adm-input-element[type=datetime-local],.adm-input-element[type=time] {
    min-height: 1.5em
}

.adm-input-element[type=search] {
    -webkit-appearance: none
}

.adm-input-element[readonly] {
    pointer-events: none
}

.adm-input-clear {
    color: var(--adm-color-light);
    cursor: pointer;
    flex: none;
    margin-left: 8px;
    padding: 4px
}

.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-nav-bar {
    --height: 45px;
    --border-bottom: none;
    align-items: center;
    border-bottom: var(--border-bottom);
    display: flex;
    height: var(--height);
    padding: 0 12px;
    white-space: nowrap
}

.adm-nav-bar-left,.adm-nav-bar-right {
    flex: 1 1
}

.adm-nav-bar-title {
    flex: auto;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis
}

.adm-nav-bar-back {
    align-items: center;
    cursor: pointer;
    display: flex;
    margin-right: 16px;
    padding: 6px 0
}

.adm-nav-bar-back-arrow {
    font-size: 24px;
    margin-right: 4px
}

.adm-nav-bar-left {
    align-items: center;
    display: flex;
    font-size: var(--adm-font-size-7);
    justify-content: flex-start
}

.adm-nav-bar-title {
    font-size: var(--adm-font-size-10);
    justify-content: center;
    padding: 0 12px;
    white-space: nowrap
}

.adm-nav-bar-right {
    text-align: right
}

.adm-pull-to-refresh-head {
    overflow: hidden;
    position: relative
}

.adm-pull-to-refresh-head-content {
    align-items: center;
    bottom: 0;
    color: var(--adm-color-weak);
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    width: 100%
}

.adm-radio {
    --icon-size: 22px;
    --font-size: var(--adm-font-size-9);
    --gap: 8px;
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    justify-content: flex-start;
    vertical-align: text-bottom
}

.adm-radio input {
    display: none
}

.adm-radio .adm-radio-icon {
    border: 1px solid var(--adm-color-light);
    border-radius: var(--icon-size);
    box-sizing: border-box;
    color: var(--adm-color-text-light-solid);
    flex: none;
    height: var(--icon-size);
    width: var(--icon-size)
}

.adm-radio .adm-radio-icon>svg {
    display: block;
    height: 100%;
    width: 100%
}

.adm-radio.adm-radio-block {
    display: flex
}

.adm-radio.adm-radio-checked .adm-radio-icon {
    background-color: var(--adm-color-primary);
    border-color: var(--adm-color-primary)
}

.adm-radio.adm-radio-disabled {
    cursor: not-allowed
}

.adm-radio.adm-radio-disabled .adm-radio-content {
    opacity: .4
}

.adm-radio.adm-radio-disabled .adm-radio-icon {
    background-color: var(--adm-color-fill-content);
    border-color: var(--adm-color-light);
    color: #b7b7b7
}

.adm-radio .adm-radio-custom-icon {
    font-size: var(--icon-size)
}

.adm-radio-content {
    flex: 0 1 auto;
    font-size: var(--font-size);
    padding-left: var(--gap)
}

.adm-search-bar {
    --height: 32px;
    --padding-left: 8px;
    --background: var(--adm-color-fill-content);
    --border-radius: 6px;
    --placeholder-color: var(--adm-color-weak);
    ---placeholder-color: var(--placeholder-color);
    align-items: center;
    display: flex;
    height: var(--height);
    justify-content: center
}

.adm-search-bar .adm-search-bar-input-box {
    align-items: center;
    background: var(--background);
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    display: flex;
    flex: auto;
    justify-content: center;
    padding-left: var(--padding-left)
}

.adm-search-bar .adm-search-bar-input-box .adm-search-bar-input-box-icon {
    color: var(--adm-color-light);
    flex: none;
    font-size: var(--adm-font-size-8)
}

.adm-search-bar .adm-search-bar-input-box .adm-search-bar-input {
    box-sizing: border-box;
    flex: auto;
    height: calc(var(--height) - 2px);
    padding: 4px 8px 4px 4px
}

.adm-search-bar .adm-search-bar-input-box .adm-search-bar-input.adm-input {
    --placeholder-color: var(---placeholder-color);
    --font-size: var(--adm-font-size-7)
}

.adm-search-bar .adm-search-bar-input-box .adm-search-bar-input .adm-input-element {
    line-height: 19px
}

.adm-search-bar .adm-search-bar-input-box .adm-search-bar-input.adm-search-bar-input-without-icon {
    padding-left: 8px
}

.adm-search-bar .adm-search-bar-suffix {
    flex: none;
    margin-left: 4px
}

.adm-search-bar .adm-search-bar-cancel-button.adm-button {
    padding: 3px 12px
}

.adm-search-bar-active .adm-input.adm-input.adm-input {
    --placeholder-color: var(--adm-color-light)
}

.adm-search-bar-active .adm-search-bar-input-box {
    background: var(--adm-color-background);
    border-color: var(--adm-color-primary)
}

.adm-selector {
    --color: var(--adm-color-fill-content);
    --checked-color: #e7f1ff;
    --text-color: var(--adm-color-text);
    --checked-text-color: var(--adm-color-primary);
    --border: none;
    --checked-border: none;
    --border-radius: 2px;
    --padding: 8px 16px;
    --gap: 8px;
    ---gap: var(--gap);
    ---gap-horizontal: var(--gap-horizontal,var(--gap));
    ---gap-vertical: var(--gap-vertical,var(--gap));
    font-size: var(--adm-font-size-7);
    line-height: 1.4;
    overflow: hidden
}

.adm-selector .adm-space.adm-space {
    --gap: 12px
}

.adm-selector .adm-grid {
    --gap: var(---gap);
    --gap-horizontal: var(---gap-horizontal);
    --gap-vertical: var(---gap-vertical)
}

.adm-selector-item {
    background-color: var(--color);
    border: var(--border);
    border-radius: var(--border-radius);
    color: var(--text-color);
    cursor: pointer;
    display: inline-block;
    opacity: 1;
    padding: var(--padding);
    position: relative;
    text-align: center;
    vertical-align: top
}

.adm-selector-item-description {
    color: var(--adm-color-weak);
    font-size: var(--adm-font-size-main)
}

.adm-selector-item-active,.adm-selector-item-multiple-active {
    background-color: var(--checked-color);
    border: var(--checked-border);
    color: var(--checked-text-color)
}

.adm-selector-item .adm-selector-check-mark-wrapper {
    border-bottom: 8px solid var(--adm-color-primary);
    border-left: 10px solid transparent;
    border-right: 10px solid var(--adm-color-primary);
    border-top: 8px solid transparent;
    bottom: 0;
    height: 0;
    position: absolute;
    right: 0;
    width: 0
}

.adm-selector-item .adm-selector-check-mark-wrapper>svg {
    height: 6px;
    left: 0;
    position: absolute;
    top: 0;
    width: 8px
}

.adm-selector-item-disabled {
    cursor: not-allowed;
    opacity: .4
}

.adm-space-item {
    flex: none
}

.adm-space {
    --gap: 8px;
    --gap-vertical: var(--gap);
    --gap-horizontal: var(--gap);
    display: inline-flex
}

.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>.adm-space-item {
    margin-right: var(--gap-horizontal)
}

.adm-space-horizontal>.adm-space-item:last-child {
    margin-right: 0
}

.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-side-bar {
    --height: 100%;
    --width: 105px;
    --item-border-radius: 8px;
    --background-color: var(--adm-color-fill-content);
    background-color: var(--background-color);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    font-size: var(--adm-font-size-main);
    height: var(--height);
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    width: var(--width)
}

.adm-side-bar-items {
    flex: none;
    overflow: hidden
}

.adm-side-bar-extra-space {
    flex: auto;
    overflow: hidden;
    position: relative
}

.adm-side-bar-item {
    align-items: center;
    background-color: var(--background-color);
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    overflow: visible;
    padding: 16px 12px;
    position: relative
}

.adm-side-bar-item-highlight {
    background: var(--adm-color-primary);
    border-radius: 2px;
    height: 100%;
    left: -12px;
    position: absolute;
    top: 0;
    width: 2px
}

.adm-side-bar-item-active {
    background-color: var(--adm-color-background);
    color: var(--adm-color-primary);
    position: relative
}

.adm-side-bar-item-corner {
    height: var(--item-border-radius);
    pointer-events: none;
    position: absolute;
    right: 0;
    -webkit-user-select: none;
    user-select: none;
    width: var(--item-border-radius);
    z-index: 100
}

.adm-side-bar-item-corner-top {
    top: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.adm-side-bar-item-corner-bottom {
    bottom: 0
}

.adm-side-bar-item-disabled {
    cursor: not-allowed
}

.adm-side-bar-item-disabled .adm-side-bar-item-title {
    opacity: .4
}

.adm-side-bar-badge.adm-badge {
    --right: -4px
}

.adm-badge-wrapper {
    display: inline-block;
    position: relative
}

.adm-badge {
    --right: 0;
    --top: 0;
    --color: var(--adm-badge-color,#ff411c);
    background-color: var(--color);
    border-radius: 100px;
    box-sizing: initial;
    display: inline-flex;
    vertical-align: middle
}

.adm-badge-content {
    box-sizing: border-box;
    color: var(--adm-color-text-light-solid);
    font-size: var(--adm-font-size-1);
    font-weight: 400;
    line-height: 12px;
    min-width: 8px;
    padding: 1px 4px;
    text-align: center;
    white-space: nowrap
}

.adm-badge-fixed {
    position: absolute;
    right: var(--right);
    top: var(--top);
    -webkit-transform: translate(50%,-50%);
    transform: translate(50%,-50%)
}

.adm-badge-dot {
    border-radius: 5px;
    height: 10px;
    min-width: 10px;
    width: 10px
}

.adm-badge-bordered {
    border: 1px solid var(--adm-color-text-light-solid)
}

.adm-spin-loading {
    --color: var(--adm-color-weak);
    --size: 32px;
    height: var(--size);
    width: var(--size)
}

.adm-spin-loading-svg {
    -webkit-animation: adm-spin-loading-rotate .8s linear infinite;
    animation: adm-spin-loading-rotate .8s linear infinite;
    height: 100%;
    width: 100%
}

.adm-spin-loading-svg>.adm-spin-loading-fill {
    stroke: var(--color)
}

@-webkit-keyframes adm-spin-loading-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes adm-spin-loading-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.adm-step {
    --line-to-next-color: #e5e5e5;
    --icon-color: #e5e5e5;
    z-index: 0
}

.adm-step,.adm-step .adm-step-indicator {
    position: relative
}

.adm-step .adm-step-indicator:after {
    background-color: var(--line-to-next-color);
    content: "";
    position: absolute;
    z-index: 0
}

.adm-step .adm-step-indicator .adm-step-icon-container {
    color: var(--icon-color);
    position: absolute;
    z-index: 1
}

.adm-step .adm-step-indicator .adm-step-icon-container>.antd-mobile-icon {
    display: block
}

.adm-step:last-child .adm-step-indicator:after {
    display: none
}

.adm-step-status-finish {
    --line-to-next-color: var(--adm-color-primary)
}

.adm-step-status-wait {
    --icon-color: #e5e5e5
}

.adm-step-status-wait .adm-step-title {
    color: var(--adm-color-weak)
}

.adm-step-status-process {
    --icon-color: var(--adm-color-primary)
}

.adm-step-status-process .adm-step-title {
    color: var(--adm-color-primary)
}

.adm-step-status-finish {
    --icon-color: var(--adm-color-primary)
}

.adm-step-status-error {
    --icon-color: var(--adm-color-danger)
}

.adm-step-status-error .adm-step-title {
    color: var(--adm-color-danger)
}

.adm-steps {
    --title-font-size: var(--adm-font-size-main);
    --description-font-size: var(--adm-font-size-4);
    --indicator-margin-right: 0;
    --icon-size: 18px;
    box-sizing: border-box;
    width: 100%
}

.adm-steps-horizontal {
    display: flex;
    justify-content: space-around;
    padding: 8px 0
}

.adm-steps-horizontal .adm-step {
    flex: 1 1
}

.adm-steps-horizontal .adm-step .adm-step-indicator {
    height: 24px;
    width: 100%
}

.adm-steps-horizontal .adm-step .adm-step-indicator:after {
    height: 1px;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%
}

.adm-steps-horizontal .adm-step .adm-step-indicator .adm-step-icon-container {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.adm-steps-horizontal .adm-step-content {
    font-size: var(--description-font-size);
    padding: 2px 8px 0;
    text-align: center
}

.adm-steps-horizontal .adm-step-content .adm-step-title {
    font-size: var(--title-font-size)
}

.adm-steps-horizontal .adm-step-content .adm-step-description {
    color: var(--adm-color-weak);
    margin-top: 4px
}

.adm-steps-vertical {
    padding: 8px 16px
}

.adm-steps-vertical .adm-step {
    align-items: stretch;
    display: flex
}

.adm-steps-vertical .adm-step .adm-step-indicator {
    flex: none;
    margin-right: var(--indicator-margin-right);
    width: 24px
}

.adm-steps-vertical .adm-step .adm-step-indicator:after {
    height: 100%;
    left: 50%;
    top: calc(var(--title-font-size)*1.5/2);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1px
}

.adm-steps-vertical .adm-step .adm-step-indicator .adm-step-icon-container {
    left: 50%;
    top: calc(var(--title-font-size)*1.5/2);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.adm-steps-vertical .adm-step:last-child .adm-step-content {
    padding-bottom: 0
}

.adm-steps-vertical .adm-step .adm-step-content {
    flex: auto;
    padding-bottom: 24px
}

.adm-steps-vertical .adm-step .adm-step-content .adm-step-title {
    font-size: var(--title-font-size);
    line-height: 1.5
}

.adm-steps-vertical .adm-step .adm-step-content .adm-step-description {
    color: var(--adm-color-weak);
    font-size: var(--description-font-size);
    padding-top: 4px
}

.adm-step-icon-container {
    font-size: var(--icon-size)
}

.adm-step-icon-dot {
    background: currentColor;
    border-radius: 4px;
    display: block;
    height: 8px;
    width: 8px
}

.adm-swiper {
    --height: auto;
    --width: 100%;
    --border-radius: 0;
    --track-padding: 0;
    --slide-size: 100%;
    --track-offset: 0%;
    border-radius: var(--border-radius);
    display: block;
    height: var(--height);
    overflow: hidden;
    position: relative;
    width: var(--width);
    z-index: 0
}

.adm-swiper-track {
    height: 100%;
    padding: var(--track-padding);
    white-space: nowrap;
    width: 100%
}

.adm-swiper-track-allow-touch-move {
    cursor: grab
}

.adm-swiper-track-inner {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.adm-swiper-slide {
    flex: none;
    position: relative;
    white-space: inherit
}

.adm-swiper-item,.adm-swiper-slide {
    display: block;
    height: 100%;
    width: 100%
}

.adm-swiper-item {
    white-space: normal
}

.adm-swiper-horizontal .adm-swiper-track-allow-touch-move {
    touch-action: pan-y
}

.adm-swiper-horizontal .adm-swiper-indicator {
    bottom: 6px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.adm-swiper-horizontal .adm-swiper-track {
    -webkit-transform: translateX(var(--track-offset));
    transform: translateX(var(--track-offset))
}

.adm-swiper-horizontal .adm-swiper-track-inner {
    flex-direction: row;
    width: var(--slide-size)
}

.adm-swiper-vertical .adm-swiper-track-allow-touch-move {
    touch-action: pan-x
}

.adm-swiper-vertical .adm-swiper-indicator {
    position: absolute;
    right: 6px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.adm-swiper-vertical .adm-swiper-track {
    -webkit-transform: translateY(var(--track-offset));
    transform: translateY(var(--track-offset))
}

.adm-swiper-vertical .adm-swiper-track-inner {
    flex-direction: column;
    height: var(--slide-size)
}

.adm-page-indicator {
    --dot-color: #ddd;
    --active-dot-color: var(--adm-color-primary);
    --dot-size: 3px;
    --active-dot-size: 13px;
    --dot-border-radius: 1px;
    --active-dot-border-radius: var(--dot-border-radius);
    --dot-spacing: 3px;
    display: flex;
    width: auto
}

.adm-page-indicator-dot {
    background: var(--dot-color);
    border-radius: var(--dot-border-radius);
    display: block;
    height: var(--dot-size);
    width: var(--dot-size)
}

.adm-page-indicator-dot:last-child {
    margin-right: 0
}

.adm-page-indicator-dot-active {
    background: var(--active-dot-color);
    border-radius: var(--active-dot-border-radius)
}

.adm-page-indicator-color-white {
    --dot-color: hsla(0,0%,100%,.5);
    --active-dot-color: var(--adm-color-text-light-solid)
}

.adm-page-indicator-horizontal {
    flex-direction: row
}

.adm-page-indicator-horizontal .adm-page-indicator-dot {
    margin-right: var(--dot-spacing)
}

.adm-page-indicator-horizontal .adm-page-indicator-dot-active {
    width: var(--active-dot-size)
}

.adm-page-indicator-vertical {
    flex-direction: column
}

.adm-page-indicator-vertical .adm-page-indicator-dot {
    margin-bottom: var(--dot-spacing)
}

.adm-page-indicator-vertical .adm-page-indicator-dot-active {
    height: var(--active-dot-size)
}

.adm-tab-bar-wrap {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-height: 48px;
    overflow: hidden
}

.adm-tab-bar-item {
    align-items: center;
    color: var(--adm-color-text-secondary);
    cursor: pointer;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    justify-content: center;
    padding: 4px 8px;
    position: relative;
    white-space: nowrap;
    width: -webkit-min-content;
    width: min-content
}

.adm-tab-bar-item-icon {
    font-size: 24px;
    height: 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
}

.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: 1px solid var(--adm-color-border);
    position: relative
}

.adm-tabs-tab-list {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: scroll;
    position: relative;
    scrollbar-width: none
}

.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 {
    cursor: pointer;
    font-size: var(--title-font-size);
    margin: 0 auto;
    padding: 8px 0 10px;
    position: relative;
    white-space: nowrap;
    width: -webkit-min-content;
    width: min-content
}

.adm-tabs-tab-active {
    color: var(--active-title-color)
}

.adm-tabs-tab-disabled {
    cursor: not-allowed;
    opacity: .5
}

.adm-tabs-tab-line {
    background: var(--active-line-color);
    border-radius: var(--active-line-border-radius);
    bottom: 0;
    height: var(--active-line-height);
    position: absolute
}

.adm-tabs-content {
    padding: var(--content-padding)
}

.adm-tabs-header-mask {
    bottom: 0;
    height: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 30px;
    z-index: 1
}

.adm-tabs-header-mask-left {
    background: linear-gradient(to right,var(--adm-color-background),hsla(0,0%,100%,0));
    left: 0
}

.adm-tabs-header-mask-right {
    background: linear-gradient(to left,var(--adm-color-background),hsla(0,0%,100%,0));
    right: 0
}

.adm-toast-mask .adm-toast-wrap {
    height: 100%;
    left: 0;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%
}

.adm-toast-mask .adm-toast-main {
    background-color: rgba(0,0,0,.7);
    border-radius: 8px;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    font-size: var(--adm-font-size-7);
    line-height: 1.5;
    max-height: 70%;
    max-width: 204px;
    overflow: auto;
    pointer-events: all;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
    word-break: break-all
}

.adm-toast-mask .adm-toast-main-text {
    min-width: 0;
    padding: 12px
}

.adm-toast-mask .adm-toast-main-icon {
    min-width: 150px;
    padding: 35px 12px
}

.adm-toast-mask .adm-toast-main-icon .adm-toast-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 8px;
    text-align: center
}

.adm-toast-loading {
    --size: 48px;
    margin: 0 auto 8px
}

.code-input-container .number-box {
    display: flex;
    justify-content: space-between
}

.code-input-container .input-item {
    color: #141414;
    display: flex;
    font-size: .5rem;
    font-weight: 500;
    height: 30px;
    justify-content: center;
    line-height: .625rem;
    margin-right: 15px;
    width: 30px
}

.code-input-container .input-item:last-child {
    margin-right: 0
}

.code-input-container .input-value {
    margin-left: -750px;
    opacity: 0;
    position: absolute;
    z-index: -99
}

.mask-content .mask {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px)
}

.mask-content .mask-content-com .title {
    font-size: .5rem;
    padding-top: 10px;
    text-align: center
}

.mask-content .code-input-container .number-box {
    display: flex;
    justify-content: space-between
}

.mask-content .code-input-container .input-item {
    color: #141414;
    display: flex;
    font-size: .5rem;
    font-weight: 500;
    height: 30px;
    justify-content: center;
    line-height: .625rem;
    margin-right: 15px;
    width: 30px
}

.mask-content .code-input-container .input-item:last-child {
    margin-right: 0
}

.mask-content .code-input-container .input-value {
    margin-left: -750px;
    opacity: 0;
    position: absolute;
    z-index: -99
}

.mask-content .footer a {
    color: #141414;
    text-decoration: none
}

.list-item.list-item-jieweilai {
    display: block
}

.list-item.list-item-jieweilai .title {
    color: #333;
    font-weight: 500;
    overflow: hidden;
    padding-bottom: 10px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main {
    display: flex
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .game-detail-info {
    flex: 1 1
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .p-game-list-img {
    height: 90px;
    width: 90px
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .p-game-list-img .adm-image {
    height: 90px
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .game-detail-info {
    margin-left: 15px
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .tips {
    align-items: center;
    color: #888;
    display: flex;
    font-size: .3125rem;
    padding-bottom: 5px;
    width: -webkit-max-content;
    width: max-content
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .tips .tip {
    display: block;
    padding: 0 8px
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .tips .blue {
    color: #1e80ff
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .tips i {
    background-color: #888;
    height: 10px;
    width: 1px
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .tag-list {
    align-items: center;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .tag-list .tag-item {
    border: 1px solid #39b54a;
    border-radius: 3px;
    color: #39b54a;
    float: left;
    font-size: .25rem;
    margin-right: 6px;
    padding: 2px 4px;
    text-align: center
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .tag-list .tag-item:nth-child(2) {
    background: #fff;
    border-color: #f05a39;
    color: #f05a39
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .tag-list .tag-item:last-child {
    background: #fff;
    border-color: #1e80ff;
    color: #1e80ff
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .game-tag-list {
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    line-height: .375rem;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .game-tag-list span {
    color: #ff8d1b;
    font-size: .3125rem;
    margin-right: 3px
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .adm-button-primary {
    float: right;
    margin: 0 2px
}

.list-item.list-item-jieweilai .adm-list-item-content-main .content-main .item-detail {
    display: flex
}

.p-game-list {
    height: 100%;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none
}

.p-game-list .p-game-header>div {
    background-color: #fee961
}

.p-game-list .p-game-header .adm-tabs-tab-list {
    height: 50px
}

.p-game-list .p-game-header .adm-tabs-tab-list .adm-tabs-tab {
    font-size: .3125rem
}

.p-game-list .p-game-header .adm-nav-bar {
    padding-right: 0
}

.p-game-list .p-game-header .adm-nav-bar-right {
    font-size: .5rem
}

.p-game-list .p-game-header .search-box {
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    margin: 0 16px 8px;
    padding: 5px
}

.p-game-list .p-game-header .search-box .antd-mobile-icon {
    font-size: .5rem;
    font-weight: 600;
    margin-left: 10px
}

.p-game-list .p-game-header .search-box .adm-input {
    flex: 1 1
}

.p-game-list .p-game-header .search-box .adm-button {
    background-color: #fee961;
    border-radius: 20px;
    color: #333;
    font-size: .375rem;
    padding: 5px 10px
}

.p-game-list .p-game-header .adm-search-bar {
    background: #fee961;
    padding: 10px 12px
}

.p-game-list .p-game-list-data {
    overflow-y: scroll;
    position: relative
}

.p-game-list .p-game-list-data .list-loading {
    background-color: rgba(0,0,0,.2);
    color: #fff;
    display: flex;
    font-size: 1.25rem;
    height: 100%;
    justify-content: center;
    padding-top: 50px;
    position: absolute;
    width: 100%;
    z-index: 2
}

.p-game-list .p-game-list-data .adm-list-body-inner {
    background: #eee;
    padding: 0 8px
}

.p-game-list .p-game-list-data .adm-list-body-inner .adm-list-item-content {
    padding-right: 0
}

.p-game-list .p-game-list-data .list-item {
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 8px;
    padding: 10px
}

.p-game-list .p-game-list-data .list-item .adm-list-item-content {
    border-top: 0
}

.p-game-list .p-game-list-data .list-item .game-tag-list {
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    line-height: .375rem;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.p-game-list .p-game-list-data .list-item .game-tag-list span {
    color: #ff8d1b;
    font-size: .3125rem;
    margin-right: 3px
}

.p-game-list .p-game-list-data .list-item .list-item-title {
    display: flex;
    padding-bottom: 20px
}

.p-game-list .p-game-list-data .list-item .list-item-title .tag-list {
    align-items: center;
    display: flex
}

.p-game-list .p-game-list-data .list-item .list-item-title .tag-list .tag-item {
    background: #333;
    border: 1px solid #333;
    border-radius: 3px;
    color: #fff;
    float: left;
    font-size: .25rem;
    margin-right: 4px;
    padding: 2px 4px;
    text-align: center
}

.p-game-list .p-game-list-data .list-item .list-item-title .tag-list .tag-item:nth-child(2) {
    background: #fff;
    border-color: #f05a39;
    color: #f05a39
}

.p-game-list .p-game-list-data .list-item .list-item-title .tag-list .tag-item:last-child {
    background: #fff;
    border-color: #1e80ff;
    color: #1e80ff
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    padding-left: 10px;
    width: 100%
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-info {
    flex: 1 1
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .title {
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    font-size: .375rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .tag-box {
    display: flex;
    padding-bottom: 0
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .tips {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 8px;
    padding-right: 2px
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .tips .tip {
    color: #8d9199;
    font-size: .3125rem;
    margin-right: 5px
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .item-detail {
    display: flex;
    justify-content: space-between;
    padding-right: 12px
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .item-detail .item-price {
    color: #c51008;
    font-size: .5rem;
    font-weight: 600;
    margin-right: 20px
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .item-detail .game-detail span {
    color: #999;
    font-size: .25rem;
    margin-right: 4px
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .item-detail button {
    font-size: .3125rem;
    padding: 5px 12px
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer {
    display: flex;
    justify-content: flex-end
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer button {
    font-size: .3125rem;
    margin-right: 5px;
    padding: 7px 5px
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer button span {
    align-items: center;
    display: flex
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer button span .antd-mobile-icon {
    display: none
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer button img {
    height: 15px;
    margin-right: 2px;
    width: 15px
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer .customer-item {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    margin-right: 5px
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer .customer-item:first-child div {
    background-color: #3dad24
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer .customer-item div {
    align-items: center;
    background-color: #fed30b;
    border-radius: 50%;
    display: flex;
    height: 22px;
    justify-content: center;
    width: 22px
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer .customer-item div .antd-mobile-icon {
    color: #fff
}

.p-game-list .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer .customer-item span {
    color: #888;
    font-size: .3125rem
}

.p-game-list .p-game-list-data .list-item .adm-list-item-content-main {
    width: 100%
}

.p-game-list .p-game-list-data .list-item .p-game-list-img {
    height: 120px;
    line-height: 0;
    position: relative;
    width: 120px
}

.p-game-list .p-game-list-data .list-item .p-game-list-img .img-num {
    background-color: rgba(0,0,0,.5);
    border-bottom-left-radius: 4px;
    border-top-right-radius: 10px;
    color: #fff;
    font-size: .25rem;
    line-height: normal;
    padding: 2px 4px;
    position: absolute;
    right: 1px;
    top: 1px
}

.p-game-list .p-game-list-data .list-item .p-game-list-img .adm-space {
    --gap: 5px;
    border-radius: 15px;
    margin-bottom: 5px;
    overflow: hidden;
    width: 100%
}

.p-game-list .p-game-list-data .list-item .p-game-list-img .adm-space-item {
    padding-bottom: 0;
    width: 100%
}

.p-game-list .p-game-list-data .list-item .p-game-list-img .adm-image {
    align-items: center;
    border: 1px solid #eee;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    height: 120px;
    overflow: hidden;
    width: 100%
}

.p-game-list .p-game-list-data .list-item .p-game-list-img .adm-image .adm-image-img {
    height: 100%;
    object-fit: cover!important;
    width: 100%
}

.p-game-list .p-game-list-data .list-item .p-game-list-img .tips {
    align-items: center;
    color: #888;
    display: flex;
    font-size: .3125rem;
    width: -webkit-max-content;
    width: max-content
}

.p-game-list .p-game-list-data .list-item .p-game-list-img .tips .tip {
    display: block;
    line-height: .9375rem;
    padding: 0 4px
}

.p-game-list .p-game-list-data .list-item .p-game-list-img .tips .blue {
    color: #1e80ff
}

.p-game-list .p-game-list-data .list-item .p-game-list-img .tips i {
    background-color: #888;
    height: 10px;
    width: 1px
}

.p-game-list .p-game-list-data .list-item .p-tag-list {
    float: left;
    margin-top: 5px;
    min-height: 20px;
    overflow: hidden
}

.p-game-list .p-game-list-data .list-item .p-tag-list span {
    border: 1px solid #07c160;
    border-radius: 3px;
    color: #07c160;
    float: left;
    font-size: .25rem;
    margin-right: 10px;
    padding: 0 4px;
    text-align: center
}

.p-game-list .p-game-list-data .list-item-mode .list-item-title {
    display: block
}

.p-game-list .p-game-list-data .list-item-mode .list-item-title .p-game-list-img {
    height: 215px;
    width: 100%
}

.p-game-list .p-game-list-data .list-item-mode .list-item-title .p-game-list-img .adm-image {
    height: 215px
}

.p-game-list .p-game-list-data .list-item-mode .list-item-title .game-info {
    padding-top: 10px
}

.p-game-list .p-game-list-data .list-item-mode .list-item-title .game-info .game-header-title {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.p-game-list .p-game-list-data .list-item-mode .list-item-title .game-info .game-header-title .title {
    min-height: auto
}

.p-game-list .p-game-list-data .list-item-mode .list-item-title .game-info .game-header-title .item-price {
    color: #c51008;
    font-size: .5rem;
    font-weight: 600;
    margin-right: 20px
}

.p-game-list .p-game-list-data .list-item-mode .list-item-title .game-info .game-tag-list {
    -webkit-line-clamp: 10
}

.p-game-list .p-game-list-data .list-item-mode .list-item-title .game-info .game-tag-list span {
    color: #333;
    line-height: .625rem
}

.p-game-list .p-game-list-data .list-item-mode .list-item-title .game-detail-info .game-customer {
    justify-content: space-between
}

.p-game-list .de-row-footer {
    background: #fff;
    background: #1989fa;
    border-top: 1px solid #eee;
    bottom: 0;
    color: #fff;
    display: flex;
    font-size: .4375rem;
    height: calc(40px + constant(safe-area-inset-bottom));
    height: calc(40px + env(safe-area-inset-bottom));
    justify-content: center;
    padding-top: 10px;
    position: fixed;
    right: 0;
    width: 100%
}

.p-game-list .de-row-footer .antd-mobile-icon {
    font-size: .625rem;
    margin-right: 4px
}

.p-game-list .p-list-advertise {
    margin-bottom: 5px;
    max-height: 300px;
    width: auto
}

.account-number-group {
    display: flex
}

.account-number-group .adm-side-bar {
    height: auto
}

.account-number-group .account-number-main {
    flex: 1 1;
    padding: 10px
}

.account-number-group .account-number-main .number-main-list {
    margin-top: 10px
}

.account-number-group .account-number-main .number-main-list .all-number {
    margin-bottom: 10px
}

.account-number-group .account-number-main .number-main-list .number-item-list {
    max-height: 50vh;
    overflow-y: scroll
}

.account-number-group .account-number-main .number-main-list .number-item-list.account-number-group .account-number-main .number-main-list .number-item-list::-webkit-scrollbar {
    display: none
}

.account-number-group .account-number-main .number-main-list .adm-grid-item-dom {
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    border-radius: 8px;
    color: #5f6166;
    font-size: .375rem;
    height: 40px;
    line-height: 1rem;
    padding: 0;
    text-align: center
}

.account-number-group .account-number-main .number-main-list .adm-grid-item-dom.adm-grid-item-active {
    background-color: #6066ea;
    color: #fff
}

.account-number-list {
    background-color: #fff;
    padding: 0 12px
}

.account-number-list .adm-list-item-content {
    padding: 12px 0
}

.more-filter-tree.adm-tree-select {
    height: calc(100vh - 163px);
    overflow: hidden
}

.more-filter-tree.adm-tree-select .adm-tree-select-column {
    height: 100%;
    overflow-y: scroll
}

.adm-space.adm-space-block {
    background-color: #fff;
    padding: 0 12px
}

.adm-space.adm-space-block .adm-space-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0
}

.more-filter {
    height: calc(100% - 183px)
}

.more-filter .adm-list-default .adm-list-body {
    background-color: #fff;
    border-top: 0;
    padding: 0 16px 50px
}

.more-filter .adm-list-default .adm-list-body .adm-list-body-inner {
    margin-top: 0
}

.more-filter .account-number-group {
    display: flex;
    padding: 20px 12px
}

.more-filter .account-number-group .filter-title-labe {
    font-size: .3125rem;
    width: 80px
}

.more-filter .account-number-group .filter-value {
    flex: 1 1
}

.more-filter .account-number-group .filter-value .adm-space.adm-space-vertical {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.more-filter .account-number-group .filter-value .adm-space.adm-space-vertical .adm-space-item {
    margin: 4px 4px 8px
}

.more-filter .account-number-group .filter-value .adm-space.adm-space-vertical .adm-space-item .adm-checkbox-icon {
    border-radius: 0;
    height: 20px;
    width: 20px
}

.more-filter .account-number-group .filter-value .adm-space.adm-space-vertical .adm-space-item .adm-checkbox-content {
    color: #323233;
    font-size: .3125rem
}

.p-game-list-event {
    pointer-events: none
}

.adm-check-list-item-extra,.adm-dropdown-item-highlight,.adm-selector-item-active,.adm-selector-item-multiple-active,.adm-side-bar-item-active {
    color: #6066ea
}

.adm-side-bar-item-highlight,.adm-tabs-tab-line {
    background: #6066ea
}

.adm-button-primary,.adm-radio.adm-radio-checked .adm-radio-icon {
    background-color: #6066ea;
    border-color: #6066ea
}

.adm-button-primary {
    background-color: #fee961;
    border-color: #fee961;
    color: #333;
    padding: 2px
}

.adm-selector-item .adm-selector-check-mark-wrapper {
    border-bottom-color: #6066ea;
    border-right-color: #6066ea
}

.adm-selector-item-active,.adm-selector-item-multiple-active {
    background-color: rgba(96,102,234,.1)
}

.adm-dropdown-popup {
    max-height: calc(100vh - 83px)
}

.adm-collapse-panel-header {
    border-bottom: 1px solid #eee
}

.adm-collapse-panel-content {
    height: 0
}

.multiple-level-single-select .adm-list-item-content>.adm-list-item-content-main {
    align-items: center;
    display: flex
}

.multiple-level-single-select .multiple-level-single-select-btn {
    font-size: .375rem;
    margin-left: 16px;
    max-width: 115px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.more-filter {
    overflow-y: scroll;
    padding-bottom: 50px;
    position: relative
}

.more-filter .multiple-select .adm-list-item-content,.more-filter .multiple-select-collapse .adm-list-item-content,.more-filter .range-input-with-select .adm-list-item-content {
    border: 0
}

.more-filter .multiple-select .adm-list-item-content .adm-selector-item,.more-filter .multiple-select-collapse .adm-list-item-content .adm-selector-item,.more-filter .range-input-with-select .adm-list-item-content .adm-selector-item {
    border-radius: 5px;
    overflow: hidden;
    padding: 10px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.more-filter .multiple-select {
    padding-left: 0
}

.more-filter .indexer-list-check .more-filter-list {
    background-color: #fff;
    border: 1px solid #eee;
    font-size: .375rem;
    margin-top: 16px;
    padding: 10px 20px
}

.more-filter .adm-list-item .adm-list-item-content {
    border: 0
}

.more-filter .adm-list-item .adm-list-item-content .adm-list-item-content-arrow {
    color: #333;
    display: block;
    font-size: .375rem;
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.more-filter .adm-list-item .adm-list-item-content .adm-list-item-content-arrow span {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.more-filter .adm-list-item .adm-list-item-content .adm-list-item-content-main .adm-list-item-content {
    padding-left: 0;
    padding-right: 0
}

.more-filter .range-input-with-select-content {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-bottom: 15px
}

.more-filter .range-input-with-select-content .range-input-with-select {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    flex: 1 1
}

.more-filter .range-input-with-select-content .space-YA-0b {
    background: #888;
    height: 1px;
    margin: 0 8px;
    overflow: hidden;
    width: 15px
}

.more-filter .input-integer {
    padding-left: 0
}

.more-filter .input-integer .adm-list-item-content-main {
    align-items: center;
    display: flex;
    padding: 0
}

.more-filter .input-integer .adm-list-item-content-main .adm-input-element {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-left: 16px;
    padding: 10px 5px;
    width: 100px
}

.more-filter .more-filter-footer {
    bottom: 0;
    display: flex;
    height: 50px;
    position: fixed;
    width: 100%
}

.more-filter .more-filter-footer button {
    border-radius: 0;
    flex: 1 1
}

.adm-list-card {
    margin: 12px 0
}

.adm-list-item {
    padding-left: 0
}

.adm-form .adm-form-footer {
    padding: 0
}

.adm-input {
    padding-left: 5px
}

.adm-selector-item {
    border-radius: 5px;
    font-size: .375rem;
    overflow: hidden;
    padding: 10px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.adm-nav-bar-title {
    align-items: center;
    display: flex
}

.adm-nav-bar-title .adm-image {
    margin-right: 5px
}

.adm-list-body {
    background-color: #eee
}

.adm-list-item-content-main {
    padding: 0
}

.more-filter .adm-input-element {
    padding: 8px 0
}

.more-filter .adm-list.adm-list {
    height: calc(100vh - 260px)
}

.adm-list-item-content {
    padding-right: 0
}

.page-list-collapse {
    padding: 16px 0
}

.page-list-collapse .collapse-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px
}

.page-list-collapse .collapse-header .collapse-header-title {
    font-size: .375rem;
    font-weight: 600
}

.page-list-collapse .collapse-header .collapse-header-arrow {
    align-items: center;
    color: #6066ea;
    display: flex;
    font-size: .3125rem
}

.page-list-collapse .collapse-header .collapse-header-arrow span {
    margin-right: 2px
}

.page-list-collapse .collapse-header .collapse-header-arrow-down .antd-mobile-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.page-list-collapse .collapse-children {
    max-height: 145px;
    overflow: hidden
}

.page-list-collapse .collapse-children.collapse-children-open,.range-input-with-select-collapse .collapse-children {
    max-height: -webkit-max-content;
    max-height: max-content
}

.p-game-list-yiluwangw .p-game-header>div {
    background-color: #f4f4f4
}

.p-game-list-yiluwangw .p-game-header .search-box .adm-button {
    background: #2979ff;
    color: #fff
}

.p-game-list-yiluwangw .p-game-list-data .list-item .p-game-list-img {
    width: 150px
}

.p-game-list-yiluwangw .list-item {
    box-shadow: 0 0 7px 0 #ccc
}

.p-game-list-yiluwangw .adm-list .adm-button-primary {
    background-color: #f7a600;
    border-color: #f7a600;
    color: #fff;
    margin: 0 2px
}

.p-game-list-wukong .p-game-header>div {
    background-color: #f4f4f4
}

.p-game-list-wukong .adm-button-primary {
    background-color: #f7a600!important;
    border-color: #f7a600;
    color: #fff
}

.p-game-list-xuni .p-game-header>div {
    background-color: #f4f4f4
}

.p-game-list-xuni .adm-button-primary,.p-game-list-xuni .p-game-header .search-box .adm-button {
    background-color: #e60f0f!important;
    border-color: #e60f0f;
    color: #fff
}

.mask-content .mask {
    background: rgba(0,0,0,.55);
    display: block;
    height: 100%;
    left: 0;
    opacity: 1;
    position: fixed;
    top: 0;
    width: 100%
}

.mask-content .mask-content-com {
    background-color: #fff;
    border-radius: 8px;
    left: 50%;
    max-width: var(--max-width);
    min-width: var(--min-width);
    position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: auto;
    z-index: 1
}

.mask-content .mask-content-com .adm-dialog-body {
    padding: 20px 10px;
    width: auto
}

.p-game-list-jieweilai .p-game-head {
    color: #fff
}

.p-game-list-jieweilai .p-game-header>div {
    background-image: linear-gradient(45deg,#0081ff,#1cbbb4)
}

.p-game-list-jieweilai .adm-button-primary,.p-game-list-jieweilai .p-game-header .search-box .adm-button {
    background-image: linear-gradient(45deg,#0081ff,#1cbbb4);
    border-color: transparent;
    color: #fff
}

.p-game-list-jieweilai .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer button {
    background: transparent;
    color: #f45e3b
}

.p-game-list-jieweilai .p-game-list-data .list-item .list-item-title .game-detail-info .game-customer button span .antd-mobile-icon {
    display: block
}

.p-game-list-jieweilai .p-game-list-data .list-item .p-game-list-img .img-num {
    background-color: #dd514c;
    color: #fff;
    font-size: .3125rem
}

.p-game-list-jieweilai .item-price {
    color: #f45e3b!important
}

.p-game-list-bahu .p-game-header>div {
    background-image: linear-gradient(135deg,#111827,#1f2937,#374151)
}

.p-game-list-bahu .adm-nav-bar-back-arrow,.p-game-list-bahu .adm-nav-bar-title {
    color: #fff
}

.p-game-list-bahu .adm-button-primary,.p-game-list-bahu .p-game-header .search-box .adm-button {
    background-image: linear-gradient(45deg,#f7a600,#f7cd6f);
    border-color: transparent;
    color: #fff
}

.fen-xiang {
    background: transparent!important
}

.p-game-detail {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtAAAAGTCAYAAAABcyXDAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAwMi8xNi8yNKQSJr4AAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAM0ElEQVR4nO3dTXIb5xWG0SsX59EwJiyxLXke7SDYQewlZGnZgbIDcAfg3D9N2w0nM2kDUQZgCw2IkvGSBBo/51ShALIoqodP3brfx2f/++8/PxQAALCVr8Z+AAAAOCYCGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACAhoAAAICGgAAAgIaAAACF1Ufxn4GAAA4GibQAAAQENAAABAQ0AAAEBDQAAAQcIgQAAACJtAAABAQ0AAAELDCAQAAARNoAAAICGgAAAgIaAAACAhoAAAIOEQIAAABE2gAAAgIaAAACFjhAACAgAk0AAAEBDQAAAQENAAABOxAAwBAwAQaAAACAhoAAAICGgAAAgIaAAACDhECAEDABBoAAAICGgAAAhf1wQoHAABsywQaAAACAhoAAAICGgAAAgIaAAAC7oEGAICACTQAAAQENAAABKxwAABAwAQaAAACAhoAAAICGgAAAgIaAAACDhECAEDABBoAAAICGgAAAgIaAAACdqABACBgAg0AAAEBDQAAAQENAAABO9AAABAwgQYAgICABgCAgIAGAICAHWgAAAiYQAMAQEBAAwBAwAoHAAAETKABACAgoAEAICCgAQAgIKABACDgECEAAARMoAEAICCgAQAgIKABACBgBxoAAAIm0AAAEBDQAAAQENAAABCwAw0AAAETaAAACAhoAAAICGgAAAjYgQYAgIAJNAAABAQ0AAAEBDQAAATsQAMAQMAEGgAAAgIaAAACAhoAAAJ2oAEAIGACDQAAAQENAAABAQ0AAAEBDQAAAYcIAQAgYAINAACBCwNoAADYnhUOAAAIWOEAAICAgAYAgICABgCAgB1oAAAImEADAEBAQAMAQEBAAwBAwA40AAAETKABACAgoAEAICCgAQAgYAcaAAACJtAAABAQ0AAAEBDQAAAQENAAABBwiBAAAAIm0AAAEBDQAAAQsMIBAAABE2gAAAgIaAAACAhoAAAICGgAAAg4RAgAAAETaAAACAhoAAAIWOEAAICACTQAAAQENAAABAQ0AAAEBDQAAAQcIgQAgIAJNAAABAQ0AAAEBDQAAATsQAMAQMAEGgAAAgIaAAACVjgAACBgAg0AAAEBDQAAAQENAAABAQ0AAAGHCAEAIGACDQAAAQENAAABKxwAABAwgQYAgICABgCAgIAGAICAgAYAgIBDhAAAEDCBBgCAgIAGAICAgAYAgIAdaAAACJhAAwBA4MIAGgAAtnfxbOwnAACAI2IHGgAAAnagAQAgIKABACAgoAEAIGAHGgAAAibQAAAQENAAABAQ0AAAEBDQAAAQcIgQAAACJtAAABAQ0AAAELDCAQAAARNoAAAICGgAAAgIaAAACNiBBgCAgAk0AAAEBDQAAAQENAAABOxAAwBAwAQaAAACAhoAAAICGgAAAnagAQAgYAINAAABAQ0AAAEBDQAAAQENAAABhwgBACBgAg0AAAEBDQAAASscAAAQMIEGAICAgAYAgICABgCAgIAGAICAQ4QAABAwgQYAgICABgCAgBUOAAAImEADAEBAQAMAQEBAAwBAQEADAEDAIUIAAAiYQAMAQEBAAwBAQEADAEDADjQAAARMoAEAICCgAQAgIKABACBgBxoAAAIm0AAAEBDQAAAQENAAABCwAw0AAIEL/QwAANuzwgEAAAErHAAAEDCBBgCAgIAGAICAgAYAgICABgCAgEOEAAAQMIEGAICAgAYAgICABgCAgB1oAAAImEADAEBAQAMAQEBAAwBAwA40AAAETKABACAgoAEAICCgAQAgYAcaAAACJtAAABAQ0AAAEBDQAAAQENAAABBwiBAAAAIm0AAAEBDQAAAQsMIBAAABE2gAAAgIaAAACAhoAAAICGgAAAg4RAgAAAETaAAACAhoAAAIWOEAAICACTQAAAQENAAABAQ0AAAE7EADAEDgq6r6oar+VVW3Iz8LAAAcqttaNvMPzz58GEygF981VfV9VU2r6h8jPBgAAByKf1fVrKre1uWPbf/N9YDetPiuj+lpVf1thw8HAABju6llMM/q8se3n/uhLwf00HI6Pa3VhPovj3s+AAAY1fvqJ8zLaG63+UfbB/SmxetprYLadBoAgGNwUx+D+afZQ37BwwN6aPH6ea1Pp68e/0sBAODRbmttyvzTu8f+wqcJ6E2L102tdqe/L+seAADsx/vqY3kZzO1T/we7CehNi1dvahXU0xLUAAA8jX6Pefm6/Hm+6/9wPwG9aRnU/brH3/f/AAAAHLHr+ni93O6DedM4Ab1p8Wpaq6B2IBEAgKH+erm3dfnzbNxHOZSAHlq86g8kTqvqTZlQAwCcm+uqmtdqLePRB/+e0uEF9H2WE+r+JagBAE5Lv5IxO4QJ8585joDetPh2WoIaAOBYDYL5l9m4j5I7zoDeJKgBAA7ZUQfzptMI6E2Lb12bBwAwjo1r5X7Z+y0Zu3aaAb1p0TS1fjDRTR8AAE/jptYO/LXtqE+zB+cR0JsWzfNahvS0rH0AACRW6xhV87psD+qGjH04z4C+z6IZBvWbqroa83EAAA7Aba1Pl09uHeMhBPTnLNc++qh2HzUAcA6G9y/Pz2Ed4yEEdGLRTGsZ031Ym1IDAMfqtvpQXsbybNSnOSIC+jG6q+Eudf/uxg8A4ND0N2OspsuT27PbXX4qAvqpdVdNrU+prX4AAPvWH/RbTpcnt+2oT3NiBPQ+dFfDoHaNHgDwlIbXyM1rcuug344J6LF0V9Oqamo1rTapBgD+TH/Ib15VbU1uZ+M+znkS0Ieke9nHtKgGAIaxPK/JrybLB0JAH7plVDe1vgLioCIAnI73NVzBqGrF8mET0Meoe9nU+kHFplypBwDH4Laq2lo74PdrO+Lz8AAC+lR0L/sr9YYTaysgADCefgWjrVUsuzruBAjoU9e9aGp9r7opt4AAwFO6qWEkV81r8ls75gOxWwL6XHUvprV+C4jdagD4sn5XeXALxm+zUZ+IUQhoVroX962BCGsAzs0wlNtaTZWtX1BVAppt3B/WTTm4CMBx6w/0CWUiAprH6b6Z1jKmm3IjCACHaXjzRVtVbU1+n433OBw7Ac1uLMN6OLl+Xm4FAWC3rqvqXa3WL94JZXZBQLNf3Td9VDe1vg7iZhAAtjG88aL9+Hnyu7UL9kZAczi6SVOrqH5ey5WQ5yWuAc7NTS0nybNaTZTbmnTtiM8EHwlojsP9cV1lLQTgWF3fvc9KJHNkBDSnoZtMa7VzPXw3vQYYRz9Fnq+9T7rZmA8FT0FAc/pW0+vNlzuuAR6uvyu5/eRlisyJE9DQTfppdXP36ifYVVZEgPPVr1j0E+T27vWuJt18pGeCgyCgYRvd5fTu02ZsN+Xea+D49Pci969+xaJqspiN8kRwRAQ0PIXucji1nt69N3evKpNsYH/6yXF796paHtSrqprXZOG6N3gkAQ371F02tYrq6d378HtCG/icL4VxW5NFW8BeCGg4ROuh3a+NVK2iu0pswym4Hnye3b2v1imEMRwkAQ2noPt6Ovjqc58FN+zefUG8/nnyx/D7wBES0HCO1oN7uL9dtT7xrhLenKdhCA8nwlWrWymWBDGcHQENbK/7uqnVaknVp7G9+XWVAGcc1xtfb0bw5tdtTf5od/xMwIkQ0MB+fRrhVfeH9/Qzv8EfwDk9/R/kuM9s4+vN8K0Sv8CeCWjgNHR/3VxFGWrq02h/yM8Mf/ZU7v/u7wPeRrvFz37pZ+Y1+Y8r1ICj939gtEe0bUPjQwAAAABJRU5ErkJggg==) no-repeat 200px/100%;
    background-attachment: scroll;
    background-color: #fff;
    background-position: top;
    height: 100%
}

.p-game-detail .p-game-detail-head {
    background-color: #fee741;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100
}

.p-game-detail .p-game-detail-head .adm-nav-bar-back-arrow {
    font-weight: 500
}

.p-game-detail .p-game-detail-head .adm-nav-bar-right {
    padding-right: 10px
}

.p-game-detail .detail-img-box {
    padding: 40px 10px 0
}

.p-game-detail .img-swiper {
    align-items: center;
    border-radius: 20px;
    color: #fff;
    display: flex;
    font-size: 3rem;
    height: 200px;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none
}

.p-game-detail .img-swiper .adm-swiper-item {
    overflow: hidden
}

.p-game-detail .img-swiper .adm-swiper-item img {
    min-height: 200px;
    width: 100%
}

.p-game-detail .product-detail-info {
    background: #f8f8f8;
    padding: 0 10px;
    position: relative
}

.p-game-detail .product-detail-info .detail-loading {
    background-color: rgba(0,0,0,.2);
    color: #fff;
    display: flex;
    font-size: 1.25rem;
    height: 100%;
    justify-content: center;
    padding-top: 50px;
    position: absolute;
    width: 100%;
    z-index: 2
}

.p-game-detail .product-detail-info .buy_area {
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 24px 18px 12px
}

.p-game-detail .product-detail-info .buy_area .priceWrap .price {
    color: #eb0808;
    display: inline-block;
    font-family: JDZH-Regular;
    font-size: .625rem;
    font-weight: 700;
    line-height: .75rem
}

.p-game-detail .product-detail-info .buy_area .priceWrap .price em {
    font-size: .375rem;
    font-style: normal;
    font-weight: 400
}

.p-game-detail .product-detail-info .buy_area .priceWrap .price .price_decimals {
    font-size: .625rem
}

.p-game-detail .product-detail-info .buy_area .fn_goods_name {
    padding-bottom: 10px
}

.p-game-detail .product-detail-info .buy_area .fn_goods_name .mod_tag_big {
    background-color: #fa4f2d;
    border-radius: 2px;
    color: #fff;
    font-size: .25rem;
    font-style: normal;
    height: 13px;
    padding: 3px
}

.p-game-detail .product-detail-info .buy_area .fn_goods_name .fn_text_wrap {
    color: #262626;
    font-size: .4375rem;
    font-weight: 500
}

.p-game-detail .product-detail-info .buy_area .fn_goods_name .fn_text_wrap i {
    margin-right: 10px
}

.p-game-detail .product-detail-info .buy_area .game-detail-update-time {
    align-items: center;
    border-top: 1px solid #eee;
    color: #999;
    display: flex;
    font-size: .3125rem;
    justify-content: space-between;
    padding-top: 10px
}

.p-game-detail .product-detail-info .game-info {
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    margin-top: 9px;
    overflow: hidden;
    padding: 10px 12px
}

.p-game-detail .product-detail-info .game-info .item-section-header {
    font-size: .375rem;
    width: 80px
}

.p-game-detail .product-detail-info .game-copy-info {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.p-game-detail .product-detail-info .game-copy-info span {
    font-size: .375rem
}

.p-game-detail .product-detail-info .game-copy-info .product-info p {
    font-size: .4375rem;
    margin: 0;
    padding-bottom: 5px
}

.p-game-detail .product-detail-info .game-copy-info .product-info span {
    color: #999;
    font-size: .3125rem
}

.p-game-detail .product-detail-info .game-copy-info button {
    border-radius: 20px
}

.p-game-detail .product-detail-info .game-detail-info-box {
    align-items: center;
    display: flex;
    position: relative
}

.p-game-detail .product-detail-info .game-detail-info-box .info-list {
    display: grid;
    grid-template: repeat(2,1fr) /repeat(3,1fr);
    width: 95%
}

.p-game-detail .product-detail-info .game-detail-info-box .info-list .info-item {
    display: flex;
    flex-direction: column;
    padding-top: 10px
}

.p-game-detail .product-detail-info .game-detail-info-box .info-list .info-item span:first-child {
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    color: #333;
    display: -webkit-box;
    font-size: .375rem;
    font-weight: 500;
    line-height: .5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.p-game-detail .product-detail-info .game-detail-info-box .info-list .info-item span:last-child {
    color: #999;
    font-size: .3125rem;
    padding-top: 10px
}

.p-game-detail .product-detail-info .game-detail-info-box .more-detail-info {
    background-color: #f7f9f9;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    padding: 4px 0;
    position: absolute;
    right: 0;
    text-align: center;
    width: 20px
}

.p-game-detail .product-detail-info .game-detail-info-box .more-detail-info div {
    background: #fee741;
    border-radius: 50%;
    margin-top: 2px;
    padding: 2px
}

.p-game-detail .product-detail-info .game-detail-info-box .more-detail-info .antd-mobile-icon {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.p-game-detail .product-detail-info .game-detail-step {
    display: flex;
    flex-direction: column;
    padding: 0
}

.p-game-detail .product-detail-info .game-detail-step .game-step-title,.p-game-detail .product-detail-info .game-detail-step .step-list {
    padding: 0 16px;
    width: calc(100% - 32px)
}

.p-game-detail .product-detail-info .game-detail-step .game-step-title {
    align-items: center;
    background-color: #ffefaa;
    color: #563900;
    display: flex
}

.p-game-detail .product-detail-info .game-detail-step .game-step-title span {
    border-right: 1px solid #563900;
    font-weight: 800;
    line-height: .25rem;
    margin-right: 5px;
    padding-right: 5px
}

.p-game-detail .product-detail-info .game-detail-step .step-list .step-list-item {
    align-items: center;
    display: flex
}

.p-game-detail .product-detail-info .game-detail-step .step-list .step-list-item span {
    color: #999;
    width: 50px
}

.p-game-detail .product-detail-info .game-detail-step .step-list .step-list-item p {
    font-size: .375rem
}

.p-game-detail .product-detail-info .img-box {
    padding: 12px 0
}

.p-game-detail .product-detail-info .img-box img {
    width: 100%
}

.p-game-detail .product-detail-info .mod_fix_wrap {
    background-color: #fff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-top: 8px
}

.p-game-detail .product-detail-info .mod_fix_wrap .adm-tabs-header {
    border-bottom: 0
}

.p-game-detail .product-detail-info .mod_fix_wrap .adm-tabs-tab-list {
    font-size: .375rem;
    height: 50px
}

.p-game-detail .product-detail-info .mod_fix_wrap .adm-tabs-tab-list .adm-tabs-tab-wrapper-stretch {
    flex: none
}

.p-game-detail .product-detail-info .mod_fix_wrap .adm-tabs-tab-list .adm-tabs-tab {
    color: #999;
    padding-top: 0
}

.p-game-detail .product-detail-info .mod_fix_wrap .adm-tabs-tab-list .adm-tabs-tab-line {
    background: #fee741;
    bottom: 20px;
    height: 8px;
    left: -7px;
    width: 80px!important
}

.p-game-detail .product-detail-info .mod_fix_wrap .adm-tabs-tab-list .adm-tabs-tab-active {
    color: #333;
    font-weight: 600
}

.p-game-detail .product-detail-info .mod_fix_wrap .adm-tabs-content {
    padding: 0 10px
}

.p-game-detail .product-detail-info .mod_fix_wrap .product-detail {
    overflow: hidden
}

.p-game-detail .product-detail-info .mod_fix_wrap .product-detail img {
    background-position: top;
    width: 100%
}

.p-game-detail .product-detail-info .mod_fix_wrap .product-info {
    background: #f8f8f8;
    border-radius: 10px
}

.p-game-detail .product-detail-info .mod_fix_wrap .product-info .product-info-list {
    align-items: flex-start;
    display: flex;
    padding: 2px 0 2px 16px
}

.p-game-detail .product-detail-info .mod_fix_wrap .product-info .product-info-list span {
    color: #888;
    font-size: .375rem;
    line-height: .75rem;
    width: 110px
}

.p-game-detail .product-detail-info .mod_fix_wrap .product-info .product-info-list p {
    color: #323233;
    flex: 1 1;
    font-size: .375rem;
    line-height: .75rem;
    margin: 0;
    padding: 0 6px 0 0
}

.p-game-detail .product-detail-info .mod_fix_wrap .product-info .product-info-list .product-info {
    display: flex;
    flex: 1 1;
    flex-direction: column
}

.p-game-detail .product-detail-info .mod_fix_wrap .product-info .product-info-list .product-info span {
    font-size: .3125rem;
    width: auto
}

.p-game-detail .product-detail-info .mod_fix_wrap .product-token {
    padding: 12px 8px
}

.p-game-detail .product-detail-info .mod_fix_wrap .product-token p {
    color: #919191;
    font-size: .3125rem;
    line-height: .625rem;
    margin: 0;
    padding-bottom: 0
}

.p-game-detail .de-row-footer {
    background: #fff;
    border-top: 1px solid #eee;
    bottom: 0;
    display: flex;
    font-size: .4375rem;
    height: calc(50% + constant(safe-area-inset-bottom));
    height: calc(50px + env(safe-area-inset-bottom));
    justify-content: space-between;
    padding-top: 10px;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 1
}

.p-game-detail .de-row-footer button {
    border-left: 1px solid #fff;
    border-radius: 0
}

.p-game-detail .de-row-footer button span {
    align-items: center;
    display: flex;
    justify-content: center
}

.p-game-detail .de-row-footer button img {
    height: 24px;
    margin-right: 5px;
    width: 24px
}

.p-game-detail .de-row-footer button:first-child {
    border: 0
}

.p-game-detail .de-row-footer .de-row-footer-left {
    align-items: center;
    display: flex;
    flex: 1 1;
    justify-content: space-around
}

.p-game-detail .de-row-footer .de-row-footer-left div {
    cursor: pointer;
    display: flex;
    flex-direction: column
}

.p-game-detail .de-row-footer .de-row-footer-left div span {
    font-size: .3125rem
}

.p-game-detail .de-row-footer .de-row-footer-right {
    align-items: center;
    display: flex;
    padding-left: 40px
}

.p-game-detail .de-row-footer .de-row-footer-right div {
    background-color: #fee741;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 20px
}

.p-game-detail .de-row-footer .de-row-footer-right div:first-child {
    background-color: #f8f8f8
}

.p-game-detail .de-row-footer .antd-mobile-icon {
    font-size: .625rem;
    margin-right: 4px
}

.small-text {
    align-items: center;
    display: flex;
    flex-direction: column
}

.adm-button.adm-button-small {
    padding: 3px 9px
}

.adm-step .adm-step-indicator .adm-step-icon-container,.adm-step-status-process .adm-step-title,.adm-tabs-tab-active {
    color: #6066ea
}

.adm-step .adm-step-indicator:after {
    background-color: #6066ea
}

.p-game-detail-yiluwangw {
    background: #fff
}

.p-game-detail-yiluwangw .p-game-detail-head {
    background-color: #f8f8f8
}

.p-game-detail-yiluwangw .adm-button-primary,.p-game-detail-yiluwangw .product-detail-info .game-detail-info-box .more-detail-info div {
    background-color: #f7a600;
    border-color: #f7a600;
    color: #fff
}

.p-game-detail-xuni {
    background: #fff
}

.p-game-detail-xuni .p-game-detail-head {
    background-color: #f8f8f8
}

.p-game-detail-xuni .adm-button-primary,.p-game-detail-xuni .product-detail-info .game-detail-info-box .more-detail-info div {
    background-color: #e60f0f;
    border-color: #e60f0f;
    color: #fff
}

.p-game-detail-jieweilai {
    background: #f8f8f8
}

.p-game-detail-jieweilai .p-game-detail-head {
    background-image: linear-gradient(45deg,#0081ff,#1cbbb4);
    color: #fff
}

.p-game-detail-jieweilai .img-swiper {
    margin-top: 10px
}

.p-game-detail-jieweilai .adm-button-primary,.p-game-detail-jieweilai .product-detail-info .game-detail-info-box .more-detail-info div {
    background: linear-gradient(45deg,#0081ff,#1cbbb4);
    border-color: transparent;
    color: #fff
}

.p-game-detail-bahu {
    background: #f8f8f8
}

.p-game-detail-bahu .p-game-detail-head {
    background-image: linear-gradient(135deg,#111827,#1f2937,#374151);
    color: #fff
}

.p-game-detail-bahu .img-swiper {
    margin-top: 10px
}

.p-game-detail-bahu .adm-button-primary,.p-game-detail-bahu .product-detail-info .game-detail-info-box .more-detail-info div {
    background: linear-gradient(45deg,#f7931e,#ffa94d);
    border-color: transparent;
    color: #fff
}

.app {
    display: flex;
    flex-direction: column;
    height: 100vh
}

.app .app-body {
    flex: 1 1;
    overflow: auto
}

.app .app-footer {
    background-color: #fff;
    border-top: 1px solid var(--adm-color-border);
    flex: 0 1
}

.app .app-footer .adm-tab-bar-wrap {
    overflow: visible
}

.app .app-footer .adm-tab-bar-wrap .adm-tab-bar-item:nth-child(3) {
    position: relative
}

.app .app-footer .adm-tab-bar-wrap .adm-tab-bar-item:nth-child(3) .adm-badge-wrapper,.app .app-footer .adm-tab-bar-wrap .adm-tab-bar-item:nth-child(3) .adm-tab-bar-item-title {
    position: absolute
}

.app .app-footer .adm-tab-bar-wrap .adm-tab-bar-item:nth-child(3) .adm-badge-wrapper {
    background-color: #fff;
    border-radius: 50%;
    border-top: 1px solid var(--adm-color-border);
    bottom: 30px;
    color: #0081ff;
    padding: 5px
}

.app .app-footer .adm-tab-bar-wrap .adm-tab-bar-item:nth-child(3) .adm-tab-bar-item-title {
    bottom: 10px
}

.app .app-footer .adm-tab-bar-wrap .adm-tab-bar-item:nth-child(2) .adm-tab-bar-item-title {
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #eee;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
    margin: 0
}

code {
    font-family: source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace
}

#root,#yiluwangw,body,html {
    height: 100%
}

.adm-nav-bar {
    height: 40px
}

.adm-image-viewer-image-wrapper {
    box-sizing: border-box;
    padding-bottom: 28px!important
}

.adm-image-viewer-image-wrapper img {
    -webkit-clip-path: inset(0 0 28px 0);
    clip-path: inset(0 0 28px 0);
    max-height: calc(100% + 28px)!important;
    object-fit: contain;
    object-position: top center
}

.cropped-image-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%
}

.cropped-image-wrapper img {
    margin-bottom: -28px
}

/*# sourceMappingURL=main.206ba620.css.map*/
