index.module.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .A7school {
  2. border-radius: 10px;
  3. background-color: #fff;
  4. padding: 15px 0;
  5. position: relative;
  6. :global {
  7. .A7top {
  8. padding: 0 24px;
  9. display: flex;
  10. justify-content: space-between;
  11. }
  12. .A7main {
  13. border-radius: 10px;
  14. overflow: hidden;
  15. margin-top: 15px;
  16. height: calc(100% - 32px);
  17. .A7tableTit {
  18. display: flex;
  19. justify-content: center;
  20. .A7tableTitInco {
  21. cursor: pointer;
  22. width: 20px;
  23. height: 20px;
  24. border-radius: 50%;
  25. }
  26. }
  27. }
  28. }
  29. }
  30. // 新增 、 编辑
  31. .A7tab1M {
  32. :global {
  33. .ant-modal-close {
  34. display: none;
  35. }
  36. .ant-modal {
  37. width: 1000px !important;
  38. }
  39. .ant-modal-body {
  40. border-top: 1px solid #ccc;
  41. }
  42. .A7mMaiin {
  43. margin-top: 15px;
  44. width: 100%;
  45. height: 600px;
  46. overflow-y: auto;
  47. .ant-form {
  48. width: 800px;
  49. .ant-input-number {
  50. width: 260px;
  51. }
  52. .formRow {
  53. display: flex;
  54. .formLeft {
  55. position: relative;
  56. top: 3px;
  57. width: 103px;
  58. text-align: right;
  59. &>span {
  60. color: #ff4d4f;
  61. }
  62. }
  63. .formRight {
  64. width: calc(100% - 103px);
  65. .A7radio{
  66. position: relative;
  67. top: 3px;
  68. margin-bottom: 15px;
  69. }
  70. }
  71. }
  72. .A7mbtn {
  73. position: absolute;
  74. z-index: 10;
  75. right: 60px;
  76. top: 50%;
  77. transform: translateY(-50%);
  78. }
  79. }
  80. }
  81. }
  82. }