login.module.less 785 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .login {
  2. min-height: 100vh;
  3. background: url('../layout/images/top_bg.png') no-repeat top center,
  4. url('../layout/images/bottom_bg.png') no-repeat bottom center;
  5. background-color: #fff;
  6. background-size: 100%;
  7. .loginTitle {
  8. padding-top: 100px;
  9. font-size: 26px;
  10. padding-left: 35px;
  11. padding-bottom: 70px;
  12. line-height: 37px;
  13. font-weight: 500;
  14. }
  15. .codeText {
  16. color: var(--van-primary);
  17. }
  18. .margin34 {
  19. margin: 0 34px;
  20. }
  21. .formTitle {
  22. font-size: 18px;
  23. color: #000;
  24. font-weight: 500;
  25. }
  26. :global {
  27. .van-cell-group {
  28. margin-bottom: 35px;
  29. }
  30. .van-field {
  31. padding-left: 0;
  32. padding-right: 0;
  33. }
  34. .van-button + .van-button {
  35. margin-top: 20px;
  36. color: #000 !important;
  37. }
  38. }
  39. }