DiseaseD.css 499 B

123456789101112131415161718192021222324252627
  1. @media print {
  2. .msg-item {
  3. font-size: 16px;
  4. font-family: PingFang SC;
  5. font-weight: 400;
  6. color: #333333;
  7. margin-bottom: 10px;
  8. }
  9. .msg-item span {
  10. flex: none;
  11. width: 80px;
  12. text-align-last: justify;
  13. text-align: justify;
  14. }
  15. .msg-item div {
  16. flex: auto;
  17. }
  18. /* common */
  19. .flex-plane-center-l {
  20. display: flex;
  21. justify-content: flex-start;
  22. align-items: flex-start;
  23. }
  24. }