.countdown-wrap {
  position: absolute;
  right: 10px;
  bottom: 55px;
  .countdown{
    .countdown-txt {
      padding: 10px 20px;
      background-color: #191919;
      background-color: rgba(25, 25, 25, .88);
      border-radius: 4px;
      color: #fff;
      font-size: 14px;
      user-select: none;
      .time{
        color: #cf333e;
      }
    }
  }
}

.player-rate-wrap {
  position: absolute;
  right: 10px;
  bottom: 55px;
  background: rgba(25, 25, 25, .88);
  z-index: 4;
  display: none;
  .player-rate-tips {
    width: 180px;
    height: 30px;
    font-size: 14px;
    color: #fff;
    margin: 0 auto;
    text-align: center;
  }
  .player-rate-box {
    display: flex;
    padding-bottom: 5px;
    align-items: center;
    justify-content: space-evenly;
    .player-rate-txt {
      display: flex;
      align-items: center;
      color: #fff;
      line-height: 1;
      padding-top: 4px;
      width: 32px;
    }
  }
  .player-star-wrap {
    display: flex;
    justify-content: space-evenly;
    width: 120px;
    .player-star {
      display: inline-block;
      width: 18px;
      height: 18px;
      background: url(../../img/star.png) no-repeat center top;
      background-size: cover;
      cursor: pointer;
      transition: all 0.3s;
      &.player-star-full{
        background-image: url(../../img/star-1.png);
        background-size: cover;
      }
    }
  }
} 