/* .love {
  width: 36px;
  height: 72px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  right: 10px;
  bottom: 149px;
  z-index: 999999;
  display: block;
} */

.love {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  right: 10px;
  bottom: 100px;
  z-index: 999999;
  display: block;
}

.rotate {
  -webkit-animation: rotating 3s linear infinite;
  animation: rotating 3s linear infinite;
  animation-play-state: running;
  -webkit-animation-play-state: running;
  /* Safari 和 Chrome */
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotating {
  from {
    -moz-transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}

.lovenum {
  position: fixed;
  right: 10px;
  bottom: 134px;
  color: #da0c1a;
  font-size: 16px;
  z-index: 9999;
  width: auto;
  min-width: 36px;
  display: block;
  text-align: center;
}

.iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#tipDiv {
  display: none;
  position: absolute;
  left: 39%;
  top: 230px;
  z-index: 9999;
  background: #d9d9d9;
  padding: 10px;
  border-radius: 5px;
}

#tipInfo {
  margin-top: 10px;
}