.recharge-records-app.platform-wrapper.index-app {
    padding-bottom: 108px;
}

.recharge-records-app .header-content.index-topbar-inner.idx-topbar__row.prapp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
}

.recharge-records-app .prapp-back-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #00805b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    -webkit-tap-highlight-color: transparent;
}

.recharge-records-app .prapp-back-btn:hover {
    background: rgba(0, 128, 91, 0.06);
    border-color: rgba(0, 128, 91, 0.25);
}

.recharge-records-app .prapp-back-btn svg {
    width: 20px;
    height: 20px;
    margin-left: -1px;
}

.recharge-records-app .prapp-header-titles {
    text-align: center;
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 0;
}

.recharge-records-app .prapp-header-slot {
    width: 42px;
    height: 42px;
    pointer-events: none;
}

.recharge-records-app .prapp-header-eyebrow {
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.45);
}

.recharge-records-app .prapp-header-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3.6vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #0f172a;
    line-height: 1.1;
}

.prapp-main {
    padding-top: 100px;
}

.prapp-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prapp-lede {
    margin: 0;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-secondary);
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.prapp-board {
    position: relative;
    border-radius: 18px;
    padding: 0 0 14px;
    background: var(--hz-bg-card);
    border: 1px solid rgba(17, 17, 17, 0.07);
    box-shadow:
        0 12px 36px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    overflow: hidden;
}

.prapp-board::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 3px;
    background: var(--hz-accent-gradient);
    pointer-events: none;
}

.prapp-board-head {
    padding: 12px 14px 8px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.prapp-board-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    font-weight: 400;
    color: var(--text-primary);
}

.prapp-board-body {
    padding: 10px 10px 4px;
}

.prapp-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 6px;
}

.profit-card {
    display: block;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.profit-card.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.pr-row__marker {
    display: none;
}

.pr-row__sheet {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.07);
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.profit-card:hover .pr-row__sheet {
    border-color: rgba(0, 128, 91, 0.18);
    box-shadow: 0 4px 14px rgba(0, 128, 91, 0.12);
}

.pr-row__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    align-items: center;
    padding: 10px 12px;
    min-width: 0;
}

.pr-row__detail {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
    min-width: 0;
}

.pr-row__category {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.pr-row__stamp {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    flex-shrink: 0;
}

.pr-row__stamp::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-right: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
    vertical-align: 0.15em;
}

.pr-row__sum {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
}

.pr-row__sum-hint {
    display: none;
}

.pr-row__sum-val {
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--success);
    line-height: 1.2;
}

.prapp-zero {
    margin: 6px 12px 0;
    padding: 22px 16px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px dashed rgba(0, 128, 91, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 244, 245, 0.98) 100%);
}

.prapp-zero.hidden {
    display: none;
}

.prapp-zero-ring {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 3px solid rgba(0, 128, 91, 0.12);
    border-top-color: var(--hz-accent-primary);
    opacity: 0.85;
}

.prapp-zero-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
}

