123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* pages/my-users/my-users.wxss */
- .user-bg {
- background: #e43130;
- padding: 1em 0 1.5em;
- }
- .user-bg-my {
- display: block;
- text-align: center;
- color: #f1e9e9;
- font-size: 24rpx;
- padding: 10rpx 0 20rpx;
- }
- .user-bg .text {
- display: block;
- text-align: center;
- font-size: 28rpx;
- color: #ffffff;
- }
- .user-bg .text .number {
- display: inline-block;
- font-size: 36rpx;
- margin: 0 20rpx;
- vertical-align: middle;
- }
- .title {
- width: 100%;
- }
- .title .subtitle {
- display: inline-block;
- width: 33.33%;
- text-align: center;
- font-size: 28rpx;
- line-height: 80rpx;
- }
- .lists{
- margin-bottom: 10rpx;
- }
- .list-item {
- display: flex;
- justify-content: space-between;
- align-items:center;
- height:100rpx;
- }
- .list-item:nth-child(2n-1) {
- background: #f4f4f4;
- }
- .items {
- display: inline-block;
- width: 33.33%;
- font-size: 28rpx;
- text-align: center;
- }
- .img {
- width: 60rpx;
- height: 60rpx;
- font-size: 0;
- margin: auto;
- }
- .img image {
- width: 100%;
- height: 100%;
- border-radius: 50rpx;
- }
- .loading, .empty {
- text-align: center;
- font-size: 26rpx;
- width: 100%;
- height: 120rpx;
- line-height: 120rpx;
- color: #999999;
- }
|