123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- page {
- background-color: #F2F2F2;
- }
- .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;
- padding: 40rpx 24rpx;
- box-sizing: border-box;
- }
- .row {
- width: 100%;
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .row:last-child {
- margin-bottom: 0;
- }
- .label {
- width: 35%;
- color: #202020;
- font-size: 32rpx;
- }
- .input {
- flex: 1;
- font-size: 32rpx;
- color: #333333;
- }
- .placeholder {
- color: #A7A7A7;
- }
- .code {
- width: 134rpx;
- }
- .get-code {
- width: 166rpx;
- height: 60rpx;
- line-height: 60rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #F2501A;
- border-radius: 100rpx;
- color: #FFFFFF;
- font-size: 26rpx;
- }
- .msg {
- width: 100%;
- padding: 22rpx 16rpx;
- box-sizing: border-box;
- color: #8D8C8C;
- font-size: 26rpx;
- }
- .btn-box {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 100rpx 0;
- }
- .btn-box button {
- width: 100%;
- height: 86rpx;
- line-height: 86rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #E0E0E0;
- color: #777777;
- font-size: 30rpx;
- border-radius: 100rpx;
- }
- .active{
- color: #fff !important;
- background-color: #F2501A !important;
- }
|