scene-report.wxss 548 B

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