* { margin:0; padding:0; box-sizing:border-box; }
html, body { font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif; background: #f0f2f5; min-height:100vh; color:#333; -webkit-tap-highlight-color: transparent; }
.container { max-width:540px; margin:0 auto; background:#f0f2f5; min-height:100vh; padding-bottom:80px; position:relative; }

/* Header */
.header { background:#fff; padding:14px 18px; display:flex; align-items:center; justify-content:space-between; position:sticky; top:0; z-index:100; }
.header-left { display:flex; align-items:center; gap:8px; }
.header-icon { width:40px; height:40px; border-radius:10px; background:linear-gradient(135deg, #07c160, #05a050); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.header-icon img { width:26px; height:26px; }
.header-title { font-size:18px; font-weight:700; color:#333; }
.header-sub { font-size:11px; color:#999; margin-top:2px; }
.header-btn { border:1px solid #07c160; color:#07c160; padding:6px 16px; border-radius:16px; font-size:14px; background:#fff; font-weight:500; }

/* Cards */
.card { background:#fff; border-radius:16px; margin:14px 18px; padding:18px; }
.card-title { font-size:16px; font-weight:700; margin-bottom:8px; }
.card-desc { font-size:13px; color:#666; line-height:1.5; }

/* Steps */
.steps-card { background:#fff; border-radius:16px; margin:14px 18px; padding:20px; }
.steps-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.steps-title { font-size:17px; font-weight:700; }
.steps-sub { font-size:14px; color:#07c160; font-weight:500; }
.step { display:flex; gap:14px; margin-bottom:16px; }
.step-num { width:30px; height:30px; border-radius:50%; background:#07c160; color:#fff; display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:600; flex-shrink:0; }
.step-content { flex:1; }
.step-title { font-size:15px; font-weight:700; color:#333; margin-bottom:5px; }
.step-desc { font-size:13px; color:#999; line-height:1.5; }

/* Function Select */
.func-select { background:#fff; border-radius:20px; margin:14px 18px; padding:32px 20px; text-align:center; box-shadow:0 2px 12px rgba(0,0,0,0.06); }
.func-icon-wrap { width:80px; height:80px; border-radius:20px; background:linear-gradient(135deg, #07c160, #05a050); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; box-shadow:0 4px 16px rgba(7,193,96,0.25); }
.func-icon-wrap img { width:44px; height:44px; filter:brightness(0) invert(1); }
.func-title { font-size:22px; font-weight:700; margin-bottom:10px; color:#333; }
.func-desc { font-size:14px; color:#999; margin-bottom:28px; line-height:1.6; }
.func-list { display:flex; flex-direction:column; gap:14px; }
.func-item { display:flex; align-items:center; gap:14px; padding:16px; border-radius:14px; background:#fafafa; cursor:pointer; transition:all 0.2s; border:1px solid transparent; }
.func-item:hover { background:#f0fdf4; border-color:#07c160; }
.func-item.active { background:#f0fdf4; border-color:#07c160; }
.func-item-icon { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.func-item-icon.check { background:#07c160; color:#fff; font-size:18px; }
.func-item-icon.circle { background:#f0fdf4; color:#07c160; font-size:18px; border:2px solid #07c160; }
.func-item-info { flex:1; text-align:left; }
.func-item-title { font-size:16px; font-weight:700; color:#333; }
.func-item-desc { font-size:13px; color:#999; margin-top:4px; }

/* Form */
.form-group { margin-bottom:18px; }
.form-label { font-size:14px; color:#333; font-weight:600; margin-bottom:7px; display:block; }
.form-input { width:100%; padding:13px 15px; border:1px solid #eee; border-radius:10px; font-size:15px; outline:none; background:#fafafa; }
.form-input:focus { border-color:#07c160; background:#fff; }
textarea.form-input { min-height:90px; resize:vertical; }
.upload-box { display:flex; align-items:center; justify-content:space-between; padding:13px 15px; border:1px dashed #ddd; border-radius:10px; cursor:pointer; }
.upload-box span { font-size:14px; color:#999; }
.upload-btn { color:#07c160; font-size:14px; font-weight:500; }
.img-preview { max-width:100%; max-height:180px; border-radius:8px; margin-top:10px; }
.btn { width:100%; padding:15px; border-radius:10px; border:none; font-size:16px; font-weight:600; cursor:pointer; }
.btn-green { background:linear-gradient(135deg, #07c160, #05a050); color:#fff; }
.btn-green:active { opacity:0.9; }
.btn-outline { background:#fff; border:1px solid #eee; color:#333; }
.tip-box { background:#fff8f0; border:1px solid #ffe0c0; border-radius:10px; padding:14px; margin:14px 18px; font-size:13px; color:#e67e22; line-height:1.6; }

/* Modal */
.modal-overlay { position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.5); z-index:200; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.modal-overlay.active { opacity:1; pointer-events:auto; }
.modal { background:#fff; border-radius:20px; width:92%; max-width:400px; max-height:80vh; overflow-y:auto; padding:28px; position:relative; transform:translateY(20px); transition:transform 0.3s; }
.modal-overlay.active .modal { transform:translateY(0); }
.modal-close { position:absolute; top:16px; right:16px; font-size:24px; color:#999; cursor:pointer; width:32px; height:32px; display:flex; align-items:center; justify-content:center; }
.modal-title { font-size:20px; font-weight:700; text-align:center; margin-bottom:10px; }
.modal-desc { font-size:13px; color:#999; line-height:1.5; margin-bottom:18px; }
.modal-step { display:flex; gap:14px; margin-bottom:18px; }
.modal-step-num { width:26px; height:26px; border-radius:50%; background:#07c160; color:#fff; font-size:13px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-weight:600; }
.modal-step-content { flex:1; }
.modal-step-title { font-size:15px; font-weight:700; }
.modal-step-desc { font-size:13px; color:#999; line-height:1.5; margin-top:3px; }
.modal-btn { width:100%; padding:14px; background:#07c160; color:#fff; border:none; border-radius:10px; font-size:16px; font-weight:600; margin-top:14px; cursor:pointer; }

/* QR Modal */
.qr-modal { text-align:center; padding:28px 24px; }
.qr-modal .modal-title { margin-bottom:18px; font-size:18px; }
.qr-modal img { width:220px; height:220px; margin:18px auto; display:block; }
.qr-desc { font-size:14px; color:#666; line-height:1.6; margin-bottom:18px; text-align:center; }

/* Records */
.stats-card { background:#fff; border-radius:16px; margin:14px 18px; padding:20px; display:flex; justify-content:space-between; align-items:center; }
.stats-label { font-size:14px; color:#666; }
.stats-num { font-size:34px; font-weight:700; color:#333; margin-top:5px; line-height:1; }
.stats-sub { font-size:12px; color:#999; margin-top:5px; }
.stats-right { display:flex; gap:24px; }
.stat-item { text-align:center; }
.stat-item-label { font-size:13px; color:#999; }
.stat-item-num { font-size:22px; font-weight:700; color:#333; margin-top:3px; }
.search-bar { margin:14px 18px; position:relative; }
.search-bar input { width:100%; padding:13px 16px 13px 38px; border:1px solid #eee; border-radius:10px; font-size:15px; background:#fff; outline:none; }
.search-bar::before { content:'\01F50D'; position:absolute; left:14px; top:50%; transform:translateY(-50%); font-size:15px; color:#999; }
.filter-tabs { display:flex; gap:10px; margin:14px 18px; }
.filter-tab { padding:7px 18px; border-radius:16px; border:1px solid #eee; font-size:14px; background:#fff; color:#666; cursor:pointer; }
.filter-tab.active { border-color:#07c160; color:#07c160; background:#f0fdf4; }
.record-item { background:#fff; border-radius:12px; margin:10px 18px; padding:18px; }
.record-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.record-title { font-size:16px; font-weight:700; }
.record-badge { font-size:13px; color:#07c160; background:#f0fdf4; padding:4px 12px; border-radius:10px; }
.record-content { font-size:14px; color:#666; margin-bottom:10px; }
.record-footer { display:flex; justify-content:space-between; align-items:center; font-size:13px; color:#999; margin-top:10px; flex-wrap:wrap; gap:6px; }
.record-footer > span { flex-shrink:0; }
.record-status { font-size:13px; color:#e67e22; font-weight:500; }
.record-status.read { color:#07c160; }
.record-img { max-width:100%; max-height:140px; border-radius:8px; margin-top:10px; }
.empty-state { text-align:center; padding:50px; color:#999; font-size:14px; }
.record-share-btn { padding:7px 18px; border:1px solid #07c160; color:#07c160; background:#fff; border-radius:16px; font-size:14px; cursor:pointer; font-weight:500; }

/* Chat preview in records */
.chat-preview { background:#f5f5f5; padding:14px; border-radius:12px; margin-top:14px; }
.chat-date { text-align:center; font-size:12px; color:#999; margin-bottom:12px; background:rgba(0,0,0,0.05); padding:5px 14px; border-radius:12px; display:inline-block; left:50%; transform:translateX(-50%); position:relative; }
.chat-bubble { display:flex; justify-content:flex-end; align-items:flex-start; gap:10px; }
.chat-avatar { width:34px; height:34px; border-radius:4px; background:#07c160; color:#fff; font-size:13px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-weight:500; }
.chat-msg { max-width:70%; }
.chat-name { font-size:12px; color:#999; text-align:right; margin-bottom:3px; }
.chat-content { background:#95ec69; padding:12px 14px; border-radius:8px; font-size:15px; color:#333; word-break:break-word; line-height:1.5; }
.chat-img { max-width:100%; border-radius:6px; margin-top:6px; display:block; }

/* My page */
.my-card { background:#fff; border-radius:16px; margin:14px 18px; padding:20px; }
.my-card-title { font-size:16px; font-weight:700; margin-bottom:10px; }
.my-card-desc { font-size:14px; color:#666; line-height:1.6; }
.btn-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px; }
.btn-grid button { padding:14px; border-radius:8px; border:1px solid; font-size:14px; cursor:pointer; font-weight:600; }
.btn-grid .btn-green-text { color:#07c160; border-color:#c8e6c9; background:#f0fdf4; }
.btn-grid .btn-red-text { color:#e74c3c; border-color:#f5c6cb; background:#fdf2f2; }
.btn-grid .btn-blue-text { color:#3498db; border-color:#bee5eb; background:#f0f8ff; }
.btn-grid .btn-orange-text { color:#e67e22; border-color:#ffe0c0; background:#fff8f0; }
.btn-grid .btn-outline { color:#666; border-color:#eee; background:#fff; font-weight:500; }
.danger-zone { margin:14px 18px; background:#fff; border-radius:16px; padding:20px; }
.danger-btn { width:100%; padding:15px; border:1px solid #e74c3c; color:#e74c3c; background:#fdf2f2; border-radius:10px; font-size:16px; cursor:pointer; font-weight:600; }

.service-float { position:fixed; bottom:70px; left:50%; transform:translateX(-50%); width:calc(100% - 32px); max-width:508px; background:#1989fa; border-radius:12px; padding:12px 16px; color:#fff; cursor:pointer; z-index:90; box-shadow:0 4px 12px rgba(25,137,250,0.3); }
.service-float-inner { display:flex; align-items:center; gap:12px; }
.service-float-avatar { width:40px; height:40px; border-radius:50%; background:#fff; overflow:hidden; flex-shrink:0; }
.service-float-avatar img { width:100%; height:100%; object-fit:cover; }
.service-float-info { flex:1; }
.service-float-name { font-size:15px; font-weight:600; }
.service-float-sub { font-size:12px; opacity:0.85; margin-top:2px; }
.service-float-arrow { font-size:18px; opacity:0.8; }

/* Bottom Nav */
.bottom-nav { position:fixed; bottom:0; left:50%; transform:translateX(-50%); width:100%; max-width:540px; background:#fff; border-top:1px solid #eee; display:flex; justify-content:space-around; padding:10px 0; z-index:100; }
.nav-item { flex:1; text-align:center; cursor:pointer; padding:5px 0; }
.nav-item .nav-icon { font-size:22px; color:#999; }
.nav-item .nav-label { font-size:12px; color:#999; margin-top:3px; }
.nav-item.active .nav-icon, .nav-item.active .nav-label { color:#07c160; }

/* Kami page */
.kami-box { background:#fff; border-radius:16px; margin:14px 18px; padding:30px 24px; text-align:center; }
.kami-title { font-size:20px; font-weight:700; margin-bottom:10px; }
.kami-desc { font-size:14px; color:#666; margin-bottom:22px; }
.kami-input { width:100%; padding:16px; border:1px solid #eee; border-radius:10px; font-size:17px; text-align:center; letter-spacing:2px; margin-bottom:18px; }
.kami-info { font-size:13px; color:#999; margin-top:14px; line-height:1.6; }
.kami-success { color:#07c160; font-size:15px; margin-top:14px; }
.kami-error { color:#e74c3c; font-size:15px; margin-top:14px; }

/* Page sections */
.page { display:none; }
.page.active { display:block; }

/* Loading */
.loading { text-align:center; padding:50px; color:#999; font-size:14px; }

/* Refresh btn */
.refresh-btn { color:#07c160; font-size:14px; cursor:pointer; font-weight:500; text-align:right; line-height:1.4; }

/* Admin */
.admin-container { max-width:960px; margin:0 auto; padding:24px; }
.admin-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; }
.admin-title { font-size:22px; font-weight:600; }
.admin-card { background:#fff; border-radius:12px; padding:24px; margin-bottom:24px; }
.admin-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(180px, 1fr)); gap:18px; margin-bottom:24px; }
.admin-stat { background:linear-gradient(135deg, #f0fdf4, #e8f5e9); border-radius:12px; padding:20px; text-align:center; }
.admin-stat-num { font-size:26px; font-weight:700; color:#07c160; }
.admin-stat-label { font-size:13px; color:#666; margin-top:5px; }
.admin-table { width:100%; border-collapse:collapse; font-size:14px; }
.admin-table th, .admin-table td { padding:12px; text-align:left; border-bottom:1px solid #eee; }
.admin-table th { color:#999; font-weight:500; font-size:13px; }
.admin-btn { padding:9px 18px; border-radius:6px; border:none; font-size:14px; cursor:pointer; }
.admin-btn-green { background:#07c160; color:#fff; }
.admin-btn-red { background:#e74c3c; color:#fff; }
.admin-btn-blue { background:#3498db; color:#fff; }
.admin-input { padding:9px 14px; border:1px solid #eee; border-radius:6px; font-size:14px; }
.admin-textarea { width:100%; min-height:140px; padding:14px; border:1px solid #eee; border-radius:8px; font-size:14px; font-family:monospace; }

/* Toast */
.toast { position:fixed; top:24px; left:50%; transform:translateX(-50%) translateY(-100px); background:#333; color:#fff; padding:12px 24px; border-radius:8px; font-size:15px; z-index:300; transition:transform 0.3s; }
.toast.show { transform:translateX(-50%) translateY(0); }

/* Kami list */
.kami-list { display:flex; flex-direction:column; gap:10px; }
.kami-item { display:flex; justify-content:space-between; align-items:center; padding:14px; border:1px solid #eee; border-radius:8px; font-size:14px; }
.kami-item.used { background:#f5f5f5; opacity:0.6; }
.kami-item-code { font-family:monospace; font-weight:600; }
.kami-item-info { font-size:12px; color:#999; }

/* Chat page */
#page-chat.active { background:#f5f5f5; min-height:100vh; display:flex; flex-direction:column; }
.chat-header { background:#1989fa; color:#fff; padding:14px 18px; display:flex; align-items:center; gap:14px; position:sticky; top:0; z-index:100; }
.chat-header-back { font-size:24px; cursor:pointer; width:30px; }
.chat-header-info { display:flex; align-items:center; gap:12px; flex:1; }
.chat-header-avatar { width:42px; height:42px; border-radius:50%; overflow:hidden; background:#fff; }
.chat-header-avatar img { width:100%; height:100%; object-fit:cover; }
.chat-header-name { font-size:17px; font-weight:600; }
.chat-header-sub { font-size:12px; opacity:0.8; }
.chat-body { flex:1; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:12px; }
.chat-empty { text-align:center; color:#999; font-size:14px; padding:50px 20px; }
.chat-msg-row { display:flex; flex-direction:column; max-width:78%; }
.chat-msg-row.me { align-self:flex-end; }
.chat-msg-row.other { align-self:flex-start; }
.chat-msg-row.me .chat-bubble-text { background:#95ec69; color:#333; border-radius:12px 12px 4px 12px; }
.chat-msg-row.other .chat-bubble-text { background:#fff; color:#333; border-radius:12px 12px 12px 4px; }
.chat-bubble-text { padding:12px 15px; font-size:15px; line-height:1.5; word-break:break-word; box-shadow:0 1px 2px rgba(0,0,0,0.05); }
.chat-bubble-img { max-width:220px; max-height:220px; border-radius:8px; display:block; margin-bottom:8px; }
.chat-bubble-time { font-size:12px; color:#999; margin-top:5px; text-align:right; }
.chat-system { align-self:center; background:rgba(0,0,0,0.05); color:#999; padding:7px 14px; border-radius:12px; font-size:13px; }
.chat-quick-btns { display:flex; gap:10px; padding:10px 16px; overflow-x:auto; }
.chat-quick-btns button { padding:8px 14px; border:1px solid #eee; border-radius:16px; background:#fff; font-size:14px; color:#666; white-space:nowrap; cursor:pointer; }
.chat-footer { background:#fff; border-top:1px solid #eee; padding:10px 14px; }
.chat-tools { display:flex; gap:18px; margin-bottom:8px; font-size:22px; color:#999; cursor:pointer; }
.chat-input-wrap { display:flex; gap:10px; align-items:center; }
.chat-input { flex:1; padding:11px 15px; border:1px solid #eee; border-radius:20px; font-size:15px; outline:none; background:#fafafa; }
.chat-send-btn { padding:11px 22px; background:#1989fa; color:#fff; border:none; border-radius:20px; font-size:15px; cursor:pointer; }

/* Sticker / Emoji picker */
.emoji-picker { display:flex; flex-wrap:wrap; gap:6px; padding:10px; background:#f8fafc; border-radius:10px; max-height:220px; overflow-y:auto; margin-bottom:8px; border:1px solid #eee; justify-content:flex-start; }
.sticker-item { width:56px; height:56px; object-fit:contain; cursor:pointer; border-radius:8px; border:2px solid transparent; background:#fff; padding:2px; transition:all 0.15s; }
.sticker-item:hover { border-color:#07c160; transform:scale(1.15); box-shadow:0 2px 8px rgba(7,193,96,0.2); }
.sticker-item:active { transform:scale(1.05); }

/* Form modal */
.form-modal { max-height:85vh; overflow-y:auto; padding:0; }
.form-modal .modal-title { padding:24px 28px 0; text-align:left; font-size:20px; }
.form-modal .modal-close { top:22px; right:22px; }
.form-modal-body { padding:14px 28px 28px; }
.form-modal .form-group { margin-bottom:16px; }
.form-modal .form-label { font-size:14px; color:#333; font-weight:600; margin-bottom:7px; display:block; }
.form-modal .form-input { width:100%; padding:13px 15px; border:1px solid #eee; border-radius:10px; font-size:15px; outline:none; background:#fafafa; }
.form-modal .form-input:focus { border-color:#07c160; background:#fff; }
.form-modal textarea.form-input { min-height:90px; resize:vertical; }
.form-modal .upload-box { display:flex; align-items:center; justify-content:space-between; padding:13px 15px; border:1px dashed #ddd; border-radius:10px; cursor:pointer; }
.form-modal .upload-btn { color:#333; font-size:14px; border:1px solid #ccc; padding:5px 12px; border-radius:4px; background:#fff; }
.upload-tip { font-size:13px; color:#999; margin-top:7px; }
.btn-orange { background:linear-gradient(135deg, #ff8c00, #e67e22); color:#fff; }
.btn-red { background:linear-gradient(135deg, #e74c3c, #c0392b); color:#fff; }

/* Admin chat workbench */
.cs-workbench { display:grid; grid-template-columns:280px 1fr; gap:18px; min-height:520px; }
.cs-session-list { background:#fff; border-radius:12px; border:1px solid #eee; overflow:hidden; }
.cs-session-header { padding:14px 18px; border-bottom:1px solid #eee; font-weight:600; font-size:15px; }
.cs-session-item { padding:14px 18px; border-bottom:1px solid #f5f5f5; cursor:pointer; display:flex; justify-content:space-between; align-items:center; }
.cs-session-item:hover, .cs-session-item.active { background:#f0f8ff; }
.cs-session-name { font-size:14px; font-weight:500; }
.cs-session-preview { font-size:13px; color:#999; margin-top:3px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:180px; }
.cs-session-badge { background:#e74c3c; color:#fff; font-size:12px; padding:3px 7px; border-radius:10px; min-width:20px; text-align:center; }
.cs-chat-area { background:#fff; border-radius:12px; border:1px solid #eee; display:flex; flex-direction:column; min-height:520px; }
.cs-chat-header { padding:14px 18px; border-bottom:1px solid #eee; font-weight:600; font-size:15px; }
.cs-chat-body { flex:1; padding:18px; overflow-y:auto; display:flex; flex-direction:column; gap:14px; min-height:320px; }
.cs-chat-footer { padding:14px; border-top:1px solid #eee; display:flex; gap:10px; }
.cs-chat-input { flex:1; padding:11px 15px; border:1px solid #eee; border-radius:8px; font-size:14px; }
.cs-chat-send { padding:11px 20px; background:#1989fa; color:#fff; border:none; border-radius:8px; cursor:pointer; }
.cs-empty { text-align:center; color:#999; padding:70px 20px; font-size:14px; }
.cs-msg-row { display:flex; flex-direction:column; max-width:78%; }
.cs-msg-row.admin { align-self:flex-end; }
.cs-msg-row.user { align-self:flex-start; }
.cs-msg-row.admin .cs-msg-bubble { background:#1989fa; color:#fff; border-radius:12px 12px 4px 12px; }
.cs-msg-row.user .cs-msg-bubble { background:#f5f5f5; color:#333; border-radius:12px 12px 12px 4px; }
.cs-msg-bubble { padding:12px 15px; font-size:15px; line-height:1.5; word-break:break-word; }
.cs-msg-time { font-size:12px; color:#999; margin-top:5px; text-align:right; }
.cs-order-tabs { display:flex; gap:10px; margin-bottom:18px; }
.cs-order-tab { padding:9px 18px; border-radius:6px; border:1px solid #eee; background:#fff; font-size:14px; cursor:pointer; }
.cs-order-tab.active { background:#1989fa; color:#fff; border-color:#1989fa; }
.cs-order-table { width:100%; border-collapse:collapse; font-size:14px; }
.cs-order-table th, .cs-order-table td { padding:11px; text-align:left; border-bottom:1px solid #eee; }
.cs-order-table th { color:#999; font-weight:500; font-size:13px; }
.cs-status-badge { padding:5px 12px; border-radius:12px; font-size:13px; }
.cs-status-pending { background:#fff8f0; color:#e67e22; }
.cs-status-approved { background:#f0fdf4; color:#07c160; }
.cs-status-rejected { background:#fdf2f2; color:#e74c3c; }

/* Pagination */
.page-btn { padding:7px 14px; border:1px solid #eee; border-radius:6px; background:#fff; font-size:14px; cursor:pointer; color:#333; min-width:34px; text-align:center; }
.page-btn:hover { border-color:#07c160; color:#07c160; }
.page-btn.active { background:#07c160; color:#fff; border-color:#07c160; }

/* Detail modal */
#detailModal .form-modal { max-width:500px; }
#detailModal .detail-field { background:#f9f9f9; border-radius:8px; padding:18px; margin-bottom:10px; }
#detailModal .detail-label { font-size:13px; color:#999; margin-bottom:5px; }
#detailModal .detail-value { font-size:15px; }
