DoctorCaseD.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @media print {
  2. .msg-info {
  3. display: block;
  4. margin-bottom: 18px;
  5. padding-bottom: 8px;
  6. border-bottom: 1px #000 dashed;
  7. }
  8. .msg-item {
  9. font-size: 16px;
  10. font-family: PingFang SC;
  11. font-weight: 400;
  12. color: #333333;
  13. margin-bottom: 10px;
  14. }
  15. .msg-item span {
  16. flex: none;
  17. width: 80px;
  18. text-align-last: justify;
  19. text-align: justify;
  20. }
  21. .msg-item div {
  22. flex: auto;
  23. }
  24. .recipe-right {
  25. font-size: 16px;
  26. font-weight: 500;
  27. }
  28. .recipe-right .title {
  29. color: #5386f6;
  30. margin: 12px 0;
  31. }
  32. .r-msg-item {
  33. margin-bottom: 15px;
  34. }
  35. .r-msg-item .name {
  36. flex: none;
  37. width: 80px;
  38. text-align-last: justify;
  39. text-align: justify;
  40. }
  41. .r-msg-item .right {
  42. flex: auto;
  43. }
  44. .r-msg-item .prescription span {
  45. margin: 8px 12px 0 0;
  46. }
  47. /* common */
  48. .flex-plane-center-l {
  49. display: flex;
  50. justify-content: flex-start;
  51. align-items: flex-start;
  52. }
  53. .flex-wrap {
  54. flex-wrap: wrap;
  55. }
  56. }