projectBook.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. ._ProjectCenterBook {
  2. height: calc(100% - 10px);
  3. background: #ffffff;
  4. border-radius: 20px;
  5. margin-top: 30px;
  6. padding: 23px 21px;
  7. .searchBox {
  8. width: 100%;
  9. background: #eaf5fd;
  10. border-radius: 4px;
  11. display: flex;
  12. align-items: center;
  13. flex-wrap: wrap;
  14. padding: 10px 30px;
  15. box-sizing: border-box;
  16. .form {
  17. display: flex;
  18. align-items: center;
  19. margin-right: 20px;
  20. .formSpan {
  21. font-size: 16px;
  22. }
  23. .btnBox {
  24. display: flex;
  25. align-items: center;
  26. }
  27. }
  28. }
  29. .infoBox {
  30. width: 100%;
  31. height: 30px;
  32. margin: 20px 0;
  33. ul {
  34. width: 100%;
  35. height: 100%;
  36. display: flex;
  37. align-items: center;
  38. li {
  39. list-style: none;
  40. display: flex;
  41. align-items: center;
  42. }
  43. }
  44. }
  45. .tableBox {
  46. width: 100%;
  47. height: calc(100% - 180px);
  48. position: relative;
  49. .table {
  50. width: 100%;
  51. height: calc(100% - 40px);
  52. display: block;
  53. .operateBtn {
  54. width: 54px;
  55. height: 24px;
  56. display: flex;
  57. align-items: center;
  58. justify-content: center;
  59. cursor: pointer;
  60. span {
  61. color: #2e77e6;
  62. }
  63. }
  64. }
  65. .pageBox {
  66. position: absolute;
  67. right: 20px;
  68. bottom: 0;
  69. text-align: right;
  70. }
  71. }
  72. :deep(.el-table) {
  73. .el-table__inner-wrapper::before {
  74. display: none;
  75. }
  76. .el-table__header-wrapper {
  77. border-radius: 4px;
  78. }
  79. tr.el-table__row--striped td.el-table__cell {
  80. background: #f7f7f7;
  81. }
  82. }
  83. :deep(.el-radio__label),
  84. :deep(.el-checkbox__label) {
  85. font-size: 16px;
  86. }
  87. :deep(.el-radio-group) {
  88. label {
  89. margin-right: 10px;
  90. }
  91. }
  92. }