index.less 734B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .reset-password-box {
  2. width: 100%;
  3. padding: 80px 0;
  4. overflow: hidden;
  5. .title {
  6. font-size: 36px;
  7. font-weight: 500;
  8. color: #000000;
  9. }
  10. .form-box {
  11. margin-top: 80px;
  12. .van-cell {
  13. background: transparent;
  14. &::after {
  15. border-bottom-color: rgba(0, 0, 0, 0.12);
  16. }
  17. }
  18. }
  19. .form-act {
  20. margin-top: 80px;
  21. display: flex;
  22. align-items: center;
  23. justify-content: space-between;
  24. & > view {
  25. width: 180px;
  26. flex: none;
  27. }
  28. }
  29. .form-wrapper {
  30. width: 200%;
  31. transition: transform 200ms;
  32. & > view {
  33. padding: 0 60px;
  34. display: inline-block;
  35. width: 50%;
  36. }
  37. &.to-right {
  38. transform: translate(-50%, 0);
  39. }
  40. }
  41. }