/* 251104日新增10小时内新内容的css可删除2-1 -*/
.new-post-highlight::before {
    content: "新";
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff5722, #ffeb3b);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    z-index: 1;
    animation: pulseScale 1s ease-in-out infinite alternate;
}
.new-post-highlight {
    will-change: border-color;
    transform: translateZ(0);
}
.new-post-highlight {
    animation: neonFlash 0.5s linear infinite alternate;
}
@keyframes neonFlash {
    from { 
        border-color: #ff5722;
        opacity: 0.5;
    }
    to { 
        border-color: #ffeb3b;
        opacity: 1;
    }
	
/* 251104日新增10小时内新内容的css可删除2-1 -*/
