.elevator {
  position: fixed;
  top: 53%;
  right: 2%;
  width: 56px;
  height: 242px;
  background: #FFFFFF;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px 4px 4px 4px;
}

.elevator ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: #666666;
  font-size: 12px;
  position: relative;
  cursor: pointer;
}

.elevator ul li a {
  font-size: 12px;
}

.elevator ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: #E6E9F2;
  border-radius: 0px 0px 0px 0px;
}

.elevator ul li:last-child::after {
  width: 14px;
  height: 2px;
  background: #666666;
  top: 19px;
}

.elevator ul li:last-child:hover::after {
  width: 14px;
  height: 2px;
  background: #3161F5;
  top: 19px;
}

.elevator ul li:last-child .icon-shouqi {
  position: absolute;
  top: 14px;
  left: 21.5px;
  margin-top: -5px;
  font-size: 6px;
}

.elevator ul li:last-child div {
  margin-top: 10px;
}

.elevator ul li:hover {
  color: #3161F5;
}
