index.wxss 643 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .data-num-w {
  2. display: flex;
  3. width: 100%;
  4. justify-content: space-between;
  5. margin: 42rpx 0 46rpx;
  6. }
  7. .data-num {
  8. flex: 1;
  9. text-align: center;
  10. }
  11. .data-num .value {
  12. width: 120rpx;
  13. height: 120rpx;
  14. line-height: 120rpx;
  15. text-align: center;
  16. border-radius: 50%;
  17. color: #17D2D2;
  18. background: rgba(23,210,210,0.1);
  19. margin: 0 auto 14rpx;
  20. font-weight: bold;
  21. }
  22. .value.scene {
  23. color: #738EFE;
  24. background:rgba(115,142,254,0.1);
  25. }
  26. .value.customer {
  27. color: #4DAEFF;
  28. background:rgba(77,174,255,0.1);
  29. }
  30. .data-num .label {
  31. font-size: 22rpx;
  32. }
  33. .canvas-container {
  34. width: 100%;
  35. height: 476rpx;
  36. margin-bottom: 40rpx;
  37. }