.hengsheng_news_read {
  padding-bottom: 40px;
  background: #F6F6F6;
}

.hengsheng_news_read_inner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.hengsheng_news_read_main {
  flex: 1;
  min-width: 0;
}

.hengsheng_news_read_aside {
  width: 318px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

.hengsheng_news_read_main {
  padding-right: 36px;
  border-right: 1px solid #00000099;
}

.hengsheng_news_read_title {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: var(--font-family-semi-bold);
  font-size: var(--title-size-h5);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.hengsheng_news_read_date {
  color: rgba(0, 0, 0, 0.70);
  text-align: center;
  font-family: var(--font-family-semi-bold);
  font-size: var(--text-size);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 26px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-end;
}

.hengsheng_news_read_content {
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: 1.875;
  word-break: break-word;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #000;
}

.hengsheng_news_read_content img {
  max-width: 100%;
  height: auto;
}

.hengsheng_news_read_aside {
  position: sticky;
  top: 100px;
}

.hengsheng_news_read_aside_title {
  color: #000;
  font-family: var(--font-family-semi-bold);
  font-size: var(--title-size-h3);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 17px;
  padding-bottom: 20px;
  border-bottom: 1px solid #95959566;
}

.hengsheng_news_read_recommend {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.hengsheng_news_read_recommend_item {
  display: flex;
  flex-direction: column;
  padding: 26px 0 20px;
  border-bottom: 1px solid #95959566;
}

.hengsheng_news_read_recommend_item:hover .hengsheng_news_read_recommend_title,
.hengsheng_news_read_recommend_item:hover .hengsheng_news_read_recommend_date {
  font-weight: 700;
  font-family: var(--font-family-bold);
}

.hengsheng_news_read_recommend_body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hengsheng_news_read_recommend_date {
  margin: 0;
  color: rgba(0, 0, 0, 0.70);
  font-family: var(--font-family-semi-bold);
  font-size: var(--text-size);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-right: 50px;
  text-align: right;
}

.hengsheng_news_read_recommend_title {
  margin: 0;
  color: #000;
  font-family: var(--font-family-semi-bold);
  font-size: var(--title-size-h5);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hengsheng_news_read_recommend_title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.28s ease;
}

.hengsheng_news_read_recommend_title a:hover {
  color: var(--color-primary);
}

.hengsheng_news_read_recommend_title:hover{
  font-weight: 700;
}

.hengsheng-news-page{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 32px;
}
.hengsheng-news-page .hengsheng-news-prev,
.hengsheng-news-page .hengsheng-news-next{
  display: flex;
  align-items: center;
  gap: 30px;
}
.hengsheng-news-prev-title,
.hengsheng-news-next-icon-title{
  color: #000;
  font-family: var(--font-family);
  font-size: var(--text-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hengsheng-news-prev-title b,
.hengsheng-news-next-icon-title b{
  font-weight: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* 行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


@media screen and (max-width: 1500px) {


}

@media screen and (max-width: 1200px) {

  .hengsheng_news_read_aside {
    width: 260px;
  }
  .hengsheng_news_read_recommend_date{
    padding-right: 0;
  }
}

@media screen and (max-width: 992px) {
  .hengsheng_news_read_inner{
    flex-direction: column;
    gap: 30px;
  }
  .hengsheng_news_read_main{
    border-right: none;
    padding-right: 0;
  }
  .hengsheng_news_read_aside{
    width: 100%;
  }
  .hengsheng-news-page{
   grid-template-columns: 1fr;
   gap: 16px;
  }
}