.h_posFixed {
  position: fixed;
  right: 2%;
  bottom: 10%;
  z-index: 10;
}
.h_posFixed .h_box {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: var(--active-color);
  color: #fff;
  margin-bottom: 2px;
  position: relative;
  cursor: pointer;
}
.h_posFixed .h_box i {
  font-size: 20px;
}
.h_posFixed .h_box img {
  width: 24px;
}
.h_posFixed .h_box .h_hide {
  white-space: nowrap;
  height: 40px;
  position: absolute;
  transform: translate(-20px, -50%);
  visibility: hidden;
  opacity: 0;
  padding: 0 16px;
  right: 40px;
  top: 50%;
  border-right: 1px solid #fff;
  background-color: var(--active-color);
  transition: transform 0.2s linear, opacity 0.2s linear;
}
.h_posFixed .h_box .h_hide img {
  width: 110px;
}
.h_posFixed .h_box .h_hide a {
  color: #fff;
}
.h_posFixed .h_box .h_hide.h_multiple {
  padding: 8px 10px;
  height: auto;
  line-height: 2.2;
}
.h_posFixed .h_box .h_hide.h_multiple .h_icon {
  margin-bottom: 4px;
}
.h_posFixed .h_box .h_hide.h_multiple .h_icon:last-child {
  margin: 0;
}
.h_posFixed .h_box .h_hide.h_multiple .h_icon a {
  align-items: center;
  background-color: #fff;
  display: flex;
  line-height: 24px;
  padding: 0 12px;
  border-radius: 3px;
}
.h_posFixed .h_box .h_hide.h_multiple .h_icon a span {
  font-size: 12px;
  color: var(--active-color);
  margin-left: 4px;
}
.h_posFixed .h_box .h_hide.h_multiple .h_icon a img {
  width: 16px;
}
.h_posFixed .h_box .h_hide.h_multiple .h_icon a i {
  font-size: 15px;
  color: var(--active-color);
}
.h_posFixed .h_box:hover {
  background-color: var(--active-color);
}
.h_posFixed .h_box:hover .h_hide {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, -50%);
}
