.news-detail {
  padding: 30px 0;
}

.news-detail .title {
  margin-bottom: 15px;
  font-family: 'OpenSans-B';
}

.news-detail .new-info p {
  line-height: 1.8;
}

.news-detail .new-info h2,
.news-detail .new-info h3 {
  text-align: left;
  font-size: 18px;
  margin-bottom: 5px;
  font-family: 'Poppins-B';
}

.news-detail .new-info ul,
.news-detail .new-info ol {
  padding-left: 16px;
}

.news-detail .new-content .row>div:first-child {
  margin-bottom: 30px;
}

.news-detail .rt-title {
  text-align: left;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 15px;
  position: relative;
  font-family: 'OpenSans-B';
}

.news-detail .rt-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100px;
  height: 1px;
  background: var(--style-color);
}

.news-detail .content-list {
  list-style: none;
  max-height: 860px;
  overflow-y: auto;
}

.news-detail .content-list>li:not(:last-child) {
  margin-bottom: 15px;
}

.news-detail .content-list>li>a {
  display: flex;
  align-items: center;
}

.news-detail .content-list .scale-img {
  width: 150px;
  flex-shrink: 0;
  margin-right: 15px;
  display: none;
}

.news-detail .content-list .scale-img img {
  width: 100%;
}

.news-detail .content-list .tit {
  line-height: 2;
  margin-bottom: 4px;
  font-family: 'OpenSans-B';
}

.news-detail .content-list>li:hover .tit {
  color: var(--style-color);
}

.news-detail .content-list .info {
  color: #333;
  line-height: 1.8;
}

@media(min-width:768px) {
  .news-detail .new-info h2, .news-detail .new-info h3 {
    font-size: 20px;
  }

  .news-detail .content-list .scale-img {
    display: block;
  }
}

@media(min-width:992px) {
  .news-detail .new-content .row>div:first-child {
    flex: 0 0 62.5%;
    max-width: 62.5%;
    margin-bottom: 0;
  }

  .news-detail .new-content .row>div:last-child {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }

  .news-detail .content-list .scale-img {
    display: none;
  }
}

@media(min-width:1200px) {
  .news-detail {
    padding: 68px 0 70px;
  }

  .news-detail .title {
    margin-bottom: 35px;
  }

  .news-detail .new-info h2, .news-detail .new-info h3 {
    font-size: 24px;
  }

  .news-detail figure:not(:first-child)>img {
    margin-top: 35px;
  }

  .news-detail figure:not(:last-child)>img {
    margin-bottom: 35px;
  }

  .news-detail .new-content .row>div:last-child {
    padding-left: 30px;
  }

  .news-detail .rt-title,
  .news-detail .content-list>li:not(:last-child) {
    margin-bottom: 25px;
  }

  .news-detail .content-list .scale-img {
    display: block;
  }
}

@media(min-width:1440px) {
  .news-detail .title {
    margin-bottom: 45px;
  }

  .news-detail .new-content .row>div:last-child {
    padding-left: 45px;
  }
}