.aside {
  width: 60px;
  padding: 15px 0 0;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 619px;
  right: 20px;
  -webkit-box-shadow: 0 2px 10px 0px #ddd;
          box-shadow: 0 2px 10px 0px #ddd;
}
.aside .item {
  color: #9ea1c9;
  font-size: 12px;
  padding-bottom: 15px;
  position: relative;
  cursor: pointer;
}
.aside .item i {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 11px;
}
.aside .item + .item {
  margin-top: 16px;
}
.aside .item.shop {
  cursor: default;
}
.aside .item.shop i {
  background: url("../img/index_new/shop.png");
}
.aside .item.shop .modal {
  width: 120px;
  height: 160px;
  background-color: #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 10px 0px #ddd;
          box-shadow: 0 2px 10px 0px #ddd;
  position: absolute;
  left: -130px;
  top: -14px;
  display: none;
}
.aside .item.shop .modal p {
  color: #090d30;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin: 8px 0 5px;
}
.aside .item.shop .modal img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.aside .item.shop .modal::before {
  content: "";
  width: 20px;
  height: 165px;
  background: red;
  position: absolute;
  right: -10px;
  top: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
}
.aside .item.backTop i {
  background: url("../img/index_new/backTop.png");
}
.aside .item::after {
  content: "";
  width: 48px;
  height: 1px;
  background-color: #eeeeee;
  position: absolute;
  bottom: 0;
}
.aside .item:last-child::after {
  height: 0;
}
.aside .item:hover p {
  color: #7b56ee;
}
.aside .item:hover.shop i {
  background: url("../img/index_new/shop_h.png");
}
.aside .item:hover.shop .modal {
  display: block;
}
.aside .item:hover.backTop i {
  background: url("../img/index_new/backTop_h.png");
}

.none {
  display: none !important;
}