.print-page-box {
  /* max-width: 900px;
   margin: 0 auto;
   padding: 32px; */
  box-sizing: border-box;
}

.print-page-box .print-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.print-page-box .print-head img {
  height: 54px;
}

.print-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 8px;
}

.showBth {
  max-width: 900px;
  margin: 0 auto;
}


.mytablePrint {
  border: 1px solid #222;
  border-collapse: collapse;
}


.mytablePrint tr td {
  padding: 4px;
  border: 1px solid #222;
}



.mytablePrint {
  text-align: center;
  border-spacing: 0;
  /* border-collapse: separate; */
  text-align: center;
  width: 100%;

}

.mytablePrint tr td {
  overflow-wrap: break-word;
  white-space: normal;
  word-break: break-all;
  position: relative;
}


.mytablePrint .longText {
  min-height: 32px;
  text-align: left;
}

.mytablePrint .tdArrow {
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  height: 20px;
  width: 20px;
}

.mytablePrint .noTopBorder td {
  border-top: none;
}


/* // 表格打印设置 */
@media print {

  @page {
    margin: 6mm;
    /* 所有页统一上边距 */
    size: A4;
  }

  .page-break {
    page-break-after: always;
    break-after: page;
    /* 更现代的写法 */
    height: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
  }

  /* 防止内容被分割在两页 */
  .no-break {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* .mytable,
  .mytablePrint {
    page-break-after: avoid;
    page-break-before: avoid;

  }


  .mytable tr,
  .mytablePrint tr {
    page-break-after: avoid;
    page-break-before: avoid;
  } */


  /* // 整个图片 单独占据一页 */
  .print-img {
    page-break-after: always;
    display: block;
    max-width: 100%;
    max-height: 90vh;
    margin: 0 auto;
  }

  .print-img:last-child {
    page-break-after: auto;
  }


}



.demo-upload-list {
  display: inline-block;
  width: 110px;
  height: 110px;
  text-align: center;
  line-height: 110px;
  border: 1px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  margin-right: 4px;

  /* // line-height: 100px; */

}

.demo-upload-list img {
  width: 100%;
  /* // height: 100%; */
  margin: 0 auto;
  vertical-align: middle;
}