/*右侧导航*/
.right-list-box {
  position: fixed;
  right: 30px;
  bottom: 80px;
  z-index: 101;
}

.right-list li {
  position: relative;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.right-list li p {
  display: none;
  position: absolute;
  right: 0;
  padding-right:4.69vw;
  padding-left: 1.30vw;
  box-sizing: border-box;
  top: 0.42vw;
  text-align: center;
  line-height: 3.33vw;
  height: 3.33vw;
  
  background: #fff;
  z-index: -1;
  border-radius: 1.665vw;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 16px;
  box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.08);  
}

.right-list li a div{
  background:#cccccc;width: 4.17vw;height: 4.17vw;border-radius: 50%;display: flex;align-items: center;justify-content: center;
}
.right-list li a div img{
  width: 3.23vw;
}

.right-list li:hover a div {
  background: #024ACC;
}

.right-list li:hover p {
  display: block !important;
}

.right-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1080px) {
  .right-list-box{
    display: none;
  }
}