
/* ---- 右侧内容 ---- */
.main-article {
  min-width: 0;
}

.breadcrumb {
  font-size: 14px;
  color: #777777;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb a {
  color: #666666;
  text-decoration: none;
}

.article-content {
  font-size: 16px;
  color: #444444;
  line-height: 1.8;
  text-align: justify;
}

.article-content p {
  margin-bottom: 18px;
}

/* ==========================================================================
   响应式
   ========================================================================== */
@media (max-width: 992px) {
  .inner-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .page-banner {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    grid-template-columns: 1fr;
  }
  .page-banner {
    height: 140px;
  }
}
     /* 新闻列表样式 */
        .inner-news-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .inner-news-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px dashed #dddddd;
            gap: 20px;
        }

        .news-link-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        /* 还原列表前缀的小原点/小方块符号 */
        .news-bullet {
            color: #666666;
            font-size: 12px;
            flex-shrink: 0;
        }

        .news-item-title {
            font-size: 15px;
            color: #444444;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; /* 超出宽度自动省略号 */
        }

        .inner-news-item:hover .news-item-title {
            color: #E50012;
        }

        .news-item-date {
            font-size: 14px;
            color: #666666;
            white-space: nowrap;
            flex-shrink: 0;
        }
