scene-report.wxss 1.5 KB

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