/* 数据急救台 */
.safety-backdrop { position: fixed; inset: 0; z-index: 10002; background: rgba(10,10,20,.68); display: flex; align-items: center; justify-content: center; padding: 24px; }
.safety-backdrop.hidden { display: none; }
.safety-panel { width: min(820px, 92vw); max-height: 82vh; overflow: auto; background: #fff; color: #2c2c2b; border-radius: 18px; box-shadow: 0 18px 60px rgba(0,0,0,.35); padding: 22px; }
.safety-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.safety-head h3 { margin: 0 0 4px; font-size: 20px; }
.safety-head p { margin: 0; color: #7d7a75; font-size: 13px; line-height: 1.5; }
.safety-close { border: none; background: #f0efed; border-radius: 10px; width: 36px; height: 36px; cursor: pointer; color: #555; }
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.safety-section { border: 1px solid #e6e5e3; border-radius: 14px; padding: 14px; background: #f9f8f7; }
.safety-section h4 { margin: 0 0 10px; font-size: 15px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.safety-list { display: grid; gap: 8px; }
.safety-item { background: #fff; border: 1px solid #e6e5e3; border-radius: 10px; padding: 10px; }
.safety-item-title { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.safety-item-meta { color: #7d7a75; font-size: 12px; line-height: 1.45; word-break: break-all; }
.safety-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.safety-btn { border: 1px solid #e6e5e3; background: #fff; color: #2c2c2b; border-radius: 8px; padding: 6px 10px; font-size: 12px; cursor: pointer; }
.safety-btn:hover { background: #f0efed; }
.safety-btn.danger { color: #e56458; border-color: #fce9e7; background: #fff7f6; }
.safety-empty { color: #7d7a75; font-size: 13px; padding: 12px; background: #fff; border-radius: 10px; border: 1px dashed #e6e5e3; }
@media (max-width: 760px) { .safety-grid { grid-template-columns: 1fr; } }