/* news_list.css */
.virtual-research-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    background: #e3f2fd;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.news-image {
    flex: 0 0 250px;
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.news-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.news-summary {
    color: #34495e;
    line-height: 1.6;
}

.pagination {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-item {
    padding: 8px 16px;
    border-radius: 4px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.page-item.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.page-item:hover:not(.active) {
    background: #e9ecef;
}

/* 去除所有链接下划线 */
.news-link {
    text-decoration: none !important;
    color: inherit;
}

/* 修复标题继承的链接样式 */
.news-title {
    color: #2c3e50 !important;
    text-decoration: none !important;
}

/* 确保悬停时无下划线 */
.news-link:hover .news-title {
    text-decoration: none !important;
}

/* news_list.css */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e67e22; /* 与首页橙色横条保持一致 */
    border-radius: 2px;
}