/* order-booking.css — 预订系统样式（适老化：大字、大按钮、清晰） */
.ob-section{margin:16px 0}
.ob-section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.ob-section-title{font-size:17px;font-weight:700;color:#1a1a1a}
.ob-btn-add{background:#f97316;color:#fff;border:none;padding:8px 14px;border-radius:8px;font-size:14px;font-weight:600}
.ob-empty{text-align:center;color:#999;padding:24px 0;font-size:14px}
.ob-card{background:#fff;border-radius:10px;padding:12px 14px;margin-bottom:10px;border:1px solid #eee}
.ob-card-row{display:flex;justify-content:space-between;align-items:center}
.ob-no{font-size:13px;color:#666;font-weight:600}
.ob-status{font-size:12px;padding:2px 8px;border-radius:10px}
.ob-st-pending{background:#fff7ed;color:#c2410c}
.ob-st-paid{background:#f0fdf4;color:#16a34a}
.ob-meta{margin-top:6px;font-size:13px;color:#888}
.ob-amount{font-size:15px;font-weight:700;color:#c2410c}
.ob-card-actions{margin-top:8px;display:flex;gap:8px}
.ob-btn-sm{font-size:13px;padding:5px 10px;border-radius:6px;border:1px solid #ddd;background:#fff;color:#555}
.ob-btn-pay{background:#07c160;color:#fff;border-color:#07c160}
.ob-btn-del{color:#e53e3e;border-color:#fed7d7}
.ob-paid-tag{font-size:12px;color:#16a34a;font-weight:600}
/* modal */
.ob-modal{background:#fff;border-radius:14px;width:100%;max-width:400px;max-height:90vh;overflow-y:auto;padding:18px 16px 20px;position:relative}
.ob-modal-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}
.ob-modal-title{font-size:18px;font-weight:800;color:#c2410c}
.ob-close{font-size:26px;color:#999;background:none;border:none;line-height:1;cursor:pointer}
.ob-wizard-bar{display:flex;align-items:center;justify-content:center;gap:4px;margin-bottom:14px}
.ob-ws{display:flex;flex-direction:column;align-items:center;gap:2px}
.ob-ws-dot{width:26px;height:26px;border-radius:50%;background:#e5e5e5;color:#999;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700}
.ob-ws.active .ob-ws-dot{background:#f97316;color:#fff}
.ob-ws-label{font-size:11px;color:#999}
.ob-ws.active .ob-ws-label{color:#c2410c;font-weight:600}
.ob-ws-line{width:16px;height:2px;background:#e5e5e5}
.ob-pane{display:none}
.ob-pane.active{display:block}
.ob-form-group{margin-bottom:12px}
.ob-form-group label{display:block;font-size:13px;font-weight:600;color:#555;margin-bottom:4px}
.ob-form-group input,.ob-form-group select{width:100%;padding:10px;border:1px solid #ddd;border-radius:8px;font-size:16px;box-sizing:border-box}
.ob-radio-options{display:flex;flex-wrap:wrap;gap:6px}
.ob-radio-opt{padding:8px 12px;border:1px solid #ddd;border-radius:8px;font-size:14px;cursor:pointer;background:#fff}
.ob-radio-opt.active{background:#fff7ed;border-color:#f97316;color:#c2410c;font-weight:600}
.ob-radio-opt input{display:none}
.ob-grid2{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.ob-hint{font-size:12px;color:#999;margin-top:4px}
.ob-note-box{background:#f5f0ec;border-radius:6px;padding:6px 10px;font-size:12px;color:#666;margin-top:4px}
.ob-quote{background:#fff7ed;border-radius:8px;padding:10px;margin:8px 0;text-align:center}
.ob-quote-total{font-size:20px;font-weight:800;color:#c2410c}
.ob-quote-deposit{font-size:13px;color:#888;margin-top:2px}
.ob-stepbar{display:flex;gap:8px;margin-top:14px}
.ob-btn-main{flex:1;padding:12px;border-radius:8px;background:#f97316;color:#fff;border:none;font-size:16px;font-weight:600}
.ob-btn-sec{flex:1;padding:12px;border-radius:8px;background:#fff;color:#666;border:1px solid #ddd;font-size:16px}
.ob-conf-row{display:flex;justify-content:space-between;padding:6px 0;border-bottom:1px solid #f5f5f5;font-size:14px}
.ob-conf-row b{color:#1a1a1a}
.ob-conf-total{display:flex;justify-content:space-between;padding:10px 0;margin-top:6px;font-size:16px;font-weight:700}
.ob-pay-amount{color:#c2410c;font-size:20px}
.ob-conf-sub{font-size:12px;color:#999;text-align:center;margin-top:6px}
.ob-psg-row{display:flex;gap:4px;margin-bottom:6px}
.ob-psg-row input,.ob-psg-row select{padding:8px;border:1px solid #ddd;border-radius:6px;font-size:14px}
.ob-psg-name{flex:1}
.ob-psg-gender{width:60px}
.ob-psg-phone{flex:1}
.ob-detail-row{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px solid #f5f5f5;font-size:14px}
.ob-detail-row b{color:#1a1a1a}
.ob-detail-section{font-size:14px;font-weight:700;color:#c2410c;margin:12px 0 4px}
.ob-add-psg{font-size:13px;color:#f97316;background:none;border:1px dashed #f97316;padding:6px;border-radius:6px;margin-top:4px;cursor:pointer}

/* 订单状态颜色（v2.1 新增） */
.ob-st-pending{color:#2563eb;background:#dbeafe}
.ob-st-confirm{color:#c2410c;background:#fed7aa}
.ob-st-paid{color:#16a34a;background:#dcfce7}
.ob-st-livein{color:#059669;background:#d1fae5}
.ob-st-done{color:#6b7280;background:#f3f4f6}
.ob-st-cancel{color:#dc2626;background:#fee2e2}
.ob-status{display:inline-block;padding:2px 8px;border-radius:10px;font-size:11px;font-weight:600}

/* 必录项与校验错误（v2.2 新增） */
.ob-req{color:#dc2626;font-weight:700}
.ob-input-err{border-color:#dc2626 !important;background:#fef2f2 !important}
.ob-input-err:focus{outline:none;box-shadow:0 0 0 3px rgba(220,38,38,.12)}

/* ===== 支付页（v2.2 新增）===== */
.pay-box{padding:6px 2px}
.pay-amount-wrap{text-align:center;padding:18px 0 14px}
.pay-amount-label{font-size:13px;color:#888;margin-bottom:6px}
.pay-amount{font-size:40px;font-weight:800;color:#c2410c;line-height:1.1}
.pay-amount small{font-size:20px;font-weight:700;margin-right:2px}
.pay-orderno{font-size:12px;color:#999;margin-top:8px}
.pay-summary{background:#fafafa;border-radius:10px;padding:12px 14px;margin:10px 0 16px}
.pay-summary .ob-detail-row{border-bottom:1px dashed #ececec;padding:7px 0}
.pay-summary .ob-detail-row:last-child{border-bottom:none}
.pay-methods{margin-top:6px}
.pay-method{display:flex;align-items:center;gap:12px;width:100%;padding:15px 14px;border:2px solid #eee;border-radius:12px;background:#fff;margin-bottom:10px;cursor:pointer;transition:.15s;text-align:left}
.pay-method:active{transform:scale(.99)}
.pay-method.wx{border-color:#07c160}
.pay-method .pm-icon{width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:20px;flex:0 0 36px}
.pay-method.wx .pm-icon{background:#07c160;color:#fff}
.pay-method.mock .pm-icon{background:#f3f4f6;color:#888}
.pay-method .pm-body{flex:1;min-width:0}
.pay-method .pm-title{font-size:16px;font-weight:700;color:#1a1a1a}
.pay-method .pm-sub{font-size:12px;color:#999;margin-top:2px}
.pay-method .pm-arrow{color:#ccc;font-size:18px}
.pay-tip{font-size:12px;color:#999;text-align:center;margin-top:14px;line-height:1.6}
.pay-tip-warn{background:#fffbeb;border:1px solid #fde68a;color:#92400e;border-radius:8px;padding:10px 12px;font-size:12px;line-height:1.6;margin-top:12px}
.pay-loading{text-align:center;padding:44px 0}
.pay-spinner{width:38px;height:38px;border:3px solid #f0f0f0;border-top-color:#07c160;border-radius:50%;margin:0 auto 16px;animation:paySpin .8s linear infinite}
@keyframes paySpin{to{transform:rotate(360deg)}}
.pay-loading-text{font-size:14px;color:#666}
.pay-ok{text-align:center;padding:26px 0 10px}
.pay-ok-icon{width:72px;height:72px;border-radius:50%;background:#dcfce7;color:#16a34a;font-size:40px;line-height:72px;margin:0 auto 16px;animation:payPop .35s cubic-bezier(.34,1.56,.64,1)}
@keyframes payPop{0%{transform:scale(.3);opacity:0}100%{transform:scale(1);opacity:1}}
.pay-ok-title{font-size:20px;font-weight:800;color:#16a34a;margin-bottom:6px}
.pay-ok-sub{font-size:13px;color:#888;margin-bottom:18px}
.pay-ok-card{background:#f8fdf9;border:1px solid #dcfce7;border-radius:10px;padding:12px 14px;text-align:left;margin-bottom:16px}
.pay-next{font-size:13px;color:#666;line-height:1.9;text-align:left;background:#fafafa;border-radius:10px;padding:12px 14px;margin-bottom:14px}
.pay-next b{color:#c2410c}
.pay-btns{display:flex;gap:10px}
.pay-btns button{flex:1}
.pay-fail-icon{width:72px;height:72px;border-radius:50%;background:#fee2e2;color:#dc2626;font-size:40px;line-height:72px;margin:0 auto 16px;text-align:center}
