index.less 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. @import '~antd/es/style/themes/default.less';
  2. .container {
  3. display: flex;
  4. flex-direction: row-reverse;
  5. height: 100vh;
  6. overflow: auto;
  7. background: @layout-body-background;
  8. .left {
  9. display: flex;
  10. flex-direction: column;
  11. justify-content: space-between;
  12. width: 27%;
  13. background: #fff;
  14. :global(.ant-layout-footer) {
  15. background: #fff;
  16. }
  17. .lang {
  18. width: 100%;
  19. height: 40px;
  20. line-height: 44px;
  21. text-align: right;
  22. :global(.ant-dropdown-trigger) {
  23. margin-right: 24px;
  24. }
  25. }
  26. .content {
  27. display: flex;
  28. flex-direction: row-reverse;
  29. justify-content: center;
  30. .top {
  31. width: 100%;
  32. text-align: center;
  33. .header {
  34. height: 44px;
  35. line-height: 44px;
  36. a {
  37. text-decoration: none;
  38. }
  39. .logo {
  40. height: 44px;
  41. margin-right: 16px;
  42. vertical-align: top;
  43. }
  44. .title {
  45. position: relative;
  46. top: 2px;
  47. color: @heading-color;
  48. font-weight: 600;
  49. font-size: 33px;
  50. font-family: Avenir, 'Helvetica Neue', Arial, Helvetica, sans-serif;
  51. }
  52. }
  53. .desc {
  54. margin-top: 12px;
  55. margin-bottom: 40px;
  56. // color: @heading-color;
  57. color: rgb(0 0 0 / 70%);
  58. font-weight: 600;
  59. font-size: 22px;
  60. font-family: Avenir, 'Helvetica Neue', Arial, Helvetica, sans-serif;
  61. }
  62. .main {
  63. width: 70%;
  64. margin: 60px auto 0;
  65. @media screen and (max-width: @screen-sm) {
  66. width: 95%;
  67. max-width: 328px;
  68. }
  69. :global {
  70. .@{ant-prefix}-tabs-nav-list {
  71. margin: auto;
  72. font-size: 16px;
  73. }
  74. .ant-formily-item-size-large .ant-formily-item-help {
  75. text-align: left;
  76. }
  77. }
  78. .icon {
  79. margin-left: 16px;
  80. color: rgba(0, 0, 0, 0.2);
  81. font-size: 24px;
  82. vertical-align: middle;
  83. cursor: pointer;
  84. transition: color 0.3s;
  85. &:hover {
  86. color: @primary-color;
  87. }
  88. }
  89. .other {
  90. margin-top: 24px;
  91. line-height: 22px;
  92. text-align: left;
  93. .register {
  94. float: right;
  95. }
  96. }
  97. .prefixIcon {
  98. color: @primary-color;
  99. font-size: @font-size-base;
  100. }
  101. .remember {
  102. display: flex;
  103. flex-direction: row;
  104. margin-bottom: 30px;
  105. }
  106. }
  107. }
  108. }
  109. }
  110. }
  111. .right {
  112. //background-image: url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg');
  113. width: 73%;
  114. height: 100%;
  115. // padding: 112px 80px;
  116. // background-image: url('/images/login.png');
  117. // background-repeat: no-repeat;
  118. // background-position: center;
  119. // background-size: cover;
  120. .systemName {
  121. width: 100%;
  122. height: 110px;
  123. font-weight: 600;
  124. font-size: 90px;
  125. font-family: Montserrat, fangsong;
  126. font-style: normal;
  127. line-height: 110px;
  128. letter-spacing: 0.03em;
  129. }
  130. .systemDesc {
  131. width: 513px;
  132. height: 17px;
  133. margin: 5px 5px;
  134. color: #3dc239;
  135. font-weight: normal;
  136. font-size: 14px;
  137. font-family: Montserrat, system-ui;
  138. font-style: normal;
  139. line-height: 17px;
  140. letter-spacing: 0.19em;
  141. text-transform: uppercase;
  142. }
  143. }
  144. @media (min-width: @screen-md-min) {
  145. .container {
  146. //background-image: url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg');
  147. background-repeat: no-repeat;
  148. background-position: center 110px;
  149. background-size: 100%;
  150. }
  151. .content {
  152. padding: 32px 0 24px;
  153. }
  154. }