| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* pages/userinfo/userinfo.wxss */
- page {
- background: #F0F1F2;
- }
- .header {
- width: 750rpx;
- height: 144rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.5);
- background: #FFFFFF;
- padding: 24rpx 40rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 1rpx;
- }
- .avatar {
- width: 96rpx;
- height: 96rpx;
- border-radius: 8rpx;
- }
- .header-text {
- display: flex;
- align-items: center;
- }
- .arrow {
- width: 14rpx;
- height: 26rpx;
- margin-left: 21rpx;
- }
- .cell {
- width: 750rpx;
- height: 112rpx;
- background: #FFFFFF;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- padding: 32rpx 40rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 1rpx;
- }
- .left {
- color: rgba(0, 0, 0, 0.85);
- }
- .right {
- color: rgba(0, 0, 0, 0.65);
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- /* .hint {
- padding: 15rpx 30rpx;
- font-size: 30rpx;
- color: #cdcfd3;
- margin-bottom: 15rpx;
- } */
|