/* ===== 提款申请 页面 (.wp-*) ===== */
.withdraw-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);
    overflow-y: auto;
}

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

.wp-topbar {
    position: sticky;
    top: 0;
    z-index: 2;
    height: 54px;
    background: #ff4941;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 4px;
    flex: 0 0 auto;
}

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

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

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

.wp-body {
    padding: 12px;
}

.wp-input-wrap {
    background: #fff;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 0 14px;
}

.wp-input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 12px 0;
    font-size: 14px;
    background: transparent;
    color: #333;
}

.wp-input::placeholder {
    color: #999;
}

.wp-textarea {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 12px 0;
    font-size: 14px;
    background: transparent;
    color: #333;
    resize: none;
    font-family: inherit;
}

.wp-textarea::placeholder {
    color: #999;
}

.wp-line {
    font-size: 13px;
    color: #555;
    padding: 6px 2px;
}

.wp-line b {
    font-weight: 600;
    color: #333;
}

.wp-line.wp-red {
    color: #e53935;
    font-weight: 600;
}

.wp-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 2px;
    font-size: 14px;
    color: #e53935;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.wp-radio input {
    display: none;
}

.wp-radio-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #e53935;
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
}

.wp-radio input:checked + .wp-radio-dot::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px;
    width: 6px; height: 6px;
    background: #e53935;
    border-radius: 50%;
}

.wp-divider {
    height: 1px;
    background: #ff4941;
    opacity: 0.55;
    margin: 8px 0 14px;
}

.wp-submit {
    width: 100%;
    height: 44px;
    background: #ff4941;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.wp-submit:active {
    opacity: 0.85;
}

.wp-tips {
    background: #fff;
    border-radius: 4px;
    padding: 14px 16px;
    margin-top: 16px;
    font-size: 13px;
    color: #444;
    line-height: 1.9;
}

.wp-tips-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.wp-tips-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: wp-tip;
}

.wp-tips-list li {
    counter-increment: wp-tip;
}

.wp-tips-list li::before {
    content: counter(wp-tip) "、";
}
