index.module.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .B2Scene {
  2. :global {
  3. .B2top {
  4. display: flex;
  5. justify-content: space-between;
  6. border-radius: 10px;
  7. background-color: #fff;
  8. padding: 15px 24px;
  9. // 级联选择器的 placeholder
  10. .ant-select-selection-placeholder {
  11. color: black;
  12. }
  13. &>div {
  14. display: flex;
  15. .B2topRow {
  16. margin-right: 20px;
  17. &:last-child {
  18. margin-right: 0;
  19. }
  20. }
  21. }
  22. }
  23. .tableMain {
  24. border-radius: 10px;
  25. margin-top: 15px;
  26. height: calc(100% - 80px);
  27. background-color: #fff;
  28. .ant-table-body {
  29. height: 625px;
  30. overflow-y: auto !important;
  31. overflow-y: overlay !important;
  32. .B2audit {
  33. cursor: pointer;
  34. color: #1677ff
  35. }
  36. .B2auditNo {
  37. pointer-events: none;
  38. color: #999;
  39. }
  40. .anticon-question-circle {
  41. color: #1677ff;
  42. }
  43. .ant-table-cell {
  44. padding: 8px !important;
  45. }
  46. }
  47. // 下载json
  48. .B2TabA{
  49. color: var(--themeColor);
  50. }
  51. .B2TabANo{
  52. color: #ccc;
  53. cursor: not-allowed;
  54. }
  55. }
  56. }
  57. }
  58. .AuditMo {
  59. :global {
  60. .ant-modal-close {
  61. display: none;
  62. }
  63. .ant-modal {
  64. width: 800px !important;
  65. }
  66. .B2Amain {
  67. .B2Arow {
  68. margin-top: 30px;
  69. display: flex;
  70. .B2Arow1 {
  71. width: 100px;
  72. text-align: right;
  73. &>span {
  74. font-size: 14px;
  75. color: #ff4d4f;
  76. }
  77. }
  78. .B2Arow2 {
  79. width: calc(100% - 100px);
  80. }
  81. &:nth-of-type(1) {
  82. .B2Arow1 {
  83. position: relative;
  84. top: 3px;
  85. }
  86. }
  87. }
  88. .B2Abtn {
  89. margin-top: 20px;
  90. text-align: center;
  91. }
  92. }
  93. }
  94. }