index.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* nova-werun/pages/home/share/index.wxss */
  2. .all {
  3. width: 100vw;
  4. padding-top: 15rpx;
  5. background: linear-gradient(to bottom, #4F9AF7, #FFFFFF);
  6. }
  7. .all #myCanvas {
  8. margin: auto;
  9. }
  10. .all .sharebox {
  11. width: 100%;
  12. padding: 20rpx;
  13. }
  14. .all .sharebox .share-text {
  15. width: 100%;
  16. font-size: 30rpx;
  17. font-weight: 600;
  18. display: flex;
  19. justify-content: center;
  20. }
  21. .all .sharebox .share-picbox {
  22. width: 100%;
  23. height: 178rpx;
  24. margin-top: 16rpx;
  25. display: flex;
  26. justify-content: space-around;
  27. }
  28. .all .sharebox .share-picbox .share-pic {
  29. width: 130rpx;
  30. height: 178rpx;
  31. }
  32. .all .sharebox .share-picbox .share-pic .share-pic-box {
  33. width: 130rpx;
  34. height: 130rpx;
  35. border-radius: 50%;
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. background-color: #4F9AF7;
  40. }
  41. .all .sharebox .share-picbox .share-pic .share-pic-box .image {
  42. width: 60rpx;
  43. height: 60rpx;
  44. }
  45. .all .sharebox .share-picbox .share-pic .pic-tex {
  46. width: 130rpx;
  47. font-size: 30rpx;
  48. display: flex;
  49. justify-content: center;
  50. margin-top: 10rpx;
  51. color: #4F9AF7;
  52. }