poster.wxss 782 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* pages/invitationDetails/poster/poster.wxss */
  2. .poster {
  3. padding: 30rpx 32rpx 70rpx 32rpx;
  4. }
  5. .poster .title {
  6. font-size: 36rpx;
  7. font-family: PingFangSC-Medium, PingFang SC;
  8. font-weight: 500;
  9. color: #333333;
  10. line-height: 50rpx;
  11. }
  12. .poster .poster-img {
  13. text-align: center;
  14. margin-top: 40rpx;
  15. position: relative;
  16. }
  17. .poster .canvas {
  18. position: absolute;
  19. left: 50%;
  20. transform: translateX(-50%);
  21. bottom: 100rpx;
  22. }
  23. .poster .poster-img image {
  24. width: 610rpx;
  25. height: 1042rpx;
  26. }
  27. .poster .save-album {
  28. margin-top: 126rpx;
  29. width: 100%;
  30. height: 84rpx;
  31. line-height: 84rpx;
  32. background: #FA7D22;
  33. border-radius: 42px;
  34. font-size: 32rpx;
  35. font-family: PingFang-SC-Medium, PingFang-SC;
  36. font-weight: 500;
  37. color: #FFFFFF;
  38. text-align: center;
  39. }