1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*主色调*/
- $mainTextColor: #0eaeff;
- $mainBgColor: #0eaeff;
- $white: white;
- $greenColor: #44d7b6;
- $redColor: #ff7171;
- $ashColor: #dcdcdc;
- .greenText {
- color: $greenColor !important;
- }
- .redText {
- color: $redColor !important;
- }
- .ashText {
- color: $ashColor !important;
- }
- @function vw($size) {
- @return ($size/19.2) * 1vw;
- }
- @function vh($size) {
- @return ($size/10.8) * 1vh;
- }
- $base_fontSize: 100;
- @function rem($px) {
- @return $px / $base_fontSize * 1rem;
- }
- .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;
- }
|