/* ===== 充值/提现 记录页 (.wl-*) ===== */

.wlog-page {
    position: fixed;
    inset: 0;
    background: #f2f3f5;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
}

.wlog-page[hidden] { display: none; }

.wl-topbar {
    height: 54px;
    background: #ff4941;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 4px;
    flex: 0 0 auto;
}

.wl-back, .wl-home {
    width: 36px; height: 36px;
    background: transparent; border: 0; padding: 0; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
}

.wl-back svg, .wl-home svg {
    width: 22px; height: 22px;
}

.wl-title {
    flex: 1;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

.wl-summary {
    background: linear-gradient(135deg, #ff6a5e 0%, #ff4941 100%);
    color: #fff;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wl-summary-label {
    font-size: 13px;
    opacity: 0.9;
}

.wl-summary-value {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.wl-summary-sub {
    font-size: 12px;
    opacity: 0.85;
}

.wl-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.wl-item {
    background: #fff;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #f0f0f0;
}

.wl-item-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.wl-item-icon.recharge {
    background: linear-gradient(135deg, #ff9a62, #ff6a3c);
}

.wl-item-icon.withdraw {
    background: linear-gradient(135deg, #4cc3a5, #21a37e);
}

.wl-item-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wl-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.wl-item-meta {
    font-size: 12px;
    color: #999;
}

.wl-item-right {
    text-align: right;
}

.wl-item-amt {
    font-size: 16px;
    font-weight: 700;
    color: #e53935;
}

.wl-item-amt.neg { color: #2aa7ea; }

.wl-item-status {
    font-size: 12px;
    color: #2ab94e;
    margin-top: 2px;
}

.wl-item-status.pending { color: #d38f00; }
.wl-item-status.fail { color: #888; }

.wl-empty {
    text-align: center;
    color: #999;
    padding: 80px 0 40px;
    font-size: 14px;
}
