1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .withdrawal{
- margin: 30px;
- .bankPicker,.bankInput{
- background: #FFF;
- border: 2px solid #F2F2F2;
- border-radius: 40px;
- display: flex;
- align-items: center;
- padding: 36px 30px;
- margin-top: 30px;
- height: 108px;
- box-sizing: border-box;
- }
- .bankPicker{
- .body{
- font-size: 32px;
- font-weight: 500;
- color: #333;
- flex: 1;
- }
- .cell-action-picker{
- width: 21px;
- flex: none;
- height: 36px;
- }
- }
- .bankInput{
- .header{
- font-size: 48px;
- font-weight: 500;
- color: #333;
- flex: none;
- margin-right: 20px;
- }
- .body{
- flex: 1;
- font-size: 32px;
- font-weight: 400;
- }
- }
- .bottomBtn{
- margin-bottom: 32px;
- position: absolute;
- bottom: 0;
- width: 100%;
- }
- }
|