share.wxss 846 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* compontents/share/share.wxss */
  2. .share {
  3. position: absolute;
  4. left: 0;
  5. bottom: -342rpx;
  6. width:100%;
  7. border-radius:25rpx;
  8. padding:32rpx 24rpx;
  9. box-sizing:border-box;
  10. background:#fff;
  11. }
  12. .share .title {
  13. font-size: 32rpx;
  14. font-weight: bolder;
  15. color: #3F3F3F;
  16. text-align: center;
  17. padding-bottom: 20rpx;
  18. border-bottom: 2rpx solid #C8C8C8;
  19. }
  20. .share-img {
  21. display: flex;
  22. align-items: center;
  23. justify-content: space-around;
  24. margin-top: 44rpx;
  25. }
  26. .share-img view {
  27. display: flex;
  28. flex-direction: column;
  29. align-items: center;
  30. justify-content: center;
  31. }
  32. .share-img text {
  33. font-size: 32rpx;
  34. color: #3F3F3F;
  35. margin-top: 43rpx;
  36. }
  37. .download image {
  38. width: 82rpx;
  39. height: 86rpx;
  40. }
  41. .transmit image {
  42. width: 102rpx;
  43. height: 82rpx;
  44. }