
/* -------------------------------------------------------------------------- */
#g_aside {
  position: fixed;
  right: 150px;
  top: 50%;
  transform: translate(130px, -50%);
  z-index: 111;
}
#g_aside .aside_item {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 6px;
  margin: 2px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  position: relative;
}
#g_aside .aside_item > p {
  font-size: 16px;
  color: #821619;
  margin-top: 10px;
}
#g_aside .aside_item .zx {
  width: 210px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(130, 22, 25, 0.2);
  border-radius: 6px;
  padding: 20px 0 20px 30px;
  position: absolute;
  left: -214px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
#g_aside .aside_item .zx img {
  width: 140px;
  height: 140px;
  box-shadow: 0px 0px 10px 0px rgba(179, 179, 179, 0.35);
  display: block;
  margin-top: 20px;
}
#g_aside .aside_item .zx p {
  font-size: 14px;
  color: #4d4c4c;
  margin-bottom: 9px;
}
#g_aside .aside_item .zx span {
  display: block;
  font-size: 14px;
  color: #821619;
}
#g_aside a:hover {
  background: #ffd24d;
}
#g_aside a:hover .zx {
  display: block;
}
#g_aside .to_top {
  opacity: 0;
}
#g_aside .to_top:active {
  background: #d9d9d9;
}
