| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- @media print {
- .msg-info {
- display: block;
- margin-bottom: 18px;
- padding-bottom: 8px;
- border-bottom: 1px #000 dashed;
- }
- .msg-item {
- font-size: 16px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
- margin-bottom: 10px;
- }
- .msg-item span {
- flex: none;
- width: 80px;
- text-align-last: justify;
- text-align: justify;
- }
- .msg-item div {
- flex: auto;
- }
- .recipe-right {
- font-size: 16px;
- font-weight: 500;
- }
- .recipe-right .title {
- color: #5386f6;
- margin: 12px 0;
- }
- .r-msg-item {
- margin-bottom: 15px;
- }
- .r-msg-item .name {
- flex: none;
- width: 80px;
- text-align-last: justify;
- text-align: justify;
- }
- .r-msg-item .right {
- flex: auto;
- }
- .r-msg-item .prescription span {
- margin: 8px 12px 0 0;
- }
- /* common */
- .flex-plane-center-l {
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .flex-wrap {
- flex-wrap: wrap;
- }
- }
|