/*访客可见 注册按钮 2018/1/9  Dengwj */
.m-login{
    height: 30px;
    line-height:30px;
    width: 58px;
    position: fixed;
    right: 4%;
    top: 75%;
    z-index: 90;
    background: #ff9900;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #fc6719;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FF9237), to(#fc6719));
    background-image: -moz-linear-gradient(#FF9237, #fc6719);
    animation: ease-in-out breath 1500ms infinite alternate;
    -webkit-animation: ease-in-out breath 1500ms infinite alternate;
}
.m-login a{
    color: #FFF;
}
@keyframes breath {
    0% {
        opacity: .2;
        box-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
    }
    100% {
        opacity: 0.9;
        border: 1px solid rgba(255, 145, 55, 1);
        box-shadow: 0 1px 10px rgba(255, 145, 55, 1);
    }
}
@-webkit-keyframes breath {
    0% {
        opacity: .2;
        box-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
    }
    100% {
        opacity: .9;
        border: 1px solid rgba(255, 145, 55, 1);
        box-shadow: 0 1px 10px rgba(255, 145, 55, 1);
    }
}
/*访客可见 注册按钮  end*/
