public-style.scss 669 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*主色调*/
  2. $mainTextColor: #0eaeff;
  3. $mainBgColor: #0eaeff;
  4. $white: white;
  5. $greenColor: #44d7b6;
  6. $redColor: #ff7171;
  7. $ashColor: #dcdcdc;
  8. .greenText {
  9. color: $greenColor !important;
  10. }
  11. .redText {
  12. color: $redColor !important;
  13. }
  14. .ashText {
  15. color: $ashColor !important;
  16. }
  17. .formContent-item_title {
  18. font-size: 14px;
  19. position: relative;
  20. margin-left: 14px;
  21. margin-bottom: 20px;
  22. &::before {
  23. position: absolute;
  24. left: -14px;
  25. top: 4px;
  26. width: 4px;
  27. height: 12px;
  28. border-radius: 2px;
  29. display: block;
  30. background: $mainBgColor;
  31. content: " ";
  32. }
  33. }
  34. /deep/ label[for="companyOrgId"] + .el-form-item__content {
  35. line-height: 0;
  36. }