    /* 认证标志容器 */
        .gfch-badge {
            display: inline-flex;
            align-items: center;
            background-color: #0054FF; /* 抖音蓝 */
            color: white;
            border-radius: 5px;
            padding: 8px 8px;
            font-family: yahei, sans-serif;
            font-size: 13px;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%; /* 限制最大宽度 */
        }

        /* 认证图标 */
        .gfch-icon {
            width: 14px;
            height: 14px;
            margin-right: 4px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
        }

        /* 认证文字 */
        .gfch-text {
            font-size: inherit;
            line-height: inherit;
        }

        /* 响应式调整 */
        @media (max-width: 320px) {
            .verify-badge {
                font-size: 10px;
                padding: 1px 6px;
            }
            .verify-icon {
                width: 12px;
                height: 12px;
            }
        }