1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .reset-password-box {
- width: 100%;
- padding: 80px 0;
- overflow: hidden;
-
- .title {
- font-size: 36px;
- font-weight: 500;
- color: #000000;
- }
-
- .form-box {
- margin-top: 80px;
-
- .van-cell {
- background: transparent;
-
- &::after {
- border-bottom-color: rgba(0, 0, 0, 0.12);
- }
- }
- }
-
- .form-act {
- margin-top: 80px;
- display: flex;
- align-items: center;
- justify-content: space-between;
-
- & > view {
- width: 180px;
- flex: none;
- }
- }
-
- .form-wrapper {
- width: 200%;
- transition: transform 200ms;
-
- & > view {
- padding: 0 60px;
- display: inline-block;
- width: 50%;
- }
-
- &.to-right {
- transform: translate(-50%, 0);
- }
- }
- }
|