1234567891011121314151617181920212223242526272829 |
- /* pages/chat-group/chat-group.wxss */
- .groupList {
- width: 100%;
- height: 100%;
- padding: 30rpx;
- box-sizing: border-box;
- }
- .info {
- width: 100%;
- height: 108rpx;
- display: flex;
- align-items: center;
- padding-bottom: 10rpx;
- border-bottom: solid 1rpx #ece9e4;
- margin-top: 15rpx;
- }
- .info image {
- width: 100rpx;
- height: 100rpx;
- margin-right: 22rpx;
- }
- .info text {
- font-size: 34rpx;
- color: #000;
- }
|