.haiwode-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;
}
.haiwode-third-app a{
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(136,136,136,0.1);
    transition: all 0.5s;
}
.haiwode-third-app a:hover{
    background: var(--primary-color);
}
.haiwode-third-app a:hover svg path{
    fill: #fff;
}




.haiwode-third-app.none{
    display: none;
}
.haiwode-third-app img{
    width: 60px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 5px;
}
.haiwode-third-app a .haiwode-third-hover{
    display: none;
}
.haiwode-third-app a:hover .haiwode-third-hover{
    display: block;
}
.haiwode-third-app a:hover .haiwode-third-icon{
    display: none;
}

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