.details-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.details-container .news-content {
  flex: 1;
  margin-right: 20px;
  background: #fff;
  padding: 0 20px;
}
.details-container .news-content .title {
  font-size: 2em;
  color: #222;
  text-align: center;
  margin-bottom: 10px;
  padding-top: 20px;
}
.details-container .news-content .subtitle {
  font-size: 14px;
  color: #666;
  margin: 20px 0 40px;
  text-align: center;
}
.details-container .news-content .subtitle span {
  margin: 0 10px;
}
.details-container .news-content .subtitle span a {
  color: #fd5400;
}
.details-container .news-content .subtitle span a:hover {
  text-decoration: underline;
}
.details-container .news-content .article {
  padding-top: 20px;
}
.details-container .news-content .article p {
  font: 16px/32px "微软雅黑";
  color: #666;
  margin-bottom: 15px;
  text-indent: 2em;
}
.details-container .news-content .next-prev {
  margin-top: 30px;
  padding: 0 20px;
  background: #f5f5f5;
}
.details-container .news-content .next-prev li {
  font: 14px/40px "微软雅黑";
  color: #555;
  border-bottom: 1px solid #f1f1f1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.details-container .news-content .next-prev li a {
  color: #fd5400;
  margin-left: 10px;
}
.details-container .news-content .next-prev li:last-child {
  border-bottom: 0;
}
.details-container .comment-container {
  width: 400px;
}
.details-container .comment-container .content {
  background: #FAFAFA;
  margin-bottom: 20px;
  padding: 0 20px;
  width: auto;
}
.details-container .comment-container .content .title {
  border-bottom: 1px solid #e2e2e2;
  font: 16px/60px "微软雅黑";
  color: #333;
  font-weight: bold;
  padding-left: 15px;
  position: relative;
}
.details-container .comment-container .content .title::before {
  content: '';
  width: 3px;
  height: 16px;
  background: #fd5400;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.details-container .comment-container .content .text-list a {
  display: block;
  border-bottom: 1px dashed #e2e2e2;
  font: 14px/50px "微软雅黑";
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}
.details-container .comment-container .content .text-list a i {
  display: inline-block;
  background: #fd5400;
  color: #fff;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  font: 12px/22px "微软雅黑";
  text-align: center;
}
.details-container .comment-container .content .text-list a:last-child {
  border: 0;
}
.details-container .comment-container .content .text-list a:hover {
  color: #fd5400;
}
.details-container .comment-container .content .img-list {
  padding-top: 20px;
  overflow: hidden;
}
.details-container .comment-container .content .img-list a {
  display: block;
  width: 49%;
  margin-right: 2%;
  float: left;
}
.details-container .comment-container .content .img-list a img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.details-container .comment-container .content .img-list a h3 {
  font: 14px/40px "微软雅黑";
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.details-container .comment-container .content .img-list a:hover h3 {
  color: #fd5400;
}
.details-container .comment-container .content .img-list a:nth-child(2n) {
  margin-right: 0;
}
