/* 基础css */

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    --weui-BTN-DISABLED-FONT-COLOR: rgba(0, 0, 0, 0.2);
    --weui-BTN-DEFAULT-BG: #f2f2f2;
    --weui-BTN-DEFAULT-COLOR: #06ae56;
    --weui-BTN-DEFAULT-ACTIVE-BG: #e6e6e6;
    --weui-DIALOG-LINE-COLOR: rgba(0, 0, 0, 0.1);
    --weui-BG-0: #ededed;
    --weui-BG-1: #f7f7f7;
    --weui-BG-2: #fff;
    --weui-BG-3: #f7f7f7;
    --weui-BG-4: #4c4c4c;
    --weui-BG-5: #fff;
    --weui-FG-0: rgba(0, 0, 0, 0.9);
    --weui-FG-HALF: rgba(0, 0, 0, 0.9);
    --weui-FG-1: rgba(0, 0, 0, 0.5);
    --weui-FG-2: rgba(0, 0, 0, 0.3);
    --weui-FG-3: rgba(0, 0, 0, 0.1);
    --weui-RED: #fa5151;
    --weui-ORANGE: #fa9d3b;
    --weui-YELLOW: #ffc300;
    --weui-GREEN: #91d300;
    --weui-LIGHTGREEN: #95ec69;
    --weui-BRAND: #07c160;
    --weui-BLUE: #10aeff;
    --weui-INDIGO: #1485ee;
    --weui-PURPLE: #6467f0;
    --weui-WHITE: #fff;
    --weui-LINK: #576b95;
    --weui-TEXTGREEN: #06ae56;
    --weui-FG: black;
    --weui-BG: white;
    --weui-TAG-TEXT-ORANGE: #fa9d3b;
    --weui-TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
    --weui-TAG-TEXT-GREEN: #06ae56;
    --weui-TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
    --weui-TAG-TEXT-BLUE: #10aeff;
    --weui-TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
    --weui-TAG-TEXT-BLACK: rgba(0, 0, 0, 0.5);
    --weui-TAG-BACKGROUND-BLACK: rgba(0, 0, 0, 0.05);
    --weui-BG-COLOR-ACTIVE: #ececec;
    height: 100%;
    line-height: 1.6;
    font-family: -apple-system-font, "Helvetica Neue", sans-serif;
    background-color: var(--weui-BG-0);
}

body[data-weui-theme='dark'] {
    --weui-BTN-DISABLED-FONT-COLOR: rgba(255, 255, 255, 0.2);
    --weui-BTN-DEFAULT-BG: rgba(255, 255, 255, 0.08);
    --weui-BTN-DEFAULT-COLOR: rgba(255, 255, 255, 0.8);
    --weui-BTN-DEFAULT-ACTIVE-BG: rgba(255, 255, 255, 0.126);
    --weui-DIALOG-LINE-COLOR: rgba(255, 255, 255, 0.1);
    --weui-BG-0: #191919;
    --weui-BG-1: #1f1f1f;
    --weui-BG-2: #232323;
    --weui-BG-3: #2f2f2f;
    --weui-BG-4: #606060;
    --weui-BG-5: #2c2c2c;
    --weui-FG-0: rgba(255, 255, 255, 0.8);
    --weui-FG-HALF: rgba(255, 255, 255, 0.6);
    --weui-FG-1: rgba(255, 255, 255, 0.5);
    --weui-FG-2: rgba(255, 255, 255, 0.3);
    --weui-FG-3: rgba(255, 255, 255, 0.05);
    --weui-RED: #fa5151;
    --weui-ORANGE: #c87d2f;
    --weui-YELLOW: #cc9c00;
    --weui-GREEN: #74a800;
    --weui-LIGHTGREEN: #28b561;
    --weui-BRAND: #07c160;
    --weui-BLUE: #10aeff;
    --weui-INDIGO: #1196ff;
    --weui-PURPLE: #8183ff;
    --weui-WHITE: rgba(255, 255, 255, 0.8);
    --weui-LINK: #7d90a9;
    --weui-TEXTGREEN: #259c5c;
    --weui-FG: white;
    --weui-BG: black;
    --weui-TAG-TEXT-ORANGE: rgba(250, 157, 59, 0.6);
    --weui-TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
    --weui-TAG-TEXT-GREEN: rgba(6, 174, 86, 0.6);
    --weui-TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
    --weui-TAG-TEXT-BLUE: rgba(16, 174, 255, 0.6);
    --weui-TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
    --weui-TAG-TEXT-BLACK: rgba(255, 255, 255, 0.5);
    --weui-TAG-BACKGROUND-BLACK: rgba(255, 255, 255, 0.05);
    --weui-BG-COLOR-ACTIVE: #373737;
}


