/* TBF Phone Mask - 公开访问时, 电话打码样式 */
.tbf-phone {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    font-variant-numeric: tabular-nums;
}
.tbf-phone-masked {
    color: #999 !important;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
    border-bottom: 1px dashed #cbd5e0;
    padding-bottom: 1px;
    transition: color 0.15s;
}
.tbf-phone-masked:hover {
    color: #4a5568 !important;
    border-bottom-color: #4a5568;
}
.tbf-phone-masked::after {
    content: "\f09c  \767b\5f55\540e\53ef\89c1";
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a202c;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 999;
    font-weight: normal;
    letter-spacing: 0;
}
.tbf-phone-masked:hover::after {
    opacity: 1;
}
.tbf-phone-hint {
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    color: #3182ce;
}
.tbf-phone-hint a {
    color: #3182ce;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
.tbf-phone-hint a:hover {
    color: #2c5282;
}
.tbf-phone-member {
    color: inherit;
    font-weight: 600;
}
