/* 最新文章容器样式 */
.latest-articles {
    margin-top: 50px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    max-width: 1200px; /* 可根据实际情况调整最大宽度 */
    margin-left: auto;
    margin-right: auto;
}
.latest-articles h2 {
    margin-bottom: 20px;
    color: #333;
}
.latest-articles ul {
    list-style-type: none;
    padding: 0;
}
.latest-articles li {
    margin-bottom: 10px;
}
.latest-articles li a {
    color: #007BFF;
    text-decoration: none;
}
.latest-articles li a:hover {
    text-decoration: underline;
}    