.view-bar {
  position: fixed;
  width: 100%;
}
#viewList {
  display: none;
}
.view-top {
  display: flex;
  justify-content: start;
  align-items: center;
  background: #fff;
  /* box-shadow: 0 3px 3px #f8f8f8; */
}
.play-pause img {
  width: 30px;
  margin-left: 10px;
}
.view-bar .save-view img {
  width: 30px;
  margin-right: 10px;
}
.play-pause img.pause {
  display: none;
}
.view-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 40px);
  min-height: 98px;
  margin: 0 10px;
  padding: 10px 0;
  overflow-x: auto;
}
.view-list::-webkit-scrollbar-button {
  display: none;
}
.view-list::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-opcity: 1;
}

.view-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgb(218, 220, 221);
}
.view-list::-webkit-scrollbar-track {
  /*border-radius: 10px;*/
  /*background: rgba(255, 255, 255, 0.3);*/
}
.view-bar .img-box {
  position: relative;
  padding: 5px;
}
.view-bar .img-box img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  background: #f5f5f5;
}

.view-bar .img-box .img-bg {
  display: none;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 74px;
  height: 74px;
  background: var(--el-color-primary);
  border-radius: 4px;
  opacity: 0.1;
  cursor: pointer;
}

.view-bar .img-box.active .img-bg {
  display: block;
}
.view-bar .img-box::after {
  position: absolute;
  content: ' ';
  width: 100%;
  height: 3px;
  background: #b4b8c9;
  left: 0;
  bottom: -2px;
}
.view-bar .img-box:first-child::after {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.view-bar .img-box:last-child::after {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.view-bar .img-box.active::after {
  background: var(--el-color-primary);
}
.view-bar .open-close {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -1px;
}
.view-bar .open-close img {
  width: 100px;
  height: 30px;
  object-fit: cover;
  cursor: pointer;
}
.view-bar .open-close img.is-display {
  display: none;
}
img:focus {
  background: transparent !important;
}
.SView-rightMenu {
  margin-top: 130px;
}
.close {
  position: absolute;
  top: -2px;
  right: -2px;
  display: none;
  width: 14px;
  height: 14px;
  background: #bbcbe1 url(../images/viewBar/close.png) no-repeat center center;
  background-size: 8px;
  border-radius: 50%;
}
.img-box.img-box.active .close {
  display: block;
}
.file_name {
  position: fixed;
  right: 5px;
  bottom: 15px;
  z-index: 41;
  font-size: 14px;
  color: #333;
  background: rgb(255, 255, 255, 0.6);
  padding: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .file_name{
    display: none;
  }
  .SView-treeDialog{
    top: 30px !important;
  }
}