statisticalReport.scss 871 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. &-left {
  13. display: flex;
  14. align-items: center;
  15. text {
  16. margin-left: 5px;
  17. color: #434343;
  18. font-size: 15px;
  19. }
  20. }
  21. &-right {
  22. .tab {
  23. display: flex;
  24. border: solid 1px #1767F2;
  25. &-item {
  26. width: 40px;
  27. height: 28px;
  28. line-height: 28px;
  29. text-align: center;
  30. border-right: solid 1px #1767F2;
  31. color: #1767F2;
  32. font-size: 16px;
  33. &:last-child {
  34. border-right: none;
  35. }
  36. }
  37. .active {
  38. background-color: #1767f2;
  39. color: #fff;
  40. }
  41. }
  42. }
  43. }
  44. &-content {
  45. // padding: 19px 15px;
  46. // background-color: #fff;
  47. // border-radius: 5px;
  48. }
  49. }