/*悬浮菜单*/
.suspension-menu{
    position: fixed;
    height: 267px;
    display: flex;
    justify-content: center;
    bottom: 50px;
    right: 80px;
    z-index: 999;
}
.qr-code-icon{
    width: 150px;
    height: 150px;
}
.qr-code-icon>img{
    width: 100%;
    display: none;
}
.suspension-menu .fixed-nav{
    width: 50px;
    height: 200px;
    box-shadow: 0px 0px 20px #eeeeee;
    background: #fff;
}
.suspension-menu .nav-item-icon{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 auto;
}
.suspension-menu .nav-item-icon>img{
    width: 70%;
    vertical-align: middle;
}
.suspension-menu .fixed-nav-item:nth-child(3) span{
    color: #ffffff;
    display: none;
    font-size: 5px;
}
.suspension-menu .fixed-nav-item:nth-child(3) .nav-item-icon{
    line-height: 32px;
}
.suspension-menu .nav-item-title{
    font-size: 12px;
    color: #333333;
    text-align: center;
    line-height: 25px;
    height: 25px;
    padding-bottom: 5px;
}
.suspension-menu .fixed-nav-item{
    border-bottom: 1px dashed #eeeeee;
}
.suspension-menu .fixed-nav-item:nth-child(3){
    width: 50px;
    height: 65px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.suspension-menu .fixed-nav-item:nth-child(3) .nav-item-icon>img{
    width: 50%;
}
.suspension-menu .fixed-nav-item:hover{
    background: #FA5C5C;
    cursor: pointer;
}
.suspension-menu .fixed-nav-item:hover .nav-item-title{
    color: #ffffff;
}