index.module.less 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. .no-pwd {
  2. font-family: 'dotfont';
  3. ::v-deep .n-input__input-el {
  4. -webkit-text-security: disc !important;
  5. -moz-text-security: disc !important;
  6. }
  7. }
  8. .view-account {
  9. width: 100%;
  10. height: 100vh;
  11. display: flex;
  12. flex-direction: row;
  13. align-items: center;
  14. background-color: #ddefff;
  15. overflow: auto;
  16. &-container {
  17. position: relative;
  18. width: 1180px;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: center;
  22. align-items: center;
  23. height: 100%;
  24. .stylesWrap {
  25. margin-top: 174px;
  26. width: 955px;
  27. img {
  28. width: 955px;
  29. // height: 100%;
  30. }
  31. }
  32. .loginLeft {
  33. left: 0;
  34. top: 0;
  35. width: 139px;
  36. height: 139px;
  37. position: absolute;
  38. }
  39. .loginRight {
  40. right: 0;
  41. bottom: 0;
  42. width: 194px;
  43. height: 186px;
  44. position: absolute;
  45. }
  46. }
  47. &-form {
  48. width: 740px;
  49. min-height: 100%;
  50. background-color: #fff;
  51. padding: 60px;
  52. .colLogo {
  53. width: 232px;
  54. height: 79px;
  55. margin-bottom: 110px;
  56. }
  57. .view-account-form-wrap {
  58. margin-top: 100px;
  59. position: relative;
  60. background: #ffffff;
  61. border-radius: 16px;
  62. display: flex;
  63. flex-direction: column;
  64. align-items: center;
  65. .prefixIcon {
  66. width: 22px;
  67. height: 22px;
  68. margin-right: 5px;
  69. }
  70. .pwdIcon {
  71. width: 24px;
  72. height: 24px;
  73. cursor: pointer;
  74. }
  75. .formTitle {
  76. display: flex;
  77. flex-direction: row;
  78. align-items: center;
  79. font-size: 32px;
  80. font-weight: 600;
  81. color: #333333;
  82. line-height: 45px;
  83. margin-bottom: 50px;
  84. .dot {
  85. width: 6px;
  86. height: 21px;
  87. background: #3594fa;
  88. border-radius: 3px;
  89. margin-right: 8px;
  90. }
  91. }
  92. }
  93. .submitBtm {
  94. width: 480px;
  95. margin-top: 20px;
  96. background: #198cfe;
  97. border-radius: 12px;
  98. font-size: 22px;
  99. font-weight: 600 !important;
  100. color: #ffffff;
  101. height: 62px;
  102. line-height: 62px;
  103. text-align: center;
  104. }
  105. .forgetBtm {
  106. height: 28px;
  107. font-size: 20px;
  108. font-weight: 600 !important;
  109. color: #aaaaaa;
  110. line-height: 28px;
  111. }
  112. .sendInput {
  113. :global {
  114. .n-input-wrapper {
  115. padding-right: 0;
  116. }
  117. }
  118. .sendMsg {
  119. width: 128px;
  120. height: 64px;
  121. background: #198cfe;
  122. border-radius: 0px 8px 8px 0px;
  123. font-size: 20px;
  124. font-family: PingFangSC-Medium, PingFang SC;
  125. font-weight: 500;
  126. color: #ffffff;
  127. line-height: 62px;
  128. }
  129. }
  130. &-top {
  131. padding: 32px 0;
  132. text-align: center;
  133. &-desc {
  134. font-size: 14px;
  135. color: #808695;
  136. }
  137. }
  138. &-other {
  139. width: 100%;
  140. }
  141. .default-color {
  142. color: #131415;
  143. font-size: 18px;
  144. .ant-checkbox-wrapper {
  145. color: #515a6e;
  146. }
  147. }
  148. .loginTabs {
  149. :global {
  150. .n-tabs-tab-pad {
  151. width: 80px;
  152. }
  153. .n-tabs-tab__label {
  154. font-size: 24px;
  155. position: relative;
  156. z-index: 100;
  157. color: #8b8d98;
  158. }
  159. .n-tabs-tab--active {
  160. .n-tabs-tab__label {
  161. color: #131415;
  162. font-weight: 600;
  163. }
  164. }
  165. .n-tabs-bar {
  166. width: 96px;
  167. height: 10px;
  168. bottom: 8px;
  169. z-index: 0;
  170. background: linear-gradient(
  171. 90deg,
  172. #77bbff 0%,
  173. rgba(163, 231, 255, 0.22) 100%
  174. );
  175. }
  176. .n-input {
  177. border-radius: 8px;
  178. width: 480px;
  179. font-size: 20px;
  180. }
  181. .n-input__input-el {
  182. height: 64px;
  183. line-height: 64px;
  184. }
  185. }
  186. }
  187. }
  188. }