/* 表示用户已告知系统他们选择使用暗色主题的界面 */

@media (prefers-color-scheme:dark) {
    body:not([data-weui-theme='light']) {
        --weui-BTN-DISABLED-FONT-COLOR: rgba(255, 255, 255, 0.2);
        --weui-BTN-DEFAULT-BG: rgba(255, 255, 255, 0.08);
        --weui-BTN-DEFAULT-COLOR: rgba(255, 255, 255, 0.8);
        --weui-BTN-DEFAULT-ACTIVE-BG: rgba(255, 255, 255, 0.126);
        --weui-DIALOG-LINE-COLOR: rgba(255, 255, 255, 0.1);
        --weui-BG-0: #191919;
        --weui-BG-1: #1f1f1f;
        --weui-BG-2: #232323;
        --weui-BG-3: #2f2f2f;
        --weui-BG-4: #606060;
        --weui-BG-5: #2c2c2c;
        --weui-FG-0: rgba(255, 255, 255, 0.8);
        --weui-FG-HALF: rgba(255, 255, 255, 0.6);
        --weui-FG-1: rgba(255, 255, 255, 0.5);
        --weui-FG-2: rgba(255, 255, 255, 0.3);
        --weui-FG-3: rgba(255, 255, 255, 0.05);
        --weui-RED: #fa5151;
        --weui-ORANGE: #c87d2f;
        --weui-YELLOW: #cc9c00;
        --weui-GREEN: #74a800;
        --weui-LIGHTGREEN: #28b561;
        --weui-BRAND: #07c160;
        --weui-BLUE: #10aeff;
        --weui-INDIGO: #1196ff;
        --weui-PURPLE: #8183ff;
        --weui-WHITE: rgba(255, 255, 255, 0.8);
        --weui-LINK: #7d90a9;
        --weui-TEXTGREEN: #259c5c;
        --weui-FG: white;
        --weui-BG: black;
        --weui-TAG-TEXT-ORANGE: rgba(250, 157, 59, 0.6);
        --weui-TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
        --weui-TAG-TEXT-GREEN: rgba(6, 174, 86, 0.6);
        --weui-TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
        --weui-TAG-TEXT-BLUE: rgba(16, 174, 255, 0.6);
        --weui-TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
        --weui-TAG-TEXT-BLACK: rgba(255, 255, 255, 0.5);
        --weui-TAG-BACKGROUND-BLACK: rgba(255, 255, 255, 0.05);
        --weui-BG-COLOR-ACTIVE: #373737;
    }
}

* {
    margin: 0;
    padding: 0;
}

a img {
    border: 0;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
textarea {
    caret-color: #07c160;
    caret-color: var(--weui-BRAND);
}

.center {
    text-align: center;
}


/* container */

.container {
    height: 100%;
    color: var(--weui-FG-0);
    overflow: auto;
}

.container.white {
    background-color: white;
}


/* footer */

.weui-footer {
    color: rgba(0, 0, 0, 0.3);
    color: var(--weui-FG-2);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.weui-footer a,
.weui-footer navigator {
    color: #576b95;
    color: var(--weui-LINK);
}

.weui-footer navigator {
    display: inline;
}

.weui-footer_fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-bottom: calc(16px + constant(safe-area-inset-bottom));
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    left: constant(safe-area-inset-left);
    left: env(safe-area-inset-left);
    right: constant(safe-area-inset-right);
    right: env(safe-area-inset-right);
}

.weui-footer__links {
    font-size: 0;
}

.weui-footer__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
    position: relative;
    font-size: 14px;
}

