.article-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #8b2323;
}

.title {
    font-size: 2.5rem;
    color: #8b2323;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.content {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    min-height: 400px;
}

.section {
    margin-bottom: 30px;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.4rem;
    color: #8b2323;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #8b2323;
}

.article {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #ffd700;
}

.article-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.article-content {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.list {
    padding-left: 20px;
}

.list li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

/* 文章内容中的图片样式 */
.content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .title {
        font-size: 2rem;
    }

    .content {
        padding: 20px;
    }

    .section-title {
        font-size: 1.2rem;
    }
}