/* 请求详情弹窗（后台日志页） */
.detail-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.detail-mask { position: absolute; inset: 0; background: rgba(8, 32, 24, .5); }
.detail-box { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-hover); width: 100%; max-width: 780px; max-height: 82vh; display: flex; flex-direction: column; animation: riseIn .22s ease both; z-index: 1; }
.detail-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.detail-head h3 { margin: 0; font-size: 15px; }
.detail-close { background: none; border: none; font-size: 24px; line-height: 1; color: var(--muted); cursor: pointer; padding: 0 4px; transition: color var(--t), transform var(--t); }
.detail-close:hover { color: var(--text); transform: scale(1.15); }
.detail-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; padding: 14px 20px 0; }
.dm-item { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 8px 12px; }
.dm-item span { display: block; color: var(--muted); font-size: 11.5px; margin-bottom: 2px; }
.dm-item b { font-size: 13px; }
.detail-body { margin: 12px 20px 20px; padding: 14px; background: #0f231b; color: #c9f5e0; border-radius: 10px; overflow: auto; font-size: 12.5px; line-height: 1.6; white-space: pre-wrap; word-break: break-word; font-family: ui-monospace, Consolas, "SF Mono", Menlo, monospace; }