.weui-footer__link:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    bottom: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid var(--weui-FG-3);
    color: rgba(0, 0, 0, 0.1);
    color: var(--weui-FG-3);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
    left: -8px;
    top: 0.36em;
    bottom: 0.36em;
}

.weui-footer__link:first-child:before {
    display: none;
}

.weui-footer__text {
    padding: 0 16px;
    font-size: 12px;
}


/* link */

.weui-label {
    display: block;
    width: 105px;
    word-wrap: break-word;
    word-break: break-all;
}

.weui-link {
    color: #576b95;
    color: var(--weui-LINK);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.weui-link:visited {
    color: #576b95;
    color: var(--weui-LINK);
}


/* mask */

.weui-mask {
    position: fixed;
    z-index: 5000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.weui-mask_transparent {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}


/* Layout Start */


/* Layout 之 cell */

.weui-cells {
    margin-top: 8px;
    background-color: #fff;
    background-color: var(--weui-BG-2);
    line-height: 1.41176471;
    font-size: 17px;
    overflow: hidden;
    position: relative;
}

.weui-cells:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--weui-FG-3);
    color: rgba(0, 0, 0, 0.1);
    color: var(--weui-FG-3);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
}

.weui-cells:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--weui-FG-3);
    color: rgba(0, 0, 0, 0.1);
    color: var(--weui-FG-3);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
}

.weui-cells__title {
    margin-top: 16px;
    margin-bottom: 3px;
    padding-left: 16px;
    padding-right: 16px;
    color: rgba(0, 0, 0, 0.5);
    color: var(--weui-FG-1);
    font-size: 14px;
    line-height: 1.4;
}

.weui-cells__title+.weui-cells {
    margin-top: 0;
}

.weui-cells__tips {
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.5);
    color: var(--weui-FG-1);
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    line-height: 1.4;
}

.weui-cells__tips a,
.weui-cells__tips navigator {
    color: #576b95;
    color: var(--weui-LINK);
}

.weui-cells__tips navigator {
    display: inline;
}

.weui-cell {
    padding: 16px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.weui-cell:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--weui-FG-3);
    color: rgba(0, 0, 0, 0.1);
    color: var(--weui-FG-3);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    left: 16px;
    z-index: 2;
}

.weui-cell:first-child:before {
    display: none;
}

.weui-cell_active:active {
    background-color: #ececec;
    background-color: var(--weui-BG-COLOR-ACTIVE);
}

