12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- 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;
- }
- .row {
- width: 100%;
- height: 130rpx;
- display: flex;
- align-items: center;
- border-bottom: 1px solid #F6F6F6;
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .row:last-child {
- border-bottom: none;
- }
- .label {
- width: 27%;
- color: #202020;
- font-size: 34rpx;
- }
- .input {
- flex: 1;
- font-size: 34rpx;
- color: #333333;
- }
- .placeholder {
- color: #A7A7A7;
- }
- .code {
- width: 134rpx;
- }
- .get-code {
- background-color: initial;
- color: #F2501A;
- font-size: 26rpx;
- margin: 0 12rpx;
- }
- .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;
- }
|