cloud-business 0.1.128 → 0.1.129-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cloud-business.css +43 -0
- package/cloud-business.js +1 -1
- package/cloud-business.min.css +1 -1
- package/cloud-business.min.js +1 -1
- package/package.json +1 -1
package/cloud-business.css
CHANGED
|
@@ -3895,6 +3895,49 @@ body {
|
|
|
3895
3895
|
align-items: center;
|
|
3896
3896
|
border-radius: 2px;
|
|
3897
3897
|
}
|
|
3898
|
+
.customer-view-rfm-detail-title {
|
|
3899
|
+
position: relative;
|
|
3900
|
+
font-size: 14px;
|
|
3901
|
+
line-height: 20px;
|
|
3902
|
+
font-weight: 500;
|
|
3903
|
+
color: rgba(0, 0, 0, 0.85);
|
|
3904
|
+
margin-bottom: 16px;
|
|
3905
|
+
padding-left: 8px;
|
|
3906
|
+
}
|
|
3907
|
+
.customer-view-rfm-detail-title:before {
|
|
3908
|
+
position: absolute;
|
|
3909
|
+
top: 4px;
|
|
3910
|
+
left: 0;
|
|
3911
|
+
display: block;
|
|
3912
|
+
content: "";
|
|
3913
|
+
width: 2px;
|
|
3914
|
+
height: 12px;
|
|
3915
|
+
background: var(--shuyunBlue4);
|
|
3916
|
+
}
|
|
3917
|
+
.customer-view-rfm-detail-card {
|
|
3918
|
+
display: flex;
|
|
3919
|
+
align-items: center;
|
|
3920
|
+
justify-content: space-around;
|
|
3921
|
+
height: 96px;
|
|
3922
|
+
background: #fafafa;
|
|
3923
|
+
width: 100%;
|
|
3924
|
+
}
|
|
3925
|
+
.customer-view-rfm-detail-card-item {
|
|
3926
|
+
display: flex;
|
|
3927
|
+
flex-direction: column;
|
|
3928
|
+
gap: 8px;
|
|
3929
|
+
text-align: left;
|
|
3930
|
+
}
|
|
3931
|
+
.customer-view-rfm-detail-card-title {
|
|
3932
|
+
color: rgba(0, 0, 0, 0.65);
|
|
3933
|
+
}
|
|
3934
|
+
.customer-view-rfm-detail-card-value {
|
|
3935
|
+
font-size: 24px;
|
|
3936
|
+
font-family: DINAlternate-Bold, DINAlternate;
|
|
3937
|
+
font-weight: 700;
|
|
3938
|
+
line-height: 32px;
|
|
3939
|
+
color: rgba(0, 0, 0, 0.85);
|
|
3940
|
+
}
|
|
3898
3941
|
|
|
3899
3942
|
/**
|
|
3900
3943
|
* style.less
|