1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .group-item {
- height: 124rpx;
- width: 100vw;
- background-color: #ffffff;
- padding-left: 30rpx;
- box-sizing: border-box;
- .main {
- display: flex;
- width: 100%;
- height: 100%;
- border-bottom: 1px solid #ddd;
- padding: 20rpx 0rpx;
- box-sizing: border-box;
- .portrait {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- overflow: hidden;
- font-size: 0;
- flex-shrink: 0;
- margin-right: 30rpx;
- image,
- .alt {
- width: 100%;
- height: 100%;
- }
- .alt {
- line-height: 80rpx;
- text-align: center;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- background: #3874F6;
- }
- }
- .content {
- flex: 1;
- width: 0;
- .title {
- width: 100%;
- height: 42rpx;
- line-height: 42rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .role {
- width: 100%;
- height: 34rpx;
- line-height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 8rpx;
- }
- }
- .delete-box {
- flex-shrink: 0;
- color: #999999;
- font-size: 32rpx;
- padding: 0 30rpx;
- }
- }
- }
|