123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- page {
- background-color: #fff;
- }
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 60rpx 50rpx 0 74rpx;
- box-sizing: border-box;
- }
- .title-row {
- display: flex;
- flex-direction: column;
- margin-bottom: 110rpx;
- }
- .title-row>view:first-child {
- font-size: 56rpx;
- color: #333333;
- font-weight: bold;
- position: relative;
- }
- .title-row>view:first-child::after {
- content: "";
- width: 104rpx;
- height: 8rpx;
- position: absolute;
- bottom: 3rpx;
- left: 0;
- background-color: #F2501A;
- }
- .title-row>view:last-child {
- color: #A7A7A7;
- font-size: 32rpx;
- }
- .form-box {
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .form-row {
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- border-bottom: 1px solid #F0F1F2;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- }
- .num-row {
- color: #1A191C;
- font-size: 40rpx;
- font-weight: bold;
- display: flex;
- align-items: center;
- margin-right: 44rpx;
- }
- .sanjiao {
- width: 18rpx;
- margin-left: 8rpx;
- }
- .input {
- flex: 1;
- font-size: 32rpx;
- color: #333333;
- }
- .placeholder {
- color: #A7A7A7;
- }
- .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;
- }
- .code {
- width: 134rpx;
- }
- .msg {
- width: 100%;
- color: #333333;
- font-size: 24rpx;
- padding: 0 0 20rpx;
- }
- .open-btn {
- background-color: initial;
- border-radius: initial;
- }
- .eye-icon {
- height: 30rpx;
- }
- .btn-box {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 100rpx 0 28rpx;
- }
- .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;
- }
- .login-box {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 100rpx;
- }
- .login-box view {
- position: relative;
- padding: 0 68rpx;
- color: #A7A7A7;
- font-size: 28rpx;
- }
- .login-box view::after {
- content: "";
- width: 1px;
- height: 30rpx;
- background-color: #A7A7A7;
- position: absolute;
- right: 0;
- top: 50%;
- transform: translate(0, -50%);
- }
- .login-box view:last-child::after {
- background-color: initial;
- }
- .type-box {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-bottom: 80rpx;
- }
- .type-box button {
- border-radius: initial;
- background-color: initial;
- margin-right: 160rpx;
- }
- .type-box button:last-child {
- margin-right: 0;
- }
- .type-box button image {
- width: 66rpx;
- height: 66rpx;
- }
- .login-bottom-row {
- width: 100%;
- display: flex;
- align-items: flex-start;
- color: #A7A7A7;
- font-size: 24rpx;
- margin-bottom: 30rpx;
- }
- .select-btn {
- display: flex;
- align-items: center;
- border-radius: initial;
- background-color: initial;
- margin-right: 10rpx;
- margin-top: 7rpx;
- }
- .select-btn image {
- width: 22rpx;
- height: 22rpx;
- }
|