index.module.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. .login-contianer {
  2. box-sizing: border-box;
  3. background: #F7F7F7;
  4. width: 100%;
  5. height: 100%;
  6. .logo-banner {
  7. box-sizing: border-box;
  8. width: 100%;
  9. /* position: fixed; */
  10. height: 60px;
  11. background: #fff;
  12. box-shadow: 0px 3px 7px 0px rgba(207, 207, 207, .5);
  13. display: flex;
  14. align-items: center;
  15. padding-left: 26px;
  16. .logo-icon {
  17. width: 35px;
  18. height: 35px;
  19. background-image: url(../../../assets/images/logo_icon.png);
  20. background-size: 100%;
  21. background-repeat: no-repeat;
  22. margin-right: 7px;
  23. }
  24. .logo-title {
  25. font-size: 16px;
  26. font-weight: 600;
  27. color: #333;
  28. span {
  29. color: #D2D2D2;
  30. }
  31. }
  32. }
  33. .login-body {
  34. padding-top: 15px;
  35. min-width: 1200px;
  36. display: flex;
  37. justify-content: center;
  38. align-items: stretch;
  39. .login-bg {
  40. min-width: 747px;
  41. width: 47%;
  42. img {
  43. width: 100%;
  44. height: 100%;
  45. border-radius: 24px 0 0 24px;
  46. }
  47. }
  48. .login-box {
  49. width: 400px;
  50. box-sizing: border-box;
  51. background-color: #fff;
  52. padding: 100px 50px;
  53. border-radius: 0 24px 24px 0;
  54. :global {
  55. .ant-tabs-nav {
  56. &::before {
  57. border-bottom: none
  58. }
  59. }
  60. .ant-tabs-tab {
  61. font-size: 18px;
  62. }
  63. .ant-input {
  64. width: 500px !important;
  65. height: 33px !important;
  66. }
  67. .ant-btn {
  68. font-size: 18px;
  69. height: 44px;
  70. }
  71. }
  72. .forget-password {
  73. text-align: center;
  74. font-size: 14px;
  75. font-weight: 400;
  76. color: #1890FF;
  77. cursor: pointer;
  78. }
  79. .msg-password {
  80. display: flex;
  81. justify-content: space-between;
  82. :global {
  83. .ant-input-affix-wrapper {
  84. width: 174px;
  85. }
  86. .ant-btn {
  87. width: 114px;
  88. font-size: 16px;
  89. }
  90. }
  91. }
  92. }
  93. }
  94. .login-footer {
  95. padding: 32px 0 38px;
  96. width: 100%;
  97. p {
  98. text-align: center;
  99. font-size: 14px;
  100. font-weight: 400;
  101. color: #333333;
  102. margin-top: 10px;
  103. }
  104. span {
  105. cursor: pointer;
  106. }
  107. }
  108. .register {
  109. height: 44px;
  110. .title {
  111. line-height: 44px;
  112. text-align: center;
  113. font-size: 18px;
  114. font-weight: 400;
  115. }
  116. .register-contianer {
  117. :global {
  118. .ant-tabs-nav {
  119. &::before {
  120. border-bottom: none
  121. }
  122. }
  123. .ant-tabs-tab {
  124. font-size: 18px;
  125. }
  126. .ant-input {
  127. width: 500px !important;
  128. height: 33px !important;
  129. }
  130. .ant-btn {
  131. font-size: 18px;
  132. height: 44px;
  133. }
  134. }
  135. }
  136. }
  137. }