C端小程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

42 righe
632 B

  1. /* pages/canvas/index.wxss */
  2. .content {
  3. margin: 0;
  4. padding: 0;
  5. width: 100%;
  6. height: 100%;
  7. background: #f3f3f3;
  8. position: relative;
  9. }
  10. .poster {
  11. height: 100%;
  12. padding: 20rpx;
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. }
  17. button::after{ border: none; }
  18. .bottomsave {
  19. width: 100%;
  20. height: 140rpx;
  21. line-height: 140rpx;
  22. margin: auto 0;
  23. bottom: 0;
  24. left: 0;
  25. right: 0;
  26. border-top: 1px solid #ccc;
  27. box-shadow: 0 0rpx 150rpx #ccc;
  28. background: #fff;
  29. }
  30. .saveposter {
  31. color: #fff;
  32. width: 380rpx;
  33. height: 80rpx;
  34. border-radius: 50rpx;
  35. background: #f08f04;
  36. margin-top: 30rpx;
  37. font-size: 32rpx;
  38. }