@charset "UTF-8";
.card[data-v-419d52c3] {
  transform-style: preserve-3d;
  transition: transform 0.6s;
  cursor: pointer;
  transform: rotateY(0deg); /* 翻转180度 */
  animation: flip-419d52c3 0.3s forwards; /* 使用 @keyframes 动画 */
}
.card__container[data-v-419d52c3] {
  width: 100%;
  height: 21vw;
  perspective: 1000px; /* 设置透视效果，用于翻转 */
  position: absolute;
  z-index: 3;
}
.card__init--back[data-v-419d52c3] {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
}
.card__init--back img[data-v-419d52c3] {
  height: 25px;
}
.card__front[data-v-419d52c3], .card__back[data-v-419d52c3] {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden; /* 隐藏背面 */
}
.card__front img[data-v-419d52c3], .card__back img[data-v-419d52c3] {
  height: 25px;
}
.card__front[data-v-419d52c3] {
  transform: rotateY(180deg); /* 初始状态背面朝上 */
  display: flex;
  justify-content: center;
  align-items: center;
}
.card__back[data-v-419d52c3] {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@keyframes flip-419d52c3 {
from {
    transform: rotateY(0deg);
}
to {
    transform: rotateY(-180deg);
}
}
@media screen and (min-width: 768px) {
.card__front img[data-v-419d52c3], .card__back img[data-v-419d52c3] {
    height: 30px;
}
}
.breathing-effect[data-v-13f83d4c] {
  background-color: rgba(4, 85, 255, 0.5);
  animation: breathe-13f83d4c 1.5s ease-in-out infinite;
}
@keyframes breathe-13f83d4c {
0% {
    background-color: rgba(4, 85, 255, 0.5);
}
50% {
    background-color: rgba(4, 85, 255, 0);
}
100% {
    background-color: rgba(4, 85, 255, 0.5);
}
}
.poker__box[data-v-13f83d4c] {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
}
.poker__box--banker[data-v-13f83d4c] {
  width: 30%;
  height: 100%;
  border-right: 1px solid rgba(179, 179, 179, 0.3);
  display: flex;
  justify-content: space-around;
}
.poker__box--banker .first__poker[data-v-13f83d4c] {
  width: 30%;
  display: flex;
  align-items: center;
}
.poker__box--banker .first__poker[data-v-13f83d4c] .card__container {
  height: auto;
  position: relative;
}
.poker__box--banker .first__poker[data-v-13f83d4c] .card__init--back img {
  height: 17px;
}
.poker__box--banker .first__poker[data-v-13f83d4c] .card__front img, .poker__box--banker .first__poker[data-v-13f83d4c] .card__back img {
  height: 17px;
}
.poker__box--banker .poker__box[data-v-13f83d4c] {
  width: 67%;
}
.poker__box--player[data-v-13f83d4c] {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: space-around;
}
.poker__box--player .poker__box[data-v-13f83d4c] {
  width: 28%;
}
.poker__box .banker__title[data-v-13f83d4c],
.poker__box .player1__title[data-v-13f83d4c],
.poker__box .player2__title[data-v-13f83d4c],
.poker__box .player3__title[data-v-13f83d4c] {
  width: 80%;
  font-size: 9px;
  border-radius: 2px;
  text-align: center;
  margin: 3px 0 0 0;
  line-height: 10px;
}
.poker__result[data-v-13f83d4c] {
  font-size: 12px;
}
.poker__container[data-v-13f83d4c] {
  width: 100%;
  height: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.poker__container[data-v-13f83d4c] .card__container {
  height: auto;
  position: relative;
}
.poker__container[data-v-13f83d4c] .card__init--back img {
  height: 20px !important;
}
.poker__container[data-v-13f83d4c] .card__front img, .poker__container[data-v-13f83d4c] .card__back img {
  height: 20px !important;
}
.poker__container--top[data-v-13f83d4c] {
  width: 70%;
  height: 21px;
  display: flex;
}
.poker__container--bottom[data-v-13f83d4c] {
  width: 100%;
  display: flex;
}
.poker__container .win--tip[data-v-13f83d4c] {
  width: 100%;
  font-size: 8px;
  position: absolute;
  bottom: 14px;
  text-align: center;
  border-radius: 2px;
  z-index: 99;
  background-color: rgb(4, 85, 255);
}
