/* 腾讯统一身份 - 只显示腾讯 Logo，隐藏 Zibll 默认图标 */
.social-login-item.tencent .icon,
.social-login-item.tencent svg {
    display: none !important;
}

.social-login-item.tencent::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('tencent-identity-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.social-login-item.tencent.button-lg::before {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.social-login-item.tencent.circular::before {
    display: block;
    width: 20px;
    height: 20px;
}

.social-login-item.tencent {
    background: transparent !important;
    color: inherit;
    border-color: var(--main-border-color);
}
.social-login-item.tencent:hover {
    background: var(--muted-bg-color) !important;
}
.social-login-item.tencent.button-lg {
    background: #0052d9 !important;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: var(--main-radius, 8px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}
.social-login-item.tencent.button-lg:hover {
    background: #003da8 !important;
}
.social-login-item.tencent.button-lg::before {
    filter: brightness(0) invert(1);
}
