
html, body, div, ul, li, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, form, input, textarea, th, td, select {
    margin: 0;
    padding: 0;
}
ul,ol {
    list-style: none;
}

a {
    text-decoration: none;
}



.sidebar{
    position: fixed;
    top: 50%;
    left: 100%;
    margin-left: -80px;
    z-index: 99;
}

.sidebar-item{
    display: flex;
    border: 1px solid #999;
    background: #fff;
    height: 80px;
    border-radius: 5px 0 0 5px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    white-space: nowrap;
    margin-bottom: 5px;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px 0px #aaa;
}

.sidebar-item-left>a{
    color: inherit;
}

.sidebar-item-left>.sidebar-icon{
    width: 60px;
    height: 40px;
}

.sidebar-item-left img{
    margin: 0 auto;
}
.sidebar-item-left>.sidebar-title{
    width: 60px;
}
.sidebar-item-right{
    border-left: solid 1px #999;
    font-size: 14px;
    padding-left: 5px;
}
@keyframes sidebar-move{
	from {
        margin-left: 0;
    }
	to {
        margin-left: -190px;
    }
}

.sidebar-item.animation:hover{
    animation:sidebar-move 0.5s infinite;
    animation-iteration-count: 1;
    animation-direction:alternate;
    animation-fill-mode:forwards;

    /* -webkit-animation:mymove 1s infinite;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction:alternate;
    -webkit-animation-fill-mode:forwards; */
}

.sidebar-item-left{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 80px;
    height: 60px;
}

.sidebar-item-right{
    padding: 0;
    margin: 0;
    line-height: 60px;
    width: 180px;
    text-align: center;
}