/* 弹窗 */
.wpop {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.3s;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.wpop .results {
  width: 200px;
  padding: 20px;
  background: white;
  border-radius: 9px;
  transition: all 0.3s;
  position: absolute;
}
.wpop .results .YShowImg1 {
  width: 40px;
  float: right;
  position: absolute;
  top: 0;
  right: 0;
}
.wpop .results .YShowImg2 {
  width: 120px;
  display: block;
  margin: auto;
}
.wpop .results span {
  width: 100%;
  display: block;
  text-align: center;
}
.wpop .resultss {
  transition: all 0.3s;
  display: flex;
  flex-direction: row;
}
.wpop .resultss div {
  transition: all 0.3s;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  margin: 10px;
}
.wpop .resultss div:nth-child(1) {
  animation: myanimation 2s infinite;
}
.wpop .resultss div:nth-child(2) {
  animation: myanimation 2s infinite 0.333s;
}
.wpop .resultss div:nth-child(3) {
  animation: myanimation 2s infinite 0.666s;
}
@keyframes myanimation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
  }
}
.show1-enter-active,
.show1-leave-active {
  transition: all 0.3s;
  opacity: 0;
}
/* .slide-fade-leave-active for below version 2.1.8 */
.show1-enter,
.show1-leave-to {
  /* transform: translateY(100px); */
  opacity: 0;
}
[v-cloak] {
  display: none;
}
/* 设置滚动条的样式 */
iframe::-webkit-scrollbar {
  width: 2px;
}
/*滚动槽*/
iframe::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
/* 滚动条滑块 */
iframe::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.15);
}
::-webkit-scrollbar {
  width: 6px;
  height: 16px;
  background-color: #F5F5F5;
}
/*定义滚动条轨道
    
        内阴影+圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #F5F5F5;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}
