index.module.scss 886 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .A61main {
  2. background-color: #fff;
  3. border-radius: 10px;
  4. :global {
  5. .A61top {
  6. padding: 24px;
  7. display: flex;
  8. justify-content: space-between;
  9. .A61top1 {
  10. display: flex;
  11. .A61topRow {
  12. margin-right: 20px;
  13. }
  14. }
  15. }
  16. }
  17. }
  18. // 生成邀请码的弹窗
  19. .A61Mcode {
  20. :global {
  21. .ant-modal-close {
  22. display: none;
  23. }
  24. .ant-modal-body {
  25. border-top: 1px solid #ccc;
  26. padding-top: 15px !important;
  27. }
  28. .A61Mrow {
  29. display: flex;
  30. align-items: center;
  31. margin-bottom: 24px;
  32. .A61Mrow1 {
  33. width: 70px;
  34. text-align: right;
  35. }
  36. .A61Mrow2 {
  37. width: calc(100% - 70px);
  38. .A61Mrow2Txt {
  39. font-weight: 700;
  40. font-size: 30px;
  41. }
  42. }
  43. }
  44. .A61Mbtn {
  45. margin-top: 24px;
  46. text-align: center;
  47. }
  48. }
  49. }