/* 以下为漫画模块样式补充 */

.module-manga .manga-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.manga-item {
  display: flex;
  flex-direction: column;
  border:1px solid #f0f0f0;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
}
.manga-thumb {
  width:100%;
  height:180px;
  overflow:hidden;
}
.manga-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.manga-body {
  padding:12px;
}
.manga-title {
  font-size:18px;
  font-weight:700;
  color:#0b1220;
  margin-bottom:6px;
}
.manga-excerpt {
  font-size:14px;
  color:#475569;
  margin-bottom:10px;
}
.manga-meta {
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:#7b8794;
  margin-bottom:10px;
}
.manga-read {
  display:inline-block;
  color:#0b66ff;
  text-decoration:none;
  font-weight:600;
}
.manga-read:hover {
  text-decoration:underline;
}
