.page {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
}

.page .article-title {
    text-align: center;
}

.page .article-time {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin: 10px 0 40px;
}

.page .article-content{
    text-align: left;
}

.page img {
    max-width: 100%;
    height: auto;
}
.page p {
    text-indent: 2em;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
    margin: 20px 0;
}
.page ul,
.page ol {
    padding-left: 40px;
}
.page li{
    margin: 10px 0;
}





/* 新闻列表 */
.news {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
}
.news .setion-title {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #202124;
}
.news-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    list-style: none;
}

.news-list .item {
    max-width: 380px;
    height: 420px;
}

.news-list .item .item_content {
    padding: 20px;
}

.news-list .item .time {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-list .item .item_content .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #202124;
}

.news-list .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    overflow: hidden;
}

.news-list .item h3 {
    margin: 10px 0;
}