@charset "UTF-8";
body.view-read {
  background: #111;
  color: #ddd;
}
body.view-read.is-light {
  background: #f4f5f7;
  color: #222;
}
.read-page {
  max-width: min(920px, 100%);
  min-width: 0;
  margin: 0 auto;
  padding: 12px 12px 80px;
}
.read-pic {
  width: 100%;
}
.read-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  min-width: 0;
  margin-bottom: 12px;
  font-size: 13px;
  color: #999;
}
.read-crumb__name {
  margin: 0;
  min-width: 0;
  font-size: 16px;
  overflow-wrap: anywhere;
}
.read-stage {
  min-height: 40vh;
}
.read-pic img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #222;
}
body.view-read.is-light .read-pic img {
  background: #e5e6eb;
}
.read-end,
.read-off {
  margin: 16px 0;
  padding: 16px;
  text-align: center;
  background: #1a1a1a;
  border-radius: 8px;
}
.read-tools {
  position: fixed;
  right: 8px;
  top: 50%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-50%);
}
.read-tools__btn {
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: #222;
  color: #ddd;
  text-align: center;
  cursor: pointer;
}
.read-tools__btn.is-on,
.read-tools__btn:hover {
  background: var(--site-accent);
  color: #fff;
}
.read-catalog {
  position: absolute;
  right: 56px;
  top: 0;
  width: 240px;
  max-height: 70vh;
  overflow: auto;
  padding: 12px;
  background: #1a1a1a;
  border-radius: 8px;
}
.read-catalog__link {
  display: block;
  overflow: hidden;
  padding: 6px 0;
  color: #ddd;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.read-guess {
  margin-top: 24px;
}
.read-guess.is-off .read-guess__list {
  display: none;
}
.read-guess__list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.read-guess__list img {
  width: 80px;
  height: 106px;
  object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 720px) {
  .read-page {
    max-width: none;
    padding: 8px 0 80px;
  }
  .read-crumb {
    padding: 0 12px;
  }
  .read-tools {
    top: auto;
    bottom: 12px;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: center;
    transform: none;
  }
  .read-catalog {
    right: 8px;
    bottom: 56px;
    top: auto;
  }
}
