print.scss 492 B

12345678910111213141516171819202122232425262728293031
  1. .fm-form{
  2. &.is-print{
  3. &:not(.fm-vant-form) {
  4. background: #fff;
  5. }
  6. .print-read-label {
  7. color: #000 !important;
  8. }
  9. .el-form-item__label,
  10. .el-collapse-item__header,
  11. .el-card__header,
  12. .ant-form-item-label label,
  13. .ant-collapse-header,
  14. .ant-card-head{
  15. color: #000 !important;
  16. }
  17. .el-collapse-item__header{
  18. font-weight: bold;
  19. }
  20. .el-card,
  21. .ant-card,
  22. .ant-collapse-content{
  23. background: #fff;
  24. }
  25. }
  26. }