/* 轮播图 */
.swiper-box { margin-bottom:16px; height: 268px; overflow: hidden;}
.swiper-focus { position: relative; height:268px; background-color: #333;}
.swiper-focus .swiper-slide { position: relative; width: 100%; height: 100%;}
.swiper-focus .swiper-slide img { position: relative; z-index:1; width:100%; height:100%; object-fit: cover;}
.swiper-focus .swiper-slide a { position: absolute; z-index:2; left:0; top:0; display: block; width:100%; height:100%;}

/* 文章标题列表 */
.article-list { display: flex; flex-wrap: wrap; justify-content: space-between;}
.article-list li { position: relative; display: flex; align-items: center; width: 48%; padding: 8px 0 8px 16px;}
.article-list li::before { content: ''; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 6px; height: 6px; background-color: #F1B305; border-radius: 6px;}
.article-list li .title { flex: 1; min-width: 0; font-weight: 500; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.article-list li .title a { line-height: 20px; font-size: 14px;}
.article-list li .time { margin-left: 8px; line-height: 20px; font-size: 14px; color: #888; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}