sendInvitationList.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* pages/sendInvitationList/sendInvitationList.wxss */
  2. page{
  3. padding: 20rpx;
  4. height: 100%;
  5. background-color: #E2F0D9;
  6. }
  7. /* 顶部对方已读和未读按钮 */
  8. .read{
  9. display: flex;
  10. justify-content: space-around;
  11. }
  12. .readDetail{
  13. /* border: 1rpx solid gray; */
  14. padding: 10rpx 20rpx;
  15. border-radius: 30rpx;
  16. background-color: #FFF2CC;
  17. font-weight: bold;
  18. }
  19. /* 列表样式 */
  20. .invitationWrapper{
  21. width: 93%;
  22. padding: 10rpx;
  23. margin-top: 20rpx;
  24. border-radius: 20rpx;
  25. background-color: #FFF2CC;
  26. }
  27. /* 邀请号和对方身份、邀请日期和对方状态 */
  28. .invitationTitle,
  29. .invitationDateAndStatus{
  30. display: flex;
  31. position: relative;
  32. }
  33. /* 对方身份 */
  34. .other{
  35. position: absolute;
  36. left: 60%;
  37. }
  38. /* 具体内容的样式 */
  39. .invitatinDetail,
  40. .invitatinStatus{
  41. margin-left: 20rpx;
  42. font-weight: bold;
  43. }
  44. /* 对方阅读状态详情 */
  45. .invitatinStatus{
  46. color: red;
  47. }
  48. /* 邀请内容、邀请日期和对方状态 */
  49. .invitationContent,
  50. .invitationDateAndStatus{
  51. margin-top: 10rpx;
  52. }