/*文章列表*/
.card-body a{
	text-decoration:none;
}
.article_list_img {
    height: 180px;     /* 固定高度（与你的 `maxh-180` 一致） */
    overflow: hidden;  /* 隐藏超出部分（防止图片溢出） */
    position: relative; /* 可选：如果需要绝对定位子元素 */
}
 
.article_list_img img {
    width: 100%;       /* 默认占满宽度 */
    height: 100%;      /* 默认占满高度 */
    object-fit: cover; /* 关键：保持比例填充容器，可能裁剪 */
    display: block;    /* 避免图片下方有间隙 */
}

.article_list_cont div a p{
	color:#545454;
}
/*内容*/
/* 顶部背景图样式 */
.ar-topbox {
    position: relative;
}

.ar-topbox img {
    filter: brightness(0.7); /* 调暗背景图，突出文字 */
}

/* 文章内容区域 */
.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

/* 上下篇导航 */
.prenextbox a:hover {
    color: #0d6efd !important;
    text-decoration: underline !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .ar-topbox h1 {
        font-size: 1.8rem;
    }
    article {
        padding: 1.5rem !important;
    }
}