/* =========================================
方振® 工业级案例数据方块补丁 (V1.0)
作用域:仅限文章列表摘要区
========================================= */
/* 1. 摘要容器重构:变成深蓝色边框的参数条 */
.w-news-item-summary, .w-news-summary {
display: block !important;
background: #F8FAFC !important; /* 明亮工业灰底 */
border-left: 4px solid #003399 !important; /* 方振皇家瓷蓝 */
padding: 10px 15px !important;
margin-top: 15px !important;
color: #1A1A1A !important;
font-family: "SF Mono", "Monaco", "PingFang SC", sans-serif !important;
font-size: 13px !important;
line-height: 1.6 !important;
border-radius: 2px !important;
letter-spacing: 0.5px !important;
}
/* 2. 鼠标悬停时的动态反馈 */
.w-news-item:hover .w-news-item-summary {
background: #E0E7FF !important; /* 浅蓝色亮起 */
transition: 0.3s ease;
}
/* 3. 隐藏不需要的发布时间(可选,保持干净) */
.w-news-item-date {
display: none !important;
}
/* 4. 标题加重:展现大厂权威感 */
.w-news-item-title a {
font-weight: 800 !important;
color: #111 !important;
font-size: 18px !important;
}