@charset "UTF-8";
/* 学术集刊内容区专用。置于原站 CSS 后，不依赖 JavaScript。 */
.journal-gallery { width: 100%; padding: 6px 0 24px; }
.journal-gallery, .journal-gallery * { box-sizing: border-box; }
.journal-gallery .journal-gallery__list {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 24px; margin: 0; padding: 0; list-style: none;
}
.journal-gallery .journal-gallery__item { min-width: 0; margin: 0; padding: 0; list-style: none; }
.journal-gallery .journal-gallery__card {
  display: flex; flex-direction: column; height: 100%; padding: 20px 18px 0;
  background: #fff; border: 1px solid #e5dcd0; color: #40372f;
  text-decoration: none; transition: border-color .25s, box-shadow .25s, transform .25s;
}
.journal-gallery .journal-gallery__cover {
  display: flex; align-items: center; justify-content: center; width: 100%;
  height: 250px; overflow: hidden; background: #fff;
}
.journal-gallery .journal-gallery__cover img {
  display: block; width: 100%; height: 100%; max-width: 100%;
  object-fit: contain; object-position: center; transition: transform .3s;
}
.journal-gallery .journal-gallery__title {
  display: flex; justify-content: center; align-items: center;
  min-height: 67px; margin: 17px 0 0; padding: 14px 0;
  border-top: 1px solid #eee6dd; color: inherit;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 18px; font-weight: 500; line-height: 1.6; text-align: center;
  overflow-wrap: anywhere;
}
.journal-gallery .journal-gallery__card:hover {
  border-color: #a67e56; color: #8f5c2a; transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(92, 63, 35, .10);
}
.journal-gallery .journal-gallery__card:hover img { transform: scale(1.025); }
.journal-gallery .journal-gallery__card:focus,
.journal-gallery .journal-gallery__card:focus-visible { outline: 2px solid #8f5c2a; outline-offset: 4px; }
@media (max-width: 1200px) {
  .journal-gallery .journal-gallery__list { gap: 20px 16px; }
  .journal-gallery .journal-gallery__card { padding: 16px 12px 0; }
  .journal-gallery .journal-gallery__cover { height: 210px; }
  .journal-gallery .journal-gallery__title { font-size: 16px; }
}
@media (max-width: 900px) {
  .journal-gallery .journal-gallery__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .journal-gallery { padding-top: 2px; }
  .journal-gallery .journal-gallery__list { gap: 16px 12px; }
  .journal-gallery .journal-gallery__card { padding: 12px 8px 0; }
  .journal-gallery .journal-gallery__cover { height: 180px; }
  .journal-gallery .journal-gallery__title { min-height: 66px; margin-top: 10px; padding: 10px 0; font-size: 15px; }
}
@media (max-width: 360px) {
  .journal-gallery .journal-gallery__cover { height: 150px; }
  .journal-gallery .journal-gallery__title { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .journal-gallery .journal-gallery__card, .journal-gallery .journal-gallery__cover img { transition: none; }
  .journal-gallery .journal-gallery__card:hover, .journal-gallery .journal-gallery__card:hover img { transform: none; }
}
