| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* pages/user/user.wxss */
- page{
- background: #F4F6F8;
- position: fixed;
- }
- .avatar{
- width: 120rpx;
- height: 120rpx;
- border-radius: 100%;
- overflow: hidden;
- margin-right: 30rpx;
- }
- .name{
- font-size: 40rpx;
- font-weight: 500;
- padding-top: 15rpx;
- }
- .name view{
- font-size: 32rpx;
- color: #FFF;
- font-weight: 400;
- }
- .name text{
- font-size: 28rpx;
- color: #FFF;
- font-weight: 400;
- }
- .info{
- position: relative;
- background: #D94B24;
- display: flex;
- padding: 30rpx;
- }
- .item{
- line-height: 108rpx;
- font-size: 32rpx;
- border-bottom: 1px solid #F5F5F5;
- }
- .logout{
- margin-top:15rpx;
- background:#fff;
- border:none;
- padding: 0 30rpx;
- }
- .item image{
- width: 32rpx;
- float: right;
- margin-top: 38rpx;
- }
- .login input{
- width: 100%;
- text-align: center;
- height: 108rpx;
- /* background: #F4F6F8; */
- font-size: 32rpx;
- border-radius: 8rpx;
- border: 1px solid #E0E0E0;
- }
- .login button:not([size='mini']){
- background: #D94B24;
- color: #fff;
- width: 100%;
- margin-top: 48rpx;
- height: 108rpx;
- line-height: 108rpx;
- padding: 0;
- font-size: 32rpx;
- border-radius: 8rpx;
- }
- .no_login{
- height: 100vh;
- background: #fff;
- text-align: center;
- padding: 30% 70rpx 0;
- }
- .no_login .avatar{
- width: 160rpx;
- height: 160rpx;
- margin: 50rpx auto 100rpx;
- }
- .title{
- font-size: 32rpx;
- }
|