12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- }
- .module {
- width: 100%;
- display: flex;
- flex-direction: column;
- background-color: #fff;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- }
- .row-between {
- width: 100%;
- height: 130rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 24rpx;
- box-sizing: border-box;
- border-bottom: 1px solid #F6F6F6;
- }
- .row-between:last-child {
- border-bottom: none;
- }
- .label {
- color: #202020;
- font-size: 34rpx;
- }
- .input {
- flex: 1;
- color: #202020;
- font-size: 34rpx;
- }
- .placeholder {
- color: #A7A7A7;
- }
- .send-code {
- color: #F2501A;
- font-size: 26rpx;
- background-color: initial;
- }
- .btn-box {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 200rpx 0 28rpx;
- }
- .btn-box button {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #E0E0E0;
- color: #919191;
- font-size: 34rpx;
- border-radius: 100rpx;
- }
- .active {
- background-color: #F2501A !important;
- color: #fff !important;
- }
|