/* Extracted from app/index/view/my/withdrawal_log.html for Vue SPA */


        .wl-page {
            min-height: 100vh;
            padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
            background: #FFFFFF;
        }

        .wl-nav {
            position: sticky;
            top: 0;
            z-index: 30;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255,255,255,.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(213,222,228,.65);
        }
        .wl-nav .back {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: #F0F2F4;
            color: var(--app-ink, #1C1C1C);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 22px;
            line-height: 1;
            flex-shrink: 0;
        }

        .wl-nav .meta .k {
            font-size: 10px;
            letter-spacing: .12em;
            color: #B8860B;
            font-weight: 600;
        }
        .wl-nav .meta .t {
            font-size: 16px;
            font-weight: 800;
            font-family: var(--app-display, sans-serif);
            line-height: 1.2;
            color: var(--app-ink, #1C1C1C);
        }

        .wl-dash {
            margin: 12px 16px 0;
            padding: 18px 16px 16px;
            border-radius: 22px;
            background: linear-gradient(145deg, #1C1C1C 0%, #2A2A2A 55%, #1C1C1C 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(0,0,0,.18);
        }
        .wl-dash::before {
            content: "";
            position: absolute;
            top: -40px;
            right: -30px;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,209,0,.32) 0%, transparent 70%);
            pointer-events: none;
        }
        .wl-dash-top {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px;
            position: relative;
            z-index: 1;
        }
        .wl-dash-top .big .k {
            font-size: 11px;
            letter-spacing: .06em;
            color: rgba(255,255,255,.55);
        }
        .wl-dash-top .big .v {
            margin-top: 4px;
            font-size: 36px;
            font-weight: 800;
            font-family: var(--app-display, sans-serif);
            line-height: 1;
            color: #FFD100;
        }
        .wl-dash-top .big .v small {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,.7);
            margin-left: 2px;
        }
        .wl-dash-top .side {
            text-align: right;
            max-width: 46%;
        }
        .wl-dash-top .side .k {
            font-size: 10px;
            color: rgba(255,255,255,.5);
            letter-spacing: .04em;
        }
        .wl-dash-top .side .v {
            margin-top: 4px;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            line-height: 1.35;
        }
        .wl-dash-top .side .n {
            margin-top: 3px;
            font-size: 11px;
            color: #FFD100;
            font-weight: 600;
        }
        .wl-dash-row {
            margin-top: 14px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
            position: relative;
            z-index: 1;
        }
        .wl-dash-row .cell {
            padding: 10px 8px;
            border-radius: 12px;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.1);
            text-align: center;
        }
        .wl-dash-row .cell .v {
            font-size: 18px;
            font-weight: 800;
            font-family: var(--app-display, sans-serif);
            color: #fff;
            line-height: 1.1;
        }
        .wl-dash-row .cell .k {
            margin-top: 3px;
            font-size: 10px;
            color: rgba(255,255,255,.5);
            letter-spacing: .04em;
        }

        .wl-rule {
            margin: 12px 16px 0;
            padding: 14px 16px;
            border-radius: 16px;
            background: #FFFBEB;
            border: 1px solid rgba(255,209,0,.35);
        }
        .wl-rule .t {
            font-size: 12px;
            font-weight: 700;
            color: #B8860B;
            letter-spacing: .04em;
            margin-bottom: 6px;
        }
        .wl-rule .d {
            font-size: 12px;
            line-height: 1.65;
            color: var(--app-sub, #666);
        }

        .wl-sec {
            margin: 18px 16px 8px;
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 10px;
        }
        .wl-sec .t {
            font-size: 13px;
            font-weight: 700;
            color: var(--app-sub, #666);
            letter-spacing: .04em;
        }
        .wl-sec .s {
            font-size: 11px;
            color: var(--app-muted, #999);
        }

        .wl-timeline { margin: 0 16px; }
        .wl-item {
            display: flex;
            gap: 14px;
            position: relative;
            cursor: pointer;
        }
        .wl-item:active .card { background: #FFFBEB; }
        .wl-item .rail {
            width: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
        }
        .wl-item .dot {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            z-index: 1;
            font-size: 11px;
            font-weight: 800;
            line-height: 1;
        }
        .wl-item .dot.ok {
            background: rgba(31,122,69,.12);
            border: 2px solid #1f7a45;
            color: #1f7a45;
        }
        .wl-item .dot.fail {
            background: rgba(192,57,43,.1);
            border: 2px solid #c0392b;
            color: #c0392b;
        }
        .wl-item .dot.wait {
            background: rgba(255,209,0,.14);
            border: 2px solid #B8860B;
            color: #B8860B;
            font-size: 10px;
        }
        .wl-item .line {
            flex: 1;
            width: 2px;
            min-height: 12px;
            background: rgba(213,222,228,.85);
        }
        .wl-item:last-child .line { display: none; }
        .wl-item .card {
            flex: 1;
            margin-bottom: 14px;
            padding: 14px;
            border-radius: 14px;
            background: #fff;
            border: 1px solid rgba(213,222,228,.65);
            box-shadow: 0 4px 14px rgba(0,0,0,.03);
            transition: background .15s ease;
        }
        .wl-item .card-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 8px;
        }
        .wl-item .card-top .title {
            margin: 0;
            font-size: 14px;
            font-weight: 700;
            font-family: var(--app-display, sans-serif);
            color: var(--app-ink, #1C1C1C);
            line-height: 1.35;
            word-break: break-all;
        }
        .wl-item .amt {
            flex-shrink: 0;
            font-size: 16px;
            font-weight: 800;
            font-family: var(--app-display, sans-serif);
            color: #c0392b;
            white-space: nowrap;
        }
        .wl-item .amt small {
            font-size: 12px;
            font-weight: 600;
            margin-left: 2px;
        }
        .wl-item .meta {
            margin-top: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 11px;
            color: var(--app-muted, #999);
            line-height: 1.5;
        }
        .wl-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .02em;
        }
        .wl-badge.ok {
            background: rgba(31,122,69,.1);
            color: #1f7a45;
        }
        .wl-badge.fail {
            background: rgba(192,57,43,.1);
            color: #c0392b;
        }
        .wl-badge.wait {
            background: rgba(255,209,0,.18);
            color: #8B6914;
        }

        .wl-empty {
            margin: 0 16px;
            padding: 48px 20px;
            text-align: center;
            border-radius: 16px;
            background: #fff;
            border: 1px solid rgba(213,222,228,.65);
        }
        .wl-empty .ico {
            width: 56px;
            height: 56px;
            margin: 0 auto 14px;
            border-radius: 16px;
            background: #F0F2F4;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .wl-empty .ico svg {
            width: 26px;
            height: 26px;
            stroke: #B8860B;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .wl-empty p {
            margin: 0;
            font-size: 13px;
            line-height: 1.65;
            color: var(--app-muted, #999);
        }

        .wl-tip {
            margin: 14px 16px 20px;
            padding: 12px 14px;
            border-radius: 12px;
            background: #F7F8FA;
            font-size: 11px;
            line-height: 1.65;
            color: var(--app-muted, #999);
        }
        .wl-tip strong { color: #B8860B; font-weight: 700; }

        .wl-dock {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 30;
            padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
            background: rgba(255,255,255,.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(213,222,228,.65);
            display: flex;
            gap: 10px;
        }
        .wl-dock .btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 800;
            font-family: var(--app-display, sans-serif);
            cursor: pointer;
            border: 0;
            text-decoration: none;
        }
        .wl-dock .sub {
            background: #F0F2F4;
            color: var(--app-ink, #1C1C1C);
        }
        .wl-dock .main {
            flex: 1.2;
            background: linear-gradient(135deg, #FFE566 0%, #FFD100 55%, #E6B800 100%);
            color: #1C1C1C;
            box-shadow: 0 6px 18px rgba(255,209,0,.32);
        }
        .wl-dock .btn:active { opacity: .92; transform: scale(.99); }

        .wd-detail-row {
            display: flex;
            align-items: flex-start;
            padding: 9px 0;
            border-bottom: 1px solid #f0f3f5;
            text-align: left;
        }
        .wd-detail-row:last-child { border-bottom: 0; }
        .wd-detail-row .lab {
            width: 88px;
            flex-shrink: 0;
            font-size: 13px;
            color: #8a9aa5;
        }
        .wd-detail-row .val {
            flex: 1;
            font-size: 13px;
            color: #152530;
            word-break: break-all;
        }
        .layui-m-layerchild h3 {
            background: #1C1C1C !important;
            color: #FFD100 !important;
        }
