
/* 页面 */

.news-section{
background:#fafafa;
}

.news-container{
max-width:1000px;
margin:auto;
}

.news-intro{
max-width:720px;
color:var(--gray);
margin-bottom:50px;
line-height:1.7;
}

/* 新闻列表 */

.news-list{
display:flex;
flex-direction:column;
}

/* 单条新闻 */

.news-item{

position:relative;

padding:26px 20px 36px 20px;

border-bottom:1px solid #e8e8e8;

transition:.25s;

}

.news-item:hover{
padding-left:26px;
}

/* 标题 */

.news-title{

font-size:20px;
font-weight:600;

color:#222;

text-decoration:none;

line-height:1.5;

display:flex;
justify-content:space-between;

}

.news-title span{
color:#aaa;
transition:.2s;
}

.news-title:hover{
color:var(--primary);
}

.news-title:hover span{
transform:translateX(6px);
color:var(--primary);
}

/* 摘要 */

.news-excerpt{

margin-top:8px;

font-size:14px;

color:#777;

line-height:1.6;

max-width:760px;

}
.news-item {
    position: relative;
    padding: 15px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    border-radius: 8px;
}
.news-meta {
    font-size: 0.85em;
    color: #777; /* 灰色，更欧美风格 */
    margin-top: 10px;
    text-align: right; /* 右下角显示 */
}

.news-author {
    font-weight: 500; /* 稍微加粗 */
    font-style: normal;
}