| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- .A4ip {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.6);
- border-radius: 10px;
- padding: 50px 100px;
- :global {
- .A4iBox {
- width: 100%;
- height: 100%;
- border-radius: 10px;
- background-color: #fff;
- padding: 20px;
- .A4iTop {
- display: flex;
- align-items: center;
- justify-content: space-between;
- & > div {
- display: flex;
- align-items: center;
- }
- }
- .ant-table-wrapper {
- margin-top: 20px;
- .ant-table-cell {
- padding: 6px;
- }
- }
- }
- }
- }
- // 新增 /编辑
- .A4ipAdd {
- :global {
- .ant-modal-close {
- display: none;
- }
- .ant-modal {
- width: 800px !important;
- top: 30%;
- }
- .ant-modal-body {
- border-top: 1px solid #ccc;
- padding-top: 15px !important;
- }
- .formRow {
- display: flex;
- align-items: center;
- margin-bottom: 24px;
- .formLeft {
- width: 80px;
- text-align: right;
- & > span {
- color: #ff4d4f;
- }
- }
- .formRight {
- width: calc(100% - 80px);
- position: relative;
- }
- }
- .A4ibtn {
- text-align: center;
- margin-top: 50px;
- }
- }
- }
|