.huirui-third-app{
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: fixed;
    top: 50%;
    right: 10px;
    z-index: 999;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
.huirui-third-app.none{
    display: none;
}
.huirui-third-app img{
    width: 60px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 5px;
}
.huirui-third-app a .huirui-third-hover{
    display: none;
}
.huirui-third-app a:hover .huirui-third-hover{
    display: block;
}
.huirui-third-app a:hover .huirui-third-icon{
    display: none;
}

@media screen and (max-width: 992px) {
    .huirui-third-app img{
        width: 40px;
    }
}