1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- }
- .module {
- width: 100%;
- background-color: #FFFFFF;
- border-radius: 16rpx;
- padding: 14rpx 30rpx 50rpx 20rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- }
- .label {
- width: 100%;
- color: #090909;
- font-size: 32rpx;
- margin-bottom: 15rpx;
- }
- .row {
- width: 100%;
- position: relative;
- padding-left: 28rpx;
- box-sizing: border-box;
- color: #919191;
- font-size: 28rpx;
- margin-bottom: 12rpx;
- }
- .row::after {
- content: "";
- position: absolute;
- left: 0;
- top: 14.5rpx;
- background-color: #F2501A;
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- }
- .btn-box {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 32rpx 0 0;
- }
- .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;
- }
- .login-bottom-row {
- width: 100%;
- display: flex;
- align-items: flex-start;
- color: #202020;
- font-size: 26rpx;
- margin-top: 200rpx;
- }
- .select-btn {
- display: flex;
- align-items: center;
- border-radius: initial;
- background-color: initial;
- margin-right: 20rpx;
- margin-top: 10rpx;
- }
- .select-btn image {
- width: 28rpx;
- height: 28rpx;
- }
- .red-color {
- color: #F2501A;
- }
|