.weui-cell_primary {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.weui-cell__bd {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.weui-cell__ft {
    text-align: right;
    color: rgba(0, 0, 0, 0.5);
    color: var(--weui-FG-1);
}

.weui-cell_swiped {
    display: block;
    padding: 0;
}

.weui-cell_swiped>.weui-cell__bd {
    position: relative;
    z-index: 1;
    background-color: #fff;
    background-color: var(--weui-BG-2);
}

.weui-cell_swiped>.weui-cell__ft {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    color: #fff;
}

.weui-cell_access {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: inherit;
}

.weui-cell_access:active {
    background-color: #ececec;
    background-color: var(--weui-BG-COLOR-ACTIVE);
}

.weui-cell_access .weui-cell__ft {
    padding-right: 22px;
    position: relative;
}

.weui-cell_access .weui-cell__ft:after {
    content: " ";
    width: 12px;
    height: 24px;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background-color: currentColor;
    color: rgba(0, 0, 0, 0.3);
    color: var(--weui-FG-2);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -12px;
}

.weui-cell_link {
    color: #576b95;
    color: var(--weui-LINK);
    font-size: 17px;
}

.weui-cell_link:first-child:before {
    display: block;
}

.weui-cells_radio .weui-cell__ft {
    padding-left: 16px;
    font-size: 0;
}

.weui-cells_radio .weui-check+.weui-icon-checked {
    min-width: 16px;
    color: transparent;
}

.weui-cells_radio .weui-check:checked+.weui-icon-checked,
.weui-cells_radio .weui-check[aria-checked="true"]+.weui-icon-checked {
    color: #07c160;
    color: var(--weui-BRAND);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.657%2018.435L3%2012.778l1.414-1.414%204.95%204.95L20.678%205l1.414%201.414-12.02%2012.021a1%201%200%2001-1.415%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.657%2018.435L3%2012.778l1.414-1.414%204.95%204.95L20.678%205l1.414%201.414-12.02%2012.021a1%201%200%2001-1.415%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.weui-cells_checkbox .weui-check__label:before {
    left: 55px;
}

.weui-cells_checkbox .weui-cell__hd {
    padding-right: 16px;
    font-size: 0;
}

.weui-cells_checkbox .weui-icon-checked {
    color: rgba(0, 0, 0, 0.3);
    color: var(--weui-FG-2);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
}

.weui-cells_checkbox .weui-check:checked+.weui-icon-checked,
.weui-cells_checkbox .weui-check[aria-checked="true"]+.weui-icon-checked {
    color: #07c160;
    color: var(--weui-BRAND);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
}

.weui-cell_warn .weui-textarea-counter {
    color: #fa5151;
    color: var(--weui-RED);
}

.weui-cells_form .weui-cell_switch:active,
.weui-cells_form .weui-cell_vcode:active,
.weui-cells_form .weui-cell_readonly:active,
.weui-cells_form .weui-cell_disabled:active {
    background-color: transparent;
}

.weui-cells_form .weui-cell__ft {
    font-size: 0;
}

.weui-cells_form .weui-icon-warn {
    display: none;
}

.weui-cells_form input,
.weui-cells_form textarea,
.weui-cells_form label[for] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.weui-cell_warn {
    color: #fa5151;
    color: var(--weui-RED);
}

.weui-cell_warn .weui-icon-warn {
    display: inline-block;
}

.weui-cell_readonly .weui-input:disabled,
.weui-cell_disabled .weui-input:disabled,
.weui-cell_readonly .weui-textarea:disabled,
.weui-cell_disabled .weui-textarea:disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.5);
    -webkit-text-fill-color: var(--weui-FG-1);
}

.weui-cell_readonly .weui-input[disabled],
.weui-cell_disabled .weui-input[disabled],
.weui-cell_readonly .weui-textarea[disabled],
.weui-cell_disabled .weui-textarea[disabled],
.weui-cell_readonly .weui-input[readonly],
.weui-cell_disabled .weui-input[readonly],
.weui-cell_readonly .weui-textarea[readonly],
.weui-cell_disabled .weui-textarea[readonly] {
    color: rgba(0, 0, 0, 0.5);
    color: var(--weui-FG-1);
}

.weui-cell_select {
    padding: 0;
}

.weui-cell_select .weui-select {
    padding-right: 30px;
}

.weui-cell_select .weui-cell__bd:after {
    content: " ";
    width: 12px;
    height: 24px;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background-color: currentColor;
    color: rgba(0, 0, 0, 0.3);
    color: var(--weui-FG-2);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -12px;
}

.weui-cell_select-before {
    padding-right: 16px;
}

.weui-cell_select-before .weui-select {
    width: 105px;
    box-sizing: border-box;
}

.weui-cell_select-before .weui-cell__hd {
    position: relative;
}

.weui-cell_select-before .weui-cell__hd:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    bottom: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid var(--weui-FG-3);
    color: rgba(0, 0, 0, 0.1);
    color: var(--weui-FG-3);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.weui-cell_select-before .weui-cell__hd:before {
    content: " ";
    width: 12px;
    height: 24px;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background-color: currentColor;
    color: rgba(0, 0, 0, 0.3);
    color: var(--weui-FG-2);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -12px;
}

.weui-cell_select-before .weui-cell__bd {
    padding-left: 16px;
}

.weui-cell_select-before .weui-cell__bd:after {
    display: none;
}

.weui-cell_select-before.weui-cell_access .weui-cell__hd {
    line-height: 56px;
    padding-left: 32px;
}

.weui-cell_select-after {
    padding-left: 16px;
}

.weui-cell_select-after .weui-select {
    padding-left: 0;
}

.weui-cell_select-after.weui-cell_access .weui-cell__bd {
    line-height: 56px;
}

.weui-cell_vcode {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.weui-cell_switch {
    padding-top: 12px;
    padding-bottom: 12px;
}

.weui-cells__group_form:first-child .weui-cells__title {
    margin-top: 0;
}

.weui-cells__group_form .weui-cells__title {
    margin-top: 24px;
    margin-bottom: 8px;
    padding: 0 32px;
}

.weui-cells__group_form .weui-cells:before,
.weui-cells__group_form .weui-cell:before {
    left: 32px;
    right: 32px;
}

.weui-cells__group_form .weui-cells_checkbox .weui-check__label:before {
    left: 72px;
}

.weui-cells__group_form .weui-cells:after {
    left: 32px;
    right: 32px;
}

.weui-cells__group_form .weui-cell {
    padding: 16px 32px;
}

.weui-cells__group_form .weui-cell:not(.weui-cell_link) {
    color: rgba(0, 0, 0, 0.9);
    color: var(--weui-FG-0);
}

.weui-cells__group_form .weui-cell__hd {
    padding-right: 16px;
}

.weui-cells__group_form .weui-cell__ft {
    padding-left: 16px;
}

.weui-cells__group_form .weui-cell_warn input {
    color: #fa5151;
    color: var(--weui-RED);
}

.weui-cells__group_form .weui-label {
    max-width: 5em;
    margin-right: 8px;
}

.weui-cells__group_form .weui-cells__tips {
    margin-top: 8px;
    padding: 0 32px;
    color: rgba(0, 0, 0, 0.3);
}

.weui-cells__group_form .weui-cells__tips a {
    font-weight: 700;
}

.weui-cells__group_form .weui-cell_vcode {
    padding: 12px 32px;
}

.weui-cells__group_form .weui-vcode-btn {
    font-size: 16px;
    padding: 0 12px;
    margin-left: 0;
    height: auto;
    width: auto;
    line-height: 2em;
    color: #06ae56;
    color: var(--weui-BTN-DEFAULT-COLOR);
    background-color: #f2f2f2;
    background-color: var(--weui-BTN-DEFAULT-BG);
}

.weui-cells__group_form .weui-vcode-btn:before {
    display: none;
}

.weui-cells__group_form .weui-cell_select {
    padding: 0;
}

.weui-cells__group_form .weui-cell_select .weui-select {
    padding: 0 32px;
}

.weui-cells__group_form .weui-cell_select .weui-cell__bd:after {
    right: 32px;
}

.weui-cells__group_form .weui-cell_select-before .weui-label {
    margin-right: 24px;
}

.weui-cells__group_form .weui-cell_select-before .weui-select {
    padding-right: 24px;
    box-sizing: initial;
}

.weui-cells__group_form .weui-cell_select-after {
    padding-left: 32px;
}

.weui-cells__group_form .weui-cell_select-after .weui-select {
    padding-left: 0;
}

.weui-cells__group_form .weui-cell_switch {
    padding: 12px 32px;
}


/* Layout 之 flex */

.weui-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.weui-flex__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}


/* Layout 之 tabbar */

.weui-tabbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    z-index: 500;
    background-color: #f7f7f7;
    background-color: var(--weui-BG-1);
}

