/* 当天新闻的样式 */
.infoList.is-new {
    position: relative;
    border: 2px solid #ff69b4;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.2);
    animation: newItemPulse 2s infinite;
}

.infoList.is-new::after {
    content: 'NEW';
    position: absolute;
    top: 28px;
    right: 10px;
    background: #ff69b4;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: bold;
    animation: newLabelPulse 2s infinite;
}

@keyframes newItemPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.005);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes newLabelPulse {
    0% {
        background: #ff69b4;
    }
    50% {
        background: #ff1493;
    }
    100% {
        background: #ff69b4;
    }
}

/* 最近3天内的新闻样式 */
.infoList.is-recent {
    position: relative;
}

.infoList.is-recent::after {
    content: 'RECENT';
    position: absolute;
    top: 28px;
    right: 10px;
    background: #4CAF50;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8em;
} 