| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* pages/user/user.wxss */
- page{
- background: #F4F6F8;
- position: fixed;
- }
- .bg{
- background: #fff;
- }
- .avatar{
- width: 140rpx;
- height: 140rpx;
- border-radius: 100%;
- overflow: hidden;
- margin:0 auto 20rpx;
- }
- .name{
- text-align: center;
- font-size: 40rpx;
- font-weight: 500;
- }
- .name view{
- font-size: 32rpx;
- }
- .info{
- position: relative;
- top: -80rpx;
- }
- .item{
- padding: 0 48rpx;
- line-height: 108rpx;
- font-size: 32rpx;
- }
- .item image{
- width: 32rpx;
- float: right;
- margin-top: 38rpx;
- }
- .login{
- padding: 150rpx 120rpx 0;
- height: 100vh;
- }
- .login input{
- width: 100%;
- text-align: center;
- height: 108rpx;
- background: #F4F6F8;
- font-size: 32rpx;
- border-radius: 16rpx;
- border: 1px solid #EEEEEE;
- }
- .login button:not([size='mini']){
- background: #FF5151;
- color: #fff;
- width: 100%;
- margin-top: 48rpx;
- height: 108rpx;
- line-height: 108rpx;
- padding: 0;
- font-size: 32rpx;
- border-radius: 16rpx;
- }
|