/*打赏*/
#QR {
  padding: 10px 0 10px 0;
}

#QR a {
  border: 0;
}

#QR img {
  width: 100px;
  max-width: 100%;
  display: inline-block;
  margin: 0.8em 2em 0 2em;
}

#rewardButton {
  border: 1px solid rgb(55 56 62);
  /* line-height: 36px; */
  text-align: center;
  height: 36px;
  display: block;
  border-radius: 5px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  background-color: var(--code-bg);
  color: var(--content);
  margin: 50px auto;
  padding: 0 25px;
}

.dark #rewardButton {
  border: 1px solid rgb(55 56 62);
  /* line-height: 36px; */
  text-align: center;
  height: 36px;
  display: block;
  border-radius: 4px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  background-color: rgb(55 56 62);
  /*color: rgb(218 218 219);*/
  color: rgba(180, 181, 182, 1);
  /* color: white; */
  margin: 0 auto;
  padding: 0 25px;
}

#rewardButton:hover {
  color: var(--content);
  /*border-color: #999;*/
  outline-style: none;

  /*-webkit-transform: scale(1.1);*/
  /*-moz-transform: scale(1.1);*/
  /*-ms-transform: scale(1.1);*/
  /*-o-transform: scale(1.1);*/
  /*transform: scale(1.1);*/

  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.dark #rewardButton:hover {
  color: rgba(180, 181, 182, 0.8);
  background-color: var(--border);
  /*border-color: rgb(218 218 219);*/
  outline-style: none;

  /*-webkit-transform: scale(1.1);*/
  /*-moz-transform: scale(1.1);*/
  /*-ms-transform: scale(1.1);*/
  /*-o-transform: scale(1.1);*/
  /*transform: scale(1.1);*/

  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
