.news_view .commonView {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.news_view .commonView .detail_view {
  width: 65.2vw;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px #eeeeee;
  border-radius: 10px;
  padding: 0 60px;
}
.news_view .commonView .detail_view .article_top {
  padding: 50px 0;
  border-bottom: 1px solid #e6e6e6;
}
.news_view .commonView .detail_view .article_top .date {
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 1;
}
.news_view .commonView .detail_view .article_top .title {
  font-size: 30px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #111111;
  line-height: 1.4;
  margin-top: 20px;
}
.news_view .commonView .detail_view .content {
  border-bottom: 1px solid #e6e6e6;
  padding-top: 50px;
  padding-bottom: 15px;
}
.news_view .commonView .detail_view .content p,
.news_view .commonView .detail_view .content span,
.news_view .commonView .detail_view .content div {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #666666;
  line-height: 1.8;
  text-align: justify;
}
.news_view .commonView .detail_view .content img {
  max-width: 100%;
}
.news_view .commonView .detail_view .content > * {
  margin-bottom: 35px;
}
.news_view .commonView .detail_view .pagination_box {
  padding: 30px 0;
}
.news_view .commonView .detail_view .pagination_box .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.news_view .commonView .detail_view .pagination_box .item .btn {
  display: block;
  width: 104px;
  height: 40px;
  background: #f8f8f8;
  border-radius: 4px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #111111;
  text-align: center;
  line-height: 40px;
}
.news_view .commonView .detail_view .pagination_box .item .title {
  display: block;
  height: 40px;
  width: calc(100% - 104px - 12px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #111111;
  line-height: 40px;
}
.news_view .commonView .detail_view .pagination_box .item:first-child {
  margin-top: 0;
}
@media (min-width: 1280px) {
  .news_view .commonView .detail_view .pagination_box .item:hover .btn {
    background-color: #a0151a;
    color: #fff;
  }
  .news_view .commonView .detail_view .pagination_box .item:hover .title {
    color: #a0151a;
  }
}
.news_view .commonView .hot_view {
  width: 19.8vw;
}
.news_view .commonView .hot_view .titles {
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #111111;
  line-height: 1;
}
.news_view .commonView .hot_view ul {
  margin-top: 28px;
}
.news_view .commonView .hot_view ul li {
  margin-top: 55px;
}
.news_view .commonView .hot_view ul li .img {
  width: 100%;
  height: 11.458vw;
  border-radius: 10px;
  overflow: hidden;
}
.news_view .commonView .hot_view ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_view .commonView .hot_view ul li .date {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 1;
  margin-top: 28px;
}
.news_view .commonView .hot_view ul li .title {
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #111111;
  line-height: 30px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */
  overflow: hidden;
  margin-top: 28px;
}
@media (min-width: 1280px) {
  .news_view .commonView .hot_view ul li:hover .title {
    color: #a0151a;
  }
}
.news_view .commonView .hot_view ul li:first-child {
  margin-top: 0;
}
@media (max-width: 1280px) {
  .news_view .commonView {
    display: block;
  }
  .news_view .commonView .detail_view {
    width: 100%;
    box-shadow: 0px 0px 1.25rem 0px #eeeeee;
    border-radius: 0.625rem;
    padding: 0 2.8125rem;
  }
  .news_view .commonView .detail_view .article_top {
    padding: 2.5rem 0;
    border-bottom: 1px solid #e6e6e6;
  }
  .news_view .commonView .detail_view .article_top .date {
    font-size: 1.5rem;
    font-family: Source Han Sans CN;
  }
  .news_view .commonView .detail_view .article_top .title {
    font-size: 1.875rem;
    font-family: Source Han Sans CN;
    line-height: 3rem;
    margin-top: 1.25rem;
  }
  .news_view .commonView .detail_view .content {
    border-bottom: 1px solid #e6e6e6;
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
  .news_view .commonView .detail_view .content p,
  .news_view .commonView .detail_view .content span,
  .news_view .commonView .detail_view .content div {
    font-size: 1.25rem;
    font-family: Source Han Sans CN;
    line-height: 2.25rem;
  }
  .news_view .commonView .detail_view .content > * {
    margin-bottom: 2.5rem;
  }
  .news_view .commonView .detail_view .pagination_box {
    padding: 2.8125rem 0;
  }
  .news_view .commonView .detail_view .pagination_box .item {
    margin-top: 1.25rem;
    width: 100%;
  }
  .news_view .commonView .detail_view .pagination_box .item .btn {
    width: 7.5rem;
    height: 3.5rem;
    border-radius: 0.25rem;
    font-size: 1.5rem;
    font-family: Source Han Sans CN;
    line-height: 3.5rem;
  }
  .news_view .commonView .detail_view .pagination_box .item .title {
    width: calc(100% - 7.5rem - 1rem);
    height: 3.5rem;
    font-size: 1.25rem;
    font-family: Source Han Sans CN;
    line-height: 3.5rem;
  }
  .news_view .commonView .detail_view .pagination_box .item:first-child {
    margin-top: 0;
  }
  .news_view .commonView .hot_view {
    width: 100%;
    margin-top: 3.5625rem;
  }
  .news_view .commonView .hot_view .titles {
    font-size: 2.25rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #111111;
  }
  .news_view .commonView .hot_view ul {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
  }
  .news_view .commonView .hot_view ul li {
    margin-top: 2rem;
    width: calc((100% - 1px - 1.25rem) / 2);
    margin-right: 1.25rem;
  }
  .news_view .commonView .hot_view ul li .img {
    width: 100%;
    height: 26.14vw;
    border-radius: 0.625rem;
  }
  .news_view .commonView .hot_view ul li .date {
    font-size: 1.875rem;
    font-family: Source Han Sans CN;
    margin-top: 1.75rem;
  }
  .news_view .commonView .hot_view ul li .title {
    font-size: 1.25rem;
    font-family: Source Han Sans CN;
    line-height: 1.875rem;
    margin-top: 1.75rem;
  }
  .news_view .commonView .hot_view ul li:nth-of-type(-n+2) {
    margin-top: 0;
  }
  .news_view .commonView .hot_view ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
