index.module.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .loginModel {
  2. background: url('./images/login-bg.png') no-repeat center;
  3. background-size: contain;
  4. width: 306px;
  5. height: 370px;
  6. .iconClose {
  7. width: 24px;
  8. height: 24px;
  9. position: absolute;
  10. top: 30px;
  11. right: -12px;
  12. background: url('./images/icon-close.png') no-repeat center;
  13. background-size: contain;
  14. z-index: 1;
  15. }
  16. }
  17. .loginSection {
  18. padding: 126px 16px 0;
  19. }
  20. .fieldSection {
  21. padding-bottom: 18px;
  22. :global {
  23. .van-field {
  24. background: #F2F4F8;
  25. border-radius: 24px;
  26. padding: 11px 16px;
  27. margin-bottom: 12px;
  28. }
  29. .van-field__left-icon {
  30. display: flex;
  31. align-items: center;
  32. }
  33. .van-field__control::placeholder {
  34. color: #97B9C3;
  35. }
  36. }
  37. .icon {
  38. width: 20px;
  39. height: 20px;
  40. }
  41. .codeText {
  42. font-size: 14px;
  43. color: #2DC7AA;
  44. }
  45. }
  46. .btnGroup {
  47. :global {
  48. .van-button {
  49. font-size: 16px;
  50. font-weight: 600;
  51. color: #FFFFFF;
  52. }
  53. }
  54. .btnText {
  55. display: block;
  56. padding-top: 16px;
  57. text-align: center;
  58. font-size: 16px;
  59. font-weight: 500;
  60. color: #74949E;
  61. line-height: 22px;
  62. text-align: center;
  63. }
  64. }