.pub-card{
  display:flex; gap:16px; align-items:flex-start; padding:16px; border-radius:12px;
  border:1px solid #e6e6e6; background:#fff; margin-bottom:16px;
}
.pub-thumb{
  flex:0 0 260px; max-width:260px;
  display:grid; place-items:center;  /* ✅ 水平+垂直 居中 */
  height:160px;
  background:#fff;
  border-radius:8px; overflow:hidden;
}
.pub-thumb img{
  max-width:100%; max-height:100%;
  width:auto; height:auto;
  object-fit:contain; object-position:center;
  display:block;
}

.pub-body{ flex:1 1 auto; min-width:0; }
.pub-title{ color: #000; margin:0 0 6px; font-size:1.1rem; line-height:1.35; }
.author.me strong{ font-weight:700; color:#111; }
.pub-authors{color: #777; font-size: 0.8em;}
/* .author sup{ font-size:1.2em; } */
.pub-note{ font-size:0.9em; margin-top:4px; }
/* .pub-note sup{ font-size:1.2em; } */
.pub-venue{ color:#777; font-style:italic; margin-bottom:8px; font-size: 0.8em; }
.pub-links{ display:flex; flex-wrap:wrap; gap:8px; }
.pub-link{ padding:6px 10px; border-radius:8px; border:1px solid #d9d9d9; text-decoration:none; }
@media (max-width:700px){
  .pub-card{ flex-direction:column; }
  .pub-thumb{ max-width:100%; }
}