.home-recent-detect .card-header { border-bottom: none; }
.recent-detect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 16px 18px;
}
.recent-detect-card {
  border: 1px solid #e8ebf0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  min-width: 0;
}
.recent-detect-card-head {
  position: relative;
  padding: 14px 14px 10px;
  background: linear-gradient(135deg, #f3f7ff 0%, #fff 70%);
  overflow: hidden;
}
.recent-detect-watermark {
  position: absolute;
  right: 8px;
  top: 2px;
  font-size: 42px;
  font-weight: 700;
  color: rgb(17 98 232 / 8%);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.recent-detect-card-title {
  position: relative;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.recent-detect-card-sub {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  background: #f5f7fa;
  font-size: 12px;
  color: #888;
  border-top: 1px solid #eef1f5;
  border-bottom: 1px solid #eef1f5;
}
.recent-detect-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recent-detect-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-bottom: 1px solid #f0f2f5;
  font-size: 13px;
  line-height: 1.35;
}
.recent-detect-list li:last-child { border-bottom: none; }
.recent-detect-domain {
  color: #444;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.recent-detect-domain:hover { color: #1162e8; }
.recent-detect-value {
  flex-shrink: 0;
  color: #3cb371;
  font-weight: 500;
}
.recent-detect-empty {
  justify-content: center !important;
  color: #aaa !important;
}
@media (max-width: 1199px) {
  .recent-detect-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .recent-detect-grid { grid-template-columns: 1fr; }
}
