1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .content{
- text-align: center;
- background: #fff;
- width: 600rpx;
- position: absolute;
- top: 25%;
- right: 0;
- left: 0;
- margin: auto;
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20rpx;
- font-size: 28rpx;
- box-shadow: 0 5rpx 10rpx rgba(0,0,0,.4);
- }
- .invite-user{
- text-align: center;
- line-height: 2;
- }
- .invite-group{
- width: 100%;
- padding-top: 20rpx;
- margin-top: 20rpx;
- border-top: 1rpx solid #c0c0c0;
- margin-top: 20rpx;
- }
- .group-persons{
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: center;
- }
- .group-persons-img{
- width: 80rpx;
- height: 80rpx;
- padding: 10rpx;
- overflow: hidden;
- }
- .group-persons-img .headImg{
- width: 100%;
- height: 100%;
- border-radius: 50%;
- background: #eee;
- }
- .group-persons-img .no-people{
- background: rgb(252, 163, 163);
- border: 2rpx dashed rgb(255, 65, 65);
- color: #fff;
- font-size: 45rpx;
- line-height: 80rpx;
- }
- .btn-bottom{
- width: 100%;
- margin-top: 40rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- }
- .btn-bottom button{
- line-height: 1.8;
- height: 100%;
- }
- .subtitle{
- font-size: 24rpx;
- color: #3d4145;
- padding: 10rpx;
- }
- .invite-user .name{
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- max-width: 110rpx;
- display: block;
- float: left;
- }
|