.inner-hero-news {
  height: 524px;
}
.content-header{
text-shadow: none;
}
.article-main {
  padding-top: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 327px minmax(0, 1fr);
  align-items: start;
  margin-top: -104px;
  gap: 14px;
}

.side-nav-news h2 {
  min-height: 104px;
  padding: 0;
  font-size: 24px;
}

.side-nav-news a {
  min-height: 70px;
  padding: 20px 28px;
  font-size: 18px;
}

.article-card {
  min-height: 300px;
  padding: 14px 30px 26px;
}

.article-card .content-header {
  min-height: 34px;
  border-bottom: 0;
  justify-content: end;
}

.article-title {
  margin: 30px 0;
  text-align: center;
  color: #080808;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 26px;
  margin: 0 auto;
  padding: 8px 20px;
  background: #F3F5F8;
  color: #7f8792;
  font-size: 13px;
  line-height: 1.6;
}

.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.article-meta-item-text {
  white-space: nowrap;
}

.article-meta-icon {
  height: 15px;
  object-fit: contain;
  flex: 0 0 14px;
}

.article-body {
  margin-top: 20px;
}

.article-body p {
  margin: 0 0 18px;
  color: #080808;
  font-size: 18px;
  line-height: 2.2;
  text-indent: 2em;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(760px, 100%);
  margin: 8px auto 16px;
}

.article-gallery img {
  height: 220px;
  object-fit: cover;
}

.article-single-image {
  width: min(360px, 100%);
  height: 240px;
  object-fit: cover;
  margin: 8px auto 16px;
}

.article-info-line {
  margin-top: 8px;
  color: #7f8da1;
  font-size: 16px;
}

.article-prev-next {
  margin-top: 50px;
  border-top: 1px solid #353535;
  border-bottom: 1px solid #353535;
  padding: 24px 0;
}

.article-prev-next a {
  display: block;
  color: #191818;
  font-size: 18px;
  line-height: 2.1;
}

.article-prev-next a:hover {
  text-decoration: underline;
}


/* 当屏幕宽度小于1200px时 平板 */

@media (max-width: 1200px) {
    .inner-hero-news {
      height: 260px;
    }

    .article-layout {
      grid-template-columns: 1fr;
      margin-top: -70px;
    }

   

    .article-card {
      margin-top: 0;
      min-height: auto;
      padding: 12px 16px 20px;
    }

    .article-title {
      font-size: 22px;
      margin-top: 8px;
    }

    .article-meta {
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 10px 18px;
      padding: 8px 12px;
    }

    .article-meta-item-text {
      white-space: normal;
    }

    .article-gallery img {
      height: 180px;
    }
}

@media (max-width: 768px) {
.article-card .content-header{
display:none;
}
.article-body img{
    width: 80% !important;
    height: auto !important;
}
    .inner-hero-news {
      height: 220px;
    }

    .article-title {
      font-size: 18px;
      line-height: 1.45;
    }

    .article-body p {
      font-size: 14px !important;
      line-height: 2;
    }

    .article-gallery {
      grid-template-columns: 1fr;
      width: 100%;
    }

    .article-gallery img,
    .article-single-image {
      height: 180px;
    }

    .article-prev-next a {
      line-height: 1.8;
    }
}