index.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .login {
  2. display: flex;
  3. flex-direction: column;
  4. background: url('@mobile/assets/images/login-bg.jpg') no-repeat center top;
  5. background-size: 100% 100%;
  6. &-logo {
  7. height: 3.28rem;
  8. background: url('@mobile/assets/images/login-logo.png') no-repeat center top;
  9. background-size: 4.86rem 3.28rem;
  10. margin: 1.6rem 0 .5rem .96rem;
  11. }
  12. &-form {
  13. padding: .36rem .48rem;
  14. .van-cell-group {
  15. border-radius: 8px;
  16. overflow: hidden;
  17. }
  18. .button {
  19. &-link {
  20. display: flex;
  21. justify-content: space-between;
  22. padding: .32rem 0;
  23. a {
  24. color: #333;
  25. }
  26. }
  27. }
  28. }
  29. &-footer {
  30. padding: .36rem;
  31. margin-top: auto;
  32. &__trem {
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. flex-wrap: wrap;
  37. font-size: .24rem;
  38. .van-checkbox {
  39. margin-right: .12rem;
  40. }
  41. }
  42. &__version {
  43. font-size: .24rem;
  44. color: #999;
  45. text-align: center;
  46. margin-top: .08rem;
  47. }
  48. }
  49. }