.home-recent-detect .card-header { border-bottom: none; }
.recent-detect-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 24px 16px 32px;
  font-size: 14px;
}
.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 {
  padding: 0;
  border-bottom: 1px solid #f0f2f5;
  font-size: 13px;
  line-height: 1.35;
  min-width: 0;
}
.recent-detect-row-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.recent-detect-row-link:hover .recent-detect-domain {
  color: #1162e8;
}
.recent-detect-list li:last-child { border-bottom: none; }
.recent-detect-domain {
  flex: 1 1 0%;
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.recent-detect-domain:hover { color: #1162e8; }
.recent-detect-value {
  flex: 0 0 auto;
  max-width: 42%;
  color: #3cb371;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}
.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; }
}

/* 手机端采用完整桌面版等比缩放，不能再叠加单列响应式布局。 */
html.site-view-mobile-pc .recent-detect-grid {
  grid-template-columns: repeat(4, 1fr);
}
