report.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .table {
  2. padding: 19px 15px;
  3. background-color: #fff;
  4. border-radius: 5px;
  5. font-family: PingFangSC-Regular, PingFang SC;
  6. &-title {
  7. text-align: center;
  8. margin-bottom: 10px;
  9. }
  10. &-date {
  11. margin-bottom: 10px;
  12. font-size: 14px;
  13. color: #434343;
  14. text-align: center;
  15. }
  16. &-search {
  17. display: flex;
  18. justify-content: space-between;
  19. align-items: center;
  20. margin-bottom: 10px;
  21. &-item {
  22. width: 38%;
  23. margin-right: 2%;
  24. .input {
  25. height: 29px;
  26. padding: 0 9px!important;
  27. }
  28. &:last-child {
  29. width: 53px;
  30. margin-right: 0;
  31. .btn {
  32. width: 53px;
  33. height: 31px;
  34. }
  35. }
  36. }
  37. }
  38. &-box {
  39. &-th {
  40. border-bottom: none;
  41. background-color: #EDF3FF;
  42. font-size: 12px;
  43. color: #434343;
  44. }
  45. &-td {
  46. font-size: 12px;
  47. color: #434343;
  48. word-wrap: break-word;
  49. }
  50. }
  51. &-pagination {
  52. width: 130px;
  53. margin: 20px auto 0;
  54. }
  55. }
  56. .total {
  57. color: #CADDFC;
  58. margin-top: 24px;
  59. text-align: center;
  60. font-size: 14px;
  61. line-height: 17px;
  62. text {
  63. color: #fff;
  64. padding: 0 5px;
  65. }
  66. }