.ohot {
  overflow: hidden
}

#lunboMain {
  display: grid;
  grid-template: 473px 80px / 1fr;
  background-color: #f6f6f6;
}

#lunboMainViewImg {
  max-height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* #lunboMainView {
  display: flex;
  align-items: center;
  justify-content: center;
} */

#lunboMainView {
  display: grid;
  grid-template: 100% / 50px 1fr 50px;
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
}

#lunboMainView video {
  height: 100%;
  max-width: 100%;
  grid-column: 1/-1;
  grid-row: 1;
  display: inline-block;
}

#lunboMainView img {
  max-height: 100%;
  max-width: 100%;
  grid-column: 1/-1;
  grid-row: 1;
  display: inline-block;
}

.lunboImgItem {
  display: inline-block;
  margin-right: 4px;
  /* 图片透明度,模拟未选中的遮罩 */
  opacity: 0.5;
  width: 116px;
  height: 65px;
}

.lunboImgItem img {
  /* 保持比例缩放并裁剪 */
  object-fit: cover;
  /* 圆角 */
  /* border-radius: 10px; */
  /* 不可选中 */
  width: 116px;
  max-height: 65px;
  user-select: none;
}

.lunboImgItemVideoMask {
  margin-left: -100% !important;
  opacity: 0.8;
}

.lunboItemViewFull {
  grid-column: 1/-1;
  grid-row: 3;
}

.lunboItemViewOff {
  height: 83px;
}

.lunboImgItem img:hover {
  cursor: grab;
}

.lunboImgItemSelected {
  opacity: 1;
}

#lunboItem {
  padding: 4px 0px;
}

/* 滚动条样式 */
.lunboItemView::-webkit-scrollbar {
  width: 4px;
  height: 13px;
}

.lunboItemView::-webkit-scrollbar-track {
  background-color: rgb(220, 220, 220);
}

.lunboItemView::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
}

.lunboItemButton {
  width: 50px;
  height: 64px;
  z-index: 999;
}

.lunboFullItemButtonLeft {
  grid-column: 1/3;
  grid-row: 2;
}

.lunboFullItemButtonRight {
  grid-column: 3/-1;
  grid-row: 2;
}

.lunboFullItemButtonLeft:hover {
  cursor: url("/wp-content/plugins/lunbo/static/img/left.png"), auto;
}

.lunboFullItemButtonRight:hover {
  cursor: url("/wp-content/plugins/lunbo/static/img/right.png"), auto;
}

.lunboItemButtonLeft {
  grid-column: 1;
  grid-row: 1;
}

.lunboItemButtonRight {
  grid-column: 3;
  grid-row: 1;
}

.lunboFullItemButton {
  height: 100%;
  width: 100%;
  z-index: 999;
}

.lunboMainViewBut {
  display: none;
}

.lunboItemButton:hover {
  cursor: grab;
}

.lunboItemView {
  overflow-x: scroll;
  overflow-y: hidden;
  /* 设置横向滚动条 */
  white-space: nowrap;
  /* 隐藏滚动条 */
  /* scrollbar-width: none; */
  /* firefox 去掉滚动条 */
  /* -ms-overflow-style: none; */
}

.lunboItemView::-webkit-scrollbar {
  /* chrome 去掉滚动条 */
  /* display: none; */
}

.fullMask {
  background-color: black;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: alpha(Opacity=50);
  opacity: 0.8;
  z-index: 99;
}

#fullScreenMain {
  user-select: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: alpha(Opacity=50);
  z-index: 100;
  display: inline-grid;
  background-color: rgba(0, 0, 0, 0.9);
  grid-template: 60px minmax(100px, calc(100% - 140px)) 120px / 60px 1fr 1fr 60px;
  align-items: center;
  justify-items: center;
  z-index: 2000;
}

#fullScreenImg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  user-select: none;
  grid-column: 1/-1;
  grid-row: 2;
}

#fullScreenImg img {
  max-height: 100%;
  max-width: 100%;
}

#fullScreenMain .lunboItemView {
  max-width: 100%;
}

.fullScreenIcon {
  grid-column: 2 / -1;
  margin-left: auto;
}

@keyframes itemAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes itemDisappear {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}