public-style.scss 859 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. @function vw($size) {
  18. @return ($size/19.2) * 1vw;
  19. }
  20. @function vh($size) {
  21. @return ($size/10.8) * 1vh;
  22. }
  23. $base_fontSize: 100;
  24. @function rem($px) {
  25. @return $px / $base_fontSize * 1rem;
  26. }
  27. .formContent-item_title {
  28. font-size: 14px;
  29. position: relative;
  30. margin-left: 14px;
  31. margin-bottom: 20px;
  32. &::before {
  33. position: absolute;
  34. left: -14px;
  35. top: 4px;
  36. width: 4px;
  37. height: 12px;
  38. border-radius: 2px;
  39. display: block;
  40. background: $mainBgColor;
  41. content: " ";
  42. }
  43. }
  44. /deep/ label[for="companyOrgId"] + .el-form-item__content {
  45. line-height: 0;
  46. }