/* 全局样式 */
body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    background-color: #f4f1ea;
    color: #333;
    margin: 0;
    padding: 0;
}

a {
    color: #8b5a2b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 布局容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 头部 */
header {
    background-color: #6b4226;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

header .tagline {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* 主体内容 */
.intro {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-list {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-list h2 {
    font-size: 1.8rem;
    color: #6b4226;
    margin-bottom: 20px;
}

.article-list ul {
    list-style: none;
    padding: 0;
}

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

.article-list li:last-child {
    border-bottom: none;
}

.article-list .update-time {
    font-size: 0.9rem;
    color: #777;
    display: block;
    margin-top: 5px;
}
footer a{
    color: #ffffff;
    margin: 0 5px;
}
/* 响应式设计 */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .container {
        padding: 10px;
    }

    .intro p, .article-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    header .tagline {
        font-size: 1rem;
    }

    .article-list h2 {
        font-size: 1.5rem;
    }
}

/* 页脚 */
footer {
    background-color: #6b4226;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
}
