.right_fixed_menu {
  width: 2rem;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right_fixed_menu_item {
  width: 38.16%;
  cursor: pointer;
  margin-bottom: 0.2rem;

  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;

  animation: lightSpeedInRight 0.5s linear;
}

.right_fixed_menu_item.active {
  transform: scale(1.1);
}

.right_fixed_menu_item:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.top_fixed_menu {
  position: fixed;
  top: 0.2rem;
  right: 0.2rem;
  z-index: 1;
  display: flex;
}

.global_share_btns_inner {
  width: 40px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
}

.share_wechat_qrcode {
  position: absolute;
  top: 40px;
  display: none;
  width: 130px;
  height: 130px;
}

.share_wechat_qrcode img {
  width: 130px;
  height: 130px;
}

.global_share_btns_inner.sacle:hover {
  transform: scale(1.2);
}

.global_share_btns_inner.speScale:hover .wechat {
  transform: scale(1.2);
}

.global_share_btns_inner.speScale:hover .other_share {
  transform: scale(1.2);
}

.global_share_btns_inner .weibo {
  width: 30px;
  animation: fadeIn 0.3s linear;
}

.global_share_btns_inner .wechat {
  width: 29px;
  transition: transform 0.3s;
  animation: fadeIn 0.3s linear;
}

.global_share_btns_inner .qq {
  width: 25px;
  animation: fadeIn 0.3s linear;
}

.global_share_btns_inner .other_share {
  width: 24px;
  transition: transform 0.3s;
  animation: fadeIn 0.3s linear;
}
