1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* pages/login/register.wxss */
- .head-img{
- border-radius: 50%;
- width: 156rpx;
- height: 156rpx;
- margin: 20rpx auto;
- }
- .input-active {
- border-bottom: 1rpx #fb4747 solid;
- }
- .login-page {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 100rpx 100rpx 0;
- box-sizing: border-box;
- }
- input {
- width: 100%;
- height: 50rpx;
- margin-top: 60rpx;
- border-bottom: 1rpx #2c2c2c solid;
- padding-bottom: 10rpx;
- font-size: 32rpx;
- }
- .code-input {
- width: 40%;
- height: 50rpx;
- margin-top: 60rpx;
- border-bottom: 1rpx #2c2c2c solid;
- padding-bottom: 10rpx;
- font-size: 32rpx;
- float: left;
- }
- .code-button {
- background-color: #fb4747;
- width: 50%;
- float: left;
- margin-top: 60rpx;
- margin-left: 20rpx;
- }
- .login {
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- background-color: #fb4747;
- color: white;
- font-size: 32rpx;
- border-radius: 20rpx;
- margin-top: 100rpx;
- text-align: center;
- }
- .register-btn {
- font-size: 32rpx;
- color: #8a8a8a;
- text-decoration: underline;
- }
- .demo-people-link {
- color: #00c0fa;
- text-decoration: underline;
- }
- .hover{
- background-color: #fb4747;
- }
|