        @keyframes go2264125279 {
            from {
                transform: scale(0) rotate(45deg);
                opacity: 0;
            }

            to {
                transform: scale(1) rotate(45deg);
                opacity: 1;
            }
        }

        @keyframes go3020080000 {
            from {
                transform: scale(0);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes go463499852 {
            from {
                transform: scale(0) rotate(90deg);
                opacity: 0;
            }

            to {
                transform: scale(1) rotate(90deg);
                opacity: 1;
            }
        }

        @keyframes go1268368563 {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes go1310225428 {
            from {
                transform: scale(0) rotate(45deg);
                opacity: 0;
            }

            to {
                transform: scale(1) rotate(45deg);
                opacity: 1;
            }
        }

        @keyframes go651618207 {
            0% {
                height: 0;
                width: 0;
                opacity: 0;
            }

            40% {
                height: 0;
                width: 6px;
                opacity: 1;
            }

            100% {
                opacity: 1;
                height: 10px;
            }
        }

        @keyframes go901347462 {
            from {
                transform: scale(0.6);
                opacity: 0.4;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .go4109123758 {
            z-index: 9999;
        }

        .go4109123758>* {
            pointer-events: auto;
        }



        .hide {
            display: none !important;
        }


        .loader {
            width: 16px;
            height: 16px;
            border: 3px solid #FFF;
            border-bottom-color: transparent;
            border-radius: 50%;
            display: inline-block;
            box-sizing: border-box;
            animation: rotation 1s linear infinite;
        }

        @keyframes rotation {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }







        .error {
            line-height: 20px;
            background-color: var(--kline-red-bg);
            color: var(--kline-red);
            font-size: 13px;
            padding: 10px;
            margin-top: 10px;
            margin-bottom: 10px;
        }


        #overlay {
            position: fixed;
            display: block;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 999999;
        }

        #overlay-loader {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            margin: 0 auto;
        }

        .lds-spinner,
        .lds-spinner div,
        .lds-spinner div:after {
            box-sizing: border-box;
        }

        .lds-spinner {
            color: white;
            display: inline-block;
            position: relative;
            width: 80px;
            height: 80px;
        }

        .lds-spinner div {
            transform-origin: 40px 40px;
            animation: lds-spinner 1.2s linear infinite;
        }

        .lds-spinner div:after {
            content: " ";
            display: block;
            position: absolute;
            top: 3.2px;
            left: 36.8px;
            width: 6.4px;
            height: 17.6px;
            border-radius: 20%;
            background: currentColor;
        }

        .lds-spinner div:nth-child(1) {
            transform: rotate(0deg);
            animation-delay: -1.1s;
        }

        .lds-spinner div:nth-child(2) {
            transform: rotate(30deg);
            animation-delay: -1s;
        }

        .lds-spinner div:nth-child(3) {
            transform: rotate(60deg);
            animation-delay: -0.9s;
        }

        .lds-spinner div:nth-child(4) {
            transform: rotate(90deg);
            animation-delay: -0.8s;
        }

        .lds-spinner div:nth-child(5) {
            transform: rotate(120deg);
            animation-delay: -0.7s;
        }

        .lds-spinner div:nth-child(6) {
            transform: rotate(150deg);
            animation-delay: -0.6s;
        }

        .lds-spinner div:nth-child(7) {
            transform: rotate(180deg);
            animation-delay: -0.5s;
        }

        .lds-spinner div:nth-child(8) {
            transform: rotate(210deg);
            animation-delay: -0.4s;
        }

        .lds-spinner div:nth-child(9) {
            transform: rotate(240deg);
            animation-delay: -0.3s;
        }

        .lds-spinner div:nth-child(10) {
            transform: rotate(270deg);
            animation-delay: -0.2s;
        }

        .lds-spinner div:nth-child(11) {
            transform: rotate(300deg);
            animation-delay: -0.1s;
        }

        .lds-spinner div:nth-child(12) {
            transform: rotate(330deg);
            animation-delay: 0s;
        }

        @keyframes lds-spinner {
            0% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }



        /*! CSS Used from: https://www.deepcoin.com/static/css/vendor.fbc2c466a6.css */
        * {
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -moz-tap-highlight-color: transparent;
            -ms-tap-highlight-color: transparent;
            -o-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            list-style: none;
        }

        em {
            font-style: normal;
            font-weight: 400;
        }

        div {
            margin: 0;
            padding: 0;
        }

        .center {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .center {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: justify;
            -webkit-box-pack: justify;
            box-pack: justify;
            -ms-flex-align: center;
            -webkit-box-align: center;
            box-align: center;
            -webkit-align-items: center;
            align-items: center;
        }

        .flex {
            display: flex;
        }

        .left {
            float: left;
        }

        .right {
            float: right;
        }

        .cb {
            justify-content: space-between;
        }

        .cc {
            justify-content: center;
        }

        .ac {
            align-items: center;
        }

        .flex1 {
            flex: 1;
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-track {
            background-color: var(--dialog-bg-color);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: var(--text-color-level4);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:active,
        ::-webkit-scrollbar-thumb:hover {
            background-color: var(--text-color-level3);
        }

        /*! CSS Used from: https://www.deepcoin.com/static/css/89.5010b10953.css */
        .open-auth-container[data-v-b83ba92a] {
            padding: 19px 50px 44px;
            margin-top: -8px;
        }

        .open-auth-container .others-login .left[data-v-b83ba92a],
        .open-auth-container .others-login .right[data-v-b83ba92a] {
            height: 1px;
            background: var(--line-color);
        }

        .open-auth-container .others-login .center[data-v-b83ba92a] {
            margin: 0 17px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-color-level1);
            line-height: 17px;
        }

        .open-auth-container .open-auth-platform[data-v-b83ba92a] {
            margin-top: 25px;
        }

        .open-auth-container .open-auth-platform>div[data-v-b83ba92a] {
            border-radius: 4px;
        }

        .open-auth-container .open-auth-platform>div[data-v-b83ba92a]:hover {
            opacity: .8;
        }

        .open-auth-container .open-auth-platform .google[data-v-b83ba92a],
        .open-auth-container .open-auth-platform .metamask[data-v-b83ba92a] {
            height: 50px;
            background: #292929;
            cursor: pointer;
        }

        .open-auth-container .open-auth-platform .google .icon[data-v-b83ba92a],
        .open-auth-container .open-auth-platform .metamask .icon[data-v-b83ba92a] {
            display: block;
            width: 25px;
            height: 25px;
            background-repeat: no-repeat;
            background-position: 50%;
            background-size: contain;
        }

        .open-auth-container .open-auth-platform .google .name[data-v-b83ba92a],
        .open-auth-container .open-auth-platform .metamask .name[data-v-b83ba92a] {
            margin-left: 7px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-color-level1);
            line-height: 22px;
        }

        .open-auth-container .open-auth-platform .google .icon[data-v-b83ba92a] {
            background-image: url(Google_Icons-09-512.svg);
        }

        .open-auth-container .open-auth-platform .metamask[data-v-b83ba92a] {
            margin-right: 19px;
        }

        .open-auth-container .open-auth-platform .metamask .icon[data-v-b83ba92a] {
            background-image: url(metamask-8c40721e7f19a1f.png);
        }


        * {
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -moz-tap-highlight-color: transparent;
            -ms-tap-highlight-color: transparent;
            -o-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            list-style: none;
        }

        .left {
            float: left;
        }

        .flex1 {
            flex: 1;
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-track {
            background-color: var(--dialog-bg-color);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: var(--text-color-level4);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:active,
        ::-webkit-scrollbar-thumb:hover {
            background-color: var(--text-color-level3);
        }

        .open-auth-container .others-login .left[data-v-b83ba92a] {
            height: 1px;
            background: #292929;
        }



        * {
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -moz-tap-highlight-color: transparent;
            -ms-tap-highlight-color: transparent;
            -o-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            list-style: none;
        }

        .right {
            float: right;
        }

        .flex1 {
            flex: 1;
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-track {
            background-color: var(--dialog-bg-color);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: var(--text-color-level4);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:active,
        ::-webkit-scrollbar-thumb:hover {
            background-color: var(--text-color-level3);
        }

        .open-auth-container .others-login .right[data-v-b83ba92a] {
            height: 1px;
            background: #292929;
        }



        .text-lb {
            color: #9B9FA8 !important;
            font-weight: 400 !important;
            font-size: 14px !important;
            line-height: 16px !important;
            margin-bottom: 32px !important;
        }

        html {
            background-color: #111212 !important;
        }



        .jDYJNX {
            display: flex;
            padding-right: 40px;
        }

        .jDYJNX svg {
            fill: #fff;
        }

        .jvbrPP {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            height: 48px;
        }



        .cygqUJ {
            margin-top: 8px;
            color: #fff;
            text-align: center;
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: 32px;
            width: 400px;
        }






        .dc-input::placeholder {
            color: #9B9FA8 !important;
            opacity: 1 !important;
        }



        .dc-input {
            font-size: 14px;
            font-weight: 400;
            line-height: 16px;
            height: 40px;
        }


        .KIemT {
            color: #fff;
            font-weight: 400;
            font-size: 14px;
            line-height: 16px;
            cursor: pointer;
        }

        .dc-input:hover {
            border: medium;
            background-color: transparent;
            flex: 1 1 0%;
            outline: none;
        }


        .ant-form-vertical .ant-form-item-label>label {
            height: auto;
        }

        .ant-form-vertical .ant-form-item-label>label {
            margin: 0;
        }

        .ant-form-vertical .ant-form-item-label>label:after {
            display: none;
        }

        @media (max-width:575px) {
            .ant-form-item .ant-form-item-label>label {
                margin: 0;
            }

            .ant-form-item .ant-form-item-label>label:after {
                display: none;
            }
        }

        .ant-form label {
            font-size: 14px;
        }

        .ant-form-item-label>label {
            position: relative;
            display: inline-flex;
            align-items: center;
            max-width: 100%;
            height: 32px;
            color: rgba(0, 0, 0, .85);
            font-size: 14px;
        }

        .ant-form-item-label>label.ant-form-item-required:not(.ant-form-item-required-mark-optional):before {
            display: inline-block;
            margin-right: 4px;
            color: #ff4d4f;
            font-size: 14px;
            font-family: SimSun, sans-serif;
            line-height: 1;
            content: "*";
        }

        .ant-form-item-label>label:after {
            content: ":";
            position: relative;
            top: -.5px;
            margin: 0 8px 0 2px;
        }

        /*! CSS Used from: Embedded */
        .bNmrno {
            display: inline-block;
            white-space: nowrap;
        }

        .gNgBGl {
            display: inline-flex;
            box-sizing: border-box;
            position: relative;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            user-select: none;
            cursor: pointer;
            border-radius: 4px;
            -webkit-tap-highlight-color: transparent;
            outline: 0px;
            border: 0px;
            white-space: nowrap;
            transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            touch-action: manipulation;
            font-family: inherit;
            padding: 8px 16px;
            height: 32px;
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
        }

        .gNgBGl .sc-dmctIk {
            line-height: 16px;
        }

        .gNgBGl.lbank-btn-secondary {
            color: var(--secondary-contrast-text);
            background-color: var(--secondary-main);
        }

        .gNgBGl.lbank-btn-secondary.lbank-btn-hovered:hover {
            background-color: var(--secondary-main-hover);
        }

        .gNgBGl.lbank-btn-link {
            padding: 0px;
            height: auto;
            background-color: transparent;
            border: none;
            border-radius: 0px;
            color: var(--link-1);
        }

        .gNgBGl.lbank-btn-link.lbank-btn-hovered:hover {
            color: var(--link-hover);
            background-color: transparent;
        }

        .gNgBGl.lbank-btn-round {
            border-radius: 25px;
        }

        .inlSfY {
            display: flex;
            height: auto;
            width: 100%;
            border-radius: 0px;
            line-height: initial;
            flex-direction: row;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            justify-content: space-between;
            flex-wrap: unset;
        }

        .inlSfY> :not(:last-child) {
            margin-right: 0px !important;
        }

        .cIjOBL .ant-form-item .ant-form-item-label>label {
            flex: 1 1 0%;
        }

        .cIjOBL .ant-form-item .ant-form-item-label>label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
            display: none;
        }

        .kQGGlr .ant-form-item .ant-form-item-label>label {
            color: #fff;
            font-weight: 400;
            font-size: 14px;
            line-height: 16px;
        }



        .jfksuV {
            width: 100%;
            color: #fff;
            font-weight: 400;
            font-size: 14px;
            line-height: 16px;
        }

        .jfksuV button {
            font-weight: 400;
        }











        /*! CSS Used from: https://jia.lbank.com/_next/static/css/f729ba3fe5099ef7.css */
        :lang(en-US) {
            font-family: HarmonyOS Sans, sans-serif;
        }

        *,
        :after,
        :before {
            box-sizing: border-box;
        }

        [tabindex="-1"]:focus {
            outline: none !important;
        }

        p {
            margin-top: 0;
            margin-bottom: 1em;
        }

        input[type=text] {
            -webkit-appearance: none;
        }

        button,
        input:not([type=range]) {
            touch-action: manipulation;
        }

        button,
        input {
            margin: 0;
            color: inherit;
            font-size: inherit;
            font-family: inherit;
            line-height: inherit;
        }

        button,
        input {
            overflow: visible;
        }

        button {
            text-transform: none;
        }

        button,
        html [type=button] {
            -webkit-appearance: button;
        }

        ::selection {
            color: #fff;
            background: #1890ff;
        }

        .ant-row {
            flex-flow: row wrap;
        }

        .ant-row,
        .ant-row:after,
        .ant-row:before {
            display: flex;
        }

        .ant-col {
            position: relative;
            max-width: 100%;
            min-height: 1px;
        }

        .ant-layout * {
            box-sizing: border-box;
        }

        button,
        div,
        input,
        p {
            margin: 0;
            padding: 0;
        }

        button,
        input {
            font: 16px Verdana, Helvetica, Arial, sans-serif;
        }

        .ant-form-vertical .ant-form-item {
            flex-direction: column;
        }

        .ant-form-vertical .ant-form-item .ant-form-item-control {
            width: 100%;
        }

        @media (max-width:575px) {
            .ant-form .ant-form-item {
                flex-wrap: wrap;
            }

            .ant-form .ant-form-item .ant-form-item-control {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        .ant-form-item {
            box-sizing: border-box;
            padding: 0;
            color: rgba(0, 0, 0, .85);
            font-size: 14px;
            font-variant: tabular-nums;
            line-height: 1.5715;
            list-style: none;
            font-feature-settings: "tnum";
            margin: 0 0 24px;
            vertical-align: top;
        }

        .ant-form-item-control {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .ant-form-item-control:first-child:not([class^=ant-col-]):not([class*=" ant-col-"]) {
            width: 100%;
        }

        .ant-form-item-control-input {
            position: relative;
            display: flex;
            align-items: center;
            min-height: 32px;
        }

        .ant-form-item-control-input-content {
            flex: auto;
            max-width: 100%;
        }

        /*! CSS Used from: Embedded */
        .cRHAVy {
            direction: ltr;
            display: inline-block;
        }

        .iZLcRr {
            margin-left: 6px;
            font-size: 16px;
            opacity: 0;
            cursor: pointer;
            transition: 0.2s ease-out;
        }

        .puLBJ {
            border: none;
            background-color: transparent;
            flex: 1 1 0%;
            outline: none;
            caret-color: var(--link-1);
            padding: 0px;
            height: 100%;
            width: 100%;
            min-width: 40px;
            appearance: none;
        }

        .puLBJ:focus,
        .puLBJ:hover {
            border: none;
            background-color: transparent;
            flex: 1 1 0%;
            outline: none;
        }

        .puLBJ::placeholder {
            color: var(--text-3);
        }

        .puLBJ:disabled::placeholder {
            color: var(--text-4);
        }

        .dnZpkk {
            width: 100%;
            flex: 1 1 0%;
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: start;
            justify-content: flex-start;
            overflow: hidden;
            transition: 0.2s ease-out;
            border-radius: 2px;
            color: var(--text-1);
            position: relative;
            --input-placeholder-color: var(--text-3);
        }

        .dnZpkk.lbank-input-outlined {
            border: 1px solid var(--line-1);
        }

        .dnZpkk.lbank-input-large {
            padding: 12px 8px;
            font-size: 14px;
            font-weight: 400;
            line-height: 16px;
            height: 40px;
        }

        .dnZpkk.lbank-input-large .lbank-input-core {
            font-size: 14px;
            font-weight: 400;
            line-height: 16px;
            height: 40px;
        }

        .dnZpkk:hover {
            background: var(--bg-2);
        }

        .dnZpkk.lbank-input-outlined:hover {
            border: 1px solid var(--line-1);
        }

        .cIjOBL .ant-form-item .ant-form-item-control-input {
            min-height: auto;
        }

        .cIjOBL .ant-form-item {
            margin-bottom: 32px;
        }

        * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }

        .eqGtKa {
            height: 16px;
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: start;
            justify-content: flex-start;
            color: var(--text-1);
            width: 100%;
        }

        .kiHpwC {
            overflow: hidden;
            transition: height 500ms cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 8px;
        }

        .KIemT {
            color: var(--text-1);
            font-weight: 400;
            font-size: 14px;
            line-height: 16px;
            cursor: pointer;
        }

        .KIemT .subText {
            color: var(--text-3);
        }

        .jxohfD {
            margin-bottom: 32px;
        }

        .boVagZ {
            display: inline-flex;
            box-sizing: border-box;
            position: relative;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            user-select: none;
            cursor: pointer;
            border-radius: 4px;
            -webkit-tap-highlight-color: transparent;
            outline: 0px;
            border: 0px;
            white-space: nowrap;
            transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            touch-action: manipulation;
            font-family: inherit;
            padding: 8px 16px;
            height: 32px;
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
        }

        .boVagZ.lbank-btn-secondary {
            color: var(--secondary-contrast-text);
            background-color: var(--secondary-main);
        }

        .boVagZ.lbank-btn-secondary.lbank-btn-hovered:hover {
            background-color: var(--secondary-main-hover);
        }

        .boVagZ.lbank-btn-text {
            background-color: transparent;
            border: none;
        }

        .boVagZ.lbank-btn-round {
            border-radius: 25px;
        }

        .boVagZ .lbank-icon {
            display: inline-flex;
            -webkit-box-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            align-items: center;
        }

        .boVagZ.lbank-btn-icon-only {
            width: 32px;
            height: 32px;
            padding: 0px;
        }

        .kxgbQH {
            font-size: 16px;
            transition: transform 0.3s linear;
            transform: rotate(0deg);
            margin-left: 4px;
            width: 16px !important;
            height: 16px !important;
        }

        .kxgbQH:hover {
            border-bottom: none !important;
            background-color: transparent !important;
        }




        html:root {
            --state-success: #2CA860;
            --state-danger: #CA3F64;
            --state-warning: #FF7E33;
            --state-link: #457AFF;
            --bg-1: #111212;
            --bg-2: #191B1B;
            --bg-overlay: rgba(23, 24, 26, 0.6);
            --fill1: #fff;
            --fill2: #323439;
            --fill3: #242529;
            --fill4: #1F1F21;
            --fill5: #FFDB00;
            --fill6: #251D00;
            --fill-opacity2: rgba(50, 52, 57, 0.2);
            --border-0: #232324;
            --border-1: #2A2A2B;
            --border-2: #373738;
            --text-1: #fff;
            --text-2: #D4D6DB;
            --text-3: #9B9FA8;
            --text-4: #474A52;
            --text-5: #111212;
            --text-6: #FFDB00;
            --line-1: #5E626B;
            --line-2: #212121;
            --line-3: #000;
            --danger-1: #CA3F64;
            --danger-2: #291C21;
            --success-1: #2CA860;
            --success-2: #192621;
            --warning-1: #FF7E33;
            --warning-2: #2E221D;
            --link-1: #457AFF;
            --link-2: #E8EEFE;
            --link-hover: #5283FF;
            --link-active: #4071ED;
            --color-bg-base: #111212;
            --color-text-base: #fff;
            --color-text: rgba(255, 255, 255, 0.8);
            --color-text-secondary: rgba(255, 255, 255, 0.6);
            --color-text-tertiary: rgba(255, 255, 255, 0.35);
            --color-text-highlight: #fff;
            --color-text-placeholder: rgba(255, 255, 255, 0.35);
            --color-border: rgba(55, 55, 56, 1);
            --color-bg-overlay: rgba(0, 0, 0, 0.40);
            --divider: rgba(55, 55, 56, 1);
            --mask-layer: rgba(0, 0, 0, 0.75);
            --primary-main: #fff;
            --primary-border-color: #fff;
            --primary-contrast-text: #111212;
            --primary-main-hover: #EDEDED;
            --primary-main-active-color: #fff;
            --secondary-main: #323439;
            --secondary-border-color: #9B9FA8;
            --secondary-contrast-text: #fff;
            --secondary-main-hover: #3B3D41;
            --secondary-main-active-color: #292B2F;
            --ghost-main: #191B1B;
            --ghost-border-color: #9B9FA8;
            --ghost-contrast-text: #fff;
            --ghost-main-hover: #191B1B;
            --ghost-main-active-color: #323439;
            --error-main: #CA3F64;
            --error-border-color: #CA3F64;
            --error-contrast-text: #fff;
            --error-main-hover: #EC5474;
            --error-main-active-color: #DF4768;
            --success-main: #2CA860;
            --success-border-color: #2CA860;
            --success-contrast-text: #fff;
            --success-main-hover: #38B66D;
            --success-main-active-color: #2CA960;
            --empty-background: url('/assets/no-data-dark.png') no-repeat center;
            --chart-1: #5B9CF6;
            --chart-2: #66BB6A;
            --chart-3: #FFA726;
            --chart-4: #F7525F;
            --chart-5: #26C6DA;
            --chart-6: #BA68C8;
            --chart-7: #DC7A47;
            --chart-8: #00918A;
            --chart-9: #FF99C3;
            --chart-10: #7C61F2;
            --chart-11: #A6CE40;
            --chart-12: #AC6464;
            --chart-13: #19DAAC;
            --chart-14: #BF923C;
            --chart-15: #BDD8FF;
            --chart-16: #A5D9A7;
            --chart-17: #FFD8A0;
            --chart-18: #ffdfe1;
            --chart-19: #a9f2fa;
            --chart-20: #F6DCFA;
            --chart-21: #F0CFBD;
            --chart-22: #A8F3F0;
            --chart-23: #FFC2DB;
            --chart-24: #D2C8FB;
            --chart-25: #CAE193;
            --chart-26: #F3E7E7;
            --chart-27: #9AFBE5;
            --chart-28: #F0E4CE;
            --scrollbar-color: #474A52;
        }



        /*! CSS Used from: https://jia.lbank.com/_next/static/css/f729ba3fe5099ef7.css */
        :lang(en-US) {
            font-family: HarmonyOS Sans, sans-serif;
        }

        *,
        :after,
        :before {
            box-sizing: border-box;
        }

        button {
            touch-action: manipulation;
        }

        button {
            margin: 0;
            color: inherit;
            font-size: inherit;
            font-family: inherit;
            line-height: inherit;
        }

        button {
            overflow: visible;
        }

        button {
            text-transform: none;
        }

        [type=submit],
        button {
            -webkit-appearance: button;
        }

        ::selection {
            color: #fff;
            background: #1890ff;
        }

        .ant-layout * {
            box-sizing: border-box;
        }

        button {
            margin: 0;
            padding: 0;
        }

        button {
            font: 16px Verdana, Helvetica, Arial, sans-serif;
        }

        /*! CSS Used from: Embedded */
        .bNmrno {
            display: inline-block;
            white-space: nowrap;
        }

        .cwZlej {
            display: inline-flex;
            box-sizing: border-box;
            position: relative;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            user-select: none;
            cursor: pointer;
            border-radius: 4px;
            -webkit-tap-highlight-color: transparent;
            outline: 0px;
            border: 0px;
            white-space: nowrap;
            transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            touch-action: manipulation;
            font-family: inherit;
            padding: 8px 16px;
            height: 32px;
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
        }

        .cwZlej .sc-dmctIk {
            line-height: 16px;
        }

        .cwZlej.lbank-btn-lg {
            padding: 12px 20px;
            height: 40px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
        }

        .cwZlej.lbank-btn-lg .sc-dmctIk {
            line-height: 16px;
        }

        .cwZlej.lbank-btn-primary {
            color: var(--primary-contrast-text);
            background-color: var(--primary-main);
        }

        .cwZlej.lbank-btn-primary.lbank-btn-hovered:hover {
            background-color: var(--primary-main-hover);
        }

        .cwZlej.lbank-btn-disabled {
            color: var(--text-4);
            border: none;
            cursor: not-allowed;
            background-color: var(--fill3);
        }

        .cwZlej.lbank-btn-disabled.lbank-btn-hovered:hover {
            background-color: var(--fill3);
            color: var(--text-4);
        }

        .cwZlej.lbank-btn-round {
            border-radius: 25px;
        }

        * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }

        .cRTQpo {
            display: flex;
            width: 100%;
            border-radius: 6px;
            height: 42px !important;
        }

        .cRTQpo.lbank-btn-lg {
            font-size: 14px;
        }

 



        /*! CSS Used from: https://jia.lbank.com/_next/static/css/f729ba3fe5099ef7.css */
        :lang(en-US) {
            font-family: HarmonyOS Sans, sans-serif;
        }

        *,
        :after,
        :before {
            box-sizing: border-box;
        }

        button {
            touch-action: manipulation;
        }

        button {
            margin: 0;
            color: inherit;
            font-size: inherit;
            font-family: inherit;
            line-height: inherit;
        }

        button {
            overflow: visible;
        }

        button {
            text-transform: none;
        }

        button,
        html [type=button] {
            -webkit-appearance: button;
        }

        ::selection {
            color: #fff;
            background: #1890ff;
        }

        .ant-layout * {
            box-sizing: border-box;
        }

        button,
        div {
            margin: 0;
            padding: 0;
        }

        button {
            font: 16px Verdana, Helvetica, Arial, sans-serif;
        }

        /*! CSS Used from: Embedded */
        .etZVdL {
            display: flex;
            height: auto;
            width: auto;
            border-radius: 0px;
            line-height: initial;
            flex-direction: row;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            flex-wrap: unset;
        }

        .etZVdL> :not(:last-child) {
            margin-right: 40px !important;
        }

        * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }

        .cCklTR .third-content {
            display: flex;
            min-height: 42px;
        }

        .cCklTR .third-btn {
            position: relative;
            width: 42px;
            height: 42px;
            font-weight: normal;
            overflow: hidden;
        }

        .cCklTR .third-btn-btn {
            width: 42px;
            height: 42px;
            font-weight: normal;
        }

        .boVagZ {
            display: inline-flex;
            box-sizing: border-box;
            position: relative;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            user-select: none;
            cursor: pointer;
            border-radius: 4px;
            -webkit-tap-highlight-color: transparent;
            outline: 0px;
            border: 0px;
            white-space: nowrap;
            transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            touch-action: manipulation;
            font-family: inherit;
            padding: 8px 16px;
            height: 32px;
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
        }

        .boVagZ.lbank-btn-secondary {
            color: var(--secondary-contrast-text);
            background-color: var(--secondary-main);
        }

        .boVagZ.lbank-btn-secondary.lbank-btn-hovered:hover {
            background-color: var(--secondary-main-hover);
        }

        .boVagZ.lbank-btn-round {
            border-radius: 25px;
        }

        .hfvAkd {
            width: 42px;
            height: 42px;
            background-image: url("https://www.lbank.com/assets/icons/icon-apple-d.png");
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: initial;
            background-origin: initial;
            background-clip: initial;
            background-size: 20px 20px;
            background-color: var(--bg-1) !important;
            border: 1px solid var(--text-4) !important;
        }

        .bnRMmC {
            width: 42px;
            height: 42px;
            background-image: url("https://www.lbank.com/assets/icons/icon-google-d.png");
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: initial;
            background-origin: initial;
            background-clip: initial;
            background-size: 20px 20px;
            background-color: var(--bg-1) !important;
            border: 1px solid var(--text-4) !important;
        }

        /*! CSS Used from: Embedded */
        .S9gUrf-YoZ4jf,
        .S9gUrf-YoZ4jf * {
            border: none;
            margin: 0;
            padding: 0;
        }



        /*! CSS Used from: https://jia.lbank.com/_next/static/css/f729ba3fe5099ef7.css */
        :lang(en-US) {
            font-family: HarmonyOS Sans, sans-serif;
        }

        *,
        :after,
        :before {
            box-sizing: border-box;
        }

        a {
            color: #1890ff;
            background-color: transparent;
            outline: none;
            cursor: pointer;
            transition: color .3s;
            -webkit-text-decoration-skip: objects;
        }

        a:hover {
            color: #40a9ff;
        }

        a:active {
            color: #096dd9;
        }

        a:active,
        a:focus,
        a:hover {
            text-decoration: none;
            outline: 0;
        }

        a {
            touch-action: manipulation;
        }

        ::selection {
            color: #fff;
            background: #1890ff;
        }

        .ant-layout * {
            box-sizing: border-box;
        }

        div {
            margin: 0;
            padding: 0;
        }

        a {
            color: hsla(0, 0%, 100%, .5);
        }

        a,
        a:hover {
            text-decoration: none;
        }

        a:hover {
            color: #fc6;
        }

        /*! CSS Used from: Embedded */
        * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }

        .ldODUA {
            text-align: center;
            color: var(--text-3);
            font-weight: 400;
            font-size: 14px;
            line-height: 16px;
        }

        .ldODUA a {
            margin-left: 2px;
            color: var(--text-1);
        }

        /*! CSS Used from: https://jia.lbank.com/_next/static/css/f729ba3fe5099ef7.css */
        :lang(en-US) {
            font-family: HarmonyOS Sans, sans-serif;
        }

        *,
        :after,
        :before {
            box-sizing: border-box;
        }

        [tabindex="-1"]:focus {
            outline: none !important;
        }

        input[type=text] {
            -webkit-appearance: none;
        }

        [role=button],
        button,
        input:not([type=range]),
        label {
            touch-action: manipulation;
        }

        button,
        input {
            margin: 0;
            color: inherit;
            font-size: inherit;
            font-family: inherit;
            line-height: inherit;
        }

        button,
        input {
            overflow: visible;
        }

        button {
            text-transform: none;
        }

        [type=submit],
        button,
        html [type=button] {
            -webkit-appearance: button;
        }

        ::selection {
            color: #fff;
            background: #1890ff;
        }

        .ant-row {
            flex-flow: row wrap;
        }

        .ant-row,
        .ant-row:after,
        .ant-row:before {
            display: flex;
        }

        .ant-col {
            position: relative;
            max-width: 100%;
            min-height: 1px;
        }

        button,
        div,
        form,
        input {
            margin: 0;
            padding: 0;
        }

        button,
        input {
            font: 16px Verdana, Helvetica, Arial, sans-serif;
        }

        .ant-form-vertical .ant-form-item {
            flex-direction: column;
        }

        .ant-form-vertical .ant-form-item-label>label {
            height: auto;
        }

        .ant-form-vertical .ant-form-item .ant-form-item-control {
            width: 100%;
        }

        .ant-form-vertical .ant-form-item-label {
            padding: 0 0 8px;
            line-height: 1.5715;
            white-space: normal;
            text-align: left;
        }

        .ant-form-vertical .ant-form-item-label>label {
            margin: 0;
        }

        .ant-form-vertical .ant-form-item-label>label:after {
            display: none;
        }

        @media (max-width:575px) {
            .ant-form-item .ant-form-item-label {
                padding: 0 0 8px;
                line-height: 1.5715;
                white-space: normal;
                text-align: left;
            }

            .ant-form-item .ant-form-item-label>label {
                margin: 0;
            }

            .ant-form-item .ant-form-item-label>label:after {
                display: none;
            }

            .ant-form .ant-form-item {
                flex-wrap: wrap;
            }

            .ant-form .ant-form-item .ant-form-item-control,
            .ant-form .ant-form-item .ant-form-item-label {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        .ant-form {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            color: rgba(0, 0, 0, .85);
            font-size: 14px;
            font-variant: tabular-nums;
            line-height: 1.5715;
            list-style: none;
            font-feature-settings: "tnum";
        }

        .ant-form label {
            font-size: 14px;
        }

        .ant-form-item {
            box-sizing: border-box;
            padding: 0;
            color: rgba(0, 0, 0, .85);
            font-size: 14px;
            font-variant: tabular-nums;
            line-height: 1.5715;
            list-style: none;
            font-feature-settings: "tnum";
            margin: 0 0 24px;
            vertical-align: top;
        }

        .ant-form-item-label {
            display: inline-block;
            flex-grow: 0;
            overflow: hidden;
            white-space: nowrap;
            text-align: right;
            vertical-align: middle;
        }

        .ant-form-item-label>label {
            position: relative;
            display: inline-flex;
            align-items: center;
            max-width: 100%;
            height: 32px;
            color: rgba(0, 0, 0, .85);
            font-size: 14px;
        }

        .ant-form-item-label>label.ant-form-item-required:not(.ant-form-item-required-mark-optional):before {
            display: inline-block;
            margin-right: 4px;
            color: #ff4d4f;
            font-size: 14px;
            font-family: SimSun, sans-serif;
            line-height: 1;
            content: "*";
        }

        .ant-form-item-label>label:after {
            content: ":";
            position: relative;
            top: -.5px;
            margin: 0 8px 0 2px;
        }

        .ant-form-item-control {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .ant-form-item-control-input {
            position: relative;
            display: flex;
            align-items: center;
            min-height: 32px;
        }

        .ant-form-item-control-input-content {
            flex: auto;
            max-width: 100%;
        }

        /*! CSS Used from: Embedded */
        .cRHAVy {
            direction: ltr;
            display: inline-block;
        }

        .fmLhgk {
            width: 100%;
            flex: 1 1 0%;
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: start;
            justify-content: flex-start;
            overflow: hidden;
            transition: 0.2s ease-out;
            border-radius: 2px;
            color: var(--text-1);
            position: relative;
            --input-placeholder-color: var(--text-3);
        }

        .fmLhgk.lbank-input-outlined {
            border: 1px solid var(--line-1);
        }

        .fmLhgk.lbank-input-large {
            padding: 12px 8px;
            font-size: 14px;
            font-weight: 400;
            line-height: 16px;
            height: 40px;
        }

        .fmLhgk.lbank-input-large .lbank-input-core {
            font-size: 14px;
            font-weight: 400;
            line-height: 16px;
            height: 40px;
        }

        .fmLhgk.lbank-input-large .lbank-input-addon {
            font-size: 14px;
            height: 40px;
        }

        .fmLhgk:hover {
            background: var(--bg-2);
        }

        .fmLhgk.lbank-input-outlined:hover {
            border: 1px solid var(--line-1);
        }

        .fmLhgk .lbank-input-addon {
            color: var(--text-3);
        }

        * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }

        .jJmRzb {
            margin-left: 6px;
            font-size: 16px;
            opacity: 0;
            cursor: pointer;
            transition: 0.2s ease-out;
        }

        .iYxehh {
            border: none;
            background-color: transparent;
            flex: 1 1 0%;
            outline: none;
            caret-color: var(--link-1);
            padding: 0px;
            height: 100%;
            width: 100%;
            min-width: 40px;
            appearance: none;
        }

        .iYxehh:focus,
        .iYxehh:hover {
            border: none;
            background-color: transparent;
            flex: 1 1 0%;
            outline: none;
        }

        .iYxehh::placeholder {
            color: var(--text-3);
        }

        .iYxehh:disabled::placeholder {
            color: var(--text-4);
        }

        .iYxehh.lbank-input-has-affter {
            padding-right: 10px;
        }

        .jmjGkw {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
        }

        .Hwyfz {
            display: inline-block;
            white-space: nowrap;
        }

        .boVagZ {
            display: inline-flex;
            box-sizing: border-box;
            position: relative;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            user-select: none;
            cursor: pointer;
            border-radius: 4px;
            -webkit-tap-highlight-color: transparent;
            outline: 0px;
            border: 0px;
            white-space: nowrap;
            transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            touch-action: manipulation;
            font-family: inherit;
            padding: 8px 16px;
            height: 32px;
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
        }

        .boVagZ .sc-jfTVlA {
            line-height: 16px;
        }

        .boVagZ.lbank-btn-secondary {
            color: var(--secondary-contrast-text);
            background-color: var(--secondary-main);
        }

        .boVagZ.lbank-btn-secondary.lbank-btn-hovered:hover {
            background-color: var(--secondary-main-hover);
        }

        .boVagZ.lbank-btn-link {
            padding: 0px;
            height: auto;
            background-color: transparent;
            border: none;
            border-radius: 0px;
            color: var(--link-1);
        }

        .boVagZ.lbank-btn-link.lbank-btn-hovered:hover {
            color: var(--link-hover);
            background-color: transparent;
        }

        .boVagZ.lbank-btn-round {
            border-radius: 25px;
        }

        .ezTtez {
            display: inline-flex;
            box-sizing: border-box;
            position: relative;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            user-select: none;
            cursor: pointer;
            border-radius: 4px;
            -webkit-tap-highlight-color: transparent;
            outline: 0px;
            border: 0px;
            white-space: nowrap;
            transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            touch-action: manipulation;
            font-family: inherit;
            padding: 8px 16px;
            height: 32px;
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
        }

        .ezTtez .sc-jfTVlA {
            line-height: 16px;
        }

        .ezTtez.lbank-btn-lg {
            padding: 12px 20px;
            height: 40px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
        }

        .ezTtez.lbank-btn-lg .sc-jfTVlA {
            line-height: 16px;
        }

        .ezTtez.lbank-btn-primary {
            color: var(--primary-contrast-text);
            background-color: var(--primary-main);
        }

        .ezTtez.lbank-btn-primary.lbank-btn-hovered:hover {
            background-color: var(--primary-main-hover);
        }

        .ezTtez.lbank-btn-disabled {
            color: var(--text-4);
            border: none;
            cursor: not-allowed;
            background-color: var(--fill3);
        }

        .ezTtez.lbank-btn-disabled.lbank-btn-hovered:hover {
            background-color: var(--fill3);
            color: var(--text-4);
        }

        .ezTtez.lbank-btn-round {
            border-radius: 25px;
        }

        .dtYEfa {
            position: fixed;
            inset: 0px;
            z-index: 1000;
            height: 100%;
            background-color: var(--mask-layer);
            pointer-events: auto;
        }

        .jSPZVr {
            box-sizing: border-box;
            font-size: 14px;
            list-style: none;
            pointer-events: none;
            position: relative;
            top: 100px;
            width: auto;
            max-width: calc(-32px + 100vw);
            margin: 0px auto;
        }

        .krFwTm {
            position: fixed;
            inset: 0px;
            overflow: auto;
            outline: 0px;
            z-index: 1001;
        }

        .krFwTm.centered {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
        }

        .krFwTm.centered .sc-kiPvrU {
            top: 0px;
            padding-bottom: 0px;
        }

        .liOffY {
            position: relative;
            background-color: var(--bg-1);
            border: 1px solid var(--bg-2);
            border-radius: 12px;
            box-shadow: rgba(0, 0, 0, 0.42) 0px -4px 16px 0px;
            pointer-events: auto;
            color: var(--text-2);
            max-height: calc(-160px + 100vh);
            display: flex;
            flex-direction: column;
            --modal-header-padding: 24px 24px 0 24px;
            --modal-body-padding: 20px 24px;
            --modal-footer-padding: 12px 24px 24px 24px;
        }

        .hpKFYV {
            display: flex;
            align-items: flex-start;
            -webkit-box-pack: justify;
            justify-content: space-between;
            padding: var(--modal-header-padding);
        }

        .gzskgm {
            color: rgb(255, 255, 255);
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1 1 0%;
            font-weight: 500;
            font-size: 18px;
            line-height: 21px;
        }

        .gzskgm .modal-title-wrapper {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
        }

        .iXGZso {
            font-size: 20px;
            cursor: pointer;
            color: var(--text-3);
            transition: color 0.3s;
            margin-left: 12px;
            margin-top: 0.5px;
        }

        .iXGZso:hover {
            color: var(--text-1);
        }

        .fACbgd {
            position: relative;
            padding: var(--modal-body-padding);
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            flex: 1 1 0%;
        }

        .fACbgd.overflowy-auto {
            overflow: hidden auto;
        }

        .bXmcrw .ant-form-item-label {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            padding: 0px;
            margin-bottom: 4px;
            overflow: visible;
        }

        .bXmcrw .ant-form-item .ant-form-item-label>label {
            flex: 1 1 0%;
        }

        .bXmcrw .ant-form-item .ant-form-item-control-input {
            min-height: auto;
        }

        .bXmcrw .ant-form-item .ant-form-item-label {
            margin-bottom: 8px;
            padding: 0px;
        }

        .bXmcrw .ant-form-item .ant-form-item-label>label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
            display: none;
        }

        .bXmcrw .ant-form-item {
            margin-bottom: 32px;
        }

        .iFkrqL .ant-form-item .ant-form-item-label {
            width: 100%;
        }

        .iFkrqL .ant-form-item .ant-form-item-label>label {
            color: var(--text-1);
            font-weight: 400;
            font-size: 14px;
            line-height: 16px;
        }

        .ljSAWN {
            margin-top: 16px;
            margin-bottom: 12px;
            text-align: center;
            color: var(--text-3);
            font-weight: 400;
            font-size: 14px;
            line-height: 16px;
            cursor: pointer;
        }

        .dkAsFB {
            width: 100%;
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            justify-content: space-between;
        }

        .eGYLar {
            flex: 1 1 0%;
        }

        .kcEsQY {
            display: flex;
            width: 100%;
            border-radius: 6px;
            height: 42px !important;
        }

        .kcEsQY.lbank-btn-lg {
            font-size: 14px;
        }

        .iTtoGc {
            margin-top: 8px;
        }

        .iTtoGc .lbank-icon-error {
            margin-left: 0px !important;
            margin-right: 0px !important;
        }

        .iTtoGc .lbank-input-addon {
            margin-left: 14px;
        }

        .iTtoGc .ant-form-item label {
            font-weight: 400;
            font-size: 14px;
            line-height: 16px;
        }

        .iTtoGc .ant-form-item {
            margin-bottom: 24px;
        }

        .iTtoGc .ant-form-item .ant-form-item-label {
            margin-bottom: 8px;
        }

        .iTtoGc .ant-form-item .ant-form-item-label>label {
            color: var(--text-1);
            font-weight: 400;
            font-size: 14px;
            line-height: 16px;
        }

        .iTtoGc .code-btn-submit {
            margin-top: 32px;
            margin-bottom: 4px;
        }

        .text-level-3 {
            color: white !important;
            font-weight: bold !important;
        }



        .btActive {
            border-bottom: 2px solid #fff !important;
        }



        /*! CSS Used from: https://jia.lbank.com/_next/static/css/f729ba3fe5099ef7.css */
        :lang(en-US) {
            font-family: HarmonyOS Sans, sans-serif;
        }

        *,
        :after,
        :before {
            box-sizing: border-box;
        }

        [tabindex="-1"]:focus {
            outline: none !important;
        }

        input[type=text] {
            -webkit-appearance: none;
        }

        input:not([type=range]) {
            touch-action: manipulation;
        }

        input {
            margin: 0;
            color: inherit;
            font-size: inherit;
            font-family: inherit;
            line-height: inherit;
        }

        input {
            overflow: visible;
        }

        ::selection {
            color: #fff;
            background: #1890ff;
        }

        div,
        input {
            margin: 0;
            padding: 0;
        }

        input {
            font: 16px Verdana, Helvetica, Arial, sans-serif;
        }

        /*! CSS Used from: Embedded */
        .fmLhgk {
            width: 100%;
            flex: 1 1 0%;
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: start;
            justify-content: flex-start;
            overflow: hidden;
            transition: 0.2s ease-out;
            border-radius: 2px;
            color: var(--text-1);
            position: relative;
            --input-placeholder-color: var(--text-3);
        }

        .fmLhgk.lbank-input-round {
            border-radius: 20px;
        }

        .fmLhgk.lbank-input-filled {
            background: var(--fill3);
            border: 1px solid var(--fill3);
        }

        .fmLhgk.lbank-input-middle {
            padding: 12px 8px;
            font-size: 14px;
            font-weight: 400;
            line-height: 16px;
            height: 32px;
        }

        .fmLhgk.lbank-input-middle .lbank-input-core {
            font-size: 14px;
            font-weight: 400;
            line-height: 16px;
            height: 32px;
        }

        .fmLhgk.lbank-input-middle .lbank-input-addon {
            font-size: 14px;
            height: 32px;
        }

        .fmLhgk:hover {
            background: var(--bg-2);
        }

        .fmLhgk.lbank-input-filled:hover {
            border: 1px solid var(--line-1);
        }

        .fmLhgk .lbank-input-addon {
            color: var(--text-3);
        }

        .jolQvd.lbank-search .lbank-input-has-before {
            padding-left: 6px;
        }

        * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }

        .jJmRzb {
            margin-left: 6px;
            font-size: 16px;
            opacity: 0;
            cursor: pointer;
            transition: 0.2s ease-out;
        }

        .iYxehh {
            border: none;
            background-color: transparent;
            flex: 1 1 0%;
            outline: none;
            caret-color: var(--link-1);
            padding: 0px;
            height: 100%;
            width: 100%;
            min-width: 40px;
            appearance: none;
        }

        .iYxehh:focus,
        .iYxehh:hover {
            border: none;
            background-color: transparent;
            flex: 1 1 0%;
            outline: none;
        }

        .iYxehh::placeholder {
            color: var(--text-3);
        }

        .iYxehh:disabled::placeholder {
            color: var(--text-4);
        }

        .iYxehh.lbank-input-has-before {
            padding-left: 8px;
        }

        .jmjGkw {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
        }

        .ikqynD {
            padding: 8px 12px;
        }




        /*! CSS Used from: https://jia.lbank.com/_next/static/css/f729ba3fe5099ef7.css */
        :lang(en-US) {
            font-family: HarmonyOS Sans, sans-serif;
        }

        *,
        :after,
        :before {
            box-sizing: border-box;
        }

        [tabindex="-1"]:focus {
            outline: none !important;
        }

        [role=button] {
            touch-action: manipulation;
        }

        ::selection {
            color: #fff;
            background: #1890ff;
        }

        div {
            margin: 0;
            padding: 0;
        }

        /*! CSS Used from: Embedded */
        .iSA-dww {
            width: 100%;
            display: flex;
            flex-direction: column;
            height: auto;
        }

        .iSA-dww .lbank-tabs-tabpane-hidden {
            display: none;
        }

        * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }

        .inVQAP {
            position: fixed;
            inset: 0px;
            overflow: auto;
            outline: 0px;
            z-index: 1001;
        }

        .inVQAP.centered {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
        }

        .inVQAP.centered .sc-cLNonn {
            top: 0px;
            padding-bottom: 0px;
        }

        .eSoBpE {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            color: var(--text-3);
            transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            cursor: pointer;
        }

        .eSoBpE.lbank-tabs-nav-item-active {
            color: var(--text-1);
        }

        .eSoBpE:hover {
            color: var(--text-1);
        }

        .cFVpu {
            width: 100%;
            display: flex;
            flex: 0 0 auto;
            overflow: hidden;
            background-color: var(--bg-1);
            --tabs-bg-color: var(--bg-1);
            --tabs-nav-item-color: var(--text-3);
            --tabs-nav-item-active-color: var(--text-1);
        }

        .cFVpu.lbank-tabs-nav-bottom {
            position: relative;
        }

        .cFVpu.lbank-tabs-nav-bottom::after {
            position: absolute;
            content: "";
            left: 0px;
            right: 0px;
            bottom: 0px;
            border-bottom: 1px solid var(--border-2);
            z-index: 8;
            transform: scaleY(0.5);
        }

        .cFVpu.lbank-tabs-nav-xl {
            height: 44px;
        }

        .cFVpu.lbank-tabs-nav-xl .lbank-tabs-nav-item {
            font-weight: 500;
            font-size: 18px;
            line-height: 21px;
        }

        .jwDBNK {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            flex: 1 1 0%;
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 9;
        }

        .DnQhG {
            width: 100%;
            height: 100%;
            display: flex;
            flex-wrap: nowrap;
            -webkit-box-pack: start;
            justify-content: flex-start;
            -webkit-box-align: center;
            align-items: center;
            position: relative;
            overflow-x: scroll;
            z-index: 9;
            flex: 1 1 0%;
            scrollbar-width: none;
        }

        .DnQhG::-webkit-scrollbar {
            display: none;
        }

        .cdkigK {
            position: absolute;
            height: 2px;
            background-color: var(--text-1);
            border-radius: 1px;
            z-index: 102;
            left: 0px;
        }

        .cdkigK.lbank-tabs-nav-ink-bar-bottom {
            bottom: 0px;
        }

        .fapwiH {
            position: relative;
            flex: 1 1 0%;
        }

        .fapwiH .lbank-tabs-tabpane {
            outline: none;
        }

        .fapwiH .lbank-tabs-tabpane-hidden {
            display: none;
        }

        .cfnnap {
            height: 100%;
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            position: absolute;
            z-index: 100;
            cursor: pointer;
            direction: ltr;
        }

        .cfnnap .mask-item {
            display: block;
            height: 100%;
            width: 20px;
            cursor: pointer;
        }

        .cfnnap.lbank-tabs-nav-has-border {
            bottom: 1px;
            padding-top: 1px;
        }

        .cfnnap.lbank-tabs-nav-mask-left {
            left: 0px;
        }

        .cfnnap.lbank-tabs-nav-mask-left .mask-item {
            background-color: rgba(255, 255, 255, 0);
            background-image: linear-gradient(90deg, var(--tabs-bg-color) 0%, rgba(255, 255, 255, 0) 100%);
        }

        .cfnnap.lbank-tabs-nav-mask-right {
            right: 0px;
        }

        .cfnnap.lbank-tabs-nav-mask-right .mask-item {
            background-color: rgba(255, 255, 255, 0);
            background-image: linear-gradient(270deg, var(--tabs-bg-color) 0%, rgba(255, 255, 255, 0) 100%);
        }

        .cfnnap.lbank-tabs-nav-hidden {
            display: none;
        }

        .dtYEfa {
            position: fixed;
            inset: 0px;
            z-index: 1000;
            height: 100%;
            background-color: var(--mask-layer);
            pointer-events: auto;
        }

        .jjxDuG {
            box-sizing: border-box;
            font-size: 14px;
            list-style: none;
            pointer-events: none;
            position: relative;
            top: 100px;
            width: auto;
            max-width: calc(-32px + 100vw);
            margin: 0px auto;
        }

        .fYlcej {
            position: relative;
            background-color: var(--bg-1);
            border: 1px solid var(--bg-2);
            border-radius: 12px;
            box-shadow: rgba(0, 0, 0, 0.42) 0px -4px 16px 0px;
            pointer-events: auto;
            color: var(--text-2);
            max-height: calc(-160px + 100vh);
            display: flex;
            flex-direction: column;
            --modal-header-padding: 24px 24px 0 24px;
            --modal-body-padding: 20px 24px;
            --modal-footer-padding: 12px 24px 24px 24px;
        }

        .cCporG {
            position: relative;
            padding: var(--modal-body-padding);
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            flex: 1 1 0%;
        }

        .cCporG.overflowy-auto {
            overflow: hidden auto;
        }

        .cCporG.no-title {
            padding-top: 24px;
        }

        .gmEfLG {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            flex-wrap: wrap;
            padding-top: 20px;
            margin-bottom: -8px;
            height: 380px;
            max-height: 418px;
            overflow: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--fill3) transparent;
        }

        .gmEfLG::-webkit-scrollbar {
            width: 5px;
            height: 1px;
        }

        .gmEfLG::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background: var(--fill3);
        }

        .gmEfLG::-webkit-scrollbar-track {
            border-radius: 10px;
            background: transparent;
        }

        .gmEfLG .langItem {
            width: 25%;
            margin-bottom: 8px;
            height: 32px;
            color: var(--text-1);
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
            transition: 0.2s linear;
        }

        .gmEfLG .langItem span {
            display: inline-block;
            cursor: pointer;
            padding: 8px 0px;
        }

        .gmEfLG .langItem span:hover {
            color: var(--text-6);
        }

        .gmEfLG .langItem span.active {
            color: var(--text-6);
        }

        .efLipN {
            padding-top: 20px;
            margin-bottom: -8px;
            height: 380px;
            max-height: 418px;
            overflow: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--fill3) transparent;
        }

        .efLipN::-webkit-scrollbar {
            width: 5px;
            height: 1px;
        }

        .efLipN::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background: var(--fill3);
        }

        .efLipN::-webkit-scrollbar-track {
            border-radius: 10px;
            background: transparent;
        }

        .efLipN .langItem {
            width: 25%;
            float: left;
            margin-bottom: 8px;
            padding: 8px 0px;
            color: var(--text-1);
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
            cursor: pointer;
            transition: 0.2s linear;
        }

        .efLipN .langItem span:hover {
            color: var(--text-6);
        }

        .efLipN .langItem span.active {
            color: var(--text-6);
        }

        .hXLtGb .no-title {
            padding-top: 12px;
        }

        .hXLtGb .lbank-modal-content {
            max-height: unset;
        }

        .hXLtGb .close-icon {
            position: absolute;
            font-size: 20px;
            right: 24px;
            top: 24px;
            color: var(--text-3);
            cursor: pointer;
            z-index: 999;
            transition: 0.2s linear;
        }

        .hXLtGb .close-icon:hover {
            color: var(--text-2);
        }

        .fZvLYQ .lbank-tabs-nav {
            width: auto;
            margin: 0px -24px;
            padding: 0px 24px;
        }

        .fZvLYQ .lbank-tabs-nav-xl {
            height: 48px;
        }

        /* SEO Section Styles */
        .seo-section {
            background: #111212;
            color: #ffffff;
            padding: 60px 0;
            margin-top: 40px;
        }

        .seo-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .seo-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .seo-section h2 {
            font-size: 2rem;
            font-weight: 600;
            margin: 40px 0 20px 0;
            color: #00d4ff;
            border-left: 4px solid #00d4ff;
            padding-left: 20px;
        }

        .seo-section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 30px 0 15px 0;
            color: #0099cc;
        }

        .seo-section h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 25px 0 15px 0;
            color: #00bfff;
        }

        .seo-section h5 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 10px 0;
            color: #87ceeb;
        }

        .seo-section h6 {
            font-size: 1rem;
            font-weight: 600;
            margin: 15px 0 8px 0;
            color: #b0e0e6;
        }

        .seo-section p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #e0e0e0;
            text-align: justify;
        }

        .seo-section ul {
            margin: 20px 0;
            padding-left: 30px;
        }

        .seo-section li {
            margin-bottom: 10px;
            color: #e0e0e0;
            line-height: 1.6;
        }

        .seo-features ul {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .seo-features li {
            background: rgba(0, 212, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #00d4ff;
            transition: all 0.3s ease;
        }

        .seo-features li:hover {
            background: rgba(0, 212, 255, 0.2);
            transform: translateX(10px);
        }

        .user-reviews {
            margin: 40px 0;
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin: 25px 0;
        }

        .review-item {
            background: rgba(0, 153, 204, 0.1);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid rgba(0, 153, 204, 0.3);
            transition: all 0.3s ease;
        }

        .review-item:hover {
            background: rgba(0, 153, 204, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 153, 204, 0.3);
        }

        .review-item h5 {
            color: #00bfff;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .review-item p {
            font-style: italic;
            color: #d0d0d0;
            margin: 0;
        }

        .faq-section {
            margin: 40px 0;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
            margin: 25px 0;
        }

        .faq-item {
            background: rgba(0, 191, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid rgba(0, 191, 255, 0.3);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(0, 191, 255, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
        }

        .faq-item h5 {
            color: #87ceeb;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .faq-item p {
            color: #d0d0d0;
            margin: 0;
        }

        .platform-details {
            margin: 40px 0;
        }

        .image-section {
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
        }

        .seo-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        .seo-image:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
        }

        .image-caption {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #b0e0e6;
            font-style: italic;
        }

        .seo-links {
            margin: 40px 0;
        }

        .seo-links h4 {
            text-align: center;
            margin-bottom: 30px;
        }

        .internal-links,
        .external-links,
        .social-media {
            margin: 30px 0;
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .seo-links h5 {
            color: #00d4ff;
            margin-bottom: 20px;
            text-align: center;
        }

        .seo-links ul {
            list-style: none;
            padding: 0;
        }

        .seo-links li {
            margin-bottom: 12px;
            padding: 10px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .seo-links li:hover {
            background: rgba(0, 212, 255, 0.2);
            transform: translateX(10px);
        }

        .seo-links a {
            color: #87ceeb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .seo-links a:hover {
            color: #00d4ff;
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .seo-section {
                padding: 40px 0;
            }

            .seo-section h1 {
                font-size: 2rem;
            }

            .seo-section h2 {
                font-size: 1.5rem;
            }

            .review-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }

            .seo-features ul {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .seo-section .container {
                padding: 0 15px;
            }

            .seo-section h1 {
                font-size: 1.8rem;
            }

            .review-item,
            .faq-item {
                padding: 15px;
            }
        }




.social-sharing-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    color: white;
    text-align: center;
}

.social-sharing-section h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.social-sharing-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1em;
}

.social-sharing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 140px;
    justify-content: center;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.facebook-share {
    background: #1877f2;
}

.facebook-share:hover {
    background: #166fe5;
}

.twitter-share {
    background: #1da1f2;
}

.twitter-share:hover {
    background: #1a91da;
}

.linkedin-share {
    background: #0077b5;
}

.linkedin-share:hover {
    background: #006097;
}

.whatsapp-share {
    background: #25d366;
}

.whatsapp-share:hover {
    background: #20ba5a;
}

.telegram-share {
    background: #0088cc;
}

.telegram-share:hover {
    background: #0077b3;
}

.copy-link {
    background: #6c757d;
}

.copy-link:hover {
    background: #5a6268;
}

.email-share {
    background: #ea4335;
}

.email-share:hover {
    background: #d33426;
}

.share-counter {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.share-counter p {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
}

#share-count {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-sharing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .social-sharing-section {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .social-sharing-section h5 {
        font-size: 1.1em;
    }
    
    .social-sharing-section p {
        font-size: 1em;
    }
    
    .share-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
}
