1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /**index.wxss**/
- .icon_layout {
- display: flex;
- flex-direction: column;
- align-items: center;
- background-color: antiquewhite;
- height: 383rpx;
- width: 100%;
- }
- .icon {
- width: 103rpx;
- margin-top: 80rpx;
- height: 199rpx;
- }
- .login_check {
- margin-top: 200rpx;
- flex-direction: row;
- width: 100%;
- display: flex;
- justify-content: space-between;
- }
- .login_check_true {
- font-size: 32rpx;
- font-weight: 600;
- color: #5090FE;
- }
- .login_check_false {
- font-size: 32rpx;
- font-weight: 600;
- color: #353535;
- }
- .phonenumber_login_layout {
- margin-top: 60rpx;
- height: 315rpx;
- padding-top: 2rpx;
- flex-direction: column;
- justify-content: start;
- align-items: center;
- width: 100%;
- display: flex;
- }
- .phonenum_login_layout_input_bg {
- width: 618.06rpx;
- height: 84rpx;
- border: 2rpx solid #d4d4d4;
- display: flex;
- flex-direction: row;
- align-content: center;
- align-items: center;
- border-radius: 9rpx;
- justify-content: start;
- }
- .phonenum_login_layout_input_icon {
- width: 27rpx;
- height: 37rpx;
- margin-left: 22rpx;
- }
- .phonenum_login_layout_input {
- flex: 1;
- width: 360rpx;
- margin-left: 23rpx;
- font-size: 30rpx;
- }
- .login_btn_layout {
- margin-left: 66rpx;
- margin-top: 265rpx;
- display: flex;
- width: 616rpx;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .login_btn {
- background-color: #45abfe;
- width: 100%;
- height: 89rpx;
- color: white;
- }
|