1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .data-num-w {
- display: flex;
- width: 100%;
- justify-content: space-between;
- margin: 42rpx 0 46rpx;
- }
- .data-num {
- flex: 1;
- text-align: center;
- }
- .data-num .value {
- width: 120rpx;
- height: 120rpx;
- line-height: 120rpx;
- text-align: center;
- border-radius: 50%;
- color: #17D2D2;
- background: rgba(23,210,210,0.1);
- margin: 0 auto 14rpx;
- font-weight: bold;
- }
- .value.scene {
- color: #738EFE;
- background:rgba(115,142,254,0.1);
- }
- .value.customer {
- color: #4DAEFF;
- background:rgba(77,174,255,0.1);
- }
- .data-num .label {
- font-size: 22rpx;
- }
- .canvas-container {
- width: 100%;
- height: 476rpx;
- margin-bottom: 40rpx;
- }
|