.related-posts {
    margin-top: 20px;
    background-color: #F6F3FE;
}

.related-post {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
}

.related-post:last-child {
    border-bottom: none;
}

.related-post img {
    width: 4.375rem;
    height: 4.375rem;
    margin-right: 0.9375rem;
    border-radius: 0.3125rem;
}

.related-post .post-info {
    flex: 1;
}

.related-post .post-date {
    color: #666;
    margin-bottom: 5px;
    display: flex;
}

.related-post .post-date img{
    width: 1rem;
    height: 1rem;
    display: block;
}

.related-post .post-title {
    font-weight: bold;
    margin: 0;
}

.post-info a{
    text-decoration: none;
}

.post-info h3{
    color: #17012C;
}

main {
    /* width: 100%; */
    /* 容器宽度占满父容器 */
    /* padding-top: 53.33%; */
    /* 模拟宽高比（1920:1024） */
    position: relative;
    /* 创建相对定位上下文 */
    background-image: url('../img/bg-main-2.png');
    /* 替换为你的图片路径 */
    background-size: cover;
    /* 覆盖整个容器 */
    /* background-position: center; */
    /* 图片居中 */
    background-repeat: no-repeat;
    /* 禁止平铺 */
    /* background-color: #f0f0f0; */
    background-color: #fff;
    /* 可选：备用背景颜色 */
    /* height: 320rem; */
    /* display: flex; */
    position: relative;
  
  }

.article-content{
    padding: 8rem 12.5rem 20rem 12.5rem;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.article-content-cover{
    width: 63.625rem;
    height: 34.5625rem;
    display: block;
    object-fit: cover;
    border-radius: 1rem;
}
.article-content-info{
    display: flex;
    justify-content: start;
    margin: 2.5rem 0.625rem 2.5rem 0.625rem;
    gap: 10rem;
}

.article-content-info-left{
    display: flex;
    gap: 0.625rem;
}

.article-content-info-left img {
    width: 1.125rem;
    height: 1.125rem;
    display: block;
}

.article-content-info-left span{
    font-size: 1rem;
    color: #575555;
}

.article-content-info-right{
    display: flex;
    gap: 0.625rem;
}

.article-content-info-right img {
    width: 1.125rem;
    height: 1.125rem;
    display: block;
}

.article-content-info-right span{
    font-size: 1rem;
    color: #575555;
}

.article-news-title{
    color: #17012C;
    font-size: 2.5rem;
    margin: 3rem 0rem 5rem 0rem;
}

.article-content-text{
    font-size: 1.25rem;
    line-height: 2rem;
    color: #575555;
}

.article-content-text img{
    width: 70%;
    height: auto;
    display: block;
}