.prapp-zero-text {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.prapp-pager {
    margin: 12px 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f4f4f5 0%, #ececee 100%);
    border: 1px solid rgba(17, 17, 17, 0.07);
}

.prapp-pager.hidden {
    display: none;
}

.prapp-pager-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(17, 17, 17, 0.09);
    background: #ffffff;
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.prapp-pager-btn:hover:not(:disabled) {
    background: rgba(0, 128, 91, 0.06);
    border-color: rgba(0, 128, 91, 0.22);
    transform: translateY(-1px);
}

.prapp-pager-btn:disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

.prapp-pager-btn svg {
    width: 15px;
    height: 15px;
}

.prapp-pager-meta {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

.prapp-pager-cur {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hz-accent-primary);
}

.prapp-pager-of {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.prapp-pager-tot {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.loading {
    position: fixed;
    inset: 0;
    background: rgba(238, 240, 244, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading.active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 128, 91, 0.14);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: prapp-spin 0.75s linear infinite;
    box-shadow: 0 0 20px rgba(0, 128, 91, 0.16);
}

@keyframes prapp-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 640px) {
    .prapp-main {
        padding-top: 96px;
    }

    .recharge-records-app .header-content.index-topbar-inner.idx-topbar__row.prapp-header-inner {
        padding-left: max(10px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
        gap: 6px;
    }

    .recharge-records-app .prapp-header-slot {
        width: 40px;
        height: 40px;
    }

    .recharge-records-app .prapp-back-btn {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .prapp-board-head {
        padding: 11px 12px 7px;
    }

    .prapp-board-body {
        padding: 8px 8px 2px;
    }

    .pr-row__grid {
        padding: 9px 10px;
        gap: 8px 10px;
    }

    .prapp-zero {
        margin: 6px 10px 0;
        padding: 18px 14px;
    }

    .prapp-pager {
        margin: 10px 8px 0;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 12px;
    }

    .prapp-pager-meta {
        order: -1;
        width: 100%;
        justify-content: center;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(17, 17, 17, 0.07);
    }

    .prapp-pager-btn {
        flex: 1;
        justify-content: center;
        min-width: calc(50% - 5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .profit-card,
    .prapp-back-btn,
    .prapp-pager-btn,
    .spinner {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

body.cp-shell {
    --accent-primary: #00805b;
    --accent-gradient: linear-gradient(135deg, #00805b 0%, #00a878 100%);
}

body.cp-shell .recharge-records-app {
    --hz-accent-primary: #00805b;
    --hz-accent-gradient: linear-gradient(135deg, #00805b 0%, #00a878 100%);
}

.recharge-records-app.rr-shell.platform-wrapper.index-app {
    padding-bottom: 108px;
}

.recharge-records-app.rr-shell .prf-top-inner {
    max-width: 520px;
}

.recharge-records-app.rr-shell .prv-main {
    padding-top: 96px;
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
}

.recharge-records-app.rr-shell .prv-root {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 14px 28px;
}

.recharge-records-app.rr-shell .prv-hero {
    border-radius: 20px;
    padding: 20px 20px 36px;
    background:
        radial-gradient(ellipse 90% 120% at 20% 0%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
        linear-gradient(145deg, #047857 0%, #059669 42%, #0d9488 100%);
    box-shadow:
        0 16px 36px rgba(4, 120, 87, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.recharge-records-app.rr-shell .prv-hero-label {
    margin: 0 0 8px;
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.recharge-records-app.rr-shell .prv-hero-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(240, 253, 250, 0.92);
    max-width: 34em;
}

.recharge-records-app.rr-shell .prv-slab {
    margin-top: -22px;
    position: relative;
    z-index: 1;
}

.recharge-records-app.rr-shell .prv-column {
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.95) inset;
    overflow: hidden;
}

.recharge-records-app.rr-shell .prv-column-head {
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.recharge-records-app.rr-shell .prv-column-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3.6vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.07em;
    color: var(--text-primary);
}

.recharge-records-app.rr-shell .prv-column-body {
    padding: 0;
    background: #ffffff;
}

.recharge-records-app.rr-shell .prv-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 6px;
    padding: 14px 14px 16px;
}

.recharge-records-app.rr-shell .profit-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1), transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, border-color 0.22s ease;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.recharge-records-app.rr-shell .profit-card.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.recharge-records-app.rr-shell .profit-card:hover {
    border-color: rgba(0, 128, 91, 0.22);
    box-shadow: 0 10px 28px rgba(0, 128, 91, 0.12);
}

.recharge-records-app.rr-shell .pr-row__marker {
    display: block;
    width: 5px;
    flex-shrink: 0;
    align-self: stretch;
    min-height: 3.5rem;
    background: var(--hz-accent-gradient);
    border-radius: 0;
}

.recharge-records-app.rr-shell .pr-row__marker::after {
    display: none;
}

.recharge-records-app.rr-shell .pr-row__sheet {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
    transition: background 0.2s ease;
}

.recharge-records-app.rr-shell .profit-card:hover .pr-row__sheet {
    background: #fafafa;
}

.recharge-records-app.rr-shell .pr-row__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 12px;
    row-gap: 8px;
    padding: 14px 16px 14px 14px;
    min-height: 4.5rem;
}

.recharge-records-app.rr-shell .pr-row__detail {
    grid-column: 1;
    grid-row: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.recharge-records-app.rr-shell .pr-row__category {
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.recharge-records-app.rr-shell .pr-row__stamp {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: #f4f4f5;
    border: 1px solid rgba(15, 23, 42, 0.07);
    font-variant-numeric: tabular-nums;
}

.recharge-records-app.rr-shell .pr-row__stamp::before {
    display: none;
}

.recharge-records-app.rr-shell .pr-row__sum {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(0, 128, 91, 0.09) 0%, rgba(0, 168, 120, 0.06) 100%);
    border: 1px solid rgba(0, 128, 91, 0.14);
    min-width: 5.5rem;
}

.recharge-records-app.rr-shell .pr-row__sum-hint {
    display: block;
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hz-accent-primary);
    opacity: 0.88;
    line-height: 1.2;
}

.recharge-records-app.rr-shell .pr-row__sum-val {
    color: var(--hz-accent-primary);
    font-size: 1.0625rem;
    font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.recharge-records-app.rr-shell .pr-row__category--status.st-complete {
    color: var(--success);
}

.recharge-records-app.rr-shell .pr-row__category--status.st-processing {
    color: var(--warning);
}

.recharge-records-app.rr-shell .pr-row__category--status.st-rejected {
    color: var(--danger);
}

.recharge-records-app.rr-shell .rr-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 0 16px 14px 14px;
}

.recharge-records-app.rr-shell .rr-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    background: var(--hz-accent-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 128, 91, 0.22);
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.recharge-records-app.rr-shell .rr-upload-btn:hover:not(:disabled) {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.recharge-records-app.rr-shell .rr-upload-btn:disabled,
.recharge-records-app.rr-shell .rr-upload-btn--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.2);
    pointer-events: none;
}

.recharge-records-app.rr-shell .rr-upload-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.recharge-records-app.rr-shell .rr-bonus {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hz-accent-primary);
    background: linear-gradient(145deg, rgba(0, 128, 91, 0.1) 0%, rgba(0, 168, 120, 0.06) 100%);
    border: 1px solid rgba(0, 128, 91, 0.2);
}

.recharge-records-app.rr-shell .rr-bonus svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.recharge-records-app.rr-shell .prv-empty {
    margin: 14px 16px 16px;
    padding: 26px 18px;
    border-radius: 14px;
    text-align: center;
    background: #f4f4f5;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.recharge-records-app.rr-shell .prv-empty.hidden {
    display: none;
}

.recharge-records-app.rr-shell .prv-empty-symbol {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 128, 91, 0.12) 0%, rgba(0, 168, 120, 0.06) 100%);
    border: 1px solid rgba(0, 128, 91, 0.18);
}

.recharge-records-app.rr-shell .prv-empty-title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.recharge-records-app.rr-shell .prv-empty-desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.recharge-records-app.rr-shell .prv-pagebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
}

.recharge-records-app.rr-shell .prv-pagebar.hidden {
    display: none;
}

.recharge-records-app.rr-shell .prv-pagebar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    background: var(--hz-accent-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 128, 91, 0.28);
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.recharge-records-app.rr-shell .prv-pagebar-btn:hover:not(:disabled) {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.recharge-records-app.rr-shell .prv-pagebar-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(0.15);
}

.recharge-records-app.rr-shell .prv-pagebar-btn svg {
    width: 15px;
    height: 15px;
}

.recharge-records-app.rr-shell .prv-pagebar-core {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.recharge-records-app.rr-shell .prv-pagebar-cur {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.recharge-records-app.rr-shell .prv-pagebar-of {
    font-size: 0.5625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.recharge-records-app.rr-shell .prv-pagebar-tot {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (max-width: 640px) {
    .recharge-records-app.rr-shell .prv-main {
        padding-top: 92px;
    }

    .recharge-records-app.rr-shell .prv-root {
        padding: 0 10px 22px;
    }

    .recharge-records-app.rr-shell .prv-hero {
        padding: 18px 16px 34px;
        border-radius: 18px;
    }

    .recharge-records-app.rr-shell .prv-column-head {
        padding: 14px 14px 10px;
    }

    .recharge-records-app.rr-shell .prv-list {
        padding: 12px 10px 14px;
        gap: 10px;
    }

    .recharge-records-app.rr-shell .profit-card {
        border-radius: 14px;
    }

    .recharge-records-app.rr-shell .pr-row__marker {
        width: 4px;
    }

    .recharge-records-app.rr-shell .pr-row__grid {
        padding: 12px 12px 12px 10px;
        column-gap: 10px;
        min-height: 0;
    }

    .recharge-records-app.rr-shell .pr-row__sum {
        min-width: 5rem;
        padding: 8px 10px;
    }

    .recharge-records-app.rr-shell .pr-row__sum-val {
        font-size: 1rem;
    }

    .recharge-records-app.rr-shell .prv-pagebar {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 12px 14px;
    }

    .recharge-records-app.rr-shell .prv-pagebar-core {
        order: -1;
        width: 100%;
        justify-content: center;
        padding-bottom: 8px;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .recharge-records-app.rr-shell .prv-pagebar-btn {
        flex: 1;
        justify-content: center;
        min-width: calc(50% - 6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .recharge-records-app.rr-shell .profit-card {
        transition-duration: 0.01ms !important;
    }
}
