
.r-toolbar-wrap i { 
    padding-top: 9px;
    padding-left: 9px;
    color: #fff;
}
.r-toolbar-wrap {
    position: fixed;
    bottom:0px;
    right: 0px;
    z-index: 999;
    width: 35px;
    height: 120px;
}
.r-toolbar-tab {
    position: relative;
    width: 35px;
    height: 35px;
    margin-bottom: 1px;
    cursor: pointer;
    background-color: #7a6e6e;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}
 
.r-toolbar-tab .tab-top,.r-toolbar-tab .tab-tel {
    /* width: 62px; */
    height: 35px;
    line-height: 35px;
    color:#FFF;
    background: #c81623;
    text-align: center;
    font-family: "微软雅黑";
    position: absolute;
    left: 35px;
    top: 0px;
	/* transform: scale(0); */
    z-index: 1;
    border-radius: 3px 0px 0px 3px;
    transition: all 0.3s ease-in-out 0.1s;    /*移出动画效果*/
}
.r-toolbar-tab .tab-top {width: 68px;}
.r-toolbar-tab .tab-tel {width: 120px;}

.r-toolbar-tab:hover{  background-color: #c81623;} 
.r-toolbar-tab:hover .tab-tel {left: -118px;}
.r-toolbar-tab:hover .tab-top {left: -66px;}

#returnTop{display: none;}

/*二维码*/
.weixin {
position: relative;
}
.weixin img.qrcode {
    position: absolute;
    z-index: 999;
    top: -120px;
    right: 0px;
    width: 12rem;
    max-width: none;
    height: 12rem;
    transform: scale(0);
    transform-origin: bottom right;
    opacity: 0;
    border: .3rem solid #c81623;
    border-radius: .25rem;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.weixin:hover img.qrcode {
    transform: scale(1);
    opacity: 1;
}