.weui-tabbar:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--weui-FG-3);
    color: rgba(0, 0, 0, 0.1);
    color: var(--weui-FG-3);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.weui-tabbar__item {
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding: 8px 0;
    padding-bottom: calc(8px + constant(safe-area-inset-bottom));
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    font-size: 0;
    color: rgba(0, 0, 0, 0.5);
    color: var(--weui-FG-1);
    text-align: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.weui-tabbar__item:first-child {
    padding-left: constant(safe-area-inset-left);
    padding-left: env(safe-area-inset-left);
}

.weui-tabbar__item:last-child {
    padding-right: constant(safe-area-inset-right);
    padding-right: env(safe-area-inset-right);
}

.weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon,
.weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon>i,
.weui-tabbar__item.weui-bar__item_on .weui-tabbar__label {
    color: #07c160;
    color: var(--weui-BRAND);
}

.weui-tabbar__icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
}

i.weui-tabbar__icon,
.weui-tabbar__icon>i {
    font-size: 24px;
    color: rgba(0, 0, 0, 0.5);
    color: var(--weui-FG-1);
}

.weui-tabbar__icon img {
    width: 100%;
    height: 100%;
}

.weui-tabbar__label {
    color: rgba(0, 0, 0, 0.9);
    color: var(--weui-FG-0);
    font-size: 10px;
    line-height: 1.4;
}


