index.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. page {
  2. background-color: #f5f5f5;
  3. }
  4. .index {
  5. font-family: 'PingFangSC-regular';
  6. &-header {
  7. height: 250rpx;
  8. background-color: #5290FF;
  9. padding: 30rpx;
  10. display: flex;
  11. justify-content: space-between;
  12. &-left {
  13. color: #fff;
  14. font-size: 40rpx;
  15. view {
  16. &:last-child {
  17. margin-top: 20rpx;
  18. font-size: 28rpx;
  19. font-family: 'PingFangSC-bold';
  20. }
  21. }
  22. }
  23. &-right {
  24. margin-right: 30rpx;
  25. height: 60rpx;
  26. }
  27. }
  28. &-statistics {
  29. padding: 0 30rpx;
  30. &-list {
  31. background-color: #fff;
  32. border: solid 1px rgba(255, 0, 0, 0);
  33. display: flex;
  34. justify-content: space-between;
  35. align-items: center;
  36. padding: 44rpx 80rpx;
  37. border-radius: 20rpx;
  38. margin-top: -96rpx;
  39. &-item {
  40. text-align: center;
  41. view {
  42. color: #999898;
  43. font-size: 26rpx;
  44. &:first-child {
  45. color: #101010;
  46. font-size: 60rpx;
  47. font-family: 'PingFangSC-bold';
  48. }
  49. }
  50. }
  51. }
  52. }
  53. &-device {
  54. padding: 40rpx 30rpx;
  55. background-color: #fff;
  56. margin-top: 20rpx;
  57. &-info {
  58. &-title {
  59. font-size: 36rpx;
  60. color: #333;
  61. font-family: 'PingFangSC-bold';
  62. font-weight: 600;
  63. }
  64. &-menu {
  65. display: flex;
  66. .item {
  67. width: 160rpx;
  68. padding: 60rpx 0;
  69. text-align: center;
  70. .image {
  71. display: inline-block;
  72. }
  73. view {
  74. &:last-child {
  75. font-size: 24rpx;
  76. color: #101010;
  77. margin-top: 6rpx;
  78. }
  79. }
  80. }
  81. }
  82. }
  83. }
  84. }