index.module.scss 993 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .A4edit {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. z-index: 12;
  6. width: 100%;
  7. height: 100%;
  8. background-color: #fff;
  9. border-radius: 10px;
  10. padding: 24px;
  11. :global {
  12. .A4eMain {
  13. width: 100%;
  14. height: 100%;
  15. overflow-y: auto;
  16. .A4link {
  17. textarea {
  18. min-height: 60px !important;
  19. }
  20. }
  21. .ant-form {
  22. width: 800px;
  23. // .ant-input-affix-wrapper{
  24. // width: 800px;
  25. // }
  26. .formRow {
  27. display: flex;
  28. .formLeft {
  29. position: relative;
  30. top: 3px;
  31. width: 100px;
  32. text-align: right;
  33. &>span {
  34. color: #ff4d4f;
  35. }
  36. }
  37. .formRight {
  38. width: calc(100% - 100px);
  39. }
  40. }
  41. .A4Ebtn {
  42. position: absolute;
  43. z-index: 10;
  44. left: 1200px;
  45. top: 50%;
  46. transform: translateY(-50%);
  47. }
  48. }
  49. }
  50. }
  51. }