.DearLicy_prefix {
    position: relative;
    border-radius: 4px;
    display: inline-block;
    padding: 0px 4px;
    margin-right: 1.5px;
    font-size: 12px;
    font-weight: 650 !important;    /* 文字加粗更明显 */
    line-height: 1.3;               /* 减小行高，上下更紧凑 */
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    transform: translateY(-0.5px);  /* 微调垂直位置，保持对齐 */
    z-index: 1;
    border: 1.2px solid #ccc !important;
    border-color: #CCCCCC !important;
}

.DearLicy_prefix::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6) 10%,
        transparent 30%
    );
    transform: skewX(-20deg);
    animation: shine 3s infinite ease-in-out;
    pointer-events: none;
    z-index: -1;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}