/* 列表详情 */
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content_detail {
  margin-top: 40px;
  display: flex;
}
/* left */
.content_detail .detail_left {
  width: 870px;
  height: auto;
  margin-right: 30px;
}
/* title */
.titleBox {
  text-align: center;
}
.titleBox .title_name {
  font-size: 20px;
  margin-bottom: 20px;
}
.titleBox .info {
  font-size: 14px;
  color: #999999;
  margin-bottom: 20px;
}
/* 内容 */
.text_box {
  font-size: 14px;
  color: #666;
  line-height: 26px;
  box-sizing: border-box;
  padding: 30px 0;
  border-top: 2px dashed #dedede;
  border-bottom: 2px dashed #dedede;
}
.text_box p {
  text-indent: 2em;
}
.imgBox {
  width: 438px;
  height: 326px;
  margin: 40px auto;
}
/* 上一条 下一条 */
.next_box {
  margin-top: 30px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.next_box li {
  margin-bottom: 20px;
}
.next_box li .iconfont {
  font-size: 16px;
  color: #333;
}
.next_box .back {
  font-size: 14px;
  color: #999999;
}
.next_box .back .iconfont {
  font-size: 20px;
  color: #999999;
  margin-right: 10px;
}

/* right */
.content_detail .detail_right {
  width: 300px;
  height: auto;
}
.detail_right .right_top {
  width: 300px;
  height: 432px;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  margin-bottom: 20px;
}
.detail_right .right_top .name {
  width: 298px;
  height: 70px;
  line-height: 70px;
  background: rgba(248, 248, 248, 1);
  border-radius: 4px 4px 0px 0px;
  font-size: 24px;
  padding-left: 10px;
}
.detail_right .right_top ul {
  padding: 0 10px;
  font-size: 14px;
  color: #666;
}
.detail_right .right_top li {
  height: 60px;
  border-bottom: 1px dashed #dedede;
  display: flex;
  align-items: center;
}
.detail_right .right_top li:last-child {
  border: none;
}
.detail_right .right_top li .iconfont {
  font-size: 14px;
  color: #999999;
  margin-right: 10px;
}
.detail_right .right_top li span {
  width: 208px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
