report.scss 976 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. &-left, &-right {
  14. white-space: nowrap;
  15. text-overflow: ellipsis;
  16. overflow: hidden;
  17. }
  18. .tab {
  19. display: flex;
  20. border: solid 1px #1767f2;
  21. &-item {
  22. width: 40px;
  23. height: 28px;
  24. line-height: 28px;
  25. text-align: center;
  26. border-right: solid 1px #1767f2;
  27. color: #1767f2;
  28. font-size: 16px;
  29. &:last-child {
  30. border-right: none;
  31. }
  32. }
  33. .active {
  34. background-color: #1767f2;
  35. color: #fff;
  36. }
  37. }
  38. }
  39. }
  40. .total {
  41. color: #caddfc;
  42. margin-top: 24px;
  43. text-align: center;
  44. font-size: 14px;
  45. line-height: 17px;
  46. text {
  47. color: #fff;
  48. padding: 0 5px;
  49. }
  50. }