123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /*主色调*/
- $mainTextColor: #0eaeff;
- $mainBgColor: #0eaeff;
- $white: white;
- $greenColor: #44d7b6;
- $redColor: #ff7171;
- $ashColor: #dcdcdc;
- @function vw($size) {
- @return ($size/19.2) vw;
- }
- @function vh($size) {
- @return ($size/10.8) vh;
- }
- $base_fontSize: 100;
- @function rem($px) {
- @return $px / $base_fontSize * 1rem;
- }
- .greenText {
- color: $greenColor !important;
- }
- .redText {
- color: $redColor !important;
- }
- .ashText {
- color: $ashColor !important;
- }
- .height100 {
- min-height: inherit;
- height: 100%;
- }
- .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;
- }
- /deep/ .amap-marker-label {
- border: 0 none;
- white-space: nowrap;
- box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
- border-radius: 5px;
- }
- /deep/ .amap-logo,
- /deep/ .amap-copyright {
- display: none !important;
- }
|