.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-list {
    padding: 0px;
}

.news-item {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
   
    transition: background-color 0.3s ease;
}

.news-item:hover {
    background-color: rgba(137, 196, 255, 0.05);
 
}

.news-item::before {
    content: "•";
    position: absolute;
    left: 10px;
    font-size: 20px;
    line-height: 1;
    color: #333;
    top: 22%;
}

.news-item a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* 新闻内容区域 */
.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
    font-weight: lighter;
}

.news-date {
    font-size: 14px;
    color: #999;
}

/* 新闻图片区域 */
.news-image {
    flex: 0 0 230px;
    width: 180px;
}

.news-image img {
    width: 100%;
    height: 125px;
    object-fit: cover;
    border-radius: 4px;
}

.news-item a:hover .news-title {
   
}

.news-item:last-child {
    border-bottom: none;
}
.section-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.section-header h2 {
    font-size: 32px;
    color: #1E90FF;
    font-weight: bold;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
    padding-right: 12px;
}

.section-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #1E90FF;
    z-index: 0;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.breadcrumb a {
    color: #1E90FF;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
