#news_title {
    display: flex;
    position: relative;
    background-color: rgba(var(--theme-bg-rgb), 0.5);
    background-repeat: repeat;
    background-size: cover;
    background-position: center center;
    height: 100px;
    justify-content: center;
    align-items: center;
    animation: news_title_animation 0.3s ease;
}

#news_title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/static/image/news_page.webp");
    background-position: center center;
    background-size: cover;
    opacity: 1;
    z-index: -1;
    -webkit-mask-image: linear-gradient(#fff, #fff);
    -webkit-mask-clip: padding-box;
    mask-image: linear-gradient(#fff, #fff);
    border-radius: 20px;
    animation: fade_in 0.3s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes news_title_animation {
    from {
        background-color: rgba(245, 245, 245, 0);
        transform: translateY(24px);
    }

    to {
        background-color: rgba(245, 245, 245, 0.5);
        transform: translateY(0);
    }
}

.page_title {
    font-size: clamp(29px, 8vw, 40px);
    font-weight: 600;
    color: #efe78d;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(12px);
    animation: textFadeUp 0.3s ease-out forwards;
    animation-delay: 0.3s;
    /* 初始描边完全透明 */
    text-shadow: 0 0 0 rgba(0, 0, 0,0), 1px 0 0 rgba(0, 0, 0,0), 0 1px 0 rgba(0, 0, 0,0), -1px 0 0 rgba(0, 0, 0,0), 0 -1px 0 rgba(0, 0, 0,0);
}

.page_title::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 88px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: translateX(-50%) scaleX(0); /* 初始缩成一条线 */
    border-radius: 2px;
    animation: lineExpand 0.8s ease-out forwards;   
    animation-delay: 0.6s;
}

@keyframes textFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        /* 动画结束开启白色细描边 */
        text-shadow: 0 0 0 rgba(0, 0, 0,0.7), 1px 0 0 rgba(0, 0, 0,0.7), 0 1px 0 rgba(0, 0, 0,0.7), -1px 0 0 rgba(0, 0, 0,0.7), 0 -1px 0 rgba(0, 0, 0,0.7);
    }
}

@keyframes lineExpand {
    70% {
        transform: translateX(-50%) scaleX(4);
    }

    to {
        transform: translateX(-50%) scaleX(3);
    }
}



#news_list_page{
}

#news_list_page li {
    display: flex;
    align-items: center; 
    margin: 3px;
}

#news_list_page .news_meta {
    margin-left: auto;
    margin-right: 5px;
    font-size: 15px;
    color: #777777;
    flex-shrink: 0;
}

#news_page {
    padding: 12px;
}


