/* ===== 账户充值 弹窗 ===== */
.recharge-modal {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: #f4f5f7;
    max-width: 480px;
    margin: 0 auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.recharge-modal[hidden] { display: none; }

.rc-topbar {
    height: 54px;
    background: #ff5a4c;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 12px;
    flex: 0 0 auto;
}
.rc-back,
.rc-home {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.rc-back svg,
.rc-home svg { width: 24px; height: 24px; stroke: #fff; }

.rc-title {
    flex: 1;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
}

.rc-body {
    padding: 28px 20px;
    flex: 1;
}
.rc-method {
    font-size: 14px;
    color: #444;
    padding: 0 4px 14px;
}
.rc-hr {
    border: 0;
    border-top: 1px solid #ffb5ae;
    margin: 0 0 22px;
}
.rc-service-btn {
    width: 100%;
    height: 48px;
    background: #ff5a4c;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.15s ease;
}
.rc-service-btn:active { background: #e64a3d; }

.rc-tip {
    background: #fff;
    border-radius: 4px;
    padding: 18px 20px 20px;
    margin-top: 18px;
    color: #444;
}
.rc-tip h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}
.rc-tip p {
    font-size: 13px;
    color: #555;
    line-height: 1.85;
}
