1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .wrap {
- background-color: #fff;
- }
- .user-info {
- padding: 30rpx;
- }
- .user-info .avatar {
- width: 120rpx;
- height: 120rpx;
- margin-right: 20rpx;
- border-radius: 50%;
- }
- .nickname {
- font-size: 32rpx;
- font-weight: bold;
- color: #000;
- }
- .userid, invote {
- font-size: 26rpx;
- margin-top: 10rpx;
- }
- .money {
- padding: 20rpx 30rpx;
- }
- .bor-bottom {
- position: relative;
- }
- .bor-bottom::after {
- content: '';
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- height: 1px;
- transform: scaleY(.5);
- border-bottom: 1px solid #c8c7cc;
- }
- .item-main {
- padding: 20rpx 30rpx;
- }
- .icon-right {
- width: 12rpx;
- height: 22rpx;
- }
|