* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}


.container {
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.5;
  background-image: url("https://res.zhongshushen.com/public/0de89e25c6e84312a09a8dfe41d93204.png");
}

p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* 用户名行 */
p.username {
  margin-top: 0em;
}

/* 摘要行 */
p.abstract {
  text-indent: 2em;
}

.title-padding {
  padding-top: 1em;
  padding-bottom: 1em;
}
.title-padding:first {
  padding-top: 2em;
}


.tr-padding {
  width: 3%;
}

/* .seal {
  max-width: 100px;
  float: right;
} */

/* .row td {
  width: 25%;
  text-align: center;
} */

/* 
.row td {
  width: 27%;
  text-align: center;
}
.row td:first-child {
  width: 19%;
} */

.report-title {
  padding-top: 1em;
  font-weight: bolder;
  text-align: center;
  font-size: 1.2em;
  /* padding: 1em auto; */
}

.review-container {
  max-width: 100%;
  overflow-x: hidden;
}

.review-item {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  overflow: hidden;
}

.t-card {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  overflow: hidden;
}

.t-card-row > td {
  /* border-bottom: 1px solid #eee; */
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 1em;
  /* font-weight: bold; */
  /* padding: 0.75em 1em 0.75em 0.5em; */
}
.t-card-row > td:nth-child(even) {
  padding-left: 0;
  padding-right: 1em;
  
}


.bold {
  font-weight: bold;
}

/* 表头（左侧）和项目内容（右侧）的组合 */
td table {
  width: 100%;
  height: 100%;
  table-layout: fixed; /* 强制表格遵守指定的宽度 */
  /* border: 3px solid rgb(114, 114, 114); */
  border-collapse: collapse;
  /* border: #2e7d32; */
}
.t-review-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.t-review-item td {
  flex-grow: 1;
  width: 4em;
  /* flex: 1; */
}

.test-parent {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  border-collapse: collapse;
}

.test {
  width: 50%;
  height: 100%;
  flex: 1;
  text-align: center;
}
.test:last-child {
  padding-right: 1em;
}

/* "意见详情"文案 */
.review-detail-marker {
  /* color: red; */
  margin-right: 0.5em;
  /* padding: 0.75em 1em; */
  /* font-size: 1.1em; */
  /* background-color: #ffebee; */
  color: #c62828;
}
.comment-content p {
  display: inline;
}


.degree-tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.degree-10 {
  background-color: #e6f7e6;
  color: #2e7d32;
}

.degree-20 {
  background-color: #fff8e6;
  color: #d17d00;
}

.degree-30 {
  background-color: #ffebee;
  color: #c62828;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px auto;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 100px;
  max-height: 5em;
  /* height: auto; */
  border: 1px solid #eee;
  border-radius: 4px;
  /* flex: 1; */
}

.comment-content {
  max-width: 100%;
  padding-left: 1em;
  padding-right: 1em;
  /* overflow: hidden; */
}

.comment-content img {
  /* max-width: 100%; */
  /* height: auto; */
  max-width: 100%;
  max-height: 2em;  /* 设置图片最大高度为3em */
  height: auto;     /* 保持宽高比 */
  width: auto;      /* 保持宽高比 */
  object-fit: contain; /* 保持图片比例，完整显示 */
  vertical-align: middle; /* 图片对齐方式 */
}

li {
  margin: auto 1em;
}

/* 签名和盖章区域 */
.sign {
  text-align: left;
  position: relative; /* 关键：建立定位上下文 */
  min-height: 100px; /* 确保容器有足够高度 */
}

/* 盖章 */
.seal {
  position: absolute; /* 关键：绝对定位 */
  right: -15%;
  top: 30%;
  /* right: 0; */
  /* top: 50%; */

  /* 倾斜效果更自然 */
  /* transform: translateY(-50%) rotate(-15deg);  */

  transform: translateY(-50%); 
  max-width: 200px;
  /* opacity: 0.8; */

  /* opacity: 0.7; */  /* 半透明模拟真实盖章效果 */
  /* 确保印章在上层 */
  /* z-index: 1;  */
  mix-blend-mode: multiply; /* 混合模式模拟油墨效果 */
  pointer-events: none; /* 防止印章阻挡点击事件 */
}
.sign p {
  position: relative;
  z-index: 2;
  /* background-color: rgba(255,255,255,0.7); */
  /* display: inline-block; */
  /* padding: 0 5px; */
}
/* 
.sign p {
  position: relative;
  z-index: 2;
  background-color: rgba(255,255,255,0.7);
  display: inline-block;
  padding: 0 5px;
}
 */

.row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.row > td {
  flex: 1;
}

/* 页尾空白再扩大三行字的宽度 */
.empty-footer {
  line-height: 3em;
}



