atnum-bigpic,
.atnum-bigpic {
  display: block;
  position: relative;
  overflow: hidden;
}
atnum-bigpic .atnum-bigpic-img,
.atnum-bigpic .atnum-bigpic-img {
  width: 100%;
  max-height: calc(100vh - 52px);
  object-fit: cover;
  opacity: 0;
}
atnum-bigpic .atnum-bigpic-img.loaded,
.atnum-bigpic .atnum-bigpic-img.loaded {
  opacity: 1;
}
atnum-bigpic .atnum-bigpic-img.loaded ~ .atnum-bigpic-inside,
.atnum-bigpic .atnum-bigpic-img.loaded ~ .atnum-bigpic-inside {
  -webkit-animation: slide-up 1s;
  -webkit-animation-fill-mode: both;
  animation: slide-up 1s;
  animation-fill-mode: both;
}
atnum-bigpic .atnum-bigpic-inside,
.atnum-bigpic .atnum-bigpic-inside {
  position: absolute;
  top: 1em;
  left: 1em;
  max-width: 450px;
  padding: 0.7em 0.8em 0;
  border-radius: 3px;
  transform: translateY(0%);
  opacity: 0;
  background-color: rgba(51, 0, 0, 0.75);
  color: #dcdcdc;
  box-shadow: 0 0 10px 2px #1e1e1e;
  border: 1px solid rgba(255, 102, 102, 0.3);
  font-weight: normal;
}
atnum-bigpic .atnum-bigpic-inside a,
.atnum-bigpic .atnum-bigpic-inside a {
  color: #75b9f5;
}
@-webkit-keyframes slide-up {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
