.news_content_bg {
    width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden; 
}

.news_content_bg.show {
    display: block; 
}

.news_list {
    display: flex; 
    align-items: flex-start; 
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.news_list:last-child {
    border-bottom: none; 
    margin-bottom: 0;
}

.news_list a {
    display: flex; 
    text-decoration: none;
    color: #333;
    width: 100%;
}

.news_list a:hover {
    color: #066e75; 
}

.news_list img.pic {
    width: 240px; 
    height: 150px;
    object-fit: cover;
    margin-right: 25px;
    border-radius: 4px;
    flex-shrink: 0; 
}

.news_list .text-content { 
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.news_list h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
    transition: color 0.3s ease;
}

.news_list a:hover h4 {
    color: #066e75; 
}

.news_list p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news_list span.time {
    font-size: 14px;
    color: #999;
    display: block;
    text-align: right; 
    padding-top: 10px;
    border-top: 1px dashed #eee;
    margin-top: auto; 
}

#pager {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

#pager a, #pager span {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    border: 1px solid #066e75;
    color: #066e75;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#pager a:hover {
    background-color: #066e75;
    color: #fff;
}

#pager span.current {
    background-color: #066e75;
    color: #fff;
    font-weight: bold;
    cursor: default;
}