report.scss 877 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .report {
  2. padding: 15px;
  3. font-family: PingFangSC-Regular, PingFang SC;
  4. &-header {
  5. background-color: #fff;
  6. border-radius: 5px;
  7. padding: 15px;
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. margin-bottom: 10px;
  12. font-size: 15px;
  13. .tab {
  14. display: flex;
  15. border: solid 1px #1767f2;
  16. &-item {
  17. width: 40px;
  18. height: 28px;
  19. line-height: 28px;
  20. text-align: center;
  21. border-right: solid 1px #1767f2;
  22. color: #1767f2;
  23. font-size: 16px;
  24. &:last-child {
  25. border-right: none;
  26. }
  27. }
  28. .active {
  29. background-color: #1767f2;
  30. color: #fff;
  31. }
  32. }
  33. }
  34. }
  35. .total {
  36. color: #caddfc;
  37. margin-top: 24px;
  38. text-align: center;
  39. font-size: 14px;
  40. line-height: 17px;
  41. text {
  42. color: #fff;
  43. padding: 0 5px;
  44. }
  45. }