.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.image-item {
    flex: 1 1 calc(50% - 20px); /* Each item takes up 50% of the container's width minus the margin/gap */
    margin: 2px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.image-item img {
    width: 100%;
    height:210px;
object-fit: cover;
    display: block;
    border-radius: 5px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: shadow for depth */
}

.news_date {
    float: left;
    width: 55px;
    text-align: center;
    margin-right: 20px;
    padding-top: 8px;
}
.news_date .news_year {
    line-height: 26px;
    height: 26px;
    font-size: 16px;
    color: #fff;
    background-color: #7f1313;
    transition: all 0.4s ease-in-out;
}
.news_date .news_days {
    line-height: 26px;
    height: 26px;
    font-size: 14px;
    color: #4b504e;
    background-color: #e3e6e4;
}
.header-link{height: 30px;line-height: 30px;text-align: right;}
.header-link a{color: #fff;}
.title a:hover{color: #fff!important;}