.styles_customScroll__kBx4W::-webkit-scrollbar {
    width: 6px
}

.styles_customScroll__kBx4W::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px
}

.styles_customScroll__kBx4W::-webkit-scrollbar-thumb {
    background-color: hsla(0, 0%, 61%, .5);
    border-radius: 10px
}

.styles_customScroll__kBx4W::-webkit-scrollbar-thumb:hover {
    background-color: hsla(0, 0%, 61%, .7)
}

:root {
    --adm-radius-s: 4px;
    --adm-radius-m: 8px;
    --adm-radius-l: 12px;
    --adm-font-size-1: 9px;
    --adm-font-size-2: 10px;
    --adm-font-size-3: 11px;
    --adm-font-size-4: 12px;
    --adm-font-size-5: 13px;
    --adm-font-size-6: 14px;
    --adm-font-size-7: 15px;
    --adm-font-size-8: 16px;
    --adm-font-size-9: 17px;
    --adm-font-size-10: 18px;
    --adm-color-primary: #1677ff;
    --adm-color-success: #00b578;
    --adm-color-warning: #ff8f1f;
    --adm-color-danger: #ff3141;
    --adm-color-yellow: #ff9f18;
    --adm-color-orange: #ff6430;
    --adm-color-wathet: #e7f1ff;
    --adm-color-text: #333;
    --adm-color-text-secondary: #666;
    --adm-color-weak: #999;
    --adm-color-light: #ccc;
    --adm-color-border: #eee;
    --adm-color-background: #fff;
    --adm-color-highlight: var(--adm-color-danger);
    --adm-color-white: #fff;
    --adm-color-box: #f5f5f5;
    --adm-color-text-light-solid: var(--adm-color-white);
    --adm-color-text-dark-solid: #000;
    --adm-color-fill-content: var(--adm-color-box);
    --adm-font-size-main: var(--adm-font-size-5);
    --adm-font-family: -apple-system, blinkmacsystemfont, "Helvetica Neue", helvetica, segoe ui, arial, roboto, "PingFang SC", "miui", "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
    --adm-border-color: var(--adm-color-border)
}

html[data-prefers-color-scheme=dark] {
    --adm-color-primary: #3086ff;
    --adm-color-success: #34b368;
    --adm-color-warning: #ffa930;
    --adm-color-danger: #ff4a58;
    --adm-color-yellow: #ffa930;
    --adm-color-orange: #e65a2b;
    --adm-color-wathet: #0d2543;
    --adm-color-text: #e6e6e6;
    --adm-color-text-secondary: #b3b3b3;
    --adm-color-weak: grey;
    --adm-color-light: #4d4d4d;
    --adm-color-border: #2b2b2b;
    --adm-color-box: #0a0a0a;
    --adm-color-background: #1a1a1a;
    --adm-color-background-body: var(--adm-color-background);
    --adm-border-color: var(--adm-color-border)
}

:root {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

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

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

a,
button {
    cursor: pointer
}

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

a:active {
    opacity: .8
}

.adm-plain-anchor {
    color: unset;
    transition: none
}

.adm-plain-anchor:active {
    opacity: unset
}

body.adm-overflow-hidden {
    overflow: hidden !important
}

div.adm-px-tester {
    --size: 1;
    height: calc(var(--size) / 2 * 2px);
    width: 0;
    position: fixed;
    left: -100vw;
    top: -100vh;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none
}

.adm-popup {
    --z-index: var(--adm-popup-z-index, 1000);
    position: fixed;
    z-index: var(--z-index)
}

.adm-popup-body {
    position: fixed;
    background-color: var(--adm-color-background);
    z-index: calc(var(--z-index) + 10)
}

.adm-popup-body .adm-popup-close-icon {
    position: absolute;
    z-index: 100
}

.adm-popup-body-position-bottom {
    width: 100%;
    bottom: 0;
    left: 0
}

.adm-popup-body-position-bottom .adm-popup-close-icon {
    right: 8px;
    top: 8px
}

.adm-popup-body-position-top {
    width: 100%;
    top: 0;
    left: 0
}

.adm-popup-body-position-top .adm-popup-close-icon {
    right: 8px;
    bottom: 8px
}

.adm-popup-body-position-left {
    height: 100%;
    top: 0;
    left: 0
}

.adm-popup-body-position-left .adm-popup-close-icon {
    right: 8px;
    top: 8px
}

.adm-popup-body-position-right {
    height: 100%;
    top: 0;
    right: 0
}

.adm-popup-body-position-right .adm-popup-close-icon {
    left: 8px;
    top: 8px
}

.adm-popup-close-icon {
    cursor: pointer;
    padding: 4px;
    font-size: 18px;
    line-height: 1;
    color: var(--adm-color-weak)
}

.adm-mask {
    --z-index: var(--adm-mask-z-index, 1000);
    position: fixed;
    z-index: var(--z-index);
    display: block
}

.adm-mask,
.adm-mask-aria-button {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.adm-mask-aria-button {
    position: absolute;
    z-index: 0;
    pointer-events: none
}

.adm-mask-content {
    z-index: 1
}

.adm-tab-bar-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
    min-height: 48px
}

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

.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-badge-wrapper {
    display: inline-block;
    position: relative
}

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

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

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

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

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

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

.transitionEffects_presetPreviewCard__ZTgca {
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.transitionEffects_presetPreviewCard__ZTgca:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .1)
}

.transitionEffects_presetPreviewCard__ZTgca.transitionEffects_selected__TqKz8 {
    border-color: #3b82f6;
    background-color: #eff6ff
}

.transitionEffects_lineClamp2__4VhtW {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.transitionEffects_transitionAll__DxZIk {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .2s
}

.transitionEffects_hoverShadowMd__kUVdz:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06)
}

.transitionEffects_hoverBgGray50__lPfPo:hover {
    background-color: #f9fafb
}

.transitionEffects_gridCols2__TB8wY {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.transitionEffects_gridCols3__Yj8Cc {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: 230px;
    overflow-y: auto
}

.transitionEffects_gap3__BDQuM {
    gap: .5rem
}

.transitionEffects_cursorPointer__pn2Aj {
    cursor: pointer
}

.transitionEffects_duration200__Ah0UZ {
    transition-duration: .2s
}

.transitionEffects_ring2___LwKT {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important
}

.transitionEffects_ringBlue500__T4y_i {
    --tw-ring-color: #3b82f6
}

.transitionEffects_bgBlue50__BVrFf {
    background-color: #eff6ff
}