/*右侧悬浮窗*/

#toolbar {
    width: 48px;
    position: fixed;
    right: 0px;
    bottom: 280px;
    z-index: 1;
    height: 180px;
}

#toolbar #to-top {
    position: relative;
    margin: 5px 0 0;
    width: 47px;
    height: 41px;
    font-size: 20px;
    text-align: center;
    line-height: 41px;
    cursor: pointer;
    background: #e1e1e1;
    border-radius: 3px;
}

#toolbar i {
    color: #666666;
    font-size: 20px;
}
#toolbar i img{width:26px;height:26px}
#toolbar #to-top {
    display: none;
}

#toolbar #to-top:hover {
    background: #ef1e25;
}

#toolbar #to-top:hover i {
    color: #fff
}

#toolbar .to-comm {
    position: relative;
    width: 47px;
    height: 41px;
    text-align: center;
    line-height: 41px;
    cursor: pointer;
    margin-top: 5px;
    background: #e1e1e1;
    border-radius: 3px;
}
#toolbar .to-comm:hover i img{filter: brightness(100);}
#toolbar .to-comm i {
    font-size: 26px;
    display: inline-flex;
    height: 41px;
    line-height: 41px;
    align-items: center;
}

#toolbar .to-comm ._ibox {
    position: absolute;
    height: 41px;
    padding: 0 10px;
    line-height: 41px;
    right: 0;
    top: 0;
    /* transition: all 0.3s; */
    z-index: 99;
    display: none;
    background-color: #ef1e25;
    overflow: hidden;
    text-align: center;
    border-radius: 3px;
    font-size: 14px;
    color: #fff;

}
#toolbar .to-comm ._ibox_new {
    position: absolute;
    height: 41px;
    padding: 0 10px;
    line-height: 41px;
    right: 0;
    top: 50px;
    /* transition: all 0.3s; */
    z-index: 99;
    display: none;
    background-color: #ef1e25;
    overflow: hidden;
    text-align: center;
    border-radius: 3px;
    font-size: 14px;
    color: #fff;

}


#toolbar .to-comm ._ibox0,
#toolbar .to-comm ._ibox1 {
    transition: all 0.3s;
    width: 47px;
}



#toolbar .to-comm ._ibox2 {
    background-color: #fff;
    color: #333;
    font-size: 12px;
    position: absolute;
    width: 90px;
    height: 110px;
    padding: 20px;
    right: 58px;
    top: 0px;
    transition: all 0.3s;
    z-index: 99;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    display: none;
}

#toolbar ._ibox2 img {
    width: 100%;
    height: auto;
}

#toolbar ._ibox2 p {
    font-size: 12px;
    line-height: 2.4;
}

#toolbar .to-comm ._ibox3 {
    display: block;
    background-color: #e1e1e1;
    color: #333;
    font-size: 12px;
    position: absolute;
    width: 47px;
    height: 41px;
    line-height: 41px;
    right: 0;
    top: 0;
    transition: all 0.3s;
    z-index: 99;
    overflow: hidden;
    border-radius: 3px;
}

#toolbar .to-comm:hover {
    background-color: #ef1e25;
}

#toolbar .to-comm:hover i {
    color: #fff;
}

#toolbar .to-comm:hover ._ibox1 {
    color: #fff;
    right: 50px;
    top: 0;
    display: block;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
#toolbar .to-comm:hover ._ibox_new {
    color: #fff;
    right: 50px;
    top: 50px;
    display: block;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}


#toolbar .to-comm:hover ._ibox3 {
    background-color: #ef1e25;
    color: #fff;
}

#toolbar .to-comm:hover ._ibox2 {
    display: block;
}

#toolbar .to-comm:hover ._ibox0 {
    width: 60px;
}

#toolbar .to-comm:hover ._ibox1,#toolbar .to-comm:hover ._ibox_new {
    width: 180px;
}

#toolbar .to-comm:hover i {
    background-position: 0 0;
    z-index: 100;
}
@media screen and (max-width: 640px){
    .toolbar{display: none;}
}