/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft Yahei", sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

header {
    background-color: #c00;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav li {
    margin: 0 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.news-article h2 {
    color: #c00;
    margin-bottom: 10px;
}

.date {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.news-list {
    margin-top: 30px;
}

.news-list h3 {
    color: #c00;
    margin-bottom: 5px;
}

.news-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

footer {
    background-color: #c00;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}