/* ===== 动态行（留资/发布） ===== */
.dynamic-row {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; background: #f8f9fb; border: 1px solid #eee;
  border-radius: 8px; transition: var(--transition);
}
.dynamic-row:hover { border-color: #d0d7e0; background: #fff; }
.dynamic-row .row-label {
  width: 28px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dynamic-row select {
  padding: 6px 8px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 13px; background: #fff; transition: var(--transition);
  cursor: pointer; width: 70px;
}
.dynamic-row select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(24,144,255,0.1); }
.dynamic-row .row-field { flex: unset; }
.dynamic-row .row-field input {
  width: 100px; padding: 6px 8px; border: 1px solid var(--border);
  border-radius: 6px; font-size: 13px; background: #fff;
  transition: var(--transition);
}
.dynamic-row .row-field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(24,144,255,0.1); }
.dynamic-row .row-del {
  width: 24px; height: 24px; border-radius: 6px; border: none;
  background: #f0f0f0; color: #999; font-size: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.dynamic-row .row-del:hover { background: #ff4d4f; color: #fff; }

/* ===== 客资详情展开行 ===== */
.lead-detail-row td { padding: 0 !important; border-bottom: none; }
.lead-detail-content { display: none; padding: 16px 20px; background: #fafbfc; }
.lead-detail-row.open .lead-detail-content { display: block; animation: detailSlide 0.2s ease-out; }
@keyframes detailSlide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.lead-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
}
.lead-detail-section {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 12px 14px;
}
.lead-detail-title {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  margin-bottom: 10px;
}
.lead-detail-field label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 3px;
}
.lead-follow-item {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.lead-follow-item:last-child { border-bottom: none; }
.lead-follow-meta {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 3px;
}
.lead-follow-text {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
.lead-follow-replies {
  margin: 6px 0 0 12px;
  padding-left: 10px;
  border-left: 2px solid #e8e8e8;
}
.lead-follow-reply {
  padding: 4px 0;
  font-size: 12px;
  line-height: 1.4;
}
.lead-follow-reply .lead-follow-meta { color: #bbb; }
.lead-follow-reply div { color: #555; }
.lead-info-row {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
}
.lead-info-row:last-child { border-bottom: none; }
.lead-info-label {
  color: #999;
  width: 70px;
  flex-shrink: 0;
}
