index.module.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .A4ip {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. background-color: rgba(0, 0, 0, 0.6);
  8. border-radius: 10px;
  9. padding: 50px 100px;
  10. :global {
  11. .A4iBox {
  12. width: 100%;
  13. height: 100%;
  14. border-radius: 10px;
  15. background-color: #fff;
  16. padding: 20px;
  17. .A4iTop {
  18. display: flex;
  19. align-items: center;
  20. justify-content: space-between;
  21. & > div {
  22. display: flex;
  23. align-items: center;
  24. }
  25. }
  26. .ant-table-wrapper {
  27. margin-top: 20px;
  28. .ant-table-cell {
  29. padding: 6px;
  30. }
  31. }
  32. }
  33. }
  34. }
  35. // 新增 /编辑
  36. .A4ipAdd {
  37. :global {
  38. .ant-modal-close {
  39. display: none;
  40. }
  41. .ant-modal {
  42. width: 800px !important;
  43. top: 30%;
  44. }
  45. .ant-modal-body {
  46. border-top: 1px solid #ccc;
  47. padding-top: 15px !important;
  48. }
  49. .formRow {
  50. display: flex;
  51. align-items: center;
  52. margin-bottom: 24px;
  53. .formLeft {
  54. width: 80px;
  55. text-align: right;
  56. & > span {
  57. color: #ff4d4f;
  58. }
  59. }
  60. .formRight {
  61. width: calc(100% - 80px);
  62. position: relative;
  63. }
  64. }
  65. .A4ibtn {
  66. text-align: center;
  67. margin-top: 50px;
  68. }
  69. }
  70. }