sendInvitation.wxss 651 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* pages/sendInvitation/sendInvitation.wxss */
  2. /* 设置背景 */
  3. .wrapper{
  4. width: 100%;
  5. height: 100%;
  6. background-color: #FFF2CC;
  7. padding: 20rpx;
  8. }
  9. /* 上方邀请号和照片 */
  10. .above{
  11. display: flex;
  12. width: 95%;
  13. justify-content: space-between;
  14. }
  15. /* 上方、中间左侧文字 */
  16. .aboveTitle,
  17. .midTitle,
  18. .bottomTitle{
  19. padding-bottom: 20rpx;
  20. }
  21. /* 头像 */
  22. .headerPortrait{
  23. width: 200rpx;
  24. }
  25. .bottomWrapper{
  26. margin-top: 160rpx;
  27. }
  28. /* 设置链接样式 */
  29. .toLink{
  30. color: skyblue;
  31. text-decoration: underline;
  32. }
  33. /* 设置操作状态字体 */
  34. .operateState{
  35. font-weight: bold;
  36. color: red;
  37. }