login.module.less 768 B

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