/* Layout 之 navbar */

.weui-navbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    position: relative;
    z-index: 500;
    background-color: #fff;
    background-color: var(--weui-BG-2);
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
}

.weui-navbar:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--weui-FG-3);
    color: rgba(0, 0, 0, 0.1);
    color: var(--weui-FG-3);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.weui-navbar+.weui-tab__panel {
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
}

.weui-navbar__item {
    position: relative;
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding: 16px 0;
    padding-top: calc(16px + constant(safe-area-inset-top));
    padding-top: calc(16px + env(safe-area-inset-top));
    text-align: center;
    font-size: 17px;
    line-height: 1.41176471;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.weui-navbar__item a {
    color: black;
    display: block;
}

.weui-navbar__item:active {
    background-color: #ececec;
    background-color: var(--weui-BG-COLOR-ACTIVE);
}

.weui-navbar__item.weui-bar__item_on {
    background-color: #ececec;
    background-color: var(--weui-BG-COLOR-ACTIVE);
}

.weui-navbar__item:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    bottom: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid var(--weui-FG-3);
    color: rgba(0, 0, 0, 0.1);
    color: var(--weui-FG-3);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.weui-navbar__item:first-child {
    padding-left: constant(safe-area-inset-left);
    padding-left: env(safe-area-inset-left);
}

.weui-navbar__item:last-child {
    padding-right: constant(safe-area-inset-right);
    padding-right: env(safe-area-inset-right);
}

.weui-navbar__item:last-child:after {
    display: none;
}

.weui-cell_readonly .weui-input:disabled,
.weui-cell_disabled .weui-input:disabled,
.weui-cell_readonly .weui-textarea:disabled,
.weui-cell_disabled .weui-textarea:disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.5);
    -webkit-text-fill-color: var(--weui-FG-1);
}

.weui-cell_readonly .weui-input[disabled],
.weui-cell_disabled .weui-input[disabled],
.weui-cell_readonly .weui-textarea[disabled],
.weui-cell_disabled .weui-textarea[disabled],
.weui-cell_readonly .weui-input[readonly],
.weui-cell_disabled .weui-input[readonly],
.weui-cell_readonly .weui-textarea[readonly],
.weui-cell_disabled .weui-textarea[readonly] {
    color: rgba(0, 0, 0, 0.5);
    color: var(--weui-FG-1);
}


/* Layout 之 tab */

.weui-tab {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    /* 增加部分 */
    position: absolute;
    bottom: 0;
    width: 100%;
}

.weui-tab__panel {
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.weui-tab__content {
    display: none;
}


/* Layout End */


/* badge */

.weui-badge {
    display: inline-block;
    padding: 0.15em 0.4em;
    min-width: 8px;
    border-radius: 18px;
    background-color: #fa5151;
    background-color: var(--weui-RED);
    color: #fff;
    line-height: 1.2;
    text-align: center;
    font-size: 12px;
    vertical-align: middle;
}

.weui-badge_dot {
    padding: 0.4em;
    min-width: 0;
}