.evaluation_item {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}


/* 报告列表 */
ul.report_list li {
  width: 100%;
  height: 214px;
}
.report_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  justify-content: space-between;
  color: #333;
}

.report_list li h4 {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}

.report_list li div {
  margin-right: 20px;
}

.report_list li p {
  font-size: 14px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.report_list li img {
  width: 126px;
  height: 174px;
}

/* 报告详情样式 */
.detail_container {
  background-color: #fff;
  padding: 100px 80px;
}

.detail_container h2 {
  line-height: 22px;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
  color: #333;
  text-align: center;
  font-family: 'fangsong';
}

.detail_container p {
  text-indent: 2em;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}

.detail_container a {
  font-weight: 700;
}

.detail_container table {
  width: 100%;
  border-collapse: collapse;
  /* 合并边框 */
}

.detail_container th,
.detail_container td {
  border: 1px solid #ddd;
  /* 表格边框颜色和宽度 */
  padding: 20px;
  /* 内边距 */
  text-align: left;
}

.detail_container td.text_align_center {
  text-align: center;
}

.detail_container th {
  background-color: #f4f4f4;
  /* 表头背景颜色 */
  text-align: center;
}

.detail_container tr:nth-child(even) {
  background-color: #fff;
  /* 交替行背景颜色 */
}

/* pdf容器 */
.report_container iframe {
  width: 100%;
  height: 100vh;
}