index.less 839 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .top {
  2. display: flex;
  3. padding: 48px 60px 25px;
  4. .left {
  5. width: 50%;
  6. font-size: 28px;
  7. display: flex;
  8. align-items: center;
  9. }
  10. .img {
  11. width: 152px;
  12. margin-right: 45px;
  13. }
  14. .number {
  15. font-size: 80px;
  16. font-weight: bold;
  17. margin-bottom: 10px;
  18. color: #4A90E2;
  19. }
  20. .right {
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: space-around;
  24. }
  25. .row {
  26. font-size: 32px;
  27. }
  28. }
  29. .item {
  30. padding: 40px 60px;
  31. font-size: 32px;
  32. margin-top: 28px;
  33. display: flex;
  34. align-items: center;
  35. }
  36. .icon {
  37. width: 20px;
  38. height: 20px;
  39. border-radius: 50%;
  40. display: inline-block;
  41. background-color: #12ceb3;
  42. margin-right: 44px;
  43. vertical-align: middle;
  44. &.error {
  45. background-color: #fe5850;
  46. }
  47. &.offline {
  48. background-color: #9b9b9b;
  49. }
  50. }
  51. .btns {
  52. flex: right;
  53. }