public-style.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*主色调*/
  2. $mainTextColor: #0eaeff;
  3. $mainBgColor: #0eaeff;
  4. $white: white;
  5. $greenColor: #44d7b6;
  6. $redColor: #ff7171;
  7. $ashColor: #dcdcdc;
  8. @function vw($size) {
  9. @return ($size/19.2) vw;
  10. }
  11. @function vh($size) {
  12. @return ($size/10.8) vh;
  13. }
  14. $base_fontSize: 100;
  15. @function rem($px) {
  16. @return $px / $base_fontSize * 1rem;
  17. }
  18. .greenText {
  19. color: $greenColor !important;
  20. }
  21. .redText {
  22. color: $redColor !important;
  23. }
  24. .ashText {
  25. color: $ashColor !important;
  26. }
  27. .height100 {
  28. min-height: inherit;
  29. height: 100%;
  30. }
  31. .formContent-item_title {
  32. font-size: 14px;
  33. position: relative;
  34. margin-left: 14px;
  35. margin-bottom: 20px;
  36. &::before {
  37. position: absolute;
  38. left: -14px;
  39. top: 4px;
  40. width: 4px;
  41. height: 12px;
  42. border-radius: 2px;
  43. display: block;
  44. background: $mainBgColor;
  45. content: " ";
  46. }
  47. }
  48. /deep/ label[for="companyOrgId"] + .el-form-item__content {
  49. line-height: 0;
  50. }
  51. /deep/ .amap-marker-label {
  52. border: 0 none;
  53. white-space: nowrap;
  54. box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  55. border-radius: 5px;
  56. }
  57. /deep/ .amap-logo,
  58. /deep/ .amap-copyright {
  59. display: none !important;
  60. }