/*最新资讯*/
.news-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.news-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

.news-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #4E9DE0;
}

.news-item {
    display: table;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.date-box {
    display: table-cell;
    vertical-align: middle;
    width: 80px;
    background-color: #4E9DE0;
    color: white;
    text-align: center;
    padding: 15px 0;
}

.date-day {
    font-size: 24px;
    font-weight: bold;
}

.date-month-year {
    font-size: 12px;
}

.news-content {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #4E9DE0;
}

.news-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

.view-more a {
    display: inline-block;
    background-color: #4E9DE0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.view-more a:hover {
    background-color: #3066BE;
}

.modal-title {
    font-size: 16px;
}
/*最新资讯结束*/