1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .A4edit {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 12;
- width: 100%;
- height: 100%;
- background-color: #fff;
- border-radius: 10px;
- padding: 24px;
- :global {
- .A4eMain {
- width: 100%;
- height: 100%;
- overflow-y: auto;
- .A4link {
- textarea {
- min-height: 60px !important;
- }
- }
- .ant-form {
- width: 800px;
- // .ant-input-affix-wrapper{
- // width: 800px;
- // }
- .formRow {
- display: flex;
- .formLeft {
- position: relative;
- top: 3px;
- width: 100px;
- text-align: right;
- &>span {
- color: #ff4d4f;
- }
- }
- .formRight {
- width: calc(100% - 100px);
- }
- }
- .A4Ebtn {
- position: absolute;
- z-index: 10;
- left: 1200px;
- top: 50%;
- transform: translateY(-50%);
- }
- }
- }
- }
- }
|