scene-report.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .sub-title {
  2. font-size: 34rpx;
  3. color: #131d34;
  4. margin-bottom: 32rpx;
  5. font-weight: bold;
  6. }
  7. .data-num-w {
  8. display: flex;
  9. width: 100%;
  10. justify-content: space-between;
  11. margin: 42rpx 0 32rpx;
  12. flex-wrap: wrap;
  13. border-bottom: 2rpx solid #F7F7F7;
  14. padding-bottom: 34rpx;
  15. }
  16. .data-num {
  17. flex: 0 0 25%;
  18. text-align: center;
  19. }
  20. .data-num .value {
  21. width: 120rpx;
  22. height: 120rpx;
  23. line-height: 120rpx;
  24. text-align: center;
  25. border-radius: 50%;
  26. color: #17D2D2;
  27. background: rgba(23,210,210,0.1);
  28. margin: 0 auto 14rpx;
  29. font-weight: bold;
  30. }
  31. .data-num .label {
  32. font-size: 22rpx;
  33. }
  34. .canvas-container {
  35. width: 100%;
  36. height: 476rpx;
  37. margin-bottom: 40rpx;
  38. position: relative;
  39. }
  40. .canvas-container .sub-title {
  41. position: absolute;
  42. top: 0;
  43. left: 0;
  44. }
  45. .chart-type-w {
  46. display: flex;
  47. margin-bottom: 34rpx;
  48. }
  49. .chart-type {
  50. flex: 1;
  51. margin-right: 20rpx;
  52. color: #909090;
  53. border: 1px solid #909090;
  54. border-radius: 8rpx;
  55. height: 80rpx;
  56. line-height: 80rpx;
  57. padding-left: 32rpx;
  58. text-align: right;
  59. font-size: 22rpx;
  60. display: flex;
  61. align-items: center;
  62. }
  63. .chart-type:last-child {
  64. margin-right: 0;
  65. }
  66. .icon {
  67. height: 100%;
  68. margin-right: 24rpx;
  69. }
  70. .chart-type.is-active {
  71. border-color: #17D2D2;
  72. }
  73. .chart-type.is-active .icon {
  74. color: #17D2D2;
  75. }