1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .A61main {
- background-color: #fff;
- border-radius: 10px;
- :global {
- .A61top {
- padding: 24px;
- display: flex;
- justify-content: space-between;
- .A61top1 {
- display: flex;
- .A61topRow {
- margin-right: 20px;
- }
- }
- }
- }
- }
- // 生成邀请码的弹窗
- .A61Mcode {
- :global {
- .ant-modal-close {
- display: none;
- }
- .ant-modal-body {
- border-top: 1px solid #ccc;
- padding-top: 15px !important;
- }
- .A61Mrow {
- display: flex;
- align-items: center;
- margin-bottom: 24px;
- .A61Mrow1 {
- width: 70px;
- text-align: right;
- }
- .A61Mrow2 {
- width: calc(100% - 70px);
- .A61Mrow2Txt {
- font-weight: 700;
- font-size: 30px;
- }
- }
- }
- .A61Mbtn {
- margin-top: 24px;
- text-align: center;
- }
- }
- }
|