/*!**************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/less-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/view.less ***!
  \**************************************************************************************************************************************************************************************************************************************/
.act-play-prize-bubble-component {
  height: 9.6vw;
  position: relative;
}
.act-play-prize-bubble-component > .act-prize-bubble {
  display: inline-block;
  height: 9.6vw;
  position: relative;
  width: 100%;
}
.act-play-prize-bubble-component > .act-prize-bubble.horizontal {
  width: fit-content;
  opacity: 1;
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 0;
  transform: translateX(100%);
  /* 从屏幕右侧开始 */
  animation-name: floatAnimation;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.act-play-prize-bubble-component > .act-prize-bubble.horizontal .act-bubble-content {
  position: relative;
  margin-right: 53.33333vw;
  flex-shrink: 0;
}
.act-play-prize-bubble-component > .act-prize-bubble.horizontal .content:last-child {
  margin-right: 0px;
}
.act-play-prize-bubble-component .act-bubble-content {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 80vw;
  height: 9.6vw;
  padding-left: 5.33333vw;
  padding-right: 5.33333vw;
  border-radius: 8vw;
  position: absolute;
  top: 0;
  left: 0;
}
.act-play-prize-bubble-component .act-bubble-content.portrait {
  opacity: 0;
  transition: opacity 0.5s;
}
.act-play-prize-bubble-component .act-bubble-content.center {
  left: 50%;
  transform: translateX(-50%);
}
.act-play-prize-bubble-component .act-bubble-content.right {
  left: auto;
  right: 0;
}
.act-play-prize-bubble-component .act-bubble-content > .avatar-wrapper {
  height: 5.33333vw;
  width: 5.33333vw;
  border-radius: 50%;
  margin-right: 1.33333vw;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.act-play-prize-bubble-component .act-bubble-content > .avatar-wrapper > .avatar {
  height: 4.8vw;
  width: 4.8vw;
  border-radius: 50%;
}
.act-play-prize-bubble-component .act-bubble-content .content-txt {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 3.2vw;
}
.act-play-prize-bubble-component .current {
  opacity: 1;
}
.act-play-prize-bubble-component .current.portrait {
  transition: opacity 0.5s;
}
.act-play-prize-bubble-component .current.left,
.act-play-prize-bubble-component .current.right {
  animation: moveUp1 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.act-play-prize-bubble-component .current.center {
  animation: moveUp2 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes moveUp1 {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  5% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  95% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes moveUp2 {
  0% {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  5% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  95% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
}
@keyframes floatAnimation {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100vw);
  }
}

