/*右侧悬浮导航*/
.menu-right {
    position: fixed;
    bottom: 60px;
    right: 18px;
    z-index: 999;
}
.menu-right a{
    width: 50px;
    height: 50px;
    background-color: #fff;
    margin-bottom: 4px;
    display: block;
    padding: 5px;
    color:#999999;
    text-align: center;
    box-sizing: border-box;
    -moz-box-shadow: 0 1px 2px 1px rgba(0,0,0,0.08);
    -webkit-box-shadow: 0 1px 2px 1px rgba(0,0,0,0.08);
    box-shadow: 0 1px 2px 1px rgba(0,0,0,0.08);
}

.menu-right a.menu-suggest:hover{
    background-color: #FFBA00;
    color:#fff;
}

.menu-right a.menu-wechat{
    background-image: url('../images/icon-menur-wechat01.png');
    background-repeat: no-repeat;
    background-position: 12px 12px;
}
.menu-right a.menu-wechat:hover{
    background-color: #FFBA00;
    background-image: url('../images/icon-menur-wechat02.png');
    background-repeat: no-repeat;
    background-position: 12px 12px;
}

.menu-right a.menu-top{
    background-image: url('../images/icon-menur-top01.png');
    background-repeat: no-repeat;
    background-position: 12px 12px;
}

.menu-right a.menu-top:hover{
    background-color: #FFBA00;
    background-image: url('../images/icon-menur-top02.png');
    background-repeat: no-repeat;
    background-position: 12px 12px;
}

.menu-right .menu-ewm-box{
    display: none;
    width: 130px;
    height: 160px;
    background-color: #FFBA00;
    right: 60px;
    top: -55px;
    text-align: center;
    padding: 5px;
    z-index: 999;
    box-shadow: 0px 4px 5px 0px rgba(51,51,51,0.5);
    transition: all .5s;
    -webkit-transition: all .5s;
}
.menu-right a.menu-wechat:hover>.menu-ewm-box{
    display: block;
    right: 60px;
}
.menu-right .menu-ewm-box img{
    width: 120px;
    height: 120px;
}
.menu-right .menu-ewm-box p{
    margin-top: 8px;
    font-size: 12px;
    color:#fff;
    text-align: center;
}

