/* 百人牛牛核心下注交互与“开始下注”提示 v394 */
#room.hundred-niu-mode .hn-zone.is-bettable {
  cursor: pointer;
  touch-action: manipulation;
}

#room.hundred-niu-mode .hn-zone.is-bettable:active {
  transform: scale(.985);
  filter: brightness(1.14);
}

#room.hundred-niu-mode .hn-zone-head {
  position: relative;
}

#room.hundred-niu-mode .hn-zone-head small {
  position: absolute;
  right: 7px;
  bottom: -17px;
  z-index: 5;
  padding: 2px 6px;
  border: 1px solid rgba(255, 224, 112, .72);
  border-radius: 999px;
  color: #fff3af;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  background: rgba(117, 42, 0, .88);
  box-shadow: 0 2px 5px rgba(0, 18, 10, .42);
}

#room.hundred-niu-mode .hn-bet-opening {
  position: absolute;
  left: 50%;
  top: 19%;
  z-index: 40;
  display: grid;
  place-items: center;
  min-width: 210px;
  padding: 13px 31px 11px;
  border: 2px solid #ffe680;
  border-radius: 999px;
  pointer-events: none;
  color: #fff8c9;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 207, 56, .4), transparent 55%),
    linear-gradient(180deg, rgba(201, 43, 10, .98), rgba(130, 12, 4, .98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .68),
    inset 0 -4px 8px rgba(80, 0, 0, .48),
    0 0 20px rgba(255, 162, 28, .72),
    0 9px 20px rgba(0, 22, 12, .52);
  transform: translateX(-50%);
  animation: hn-bet-opening-pop 1.9s ease both;
}

#room.hundred-niu-mode .hn-bet-opening span {
  font-size: 27px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .12em;
  text-shadow: 0 2px 0 #8a1700, 0 0 9px rgba(255, 235, 116, .76);
}

#room.hundred-niu-mode .hn-bet-opening small {
  margin-top: 5px;
  color: #ffeeb2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}

@keyframes hn-bet-opening-pop {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(.55);
  }
  17% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
  30%, 72% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-16px) scale(.9);
  }
}

@media (max-width: 560px) {
  #room.hundred-niu-mode .hn-bet-opening {
    top: 18%;
    min-width: 178px;
    padding: 11px 23px 9px;
  }

  #room.hundred-niu-mode .hn-bet-opening span {
    font-size: 23px;
  }

  #room.hundred-niu-mode .hn-zone-head small {
    right: 5px;
    bottom: -15px;
    padding: 1px 5px;
    font-size: 8px;
  }
}
