1234567891011121314151617181920212223242526272829303132333435363738 |
- /*主色调*/
- $mainTextColor: #0eaeff;
- $mainBgColor: #0eaeff;
- $white: white;
- $greenColor: #44d7b6;
- $redColor: #ff7171;
- $ashColor: #dcdcdc;
- .greenText {
- color: $greenColor !important;
- }
- .redText {
- color: $redColor !important;
- }
- .ashText {
- color: $ashColor !important;
- }
- .formContent-item_title {
- font-size: 14px;
- position: relative;
- margin-left: 14px;
- margin-bottom: 20px;
- &::before {
- position: absolute;
- left: -14px;
- top: 4px;
- width: 4px;
- height: 12px;
- border-radius: 2px;
- display: block;
- background: $mainBgColor;
- content: " ";
- }
- }
- /deep/ label[for="companyOrgId"] + .el-form-item__content {
- line-height: 0;
- }
|