inviteEnrollPopup.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .content{
  2. text-align: center;
  3. background: #fff;
  4. width: 600rpx;
  5. position: absolute;
  6. top: 25%;
  7. right: 0;
  8. left: 0;
  9. margin: auto;
  10. border-radius: 10rpx;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. padding: 20rpx;
  15. font-size: 28rpx;
  16. box-shadow: 0 5rpx 10rpx rgba(0,0,0,.4);
  17. }
  18. .invite-user{
  19. text-align: center;
  20. line-height: 2;
  21. }
  22. .invite-group{
  23. width: 100%;
  24. padding-top: 20rpx;
  25. margin-top: 20rpx;
  26. border-top: 1rpx solid #c0c0c0;
  27. margin-top: 20rpx;
  28. }
  29. .group-persons{
  30. display: flex;
  31. flex-direction: row;
  32. flex-wrap: wrap;
  33. justify-content: center;
  34. }
  35. .group-persons-img{
  36. width: 80rpx;
  37. height: 80rpx;
  38. padding: 10rpx;
  39. overflow: hidden;
  40. }
  41. .group-persons-img .headImg{
  42. width: 100%;
  43. height: 100%;
  44. border-radius: 50%;
  45. background: #eee;
  46. }
  47. .group-persons-img .no-people{
  48. background: rgb(252, 163, 163);
  49. border: 2rpx dashed rgb(255, 65, 65);
  50. color: #fff;
  51. font-size: 45rpx;
  52. line-height: 80rpx;
  53. }
  54. .btn-bottom{
  55. width: 100%;
  56. margin-top: 40rpx;
  57. display: flex;
  58. flex-direction: row;
  59. justify-content: space-around;
  60. }
  61. .btn-bottom button{
  62. line-height: 1.8;
  63. height: 100%;
  64. }
  65. .subtitle{
  66. font-size: 24rpx;
  67. color: #3d4145;
  68. padding: 10rpx;
  69. }
  70. .invite-user .name{
  71. overflow: hidden;
  72. text-overflow: ellipsis;
  73. white-space: nowrap;
  74. max-width: 110rpx;
  75. display: block;
  76. float: left;
  77. }