receivedInvitationList.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* pages/receivedInvitationList/receivedInvitationList.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. padding: 10rpx 40rpx;
  14. border-radius: 30rpx;
  15. background-color: #FFF2CC;
  16. font-weight: bold;
  17. }
  18. /* 列表样式 */
  19. .invitationWrapper{
  20. width: 93%;
  21. padding: 10rpx;
  22. margin-top: 20rpx;
  23. border-radius: 20rpx;
  24. background-color: #FFF2CC;
  25. }
  26. /* 邀请号和对方身份、邀请日期和对方状态 */
  27. .invitationTitle,
  28. .invitationDateAndStatus{
  29. display: flex;
  30. position: relative;
  31. }
  32. /* 对方身份 */
  33. .other{
  34. position: absolute;
  35. left: 60%;
  36. }
  37. /* 具体内容的样式 */
  38. .invitatinDetail,
  39. .invitatinStatus{
  40. margin-left: 20rpx;
  41. font-weight: bold;
  42. }
  43. /* 对方阅读状态详情 */
  44. .invitatinStatus{
  45. color: red;
  46. }
  47. /* 邀请内容、邀请日期和对方状态 */
  48. .invitationContent,
  49. .invitationDateAndStatus{
  50. margin-top: 10rpx;
  51. }