1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- .A7school {
- border-radius: 10px;
- background-color: #fff;
- padding: 15px 0;
- position: relative;
- :global {
- .A7top {
- padding: 0 24px;
- display: flex;
- justify-content: space-between;
- }
- .A7main {
- border-radius: 10px;
- overflow: hidden;
- margin-top: 15px;
- height: calc(100% - 32px);
- .A7tableTit {
- display: flex;
- justify-content: center;
- .A7tableTitInco {
- cursor: pointer;
- width: 20px;
- height: 20px;
- border-radius: 50%;
- }
- }
- }
- }
- }
- // 新增 、 编辑
- .A7tab1M {
- :global {
- .ant-modal-close {
- display: none;
- }
- .ant-modal {
- width: 1000px !important;
- }
- .ant-modal-body {
- border-top: 1px solid #ccc;
- }
- .A7mMaiin {
- margin-top: 15px;
- width: 100%;
- // height: 570px;
- // overflow-y: auto;
- .ant-form {
- width: 800px;
- .ant-input-number {
- width: 260px;
- }
- .formRow {
- display: flex;
- .formLeft {
- position: relative;
- top: 3px;
- width: 103px;
- text-align: right;
- &>span {
- color: #ff4d4f;
- }
- }
- .formRight {
- width: calc(100% - 103px);
- }
- }
- .A7mbtn {
- position: absolute;
- z-index: 10;
- right: 60px;
- top: 50%;
- transform: translateY(-50%);
- }
- }
- }
- }
- }
|