.common-video {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 76;
  display: none;
}
.common-video .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.common-video .video-panel .close {
  margin-left: auto;
  width: fit-content;
  user-select: none;
  cursor: pointer;
  margin-bottom: 20px;
}
.common-video .video-panel .close img {
  filter: brightness(0) invert(1);
  transition: var(--duration);
}
.common-video .video-panel .close:hover img {
  filter: none;
}
.common-video .video-panel video {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 76vh;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.common-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  --h: 40px;
}
.common-pagination .btn {
  width: 97px;
  height: var(--h);
  background: rgba(235, 235, 235, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}
.common-pagination .btn:hover {
  background-color: #00a0e9;
}
.common-pagination .btn:hover span {
  color: #fff;
}
.common-pagination .btn:hover img {
  filter: brightness(0) invert(1);
}
.common-pagination .btn span {
  font-weight: 400;
  font-size: var(--font14);
  color: #666666;
  line-height: 1;
  transition: var(--duration);
}
.common-pagination .btn img {
  margin-top: 0.2em;
  transition: var(--duration);
}
.common-pagination .btn.prev img {
  margin-right: 10px;
}
.common-pagination .btn.next img {
  margin-left: 10px;
}
.common-pagination .normal {
  width: 40px;
  height: 40px;
  background: rgba(235, 235, 235, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font14);
  color: #666666;
  transition: var(--duration);
  margin-right: 6px;
}
.common-pagination .normal:hover,
.common-pagination .normal.active {
  background-color: #00a0e9;
  color: #fff;
}
.common-pagination .point {
  color: #999999;
  margin-right: 6px;
}
.common-pagination .total {
  margin-left: max(0.16rem, 10px);
  font-size: var(--font14);
  color: #666666;
  line-height: 1;
  white-space: nowrap;
}
.common-pagination .jumper {
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  margin-left: max(0.28rem, 10px);
}
.common-pagination .jumper .current {
  width: 60px;
  height: 40px;
  background-color: #fff;
  border: 1px solid rgba(235, 235, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.common-pagination .jumper .current .jumper-text {
  margin-right: max(6px, 0.16rem);
  font-weight: 400;
  font-size: var(--font16);
  color: #666666;
}
.common-pagination .jumper .page-list {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  background-color: rgba(235, 235, 235, 0.75);
  color: #666666;
  min-width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  max-height: 150px;
  overflow-y: auto;
  display: none;
}
.common-pagination .jumper .page-list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #ccc;
  border-radius: 10px;
}
.common-pagination .jumper .page-list::-webkit-scrollbar-thumb {
  background-color: #00a0e9;
  border-radius: 10px;
}
.common-pagination .jumper .page-list .item {
  font-size: var(--font16);
  color: #666;
  text-align: center;
  margin-bottom: 5px;
  user-select: none;
  cursor: pointer;
}
.common-pagination .jumper .page-list .item:hover {
  background-color: #00a0e9;
  color: #fff;
}
.common-pagination .jumper .page-list .item:last-child {
  margin-bottom: 0;
}
.common-pagination .go-page {
  margin-left: 7px;
  width: 40px;
  height: 40px;
  color: #666;
  background: rgba(235, 235, 235, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--duration);
  cursor: pointer;
  user-select: none;
}
.common-pagination .go-page:hover {
  background-color: #00a0e9;
  color: #fff;
}
@media (max-width: 768px) {
  .common-pagination {
    flex-wrap: wrap;
  }
  .common-pagination .btn,
  .common-pagination .normal {
    margin-bottom: 6px;
  }
}
