#rightIM {
    width: 118px;
    position: fixed;
    right: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top:0;
    z-index: 100;
}

.im-item {
    width: 118px;
    height: 56px;
    padding: 7px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 14px;
    line-height: 56px;
    overflow: hidden;
	cursor:pointer;

}

.im-item .im-icon {
    float: left;
    width: 38px;
    margin: 15px auto 0;
}
.im-item .im-icon .el-image{
    width: 28px;
    margin-left: 10px;
}
.im-item .im-text {
    float: right;
    display: flex;
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666;
    width: 72px;
    line-height: 24px;
    text-align: center;
    justify-content: center;
    height: 100%;
    align-items: center;
}
.im-item:hover {
    background: #dedede;
}
@media screen and (max-width: 768px){
    #rightIM{
        display: none;
    }
}