.nav-right{
    width: 45px;
    height: 200px;
    position: fixed;
    right: 15px;
    top: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-image: linear-gradient(to bottom,#00ffff,#0075CC);
    z-index: 99999;
}
.nav-right img{
    width: 30px;
    height: 30px;
}
.nav-right .icon{
    width: 45px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
border-radius: 15px;
}

.info-wrap{
    position: absolute;
    left: -100px;
    top: 0;
    right: 50px;
}

.info-wrap .info{
    color: #666;
    background-color: #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 220px;
    padding: 8px 0;
    transform: translateX(-60%);
    font-size: 16px;
    text-align: center;
	display:none;
}

.info-wrap .info-img{
    width: 180px;
    height: 170px;
}

.info-wrap .info-img img{
    width: 150px;
    height: 150px;
}



.icon:hover{
    background-color: #0075CC;
}